Skip to content

Commit

Permalink
Prepare v1.1.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
enzo1982 committed Jun 20, 2020
1 parent 21f5f60 commit a13f92f
Show file tree
Hide file tree
Showing 15 changed files with 60 additions and 30 deletions.
1 change: 1 addition & 0 deletions Readme
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ History
- updated Monkey's Audio to version 5.44
- updated mpg123 to version 1.26.1
- updated FAAD2 to version 2.9.2
- updated CDRip to version 2.4

Version 1.1.1 (April 2020)

Expand Down
1 change: 1 addition & 0 deletions Readme.de
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ Geschichte
- Monkey's Audio auf Version 5.44 aktualisiert
- mpg123 auf Version 1.26.1 aktualisiert
- FAAD2 auf Version 2.9.2 aktualisiert
- CDRip auf Version 2.4 aktualisiert

Version 1.1.1 (April 2020)

Expand Down
28 changes: 28 additions & 0 deletions metadata/org.freac.freac.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,34 @@
</screenshot>
</screenshots>
<releases>
<release version="1.1.2" date="2020-06-20">
<description>
<p>Improvements:</p>
<ul>
<li>Scale UI to adjust to system font size by default</li>
<li>Added support for theme colors and dark mode</li>
<li>Improved handling of maximized window state</li>
<li>Stop ripping before trying to eject a disc</li>
<li>Write audio data CRC to log files when ripping</li>
<li>Write MD5 checksums to log files when verifying files</li>
<li>Write log entries when replacing existing files</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>Fixed length of last chapter of some audio books being detected as 0:00</li>
<li>Prevent interpreting numerical IDs or dates at the beginning of file names as track numbers</li>
<li>Fixed a possible source of random crashes when adding files to the joblist</li>
<li>Fixed possible crash when importing MP4/M4A files</li>
<li>Fixed possible crash when encoding in SuperFast mode</li>
</ul>
<p>Updated codecs:</p>
<ul>
<li>Updated Monkey's Audio to version 5.42</li>
<li>Updated mpg123 to version 1.26.1</li>
<li>Updated FAAD2 to version 2.9.2</li>
</ul>
</description>
</release>
<release version="1.1.1" date="2020-04-19">
<description>
<p>Improvements:</p>
Expand Down
6 changes: 3 additions & 3 deletions packaging/haiku/freac-version.recipe.template
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ HOMEPAGE="https://freac.org/"
COPYRIGHT="2001-2020 Robert Kausch"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="https://github.com/enzo1982/freac/releases/download/v${portVersion/\~/-}/freac-${portVersion/\~/-}.tar.gz"
SOURCE_URI="https://github.com/enzo1982/freac/releases/download/v${portVersion}/freac-${portVersion}.tar.gz"
CHECKSUM_SHA256="<checksum>"
SOURCE_DIR="freac-${portVersion/\~/-}"
SOURCE_DIR="freac-${portVersion}"

ARCHITECTURES="!x86_gcc2 x86 x86_64"
if [ "$targetArchitecture" = x86_gcc2 ]; then
Expand Down Expand Up @@ -54,7 +54,7 @@ REQUIRES="
lib:libfaac$secondaryArchSuffix
lib:libfaad$secondaryArchSuffix
lib:libFLAC$secondaryArchSuffix
lib:libMAC$secondaryArchSuffix >= 7
lib:libMAC$secondaryArchSuffix >= 8
lib:libmp3lame$secondaryArchSuffix
lib:libmp4v2$secondaryArchSuffix
lib:libmpg123$secondaryArchSuffix
Expand Down
4 changes: 2 additions & 2 deletions packaging/macosx/freac.app/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<key>CFBundleSignature</key>
<string>f:ac</string>
<key>CFBundleVersion</key>
<string>1.1.1.5182</string>
<string>1.1.2.5222</string>
<key>CFBundleShortVersionString</key>
<string>1.1.1</string>
<string>1.1.2</string>
<key>LSBackgroundOnly</key>
<false/>
<key>LSMinimumSystemVersion</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>stns</string>
<key>CFBundleVersion</key>
<string>0.9.4</string>
<string>0.9.5</string>
<key>LSBackgroundOnly</key>
<string>0</string>
<key>NSHighResolutionCapable</key>
Expand Down
6 changes: 3 additions & 3 deletions packaging/macosx/package.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash

#RELEASE=1.1.1
RELEASE=1.1.1-`date +"%Y%m%d"`
RELEASE=1.1.2
#RELEASE=1.1.2-`date +"%Y%m%d"`

VERSION="v1.1.1"
VERSION="v1.1.2"

UNAME=macosx

Expand Down
4 changes: 2 additions & 2 deletions packaging/macosx/prepare.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash

PREFIX=/usr/local
#RELEASE=1.1.1
RELEASE=1.1.1-`date +"%Y%m%d"`
RELEASE=1.1.2
#RELEASE=1.1.2-`date +"%Y%m%d"`

