Skip to content

Commit

Permalink
Release version 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
t1m0thyj committed Jan 16, 2019
1 parent beda1c8 commit 899ebd5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/Compatibility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private static void UpdateThemeImageLists()
theme.nightImageList = new int[] { 14, 15, 16, 2 };
}

string newJson = JsonConvert.SerializeObject(theme);
string newJson = JsonConvert.SerializeObject(theme, Formatting.Indented);
File.WriteAllText(filePath, newJson);
}
}
Expand Down
22 changes: 11 additions & 11 deletions src/ThemeManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,21 @@ public static void Initialize()

foreach (string themeId in themeIds)
{
//try
//{
ThemeConfig theme = JsonConfig.LoadTheme(themeId);
try
{
ThemeConfig theme = JsonConfig.LoadTheme(themeId);

themeSettings.Add(theme);
themeSettings.Add(theme);

if (theme.themeId == JsonConfig.settings.themeName)
if (theme.themeId == JsonConfig.settings.themeName)
{
currentTheme = theme;
}
}
catch
{
currentTheme = theme;
DisableTheme(themeId);
}
//}
//catch
//{
// DisableTheme(themeId);
//}
}

DownloadMissingImages(FindMissingThemes());
Expand Down
2 changes: 1 addition & 1 deletion uwp/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" IgnorableNamespaces="uap mp rescap desktop">
<Identity Name="38719TimothyJohnson.WinDynamicDesktop" Publisher="CN=3C822DA5-D64C-40A9-A84A-5502C3EDD8CD" Version="2.3.0.0" />
<Identity Name="38719TimothyJohnson.WinDynamicDesktop" Publisher="CN=3C822DA5-D64C-40A9-A84A-5502C3EDD8CD" Version="3.0.0.0" />
<Properties>
<DisplayName>WinDynamicDesktop</DisplayName>
<PublisherDisplayName>Timothy Johnson</PublisherDisplayName>
Expand Down

0 comments on commit 899ebd5

Please sign in to comment.