Skip to content

Commit

Permalink
Fix missing resource in light theme.
Browse files Browse the repository at this point in the history
  • Loading branch information
clovett committed Jul 7, 2024
1 parent cfdf5ef commit 27d5914
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Source/WPF/MoneyPackage/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:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap rescap">
<Identity Name="43906ChrisLovett.MyMoney.Net" Publisher="CN=Chris Lovett, O=Chris Lovett, S=Washington, C=US" Version="2.1.0.23" />
<Identity Name="43906ChrisLovett.MyMoney.Net" Publisher="CN=Chris Lovett, O=Chris Lovett, S=Washington, C=US" Version="2.1.0.24" />
<Properties>
<DisplayName>MyMoney.Net</DisplayName>
<PublisherDisplayName>Chris Lovett</PublisherDisplayName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<ApplicationRevision>23</ApplicationRevision>
<ApplicationVersion>2.1.0.23</ApplicationVersion>
<ApplicationRevision>24</ApplicationRevision>
<ApplicationVersion>2.1.0.24</ApplicationVersion>
<BootstrapperEnabled>True</BootstrapperEnabled>
<Configuration>Release</Configuration>
<CreateWebPageOnPublish>True</CreateWebPageOnPublish>
Expand Down
2 changes: 1 addition & 1 deletion Source/WPF/MyMoney/Setup/changes.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<changes>
<change version="2.1.0.23" date="7/6/2024">
<change version="2.1.0.24" date="7/6/2024">
- Add "move" transaction command so you can move a transaction and all it's attachments to a different account.
- Add "move" operation for attachments for transaction cut/paste.
</change>
Expand Down
1 change: 1 addition & 0 deletions Source/WPF/MyMoney/Themes/Light.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<SolidColorBrush x:Key="ListItemSelectedBorderBrush" Color="Transparent"/>
<SolidColorBrush x:Key="ListItemSelectedHoverBrush" Color="#F0F0F0"/>
<SolidColorBrush x:Key="ListItemReconcilingBackgroundBrush" Color="#A0419441"/>
<SolidColorBrush x:Key="ListItemCuttingBackgroundBrush" Color="Red"/>

<SolidColorBrush x:Key="GridNormalBackgroundBrush" Color="{StaticResource GridNormalBackgroundColor}"/>
<SolidColorBrush x:Key="GridAlternateBackgroundBrush" Color="{StaticResource GridAlternateBackgroundColor}"/>
Expand Down
4 changes: 2 additions & 2 deletions Source/WPF/Version/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
// And also sync this with the MSIX package manifest in
// ~\MyMoney.Net\Source\WPF\MoneyPackage\Package.appxmanifest

[assembly: AssemblyVersion("2.1.0.23")]
[assembly: AssemblyFileVersion("2.1.0.23")]
[assembly: AssemblyVersion("2.1.0.24")]
[assembly: AssemblyFileVersion("2.1.0.24")]
4 changes: 2 additions & 2 deletions Source/WPF/Version/Version.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ApplicationRevision>23</ApplicationRevision>
<ApplicationVersion>2.1.0.23</ApplicationVersion>
<ApplicationRevision>24</ApplicationRevision>
<ApplicationVersion>2.1.0.24</ApplicationVersion>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion Source/WPF/Version/VersionMaster.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0.23
2.1.0.24

0 comments on commit 27d5914

Please sign in to comment.