Skip to content

Commit

Permalink
1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RickStrahl committed Jan 24, 2018
1 parent 3148356 commit e559ac4
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
<small>[download latest version](https://markdownmonster.west-wind.com/download.aspx) &bull; [install from Chocolatey](https://chocolatey.org/packages/MarkdownMonster) &bull; [Web Site](https://markdownmonster.west-wind.com)</small>


### 1.8.16
*<small>not released yet</small>*
### 1.9
*<small>January 24, 2018</small>*
#### Version Rollup Release

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

* **Add Table Editor support for Paste Table**
You can now paste a table from HTML, or Pipe or Grid Tables into the table editor. Note if the table is heavily formatted it'll likely end up as mostly HTML, but simple formatted tables with links, images and simple markup are converted.
Expand Down
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.7"
$releasePath = "C:\projects2010\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.9"

#$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.7/$file'
`$url = 'https://github.com/RickStrahl/MarkdownMonsterReleases/raw/master/v1.9/$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.8.15</version>
<version>1.9.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.7\MarkdownMonsterSetup-${version}.exe"
$finalFile = "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\v1.9\MarkdownMonsterSetup-${version}.exe"
copy $releaseFile $finalFile
copy $releaseFile "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases\CurrentRelease\MarkdownMonsterSetup.exe"
cd "..\..\MarkdownMonsterAddins\MarkdownMonsterReleases"

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

Expand Down

0 comments on commit e559ac4

Please sign in to comment.