Skip to content

Commit

Permalink
Project Maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
RickStrahl committed Jan 6, 2017
1 parent 2d8f798 commit 3e034de
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 16 deletions.
8 changes: 6 additions & 2 deletions AddIns/WebLogAddin/MetaWebLogApi/Mapper.cs
Expand Up @@ -120,7 +120,9 @@ internal static XmlRpcMediaObjectInfo MediaObjectInfo(MediaObjectInfo input)
{
return new XmlRpcMediaObjectInfo
{
url = input.URL
url = input.URL,
id = input.Id,
file = input.File
};
}
internal static XmlRpcOption Option(Option input)
Expand Down Expand Up @@ -411,7 +413,9 @@ internal static MediaObjectInfo MediaObjectInfo(XmlRpcMediaObjectInfo input)
{
return new MediaObjectInfo
{
URL = input.url
URL = input.url,
Id = input.id,
File = input.file
};
}

Expand Down
Binary file added Art/MarkdownMonsterSquare.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Art/MarkdownMonsterTall.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion Install/BuildInstall.ps1
Expand Up @@ -24,4 +24,7 @@ del ".\Builds\CurrentRelease\MarkdownMonsterPortable.zip"

"Done!"

dir .\Builds\CurrentRelease
dir .\Builds\CurrentRelease


get-childitem .\builds\CurrentRelease\* -include *.* | foreach-object { "{0}`t{1}`t{2:n0}`t`t{3}" -f $_.Name, $_.LastWriteTime, $_.Length, [System.Diagnostics.FileVersionInfo]::GetVersionInfo($_).FileVersion }
6 changes: 3 additions & 3 deletions Install/Builds/CurrentRelease/MarkdownMonster_Version.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<VersionInfo>
<Version>1.1.2</Version>
<ReleaseDate>January 3rd, 2017</ReleaseDate>
<Title>West Wind Markdown Monster 1.1.2 is now available</Title>
<Version>1.1.5</Version>
<ReleaseDate>January 4th, 2017</ReleaseDate>
<Title>West Wind Markdown Monster 1.1.4 is now available</Title>
<Detail>
Recent updates have added a new Presentation and Distraction Free Modes, Auto-save and Auto-backups, an updated Addin manager, print output from Html preview, a portable install, Vim and Emacs support, improved high DPI font scaling, improved native screen captures, support for pasting of images into the editor, support for multiple editor/preview sync modes and many small bug fixes and tweaks.

Expand Down
8 changes: 5 additions & 3 deletions MarkdownMonster/AppModel.cs
Expand Up @@ -501,10 +501,12 @@ private void CreateCommands()
if (Window.CloseTab(tab))
Window.TabControl.Items.Remove(tab);
}, (s, e) =>
}, (s, e) => IsEditorActive)
{
return IsEditorActive;
});
Caption = "_Close Document",
ToolTip = "Closes the active tab and asks to save the document."
};


