Skip to content

Commit

Permalink
1.12.12
Browse files Browse the repository at this point in the history
  • Loading branch information
RickStrahl committed Aug 16, 2018
1 parent 1211657 commit 6b0cdfe
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 9 deletions.
9 changes: 3 additions & 6 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,16 @@
[![download](https://img.shields.io/badge/Download-Installer-blue.svg)](https://markdownmonster.west-wind.com/download.aspx)
[![Chocolatey](https://img.shields.io/chocolatey/dt/markdownmonster.svg)](https://chocolatey.org/packages/MarkdownMonster)
[![Web Site](https://img.shields.io/badge/Markdown_Monster-WebSite-blue.svg)](https://markdownmonster.west-wind.com)
### 1.12.11

### 1.12.12

* **Add TabSize and UseSoftTabs Configuration Options**
Allow configuration of how tabs are handled in the editor by adding config options for setting the TabSize and whether to use hard or soft tabs (spaces instead of tabs).

* **Add KeyBinding for `TogglePreviewBrowser` (F12)**
Added configurable key binding for toggling the Preview Browser visible/hidden with a default key of F12. Also fix shortcut for `PresentationMode` (F11) key binding.

### 1.12.10
<small>not released yet</small>

* **[New KeyBinding Manager](https://markdownmonster.west-wind.com/docs/_59l0izpoe.htm)**
You can now remap a number of keyboard shortcuts using the `MarkdownMonster-KeyBindings.json` file. In this file you can assign new shortcut keys to a number of commands.
* **[New KeyBinding Manager](https://markdownmonster.west-wind.com/docs/_59l0izpoe.htm)** You can now remap a number of keyboard shortcuts using the `MarkdownMonster-KeyBindings.json` file. In this file you can assign new shortcut keys to a number of commands.

* **Add Open on Github in Folder Browser**
If a file or folder is in a Github repository there's now a link in the folder browser to open the file on Github.
Expand Down
Binary file modified Install/Builds/CurrentRelease/MarkdownMonster_Version.xml
Binary file not shown.
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.12.10</version>
<version>1.12.12</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.
2 changes: 1 addition & 1 deletion MarkdownMonster/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ protected override void OnStartup(StartupEventArgs e)
Environment.Exit(0);
}

new TaskFactory().StartNew(LoadAddins);
ThreadPool.QueueUserWorkItem(p => LoadAddins());

if (mmApp.Configuration.DisableHardwareAcceleration)
RenderOptions.ProcessRenderMode = System.Windows.Interop.RenderMode.SoftwareOnly;
Expand Down
2 changes: 1 addition & 1 deletion MarkdownMonster/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +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.12.11")]
[assembly: AssemblyVersion("1.12.12")]

0 comments on commit 6b0cdfe

Please sign in to comment.