<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="https://shazwazza.com/rss/xslt"?>
<rss xmlns:a10="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>Shazwazza</title>
    <link>https://shazwazza.com/</link>
    <description>My blog which is pretty much just all about coding</description>
    <generator>Articulate, blogging built on Umbraco</generator>
    <image>
      <url>/media/0libq25y/frog.png?rmode=max&amp;v=1da0e911f4e6890</url>
      <title>Shazwazza</title>
      <link>https://shazwazza.com/</link>
    </image>
    <item>
      <guid isPermaLink="false">1290</guid>
      <link>https://shazwazza.com/post/articulate-430-with-support-for-markdown-code-snippets-and-syntax-highlighting/</link>
      <category>Articulate</category>
      <title>Articulate 4.3.0 with support for markdown code snippets and syntax highlighting</title>
      <description>&lt;p&gt;I'm happy to announce that &lt;a href="https://github.com/Shazwazza/Articulate/releases/tag/v4.3.0"&gt;Articulate 4.3.0 is shipped&lt;/a&gt; and includes a great new feature that I've been wanting/needing:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The ability to create markdown based posts with support for GitHub style code fences/snippets and syntax highlighting for (almost) any coding language.&lt;/strong&gt; &lt;a href="https://github.com/Shazwazza/Articulate/issues/341"&gt;See #341&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Now I can finally do away with using Live Writer for my blog and having to manually add css classes to the html for syntax highlighting... yes that's what I've been doing ‍♂️&lt;/p&gt;
&lt;h2 id="upgrading"&gt;Upgrading&lt;/h2&gt;
&lt;p&gt;Once you've updated to the 4.3.0 release, you'll probably need to change the Property Editor of the &lt;code&gt;Articulate Markdown&lt;/code&gt; Data Type to be &lt;code&gt;Articulate Markdown editor&lt;/code&gt; since it's most likely currently configured to the default/basic Umbraco markdown editor.&lt;/p&gt;
&lt;p&gt;You'll then need to update your Post.cshtml theme file to include the correct Prism dependencies. For example, here's the &lt;a href="https://github.com/Shazwazza/Articulate/commit/40ada4e5cfa65bc6e9eae73c35dfae057453bda7#diff-0227666dd80b3592a91378b549d779105eeb896db0c56bd84f5ec2c0ae6c2d46"&gt;update/diff to the VAPOR theme&lt;/a&gt; which adds these dependencies. It's just ensuring that the Prism stylesheet is added to the header and the Prism.js dependencies are appended to the Post.cshtml file.&lt;/p&gt;
&lt;p&gt;Once that's all done, your set!&lt;/p&gt;
&lt;h2 id="creating-markdown-posts"&gt;Creating markdown posts&lt;/h2&gt;
&lt;p&gt;If you didn't already know, Articulate has always had a &lt;a href="https://github.com/Shazwazza/Articulate/wiki/Creating-a-blog-post#using-markdown-from-your-browser-works-great-with-mobile-phones-too"&gt;browser based markdown editor to create posts&lt;/a&gt;. You can simply go to your Articulate root URL and go to the path: &lt;code&gt;a-new&lt;/code&gt; to load the markdown editor. Previously this editor would require you to authenticate at the end of writing your post (if you weren't already authenticated) but now it requires authentication up-front.&lt;/p&gt;
&lt;p&gt;Once it's loaded, it's just a text editor and you can use your all the normal markdown syntax. You can even upload or take photos with the editor &lt;/p&gt;
&lt;p&gt;Of course you can just use the back office markdown editor to create or update posts too but I find for quickly getting a post written and published it's faster to use the &lt;code&gt;/a-new&lt;/code&gt; editor... and it works on mobile.&lt;/p&gt;
&lt;h2 id="using-code-fences-with-syntax-highlighting"&gt;Using code fences with syntax highlighting&lt;/h2&gt;
&lt;p&gt;&lt;a href="https://docs.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks"&gt;GitHub's documentation&lt;/a&gt; shows how this works. The typical code fence is 3x back-ticks above and below your code snippet. If you want to add language specific syntax highlighting you can use 3x back-ticks + the language name/alias. For example, c# would be: &lt;code&gt;```cs&lt;/code&gt; (or c# or csharp) and JavaScript would be &lt;code&gt;```js&lt;/code&gt;. &lt;a href="https://docs.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks#syntax-highlighting"&gt;GitHub's implementation&lt;/a&gt; is different from what Articulate uses so it may not be a perfect 1:1 result but should be fairly close. Articulate is using a combination of:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/xoofx/markdig"&gt;Markdig&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/ilich/Markdig.Prism"&gt;Markdig.Prism&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://prismjs.com/"&gt;Prism.js&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="rendered-examples"&gt;Rendered Examples&lt;/h3&gt;
&lt;p&gt;There are just rendered examples based on the default prism styles. I wrote this blog post with the Articulate markdown editor so you can see the results.&lt;/p&gt;
&lt;p&gt;Here's an example of a rendered csharp code fence:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-csharp"&gt;/// &amp;lt;summary&amp;gt;
/// This is an example of the ArticulateComposer
/// &amp;lt;/summary&amp;gt;
[RuntimeLevel(MinLevel = RuntimeLevel.Run)]
public class ArticulateComposer : IUserComposer
{
    public void Compose(Composition composition)
    {
        composition.RegisterUnique&amp;lt;ArticulateRoutes&amp;gt;();
        composition.RegisterUnique&amp;lt;ContentUrls&amp;gt;();
        composition.RegisterUnique&amp;lt;ArticulateDataInstaller&amp;gt;();
        composition.RegisterUnique&amp;lt;ArticulateTempFileSystem&amp;gt;(
            x =&amp;gt; new ArticulateTempFileSystem(&amp;quot;~/App_Data/Temp/Articulate&amp;quot;));

        // TODO: Register remaining services....
    }
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Here's an example of a rendered js code fence:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-js"&gt;(function () {
    'use strict';

