Skip to content

Commit

Permalink
Merge pull request #1 from MissionLemur128/master
Browse files Browse the repository at this point in the history
Add AOMR DDT support.
  • Loading branch information
eBaeza authored Oct 11, 2024
2 parents e251f6e + c0d9b20 commit cdd0174
Show file tree
Hide file tree
Showing 8 changed files with 211 additions and 127 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
*Utility for viewing, comparing, creating and extracting files from Age of Empires III .BAR archive*

**Developer:** VladTheJunior and Kevsoft<br />
**Current version:** 0.6.0<br />
**Current version:** 0.7.0<br />

[Download Portable (.ZIP archive)](https://github.com/eBaeza/Resource-Manager/releases/download/0.6.0/ResourceManager.zip)<br />
[Download Portable (.ZIP archive)](https://github.com/eBaeza/Resource-Manager/releases/download/0.7.0/ResourceManager.zip)<br />

*__Note__: Portable version may require .NET8 desktop runtime: https://dotnet.microsoft.com/en-us/download/dotnet/8.0*
*__Another Note__: Versions below .NET 6.0.5 had a bug with displaying tooltips. Be sure that you are using an updated version of .NET if you find this bug.*
Expand Down
2 changes: 1 addition & 1 deletion Resource Manager/About.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<Run FontSize="14" Text="Copyright (c) 2020-2022 VladTheJunior" />

<LineBreak />
<Run FontSize="14" Text="version: 0.6.0" />
<Run FontSize="14" Text="version: 0.7.0" />
</TextBlock>
<TextBlock
Grid.Row="1"
Expand Down
317 changes: 202 additions & 115 deletions Resource Manager/Classes/Ddt/Ddt.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Resource Manager/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Resource_Manager"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="{Binding file.barFileName, StringFormat='{}Resource Manager v0.6.0 - {0}', FallbackValue='Resource Manager v0.6.0'}"
Title="{Binding file.barFileName, StringFormat='{}Resource Manager v0.7.0 - {0}', FallbackValue='Resource Manager v0.7.0'}"
Width="1177"
Height="700"
FontFamily="{StaticResource Trajan Pro}"
Expand Down
7 changes: 2 additions & 5 deletions Resource Manager/ReleaseNotes.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</Hyperlink>
<LineBreak />
<Run FontSize="16" Text="June 1, 2022" />
<Run FontSize="14" Text="version: 0.6.0" TextDecorations="Underline"/>
<Run FontSize="14" Text="version: 0.7.0" TextDecorations="Underline"/>
</TextBlock>
<TextBlock
Grid.Row="1"
Expand All @@ -57,10 +57,7 @@
Grid.ColumnSpan="2" >
<LineBreak />
<Run FontWeight="Bold" Text="" />
<Run Text="Fixed a bug with the conversion of some PNG to WEBP." />
<LineBreak />
<Run FontWeight="Bold" Text="" />
<Run Text="Fixed a bug with previewing some PNG files." />
<Run Text="Added support for Age of Mythology Retold DDT files." />
<LineBreak />

</TextBlock>
Expand Down
2 changes: 1 addition & 1 deletion Resource Manager/Resource Manager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RootNamespace>Resource_Manager</RootNamespace>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<Version>0.6.0</Version>
<Version>0.7.0</Version>
<Authors>VladTheJunior</Authors>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ApplicationIcon>icon.ico</ApplicationIcon>
Expand Down
2 changes: 1 addition & 1 deletion ResourceManagerUpdater/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public string CurrentVersion
{
get
{
return "0.6.0";
return "0.7.0";
}
}
public string AvailableVersionUrl
Expand Down
2 changes: 1 addition & 1 deletion ResourceManagerUpdater/ResourceManagerUpdater.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<UseWPF>true</UseWPF>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>icon.ico</ApplicationIcon>
<Version>0.6.0</Version>
<Version>0.7.0</Version>
<Authors>VladTheJunior</Authors>
<Company>VladTheJunior</Company>
<Copyright>VladTheJunior</Copyright>
Expand Down

0 comments on commit cdd0174

Please sign in to comment.