// PREVIEW BUTTON COMMAND
PreviewBrowserCommand = new CommandBase((s, e) =>
Expand Down
2 changes: 1 addition & 1 deletion MarkdownMonster/Properties/AssemblyInfo.cs
Expand Up @@ -49,4 +49,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.1.2.0")]
[assembly: AssemblyVersion("1.1.6.0")]
6 changes: 6 additions & 0 deletions MarkdownMonsterWeb/Download.aspx
Expand Up @@ -221,6 +221,12 @@
<p>
Licenses are valid for the major version for which it was purchased such as v1.0 to v1.99.
</p>

<h3>Contribute - Get a Free License</h3>
<p>Contributors that provide valuable feedback, help out with code via Pull Requests or support
Markdown Monster in a significant way are eligible for a free license.
Contact [Rick for more info](http://west-wind.com/contact/) or - just as likely - I'll be contacting
you.</p>

<p>
<h4>No Warranty</h4>
Expand Down
17 changes: 11 additions & 6 deletions README.md
Expand Up @@ -3,7 +3,7 @@

![](Art/MarkdownMonster.png)

### Links
## Links
* **[Markdown Monster Site](http://markdownmonster.west-wind.com)**
* **[Download](http://markdownmonster.west-wind.com/download.aspx)**
* **[Install from Chocolatey](https://chocolatey.org/packages/MarkdownMonster)**
Expand All @@ -20,7 +20,7 @@ Here's what Markdown Monster looks like:

![Markdown Monster Screen Shot](ScreenShot.png)

### Features
## Features
Markdown Monster provides many useful features:

#### Markdown Editor
Expand Down Expand Up @@ -65,7 +65,7 @@ Markdown Monster provides many useful features:
JSON, XML, CSS, JavaScript, Typescript, FoxPro, CSharp and more
* Open document folder or console

### Why another Markdown Editor?
## Why another Markdown Editor?
Markdown is everywhere these days, and it's becoming a favorite format for many developers, writers and documentation experts to create lots of different kinds of content in this format. Markdown is used in a lot of different places:

* Source Code documentation files (like this one)
Expand All @@ -88,7 +88,7 @@ Want a different editor theme than the dark default or a preview theme that matc

The editor and previewer are HTML and JavaScript based, so you can also apply any custom styling and even hook up custom JavaScript code if you want to get fancy beyond the basic configurability. The preview themes are easy to modify HTML and CSS templates, so if you need to create a custom format so it matches your application's style it's quite easy to create a custom Preview theme or simply reference an online style sheet.

### Extensible with .NET Add-ins
## Extensible with .NET Add-ins
But the **key feature** and the main reason I built this tool, is that it is **extensible**, so that you and I can plug additional functionality into it. Markdown Monster includes an add-in model that lets you add buttons to the UI, interact with the active document and the entire UI and attach to life cycle event to get notifications of various application events like documents opening and closing, documents being saved and the application shutting down etc..

You can find documentation for creating Addins here:
Expand All @@ -112,7 +112,7 @@ Right now the registry is pretty sparse but here are a couple of Addins you can
* [Save Image to Azure Blob Storage](https://github.com/RickStrahl/SaveToAzureBlob-MarkdownMonster-Addin)
* [Paste Code as Gist](https://github.com/RickStrahl/PasteCodeAsGist-MarkdownMonster-Addin)

### Provided Add-ins
## Provided Add-ins
Not only does Markdown Monster allow extension via Addins - it also uses Addins for some built-in features. Specifically the Screen Capture the Weblog Publishing modules are implemented as Add-ins and demonstrate the power of the Add-in model.

#### Screen Capture Addin
Expand All @@ -124,6 +124,8 @@ Here's the **SnagIt Screen Capture** in action:

![](SnagItScreenCapture.gif)

> Due to a confirmed bug in SnagIt 13's automation interface, SnagIt 13 currently does not work with Markdown Monster. Version 12 and older work fine, but if you're only using SnagIt 13 you have to temporarily resort to using the built-in screen capture tool. TechSmith is aware of the issue and have promised a fix in an upcoming patch release.
If you don't have SnagIt installed or you simply prefer a more light weight but less full featured solution, you can use the **built-in Screen Capture** that's a native part of Markdown Monster and doesn't require any external software:

![](ClassicScreenCapture.gif)
Expand Down Expand Up @@ -173,10 +175,13 @@ The support from the community so far with feedback, bug reports and ideas for n
## License
Although we provide the source in the open, Markdown Monster is licensed software &copy; West Wind Technologies, 2016-2017.

Markdown Monster can be downloaded and evaluated for free, but a [reasonably priced license](http://store.west-wind.com/product/MARKDOWN_MONSTER) must be purchased for continued use. Licenses are **per user**, rather than per machine, so an individual user can use Markdown Monster on as many computers they wish with their license.
Markdown Monster can be downloaded and evaluated for free, but a [reasonably priced license](http://store.west-wind.com/product/MARKDOWN_MONSTER) must be purchased for continued use. Licenses are **per user**, rather than per machine, so an individual user can use Markdown Monster on as many computers they wish with their license. <a href="https://store.west-wind.com/product/markdown_monster_site">Organization licenses</a> are also available.

Thanks for playing fair.

#### Contribute - get a Free License
Contributors that provide valuable feedback, help out with code or support Markdown Monster in a significant way are eligible for a free license. Contact [Rick for more info](http://west-wind.com/contact/).

## Warranty Disclaimer: No Warranty!
IN NO EVENT SHALL THE AUTHOR, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE
THIS PROGRAM AND DOCUMENTATION, BE LIABLE FOR ANY COMMERCIAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM INCLUDING, BUT NOT LIMITED TO, LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS, EVEN IF YOU OR OTHER PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
Expand Down

0 comments on commit 3e034de

Please sign in to comment.