Skip to content

Commit

Permalink
Fixes installation issue with umb 7.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Shazwazza committed Aug 15, 2018
1 parent a5ecb96 commit 03ac89d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/createdPackages.config
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="1" version="3.0.1" url="https://github.com/Shandem/Articulate/" name="Articulate" folder="bf5ff19f-a27a-4e07-8b1a-49734549f378" packagepath="~/media/created-packages/Articulate_1.0.9.zip" repositoryGuid="" packageGuid="193ed5f2-3134-406b-aa14-12fe8734b4ed" hasUpdate="False" enableSkins="False" skinRepoGuid="00000000-0000-0000-0000-000000000000">
<package id="1" version="3.0.2" url="https://github.com/Shandem/Articulate/" name="Articulate" folder="bf5ff19f-a27a-4e07-8b1a-49734549f378" packagepath="~/media/created-packages/Articulate_1.0.9.zip" repositoryGuid="" packageGuid="193ed5f2-3134-406b-aa14-12fe8734b4ed" hasUpdate="False" enableSkins="False" skinRepoGuid="00000000-0000-0000-0000-000000000000">
<license url="http://opensource.org/licenses/MIT">MIT License</license>
<author url="http://shazwazza.com">Shannon Deminick</author>
<readme><![CDATA[Blogging built on Umbraco
Expand Down
2 changes: 2 additions & 0 deletions build/packageManifest.xml
Expand Up @@ -1286,6 +1286,7 @@ Supporting all the features you'd want in a blogging platform:
<DataType Name="Articulate Categories" Id="Umbraco.Tags" Definition="a72aeb12-5b28-4a47-b99a-fde14d49c1ac" DatabaseType="Nvarchar">
<PreValues>
<PreValue Id="6" Value="ArticulateCategories" Alias="group" SortOrder="0" />
<PreValue Id="7" Value="Csv" Alias="storageType" SortOrder="1" />
</PreValues>
</DataType>
<DataType Name="Articulate Cropper" Id="Umbraco.ImageCropper" Definition="c8f535ee-27b8-4d16-940d-d6c523851bb1" DatabaseType="Ntext">
Expand All @@ -1308,6 +1309,7 @@ Supporting all the features you'd want in a blogging platform:
<DataType Name="Articulate Tags" Id="Umbraco.Tags" Definition="f8404fdc-7667-4184-95c3-125b1d81314d" DatabaseType="Nvarchar">
<PreValues>
<PreValue Id="12" Value="ArticulateTags" Alias="group" SortOrder="0" />
<PreValue Id="13" Value="Csv" Alias="storageType" SortOrder="1" />
</PreValues>
</DataType>
<DataType Name="Articulate Theme Picker" Id="ArticulateThemePicker" Definition="8b57d00e-5593-45d3-affe-24203b239bd3" DatabaseType="Nvarchar">
Expand Down
3 changes: 3 additions & 0 deletions src/Articulate/UmbracoEventHandler.cs
Expand Up @@ -124,6 +124,9 @@ private static void PageCacheRefresher_CacheUpdated(PageCacheRefresher sender, U
case MessageType.RemoveByInstance:
var content = e.MessageObject as IContent;
if (content == null) return;
//TODO: There is a case when there are URL conflicts with Articulate data that when the other data is unpublished
// we'd want to rebuild articulate routes, but not sure how to handle that and we don't want to rebuild everytime
// something is unpublished
if (content.ContentType.Alias.InvariantEquals("Articulate"))
{
//ensure routes are rebuilt
Expand Down
8 changes: 4 additions & 4 deletions src/SolutionInfo.cs
Expand Up @@ -2,7 +2,7 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyCopyright("Copyright © Shannon Deminick 2017")]
[assembly: AssemblyCopyright("Copyright © Shannon Deminick 2018")]

[assembly: AssemblyCompany("Shannon Deminick")]

Expand All @@ -11,6 +11,6 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("3.0.1")]
[assembly: AssemblyFileVersion("3.0.1")]
[assembly: AssemblyInformationalVersion("3.0.1")]
[assembly: AssemblyVersion("3.0.2")]
[assembly: AssemblyFileVersion("3.0.2")]
[assembly: AssemblyInformationalVersion("3.0.2")]

0 comments on commit 03ac89d

Please sign in to comment.