Skip to content

Commit

Permalink
Version 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
audiamus committed May 18, 2019
1 parent 8996ca8 commit f87eb3f
Show file tree
Hide file tree
Showing 22 changed files with 767 additions and 230 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ AAX Audio Converter is configured to support high DPI monitors under Windows 10.

## Download

Windows setup package version 1.3.1, English and German, with manuals, plus FFmpeg executable:
Windows setup package version 1.4, English and German, with manuals, plus FFmpeg executable:

**[AaxAudioConverter-1.3.1-Setup.exe](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.3.1/AaxAudioConverter-1.3.1-Setup.exe)**
**[AaxAudioConverter-1.4-Setup.exe](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.4/AaxAudioConverter-1.4-Setup.exe)**

Manuals (already included in the setup package):

**[English](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.3.1/AaxAudioConverter.pdf)**
**[English](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.4/AaxAudioConverter.pdf)**

**[German](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.3.1/AaxAudioConverter.de.pdf)**
**[German](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.4/AaxAudioConverter.de.pdf)**


## Dependencies
Expand Down
4 changes: 2 additions & 2 deletions res/Setup.dat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
https://github.com/audiamus/AaxAudioConverter/releases/download/v1.3.1/AaxAudioConverter-1.3.1-Setup.exe
MD5: ff253d72f5bc2fa2d25f3b3e5e2e5572
https://github.com/audiamus/AaxAudioConverter/releases/download/v1.4/AaxAudioConverter-1.4-Setup.exe
MD5: 9f419a85ac8b24c54713329e4279ceb0
Binary file modified src/AaxAudioConverter/AaxAudioConverter.de.odt
Binary file not shown.
Binary file modified src/AaxAudioConverter/AaxAudioConverter.odt
Binary file not shown.
4 changes: 2 additions & 2 deletions src/AaxAudioConverter/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion ("1.3.1.0")]
[assembly: AssemblyFileVersion ("1.3.1.0")]
[assembly: AssemblyVersion ("1.4.0.0")]
[assembly: AssemblyFileVersion ("1.4.0.0")]
[assembly: NeutralResourcesLanguage ("en")]

27 changes: 27 additions & 0 deletions src/AaxAudioConverter/Properties/Resources.Designer.cs

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

9 changes: 9 additions & 0 deletions src/AaxAudioConverter/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -307,4 +307,13 @@ Download now?</value>
<data name="MsgOnlineUpdateInstallNow" xml:space="preserve">
<value>Install now? (Will close cuirrent AaxAudioConverter window.)</value>
</data>
<data name="HdrBitRate" xml:space="preserve">
<value>Bit rate</value>
</data>
<data name="HdrSampleRate" xml:space="preserve">
<value>Sample Rate</value>
</data>
<data name="HdrTitle" xml:space="preserve">
<value>Title</value>
</data>
</root>
36 changes: 36 additions & 0 deletions src/AaxAudioConverter/Properties/Settings.Designer.cs

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

9 changes: 9 additions & 0 deletions src/AaxAudioConverter/Properties/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,15 @@
<Setting Name="Genres" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="FlatFolders" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="FlatFolderNaming" Type="audiamus.aaxconv.lib.EFlatFolderNaming" Scope="User">
<Value Profile="(Default)">author_book</Value>
</Setting>
<Setting Name="ExtraMetaFiles" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="OnlineUpdate" Type="System.Nullable&lt;System.Boolean&gt;" Scope="User">
<Value Profile="(Default)">true</Value>
</Setting>
Expand Down
13 changes: 13 additions & 0 deletions src/AaxAudioConverter/Resources.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,18 @@ public static Resources Default {
public string MsgOnlineUpdateInstall => R.MsgOnlineUpdateInstall;
public string MsgOnlineUpdateInstallNow => R.MsgOnlineUpdateInstallNow;
public string MsgOnlineUpdateInstallLater => R.MsgOnlineUpdateInstallLater;

public string HdrAuthor => R.HdrAuthor;
public string HdrTitle => R.HdrTitle;
public string HdrNarrator => R.HdrNarrator;
public string HdrDuration => R.HdrDuration;
public string HdrYear => R.HdrYear;
public string HdrPublisher => R.HdrPublisher;
public string HdrCopyright => R.HdrCopyright;
public string HdrGenre => R.HdrGenre;
public string HdrSampleRate => R.HdrSampleRate;
public string HdrBitRate => R.HdrBitRate;


}
}
108 changes: 82 additions & 26 deletions src/AaxAudioConverter/SettingsForm.Designer.cs

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

Loading

0 comments on commit f87eb3f

Please sign in to comment.