Skip to content

Commit

Permalink
v1.6.0.4 - fix #88
Browse files Browse the repository at this point in the history
  • Loading branch information
RevoLand committed Dec 7, 2020
1 parent b0dc7a6 commit cfc2cf6
Show file tree
Hide file tree
Showing 11 changed files with 347 additions and 3,867 deletions.
Binary file modified Binaries/Steam Library Manager.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions Binaries/Version.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>1.6.0.3</version>
<url>http://github.com/RevoLand/Steam-Library-Manager/releases/download/v1.6.0.3/Steam.Library.Manager.zip</url>
<version>1.6.0.4</version>
<url>http://github.com/RevoLand/Steam-Library-Manager/releases/download/v1.6.0.4/Steam.Library.Manager.zip</url>
<changelog>https://github.com/RevoLand/Steam-Library-Manager/releases</changelog>
<mandatory>false</mandatory>
</item>
439 changes: 266 additions & 173 deletions CHANGELOG.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Source/Steam Library Manager/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ protected override void OnStartup(StartupEventArgs e)
try
{
ThemeManager.ChangeAppStyle(Current,
ThemeManager.GetAccent(Steam_Library_Manager.Properties.Settings.Default.ThemeAccent),
ThemeManager.GetAppTheme(Steam_Library_Manager.Properties.Settings.Default.BaseTheme));
ThemeManager.GetAccent(Steam_Library_Manager.Properties.Settings.Default.ThemeAccent) ?? ThemeManager.GetAccent("Blue"),
ThemeManager.GetAppTheme(Steam_Library_Manager.Properties.Settings.Default.BaseTheme) ?? ThemeManager.GetAppTheme("BaseLight"));

base.OnStartup(e);

Expand Down
20 changes: 20 additions & 0 deletions Source/Steam Library Manager/FodyWeavers.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@
<xs:documentation>Used to control if the On_PropertyName_Changed feature is enabled.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="TriggerDependentProperties" type="xs:boolean">
<xs:annotation>
<xs:documentation>Used to control if the Dependent properties feature is enabled.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="EnableIsChangedProperty" type="xs:boolean">
<xs:annotation>
<xs:documentation>Used to control if the IsChanged property feature is enabled.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="EventInvokerNames" type="xs:string">
<xs:annotation>
<xs:documentation>Used to change the name of the method that fires the notify event. This is a string that accepts multiple values in a comma separated form.</xs:documentation>
Expand All @@ -31,6 +41,16 @@
<xs:documentation>Used to control if equality checks should use the static Equals method resolved from the base class.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="SuppressWarnings" type="xs:boolean">
<xs:annotation>
<xs:documentation>Used to turn off build warnings from this weaver.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="SuppressOnPropertyNameChangedWarning" type="xs:boolean">
<xs:annotation>
<xs:documentation>Used to turn off build warnings about mismatched On_PropertyName_Changed methods.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="Costura" minOccurs="0" maxOccurs="1">
Expand Down
41 changes: 0 additions & 41 deletions Source/Steam Library Manager/NLog.config

This file was deleted.

Loading

0 comments on commit cfc2cf6

Please sign in to comment.