Skip to content

Commit 3d54be6

Browse files
committed
Update Changelog.md
1 parent a6f3ac4 commit 3d54be6

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,17 @@ You can now access the font settings in the Visual Settings Editor via `Ctrl-Shi
2121
When navigating the folder browser with the up and down keys, the editor now displays a preview of documents similar to the behavior when single clicking on a document. Editable (Markdown, text and other known editable formats) are opened in preview mode, meaning once you navigate off the document is closed or replaced by the next preview document, unless the document has been edited or explicitly opened as a full document.
2222

2323
* **Table Editor Paste now supports CSV directly**
24-
CSV imports into the table editor have been support via **Load From** for a long time, but you can now also use the **Paste** operation to directly paste CSV content from Excel, Google Docs etc. directly into the table editor. **Load From** still has more control but **Paste** is quicker assuming the content uses tab delimited clipboard CSV. Paste now supports: Grid Table, Pipe Table, HTML, JSON and CSV. Load From also allows loading CSV and JSON from files (and clipboard explicitly with options).
24+
CSV imports into the table editor have been supported via **Load From** for a long time, but you can now also use the **Paste** operation to CSV content from Excel, Google Docs etc. directly into the table editor. **Load From** still has more control but **Paste** is quicker assuming the content uses tab delimited clipboard CSV. Paste now supports: Grid Table, Pipe Table, HTML, JSON and CSV. Load From also allows loading CSV and JSON from files (and clipboard explicitly with options).
2525

2626
* **Update: Default Font Size to 16px**
2727
Set default font-size a little smaller to prevent very low res displays from displaying too big of a font initially. This will make fonts smaller for hi-res displays, but people that have hi-resolutiuon displays are used to having to adjust font-sizes up typically.
2828

29+
* **Fix: Move Markdown Monster to latest Web View Async Model**
30+
A few versions ago, changes in the async WebView control model broke most of Markdown Monsters JavaScript to .NET interop functionality. In this release we've refactored all of our JS->.NET interfaces to work with the new functionality. This true async support should also improve responsiveness of some tasks, as well as reduce the occasional WebView crashes we've observed in our logs.
31+
32+
* **Fix: Git Commit Dialog Load Time**
33+
Fix issue with the Git dialog taking a long time to load with large repositories. We've refactored the dialog to load the repository after the form has initialized which removes a race condition that was severely slowing down the initial load of the repository. The form now loads immediately with a status message in case of slowish loads (which should now be rare) and for most repos the load should be near instant.
34+
2935
* **Fix: Table Editor Add Row on Bottom**
3036
Fix behavior of Add row on bottom to continue keeping focus and scroll into visible viewport. Also now allow adding multiple empty rows at the end (previously this wasn't allowed). You can now also add a new Header row by Add new Row in the header.
3137

MarkdownMonsterWeb/download.cshtml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
<div class=" col-sm-7">
151151

152152
<div class="responsive-container">
153-
<div style="margin-top: 23px;">
153+
<div style="margin-top: 23px;" id="Download">
154154
<a id="DownloadButton" href="https://west-wind.com/files/MarkdownMonsterSetup.exe"
155155
class="btn btn-lg btn-primary"
156156
style="width: 37rem; text-align: left"
@@ -193,7 +193,7 @@ user folder.">Portable Zip</a> &bull;
193193
@if(LatestVersion != Version) {
194194
<text>&bull;</text>
195195

196-
<a href="https://west-wind.com/files/MarkdownMonsterSetup_Latest.exe"
196+
<a href="https://west-wind.com/files/MarkdownMonsterSetup_Latest.exe" id="DownloadPrerelease"
197197
title="Latest pre-release installer that might be slightly ahead of the current release version."> pre-Release</a>
198198
<small style="font-size: 0.7em">(@LatestVersion)</small>
199199
}
@@ -211,23 +211,17 @@ user folder.">Portable Zip</a> &bull;
211211
Markdown Monster on as many computers you wish with your license.
212212
</p>
213213
<p>
214-
Want a <a href="purchase#Contribute">free license</a>? Contributors who help out with code, feature suggestions,
215-
documentation or promotion qualify for a free license.
216-
</p>
217-
<p>
218214
This download provides a fully functional, non-limited version that includes all of
219215
Markdown Monster's features.<br />
220216
</p>
221217
<p>
222-
Thanks for playing fair.
223-
</p>
224-
218+
<i><b>Thanks for playing fair.</b></i>
219+
</p>
225220
</div>
226-
227221
</div>
228222
</div>
229223

230-
<div style="margin-top: 20px;">
224+
<div>
231225

232226
<hr style="background: #888; color: #888" />
233227

@@ -266,7 +260,7 @@ c:\> choco upgrade markdownmonster
266260
<div id="FeatureList" class="panel-body">
267261
<div>
268262
<i class="fa fa-check-circle"></i>
269-
Microsoft Windows 11-7 or Server 2019-2012
263+
Microsoft Windows 11-7 or Server 2022-2012
270264
</div>
271265
<div>
272266
<i class="fa fa-check-circle"></i>

0 commit comments

Comments
 (0)