Skip to content

Commit

Permalink
Version 1.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
audiamus committed May 13, 2021
1 parent f561282 commit 41e4cb8
Show file tree
Hide file tree
Showing 10 changed files with 590 additions and 562 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ The application requires .Net Framework 4.7.1 to be installed. On Windows 10 sys
AAX Audio Converter is configured to support high DPI monitors under Windows 10. It will scale properly when the user changes the DPI or scale factor.

## Download
Windows setup package version 1.17, English and German, with manuals, plus FFmpeg executable:
Windows setup package version 1.17.1, English and German, with manuals, plus FFmpeg executable:

**[AaxAudioConverter-1.17.0.1-Setup.exe](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17.0.1/AaxAudioConverter-1.17.0.1-Setup.exe)**
**[AaxAudioConverter-1.17.1-Setup.exe](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17.1/AaxAudioConverter-1.17.1-Setup.exe)**

Manuals (also included in the setup package):

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

**[German](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17.0.1/AaxAudioConverter.de.pdf)**
**[German](https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17.1/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.17.0.1/AaxAudioConverter-1.17.0.1-Setup.exe
MD5: a2cecfee6e20df138563e3ef7876bb55
https://github.com/audiamus/AaxAudioConverter/releases/download/v1.17.1/AaxAudioConverter-1.17.1-Setup.exe
MD5: c6db945d2e357db82ea8b7d461da7b41
Binary file modified src/AaxAudioConverter/AaxAudioConverter.de.odt
Binary file not shown.
535 changes: 278 additions & 257 deletions src/AaxAudioConverter/AaxAudioConverter.latest.de.rtf

Large diffs are not rendered by default.

579 changes: 294 additions & 285 deletions src/AaxAudioConverter/AaxAudioConverter.latest.rtf

Large diffs are not rendered by default.

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.17.0.1")]
[assembly: AssemblyFileVersion ("1.17.0.1")]
[assembly: AssemblyVersion ("1.17.1.0")]
[assembly: AssemblyFileVersion ("1.17.1.0")]
[assembly: NeutralResourcesLanguage ("en")]

16 changes: 7 additions & 9 deletions src/AaxAudioConverterLib/AaxAudioConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1964,15 +1964,11 @@ private void getContentMetadata (Book.Part part) {
var appMetadadata = new AudibleAppContentMetadata ();
appMetadadata.GetContentMetadata (part, flags);

if (!withSeries)
return;

var simsBySeries = new AudibleAppSimsBySeries ();
simsBySeries.GetSimsBySeries (part);

// test only
//var ser = part.Book.ExternalMeta;
//string s1 = ser.SeqString (Settings.NumDigitsSeriesSeqNo);
//string s2 = ser.SeqString (Settings.NumDigitsSeriesSeqNo);
//string s3 = ser.SeqString (Settings.NumDigitsSeriesSeqNo);
//string s4 = ser.SeqString (Settings.NumDigitsSeriesSeqNo);
}

private bool updateTags (Book book, Track track) {
Expand Down Expand Up @@ -2134,27 +2130,29 @@ private string flatDir (Book book) {
}

private string initDirectory (Book book, string author, string title) {
Log (3, this, () => $"book:\"{book.SortingTitle.Shorten()}\", author={(author is null ? "<null>" : $"\"{author}\"")}, title=\"{title}\"");

string rootDirLong = Settings.OutputDirectory.AsUnc();

string outDirLong = rootDirLong;
string outDirBookParentLong = rootDirLong;
string series = string.Empty;
string seriesSeqNo = string.Empty;

try {

// author + series + title

// do we have an author?
if (!string.IsNullOrWhiteSpace (author)) {
if (!(Settings.FlatFolders || author.IsNullOrWhiteSpace ())) {
outDirLong = Path.Combine (outDirLong, author);
if (!Directory.Exists (outDirLong))
book.IsNewAuthor = true;
outDirBookParentLong = outDirLong;
}

// do we have a series?
if (book.HasSeries) {
if (Settings.WithSeriesTitle && book.HasSeries) {
series = book.ExternalMeta.SeriesString().Prune();
seriesSeqNo = book.ExternalMeta.SeqStringFramed (Settings.NumDigitsSeriesSeqNo).Prune();
outDirLong = Path.Combine (outDirLong, series);
Expand Down
4 changes: 2 additions & 2 deletions src/AaxAudioConverterLib/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 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.17.0.0")]
[assembly: AssemblyFileVersion ("1.17.0.0")]
[assembly: AssemblyVersion ("1.17.1.0")]
[assembly: AssemblyFileVersion ("1.17.1.0")]
2 changes: 1 addition & 1 deletion src/InnoSetup/AaxAudioConverter setup.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppSetupName 'AAX Audio Converter'
#define MyAppVersion '1.17.0.1'
#define MyAppVersion '1.17.1'
#define MyProgramExe = 'AaxAudioConverter.exe'
#define MyCompany = 'audiamus'
#define MyAppName = 'AaxAudioConverter'
Expand Down

0 comments on commit 41e4cb8

Please sign in to comment.