Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RickStrahl committed Sep 6, 2017
1 parent 48cf813 commit fa85b9e
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion AddIns/ScreenCaptureAddin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.12")]
[assembly: AssemblyVersion("1.6.0")]
2 changes: 1 addition & 1 deletion AddIns/WebLogAddin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.5.12")]
[assembly: AssemblyVersion("1.6.0")]
7 changes: 5 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
> #### Upgrades: Explicitly uninstall pre-1.4.10 Versions!
> If you have versions **prior to 1.4.10** installed, we recommend you do a **full uninstall using Programs and Features** before updating Markdown Monster. Because the install location changed, the new low rights installer can run into permission problems updating in the old **Program Files** location. A manual Uninstall/Re-install ensures that files get moved to **%LocalAppData%** which doesn't require admin privileges.
### 1.5.15
*<small>not released yet</small>*
### 1.6
*<small>September 6th, 2017</small>*

* **Version Rollup Release**
This release is a version rollup release that combines all the recent additions into a point release.

* **Edit and Remove Hyperlink Context Menu Options**
Added menu options to edit hyper links in the link editor or to remove the hyperlink and just retain the text of the link.
Expand Down
Binary file modified Install/Builds/CurrentRelease/MarkdownMonster_Version.xml
Binary file not shown.
4 changes: 2 additions & 2 deletions Install/Chocolatey/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

cd "$PSScriptRoot"

$releasePath = "C:\projects2010\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.5"
$releasePath = "C:\projects2010\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.6"

#$file = "MarkdownMonsterSetup-0.55.exe"
$file = gci "$releasePath" | sort LastWriteTime | select -last 1 | select -ExpandProperty "Name"
Expand All @@ -19,7 +19,7 @@ write-host $sha
$filetext = @"
`$packageName = 'markdownmonster'
`$fileType = 'exe'
`$url = 'https://github.com/RickStrahl/MarkdownMonsterReleases/raw/master/v1.5/$file'
`$url = 'https://github.com/RickStrahl/MarkdownMonsterReleases/raw/master/v1.6/$file'
`$silentArgs = '/VERYSILENT'
`$validExitCodes = @(0)
Expand Down
2 changes: 1 addition & 1 deletion Install/Chocolatey/markdownmonster.nuspec
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</id>
<version>1.5.12</version>
<version>1.6.0</version>
<title>Markdown Monster</title>
<authors>Rick Strahl, West Wind Technologies</authors>
<owners>West Wind Technologies</owners>
Expand Down
Binary file modified Install/Chocolatey/tools/chocolateyInstall.ps1
Binary file not shown.
4 changes: 2 additions & 2 deletions Install/CreateRelease.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ $version = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($releaseFile).Fi
$version = $version.Trim().Replace(".0","")
"Writing Version File for: " + $version

$finalFile = "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.5\MarkdownMonsterSetup-${version}.exe"
$finalFile = "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.6\MarkdownMonsterSetup-${version}.exe"
copy $releaseFile $finalFile
copy $releaseFile "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\CurrentRelease\MarkdownMonsterSetup.exe"
cd "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases"

git add -f "v1.5/MarkdownMonsterSetup-${version}.exe"
git add -f "v1.6/MarkdownMonsterSetup-${version}.exe"
git commit -m "$version"
git push origin master

Expand Down
3 changes: 1 addition & 2 deletions MarkdownMonster/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.12")]

[assembly: AssemblyVersion("1.6.0")]

0 comments on commit fa85b9e

Please sign in to comment.