    /**
     * An example of the articulateOptionsManagementController
     * @param {any} $scope
     * @param {any} $element
     * @param {any} $timeout
     */
    function articulateOptionsManagementController($scope, $element, $timeout) {

        var vm = this;
        vm.viewState = &amp;quot;list&amp;quot;;
        vm.selectedGroup = null;
        
        // TODO: Fill in the rest....
    }

    var articulateOptionsMgmtComponent = {
        templateUrl: '../../App_Plugins/Articulate/BackOffice/PackageOptions/articulatemgmt.html',        
        controllerAs: 'vm',
        controller: articulateOptionsManagementController
    };

    angular.module(&amp;quot;umbraco&amp;quot;)
        .component('articulateOptionsMgmt', articulateOptionsMgmtComponent);
})();
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Here's an example of a rendered ruby code fence:&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-ruby"&gt;class Dog  
  def initialize(breed, name)  
    # Instance variables  
    @breed = breed  
    @name = name  
  end  
  
  def bark  
    puts 'Ruff! Ruff!'  
  end  
  
  def display  
    puts &amp;quot;I am of #{@breed} breed and my name is #{@name}&amp;quot;  
  end  
end
&lt;/code&gt;&lt;/pre&gt;</description>
      <pubDate>Thu, 23 Mar 2023 15:10:26 Z</pubDate>
      <a10:updated>2023-03-23T15:10:26Z</a10:updated>
    </item>
    <item>
      <guid isPermaLink="false">1224</guid>
      <link>https://shazwazza.com/post/articulate-400-released-for-umbraco-version-8/</link>
      <category>Articulate</category>
      <category>Umbraco</category>
      <title>Articulate 4.0.0 released for Umbraco version 8</title>
      <description>&lt;p&gt;It’s finally out in the wild! Articulate &lt;a rel="noopener" href="https://github.com/Shazwazza/Articulate/releases/tag/v4.0.0" target="_blank"&gt;4.0.0 is a pretty huge release&lt;/a&gt; so here’s the rundown…&lt;/p&gt;
