Skip to content

Commit

Permalink
Prepare v1.1 beta 2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
enzo1982 committed Jan 12, 2020
1 parent 6a85874 commit c91d03e
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 13 deletions.
25 changes: 24 additions & 1 deletion metadata/org.freac.freac.appdata.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2019 Robert Kausch -->
<!-- Copyright 2020 Robert Kausch -->
<component type="desktop-application">
<id>org.freac.freac</id>
<launchable type="desktop-id">org.freac.freac.desktop</launchable>
Expand Down Expand Up @@ -47,6 +47,29 @@
</screenshot>
</screenshots>
<releases>
<release version="1.1~beta2" date="2020-01-12">
<description>
<p>Improvements:</p>
<ul>
<li>Log names of active DSP components</li>
<li>Log total duration and speed of conversions</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>Fixed an IO subsystem issue causing corrupted output files in some cases</li>
<li>Fixed SuperFast LAME repacker causing glitches in output files in some cases</li>
<li>Fixed gapless decoding of MP3 files created with FFmpeg</li>
<li>Fixed inability to update ID3v2 and APEv2 tags in tag editor</li>
<li>Fixed inability to exit application after ejecting a disc while ripping</li>
<li>Fixed hangup when ejecting a disc while adding its tracks to joblist</li>
<li>Fixed minimum and maximum bitrate values being mixed up in Vorbis configuration dialog</li>
</ul>
<p>Updated translations:</p>
<ul>
<li>Updated Dutch translation</li>
</ul>
</description>
</release>
<release version="1.1~beta1" date="2019-12-15">
<description>
<p>New features:</p>
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 Beta 1</version>
<version>v1.1 Beta 2</version>
<logo>setup.pci:0</logo>
</application>
<uninstall createLog="true">
Expand Down
6 changes: 3 additions & 3 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,0,5052
PRODUCTVERSION 1,1,0,5052
FILEVERSION 1,1,0,5059
PRODUCTVERSION 1,1,0,5059
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
BEGIN
Expand All @@ -12,7 +12,7 @@ BEGIN
BLOCK "000004B0" // Block: language ID = Multilingual, char set = Unicode
BEGIN
VALUE "FileDescription", "fre:ac - free audio converter\0"
VALUE "FileVersion", "1.1.0.5052\0"
VALUE "FileVersion", "1.1.0.5059\0"
VALUE "InternalName", "FREAC\0"
VALUE "OriginalFilename", "freac.exe\0"
VALUE "ProductName", "fre:ac\0"
Expand Down
6 changes: 3 additions & 3 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,0,5052
PRODUCTVERSION 1,1,0,5052
FILEVERSION 1,1,0,5059
PRODUCTVERSION 1,1,0,5059
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
BEGIN
Expand All @@ -12,7 +12,7 @@ BEGIN
BLOCK "000004B0" // Block: language ID = Multilingual, char set = Unicode
BEGIN
VALUE "FileDescription", "fre:ac - free video downloader\0"
VALUE "FileVersion", "1.1.0.5052\0"
VALUE "FileVersion", "1.1.0.5059\0"
VALUE "InternalName", "FREAC\0"
VALUE "OriginalFilename", "freac.exe\0"
VALUE "ProductName", "fre:ac\0"
Expand Down
4 changes: 2 additions & 2 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: freac
version: '1.1~beta1'
version-script: echo 1.1~beta`date +"%Y%m%d"`
version: '1.1~beta2'
#version-script: echo 1.1~beta`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
6 changes: 3 additions & 3 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 Beta 1 (" FREAC_DATE ")";
String freac::freac::version = "v1.1 Beta 2"; // (" FREAC_DATE ")";
# else
String freac::freac::version = "v1.1 Beta 1";
String freac::freac::version = "v1.1 Beta 2";
# endif
#endif

Expand All @@ -66,7 +66,7 @@ String freac::freac::architecture = "unknown";
#endif

String freac::freac::shortVersion = "v1.1";
String freac::freac::cddbVersion = "v1.1beta1"; // CDDB version may not contain spaces
String freac::freac::cddbVersion = "v1.1beta2"; // 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 c91d03e

Please sign in to comment.