Skip to content

Commit

Permalink
v1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
RickStrahl committed Jan 27, 2020
1 parent 5723daf commit 30bed2b
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 67 deletions.
104 changes: 46 additions & 58 deletions Changelog.md

Large diffs are not rendered by default.

Binary file modified Install/Builds/CurrentRelease/MarkdownMonster_Version.xml
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>MarkdownMonster.Portable</id>
<version>1.20.12</version>
<version>1.21</version>
<title>Markdown Monster Portable Install</title>
<authors>Rick Strahl, West Wind Technologies</authors>
<owners>West Wind Technologies</owners>
Expand Down
2 changes: 1 addition & 1 deletion Install/Chocolatey/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

cd "$PSScriptRoot"

$release="v1.20"
$release="v1.21"
$releasePath = "C:\projects\MarkdownMonsterAddins\MarkdownMonsterReleases\$release"

#$file = "MarkdownMonsterSetup-0.55.exe"
Expand Down
Binary file modified Install/Chocolatey/markdownmonster.nuspec
Binary file not shown.
Binary file modified Install/Chocolatey/tools/chocolateyInstall.ps1
Binary file not shown.
8 changes: 3 additions & 5 deletions Install/CreateRelease.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cd "$PSScriptRoot"

# Major version
$release = "v1.20"
$release = "v1.21"
$releaseFile = "$PSScriptRoot\builds\currentrelease\MarkdownMonsterSetup.exe"


Expand All @@ -11,8 +11,8 @@ $version = $version.Trim().Replace(".0","")
"Writing Version File for: " + $version

$finalFile = "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\$release\MarkdownMonsterSetup-${version}.exe"
copy $releaseFile $finalFile
copy $releaseFile "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\CurrentRelease\MarkdownMonsterSetup.exe"
Copy-Item $releaseFile $finalFile
Copy-Item $releaseFile "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\CurrentRelease\MarkdownMonsterSetup.exe"
cd "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases"

git add -f "${release}/MarkdownMonsterSetup-${version}.exe"
Expand All @@ -25,5 +25,3 @@ $chocoNuspec = ".\chocolatey\markdownmonster.template.nuspec"
$content = Get-Content -Path $chocoNuspec
$content = $content.Replace("{{version}}",$version)
out-file -filepath $chocoNuSpec.Replace(".template","") -inputobject $content


2 changes: 1 addition & 1 deletion MarkdownMonster/MarkdownMonster.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<UseWPF>true</UseWPF>
<TargetFramework>net472</TargetFramework>

<Version>1.20.13.6</Version>
<Version>1.21</Version>
<AssemblyName>MarkdownMonster</AssemblyName>

<Authors>Rick Strahl, West Wind Technologies</Authors>
Expand Down
4 changes: 3 additions & 1 deletion Todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

### Immediate
* [ ] Addin Enabled/Disabled
* [x] ~~Format Table (without dialog)~~
* [ ] Large, Large Document Performance
* Add ability to have a 'Navigation Only' refresh (no refresh, but navigation works so doc doesn't have to reload)
* Menu option/hotkey to manually do a 'Preview Refresh'

### Mid Term
* [ ] Search for Blog Posts in Weblog Posts folder (walk tree and show titles)
Expand Down

0 comments on commit 30bed2b

Please sign in to comment.