&lt;h2&gt;Installation&lt;/h2&gt;
&lt;p&gt;As a developer, my recommendation is to install packages with Nuget&lt;/p&gt;
&lt;div style="width: 100%;"&gt;
&lt;div style="padding: 10px; color: #ffffff; line-height: 1.5; font-family: consolas, menlo, monaco,'Courier New', monospace; background-color: #002440;"&gt;PM &amp;gt; Install-Package Articulate -Version 4.0.0&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;If you install from Nuget you will not automatically get the Articulate data structures installed because Nuget can’t talk to your live website/database so once you’ve installed the package and run your site, head over to the “Settings” section and you’ll see an “Articulate” dashboard there, click on the “Articulate Data Installer” tile and you’ll get all the data structures and a demo blog installed.&lt;/p&gt;
&lt;p&gt;Alternatively you can install it directly from the Umbraco back office by searching for “Articulate” in the Packages section, or you can download the zip from &lt;a href="https://our.umbraco.com/packages/starter-kits/articulate/"&gt;https://our.umbraco.com/packages/starter-kits/articulate/&lt;/a&gt; and install that in the Umbraco back office. If you install this way all of the data structures will be automatically installed.&lt;/p&gt;
&lt;h2&gt;Upgrading&lt;/h2&gt;
&lt;p&gt;I have no official documentation or way of doing this right now . I’ve written up some instructions on the GitHub release &lt;a rel="noopener" href="https://github.com/Shazwazza/Articulate/releases/tag/v4.0.0" target="_blank"&gt;here&lt;/a&gt; but essentially it’s going to require you to do some investigations and manual updates yourselves. There’s very little schema changes and only small amount of model changes so it shouldn’t be too painful. Good luck!&lt;/p&gt;
&lt;p&gt;&lt;em&gt;(note: I have yet to give it a try myself)&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;Support for Umbraco 8&lt;/h2&gt;
&lt;p&gt;I think it will come as no surprise that Articulate 4.0.0 is not compatible with any Umbraco v7 version. Articulate 4.0.0 requires a minimum of Umbraco &lt;strong&gt;8.0.2&lt;/strong&gt;. Moving forward I will only release more Articulate 3.x versions to support v7 based on community pull requests, my future efforts  will be solely focused on 4.x and above for Umbraco 8+.&lt;/p&gt;
&lt;h2&gt;Theme, Features + Bug fixes&lt;/h2&gt;
&lt;p&gt;There are several nice bug fixes in this release including a few PR sent in by the community – THANK YOU! &lt;/p&gt;
&lt;p&gt;As for features, this is really all about updating the Themes. Previously Articulate shipped with 6 themes and all of them had a vast range of different features which I never really liked so I spent some time enhancing all of the ones I wanted to keep and made them look a bit prettier too. I’ve removed my own “Shazwazza” theme since it was way outdated to my own site here, plus I don’t really want other people to have the exact same site as me ;) But since that was the most feature rich theme I had to upgrade other ones. I also removed the old ugly Edictum them… pretty sure nobody used that one anyways.&lt;/p&gt;
&lt;p&gt;Here’s the theme breakdown (&lt;a rel="noopener" href="https://github.com/Shazwazza/Articulate/wiki/Installed-Themes" target="_blank"&gt;it’s documented too&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&lt;a href="https://shazwazza.com/media/articulate/open-live-writer-articulate-400-released-for-umbraco-8_a92d-image_2.png"&gt;&lt;img style="border: 0px currentcolor; display: inline; background-image: none;" src="https://shazwazza.com/media/articulate/open-live-writer-articulate-400-released-for-umbraco-8_a92d-image_thumb.png" border="0" alt="image" title="image" width="600" height="210" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I’ve also updated the default installation data to contain more than one blog post and an author profile so folks can see a better representation of the blog features on install. And I updated the default images and styling so it has a theme (which is Coffee ☕) and is less quirky (no more bloody rabbit or horse face photos )&lt;/p&gt;
&lt;p&gt;Here’s the breakdown of what they look like now…&lt;/p&gt;
&lt;h3&gt;VAPOR&lt;/h3&gt;
&lt;p&gt;This is the default theme installed, it is a very clean &amp;amp; simple theme. Originally created by &lt;a href="http://www.sethlilly.com/open-source/vapor/"&gt;Seth Lilly&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://shazwazza.com/media/articulate/open-live-writer-articulate-400-released-for-umbraco-8_a92d-theme-vapor_2.png"&gt;&lt;img style="border: 0px currentcolor; display: inline; background-image: none;" src="https://shazwazza.com/media/articulate/open-live-writer-articulate-400-released-for-umbraco-8_a92d-theme-vapor_thumb.png" border="0" alt="theme-vapor" title="theme-vapor" width="600" height="422" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Material&lt;/h3&gt;
&lt;p&gt;This is based of of Google's &lt;a href="https://getmdl.io/"&gt;material design lite&lt;/a&gt; and is based off their their &lt;a href="https://getmdl.io/templates/blog/index.html"&gt;blog template&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://shazwazza.com/media/articulate/open-live-writer-articulate-400-released-for-umbraco-8_a92d-theme-material_2.png"&gt;&lt;img style="border: 0px currentcolor; display: inline; background-image: none;" src="https://shazwazza.com/media/articulate/open-live-writer-articulate-400-released-for-umbraco-8_a92d-theme-material_thumb.png" border="0" alt="theme-material" title="theme-material" width="600" height="422" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Phantom&lt;/h3&gt;
&lt;p&gt;Original theme for Ghost can be found here: &lt;a href="https://github.com/Bartinger/phantom/"&gt;https://github.com/Bartinger/phantom/&lt;/a&gt;. A nice simple responsive theme.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://shazwazza.com/media/articulate/open-live-writer-articulate-400-released-for-umbraco-8_a92d-theme-phantom_2.png"&gt;&lt;img style="border: 0px currentcolor; display: inline; background-image: none;" src="https://shazwazza.com/media/articulate/open-live-writer-articulate-400-released-for-umbraco-8_a92d-theme-phantom_thumb.png" border="0" alt="theme-phantom" title="theme-phantom" width="600" height="318" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Mini&lt;/h2&gt;
&lt;p&gt;The original author's site can be found here: &lt;a href="http://www.thyu.org/www/"&gt;http://www.thyu.org/www/&lt;/a&gt; but unfortunately their demo site for the Ghost theme is down. The theme's repository is here &lt;a href="https://github.com/thyu/minighost"&gt;https://github.com/thyu/minighost&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://shazwazza.com/media/articulate/open-live-writer-articulate-400-released-for-umbraco-8_a92d-theme-mini_2.png"&gt;&lt;img style="border: 0px currentcolor; display: inline; background-image: none;" src="https://shazwazza.com/media/articulate/open-live-writer-articulate-400-released-for-umbraco-8_a92d-theme-mini_thumb.png" border="0" alt="theme-mini" title="theme-mini" width="600" height="302" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2&gt;Hope you enjoy the updates!&lt;/h2&gt;</description>
      <pubDate>Thu, 23 Mar 2023 15:09:25 Z</pubDate>
      <a10:updated>2023-03-23T15:09:25Z</a10:updated>
    </item>
    <item>
      <guid isPermaLink="false">1195</guid>
      <link>https://shazwazza.com/post/articulate-300-has-finally-arrived/</link>
      <category>Articulate</category>
      <title>Articulate 3.0.0 has finally arrived</title>
      <description>&lt;p&gt;It’s taken me forever to get &lt;a href="https://github.com/Shazwazza/Articulate/releases/tag/v3.0.0"&gt;this release out&lt;/a&gt;, mostly due to lack of time, but it’s finally here! Huge thanks to many community members who helped with this release, here’s some shout outs – THANKS! (sorry many I don’t know real names)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/simonech"&gt;Simone Chiaretta&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/stokesy43"&gt;stokesy43&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/warrenbuckley"&gt;Warren Buckley&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/nvisage-gf"&gt;nvisage-gf&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/gavinfaux"&gt;Gavin Faux&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/skidmow"&gt;skidmow&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/steve-swanson"&gt;steve-swanson&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/AndyButland"&gt;Andy Butland&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/Lukejkw"&gt;Luke Warren&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Features features and more features&lt;/h2&gt;
&lt;p&gt;There’s a ton of new shiny things in this release. Here’s the &lt;a href="https://github.com/Shazwazza/Articulate/milestone/11?closed=1"&gt;milestone on GitHub for full details&lt;/a&gt; but I’ll run through some of the good ones here&lt;/p&gt;
&lt;h3&gt;Nuget&lt;/h3&gt;
&lt;p&gt;Yay finally! This has been asked for forever and I’ve finally done it. The blocking thing for this for me was that if you installed via Nuget you wouldn’t be able to install all of the demo data correctly. &lt;em&gt;Package Migrations&lt;/em&gt; is a concept that would fix this but that hasn’t been integrated into the Umbraco core just yet. So in the meantime I’ve updated the Articulate dashboard to easily allow you to install the demo data. In fact this can be used to upgrade installations too and will put all the schema elements in sync like data types, document types, etc… with the latest release&lt;/p&gt;
&lt;p&gt;&lt;img style="border: 0px currentcolor; background-image: none;" src="https://user-images.githubusercontent.com/1742685/30466970-c0758c22-9a24-11e7-9f31-21b9ade46ceb.png" border="0" alt="image" width="600" height="524" /&gt;&lt;/p&gt;
&lt;h3&gt;Blog post feature image&lt;/h3&gt;
&lt;p&gt;Each blog post document now has a specific feature Image property and all of the default themes have been updated to use this image. Of course if you don’t want or need a feature image per post, you can easily just ignore it in your blog theme but these days every blog post has a feature image. This also give us the ability to have thumbnails for each blog post – which is now also a new feature. It gets even better though, both the Live Writer and the &lt;a href="https://github.com/Shazwazza/Articulate/wiki/Creating-a-blog-post#using-markdown-from-your-browser-works-great-with-mobile-phones-too"&gt;Markdown editor (the one you can use at the /a-new path&lt;/a&gt;) both support updating this feature image with the first image found in the post so you don’t have to worry about populating it afterwards – this is a toggle you can turn on/off&lt;/p&gt;
&lt;p&gt;&lt;a href="https://shazwazza.com/media/articulate/open-live-writer-bb41f52f68a9_dc4b-image_2.png"&gt;&lt;img style="border: 0px currentcolor; display: inline; background-image: none;" src="https://shazwazza.com/media/articulate/open-live-writer-bb41f52f68a9_dc4b-image_thumb.png" border="0" alt="image" title="image" width="400" height="293" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Edit Themes in the back office&lt;/h3&gt;
&lt;p&gt;Yes you can! You can even create them from the back office. There’s a new tree in the settings section that will allow you to duplicate an existing theme and then you can update, add and remove any theme files you want. It uses the great ACE editor that powers the template and script editors to edit the files.&lt;/p&gt;
&lt;p&gt;Here’s creating a new theme:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://shazwazza.com/media/articulate/open-live-writer-bb41f52f68a9_dc4b-image_4.png"&gt;&lt;img style="border: 0px currentcolor; display: inline; background-image: none;" src="https://shazwazza.com/media/articulate/open-live-writer-bb41f52f68a9_dc4b-image_thumb_1.png" border="0" alt="image" title="image" width="400" height="325" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here’s creating a new theme file:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://shazwazza.com/media/articulate/open-live-writer-bb41f52f68a9_dc4b-image_6.png"&gt;&lt;img style="border: 0px currentcolor; display: inline; background-image: none;" src="https://shazwazza.com/media/articulate/open-live-writer-bb41f52f68a9_dc4b-image_thumb_2.png" border="0" alt="image" title="image" width="400" height="252" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Date formatted blog post URLs&lt;/h3&gt;
&lt;p&gt;Normally the URLs in Articulate are formatted just by name,&lt;/p&gt;
&lt;p&gt;for example: &lt;em&gt;https://shazwazza.com/post/how-to-set-rewrite-method-on-queries-lazily-in-lucene/&lt;/em&gt;&lt;em&gt;  &lt;/em&gt;&lt;/p&gt;
&lt;p&gt;but it’s been requested to format URLs with date parts such as:  &lt;em&gt;/blog/2014/10/17/my-article/&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;That can now be achieved with a simple configuration option on your Articulate root node:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://shazwazza.com/media/articulate/open-live-writer-bb41f52f68a9_dc4b-image_8.png"&gt;&lt;img style="border: 0px currentcolor; display: inline; background-image: none;" src="https://shazwazza.com/media/articulate/open-live-writer-bb41f52f68a9_dc4b-image_thumb_3.png" border="0" alt="image" title="image" width="400" height="332" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Author pages&lt;/h3&gt;
&lt;p&gt;Each post now has a link to it’s author and if the theme allows it there’s an author listing page just like the categories/tags listing pages that show all posts by Author. Each author can also have their own bio page which is also just part of a theme.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;There’s tons more so please have a look at the &lt;a href="https://github.com/Shazwazza/Articulate/releases/tag/v3.0.0"&gt;release notes for full details.&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 23 Mar 2023 15:08:40 Z</pubDate>
      <a10:updated>2023-03-23T15:08:40Z</a10:updated>
    </item>
    <item>
      <guid isPermaLink="false">1194</guid>
      <link>https://shazwazza.com/post/articulate-105-released/</link>
      <category>Articulate</category>
      <title>Articulate 1.0.5 released</title>
      <description>&lt;h2&gt;Good news!&lt;/h2&gt; &lt;p&gt;Today Articulate 1.0.5 has been released which has quite a few issues fixed, here’s the gist:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/49"&gt;#49&lt;/a&gt; - Doesn't work with Umbraco 7.2&lt;/li&gt; &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/18"&gt;#18&lt;/a&gt; - HasProperty on a partial view throws an error when ListModel is the current Model &lt;/li&gt; &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/30"&gt;#30&lt;/a&gt; - Pager url issues in category pages when blog is not root  &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/32"&gt;#32&lt;/a&gt; - Rss feed url for tag/category breaks when the tag/category contains a hyphen  &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/39"&gt;#39&lt;/a&gt; - Update shazwazza theme to reflect shazwazza.com (&lt;em&gt;feature&lt;/em&gt;) &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/48"&gt;#48&lt;/a&gt; - Category/Tag list in Vapor and Shazwazza themes order posts ascending instead of descending  &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/41"&gt;#41&lt;/a&gt; - Articulate Pager and Search Results  &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/12"&gt;#12&lt;/a&gt; - Articulate MetaWeblog route and Contour  &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/42"&gt;#42&lt;/a&gt; - Package restore doesn't work  &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/38"&gt;#38&lt;/a&gt; - Routes need to be rebuilt when articulate root node url names are changed or when articulate root nodes are added  &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/37"&gt;#37&lt;/a&gt; - UrlHelperExtensions methods for categories/tags/search do not respect the configured values for these url names  &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/34"&gt;#34&lt;/a&gt; - Surface Controllers on Pages Using VirtualRouteHandler Don't Fire  &lt;li&gt;&lt;a href="https://github.com/Shazwazza/Articulate/issues/36"&gt;#36&lt;/a&gt; - Multiple articulate roots without domains assigned causes YSOD with routing&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;The GitHub release page is up and has the details and the package available for download: &lt;a title="https://github.com/Shazwazza/Articulate/releases/tag/v1.0.5.1" href="https://github.com/Shazwazza/Articulate/releases/tag/v1.0.5.1"&gt;https://github.com/Shazwazza/Articulate/releases/tag/v1.0.5.1&lt;/a&gt;&lt;/p&gt; &lt;p&gt;The Our release page is also up with the package available for download: &lt;a title="http://our.umbraco.org/projects/starter-kits/articulate" href="http://our.umbraco.org/projects/starter-kits/articulate"&gt;http://our.umbraco.org/projects/starter-kits/articulate&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;More good news&lt;/h2&gt; &lt;p&gt;I’m sure you are already aware of this but if not it’s worth mentioning that Umbraco 7.2 has been released!! If you haven’t seen the details, it’s a huge and exciting release, full details are on the &lt;a href="http://umbraco.com/follow-us/blog-archive/2014/12/4/umbraco-72-released" target="_blank"&gt;Umbraco blog&lt;/a&gt;&lt;/p&gt; &lt;p&gt;And Articulate 1.0.5 is compatible with Umbraco 7.2, happy days! :)&lt;/p&gt;</description>
      <pubDate>Thu, 23 Mar 2023 15:08:15 Z</pubDate>
      <a10:updated>2023-03-23T15:08:15Z</a10:updated>
    </item>
    <item>
      <guid isPermaLink="false">1240</guid>
      <link>https://shazwazza.com/post/articulate-104-released/</link>
      <category>Articulate</category>
      <title>Articulate 1.0.4 released</title>
      <description>&lt;p&gt;I’ve finally got around to releasing &lt;a href="https://github.com/Shandem/Articulate" target="_blank"&gt;Articulate&lt;/a&gt; 1.0.4 today. Want to say a big thanks to all those who submitted pull requests, you guys rock! There’s a few nice fixes in this release but most importantly it fixes the issues with multi-tenancy when domains are assigned in Umbraco.&lt;/p&gt; &lt;p&gt;Here’s the release notes on GitHub with links to each issue fixed:&lt;/p&gt; &lt;p&gt;&lt;a title="https://github.com/Shandem/Articulate/releases/tag/1.0.4" href="https://github.com/Shandem/Articulate/releases/tag/1.0.4"&gt;https://github.com/Shandem/Articulate/releases/tag/1.0.4&lt;/a&gt;&lt;/p&gt; &lt;p&gt;You can download the Umbraco package from there or from Our here:&lt;/p&gt; &lt;p&gt;&lt;a title="http://our.umbraco.org/projects/starter-kits/articulate" href="http://our.umbraco.org/projects/starter-kits/articulate"&gt;http://our.umbraco.org/projects/starter-kits/articulate&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Unfortunately I haven’t got around to getting this on Nuget yet – That’s because it has it’s own challenges since I’d like to perform a full Umbraco data install via Nuget… coming soon I hope :)&lt;/p&gt; &lt;p&gt;Enjoy!&lt;/p&gt;</description>
      <pubDate>Thu, 23 Mar 2023 15:08:15 Z</pubDate>
      <a10:updated>2023-03-23T15:08:15Z</a10:updated>
    </item>
    <item>
      <guid isPermaLink="false">1233</guid>
      <link>https://shazwazza.com/post/this-blog-now-powered-by-articulate/</link>
      <category>Articulate</category>
      <category>Umbraco</category>
      <title>This blog now powered by Articulate</title>
      <description>&lt;p&gt;&lt;img src="https://raw.githubusercontent.com/Shandem/Articulate/master/Logo.png"&gt;&lt;/p&gt; &lt;p&gt;I’ve recently decided to build a new open source blog engine powered by &lt;a href="http://umbraco.com" target="_blank"&gt;Umbraco&lt;/a&gt; called &lt;a href="https://github.com/Shandem/Articulate" target="_blank"&gt;Articulate&lt;/a&gt;. There’s a few reasons why i wanted to do this:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;Since my full time job is an Umbraco core developer, I spend most of my time &lt;em&gt;building&lt;/em&gt; Umbraco and get very little time for &lt;em&gt;using&lt;/em&gt; Umbraco. I wanted to change this dilemma and really &lt;em&gt;use&lt;/em&gt; Umbraco and utilize many of the features we’ve been creating and try to push some of it’s boundaries. For me this is a perfect way to find inspiration for new Umbraco features and enhancements.&lt;/li&gt; &lt;li&gt;I’ve wanted to move my blog away from &lt;a href="http://www.dotnetblogengine.net/" target="_blank"&gt;BlogEngine.Net&lt;/a&gt; to Umbraco for quite some time (&lt;em&gt;&lt;a href="http://en.wikipedia.org/wiki/Eating_your_own_dog_food" target="_blank"&gt;dogfooding&lt;/a&gt;&lt;/em&gt;) but I really needed to have every feature that I use in BlogEngine.Net available&lt;/li&gt; &lt;li&gt;I wanted to make the blog experience as simple as possible in Umbraco&lt;/li&gt; &lt;li&gt;I wanted to be able to write blog posts directly from my mobile phone &lt;em&gt;easily&lt;/em&gt; using the web&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;I’ve got some &lt;a href="https://github.com/Shandem/Articulate/wiki" target="_blank"&gt;documentation&lt;/a&gt; written and I’ll keep updating this over time but hopefully there’s enough there to get you started. Since Articulate is open source and hosted on GitHub, any community contributions are hugely welcomed :) Whether that’s core code additions, fixes, documentation, etc… any contribution is a big help. &lt;/p&gt; &lt;p&gt;Articulate templates are based on themes and I think it would be super awesome if people started creating their own themes and releasing them as their own packages or including them in the Articulate core for release. &lt;a href="https://github.com/Shandem/Articulate/wiki/Themes" target="_blank"&gt;Creating themes&lt;/a&gt; is really easy and in fact a few of the themes included with Articulate are open source MIT licensed themes migrated over from the &lt;a href="http://ghost.org" target="_blank"&gt;Ghost blogging platform&lt;/a&gt; (which is also very easy to do).&lt;/p&gt; &lt;p&gt;The first version of Articulate is out and can be downloaded either from the &lt;a href="http://our.umbraco.org/projects/starter-kits/articulate" target="_blank"&gt;Umbraco package repository&lt;/a&gt; or from &lt;a href="https://github.com/Shandem/Articulate/releases" target="_blank"&gt;GitHub&lt;/a&gt;. There are a few minor bugs in this release that have been &lt;a href="https://github.com/Shandem/Articulate/issues?state=closed" target="_blank"&gt;reported and fixed&lt;/a&gt; and I’ll have a newer version out this week. &lt;/p&gt;</description>
      <pubDate>Thu, 23 Mar 2023 15:08:14 Z</pubDate>
      <a10:updated>2023-03-23T15:08:14Z</a10:updated>
    </item>
  </channel>
</rss>