SMOOTHVER=0.9.0
BOCAVER=1.0.2
Expand Down
4 changes: 2 additions & 2 deletions packaging/unix/package.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
PREFIX=/usr/local
#RELEASE=1.1.1
RELEASE=1.1.1-`date +"%Y%m%d"`
RELEASE=1.1.2
#RELEASE=1.1.2-`date +"%Y%m%d"`

SMOOTHVER=0.9
SMOOTHREV=0
Expand Down
2 changes: 1 addition & 1 deletion packaging/windows/setup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<application>
<name>fre:ac</name>
<longname>fre:ac - free audio converter</longname>
<version>v1.1.1</version>
<version>v1.1.2</version>
<logo>setup.pci:0</logo>
</application>
<uninstall createLog="true">
Expand Down
8 changes: 4 additions & 4 deletions resources/resources.rc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#include "../include/resources.h"

IDR_VERSION VERSIONINFO
FILEVERSION 1,1,1,5182
PRODUCTVERSION 1,1,1,5182
FILEVERSION 1,1,2,5222
PRODUCTVERSION 1,1,2,5222
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
BEGIN
Expand All @@ -12,11 +12,11 @@ BEGIN
BLOCK "000004B0" // Block: language ID = Multilingual, char set = Unicode
BEGIN
VALUE "FileDescription", "fre:ac - free audio converter\0"
VALUE "FileVersion", "1.1.1.5182\0"
VALUE "FileVersion", "1.1.2.5222\0"
VALUE "InternalName", "FREAC\0"
VALUE "OriginalFilename", "freac.exe\0"
VALUE "ProductName", "fre:ac\0"
VALUE "ProductVersion", "1.1.1\0"
VALUE "ProductVersion", "1.1.2\0"
VALUE "LegalCopyright", "Copyright � 2001-2020 Robert Kausch\0"
VALUE "Official website", "https://www.freac.org/\0"
END
Expand Down
4 changes: 2 additions & 2 deletions resources/resources.rdef
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ resource app_flags B_MULTIPLE_LAUNCH;
resource app_version {
major = 1,
middle = 1,
minor = 0,
minor = 2,

variety = B_APPV_BETA,
variety = B_APPV_FINAL,
internal = 0,

short_info = "fre:ac - free audio converter",
Expand Down
8 changes: 4 additions & 4 deletions resources/resources_vd.rc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#include "../include/resources.h"

IDR_VERSION VERSIONINFO
FILEVERSION 1,1,1,5182
PRODUCTVERSION 1,1,1,5182
FILEVERSION 1,1,2,5222
PRODUCTVERSION 1,1,2,5222
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
BEGIN
Expand All @@ -12,11 +12,11 @@ BEGIN
BLOCK "000004B0" // Block: language ID = Multilingual, char set = Unicode
BEGIN
VALUE "FileDescription", "fre:ac - free video downloader\0"
VALUE "FileVersion", "1.1.1.5182\0"
VALUE "FileVersion", "1.1.2.5222\0"
VALUE "InternalName", "FREAC\0"
VALUE "OriginalFilename", "freac.exe\0"
VALUE "ProductName", "fre:ac\0"
VALUE "ProductVersion", "1.1.1\0"
VALUE "ProductVersion", "1.1.2\0"
VALUE "LegalCopyright", "Copyright � 2001-2020 Robert Kausch\0"
VALUE "Official website", "https://www.freac.org/\0"
END
Expand Down
4 changes: 2 additions & 2 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: freac
base: core18
version: '1.1.1'
version-script: echo 1.1.1~`date +"%Y%m%d"`
version: '1.1.2'
#version-script: echo 1.1.2~`date +"%Y%m%d"`
summary: Audio converter and CD ripper
description: |
fre:ac is a free and open source audio converter. It comes with
Expand Down
8 changes: 4 additions & 4 deletions src/freac.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ String freac::freac::appLongName = "fre:ac - free video downloader";
String freac::freac::version = FREAC_VERSION;
#else
# ifdef FREAC_DATE
String freac::freac::version = "v1.1.1 (" FREAC_DATE ")";
String freac::freac::version = "v1.1.2";// (" FREAC_DATE ")";
# else
String freac::freac::version = "v1.1.1";
String freac::freac::version = "v1.1.2";
# endif
#endif

Expand All @@ -65,8 +65,8 @@ String freac::freac::architecture = "PPC64";
String freac::freac::architecture = "unknown";
#endif

String freac::freac::shortVersion = "v1.1.1";
String freac::freac::cddbVersion = "v1.1.1"; // CDDB version may not contain spaces
String freac::freac::shortVersion = "v1.1.2";
String freac::freac::cddbVersion = "v1.1.2"; // CDDB version may not contain spaces
String freac::freac::cddbMode = "submit";

String freac::freac::copyright = "Copyright (C) 2001-2020 Robert Kausch";
Expand Down

0 comments on commit a13f92f

Please sign in to comment.