Skip to content

Commit

Permalink
Bugfix RibbonTools localize
Browse files Browse the repository at this point in the history
  • Loading branch information
harborsiem committed Nov 27, 2023
1 parent 4b73713 commit 3f49708
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

### RibbonTools V1.7.1

#### Changed (RibbonTools)

- Bugfix for Localize.

### Ribbon V2.15.0 RibbonTools V1.7.0

#### Changed (Ribbon)
Expand Down
2 changes: 1 addition & 1 deletion RibbonTools/Build/ResXReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public string GetString(string key)
if (valueNavigator == null)
return null;

var result = valueNavigator.Value;
var result = valueNavigator.InnerXml; //.Value;
return result;
}

Expand Down
19 changes: 13 additions & 6 deletions RibbonTools/CommandsFrame.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion RibbonTools/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.7.0.0")]
[assembly: AssemblyFileVersion("1.7.1.0")]
2 changes: 1 addition & 1 deletion Setup/RibbonTools.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension"
xmlns:WixUI="http://schemas.microsoft.com/wix/UIExtension">
<Product Id="{905B0164-4445-46A8-82A7-BCC9F8B08393}" Name="RibbonTools" Language="1033" Version="1.7.0.0" Manufacturer="RibbonLib" UpgradeCode="8D7B31EC-7EA5-4A82-A4AB-31E2B98A3D21">
<Product Id="{FB097045-4E9A-4CE0-A969-02B340D0FDB4}" Name="RibbonTools" Language="1033" Version="1.7.1.0" Manufacturer="RibbonLib" UpgradeCode="8D7B31EC-7EA5-4A82-A4AB-31E2B98A3D21">
<Package InstallerVersion="301" Compressed="yes" InstallScope="perMachine" Platform="x86" Description="Design, Build and Preview the Ribbon" />

<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
Expand Down

0 comments on commit 3f49708

Please sign in to comment.