Version 7.10.0

This commit is contained in:
Matt Pharoah
2025-01-03 18:58:41 -05:00
parent b725950ef9
commit 27ebdca25d
7 changed files with 16 additions and 5 deletions

View File

@@ -116,7 +116,7 @@
<true/>
<key>NSHumanReadableCopyright</key>
<string>© 2020-2024, Matt Pharoah</string>
<string>© 2020-2025, Matt Pharoah</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.games</string>

View File

@@ -41,7 +41,7 @@ TRANSLATIONS = lang/parallel-launcher_en_us.ts lang/parallel-launcher_en_gb.ts l
macx|win32 {
LIBS += -ldiscord-rpc
VERSION = 7.9.1
VERSION = 7.10.0
}
macx {

View File

@@ -83,6 +83,14 @@
</recommends>
<translation type="qt" source_locale="en_CA">parallel-launcher/translations/parallel-launcher</translation>
<releases>
<release version="v7.10.0" date="2025-01-03">
<description>
<ul>
<li>Parallel Launcher now always downloads only pre-approved versions of RetroArch instead of the latest version (fixes recent issues with failing to install RetroArch)</li>
<li>Fixed a bug with the libpl emulator extension that caused it to fail when fetching an RHDC user avatar that isn't a square image</li>
</ul>
</description>
</release>
<release version="v7.9.0" date="2024-11-19">
<description>
<ul>

View File

@@ -4,7 +4,7 @@ Upstream-Contact: Matt Pharoah <mtpharoah@gmail.com>
Source: https://launchpad.net/~mpharoah
Files: *
Copyright: 2020 - 2024 Matt Pharoah <mtpharoah@gmail.com>
Copyright: 2020 - 2025 Matt Pharoah <mtpharoah@gmail.com>
License: GPL-3+
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

View File

@@ -185,6 +185,9 @@ fi
exit 0
%changelog
* Fri Jan 3 2025 Matt Pharoah <mtpharoah@gmail.com> - 7.10.0
- Parallel Launcher now always downloads only pre-approved versions of RetroArch instead of the latest version (fixes recent issues with failing to install RetroArch)
- Fixed a bug with the libpl emulator extension that caused it to fail when fetching an RHDC user avatar that isn't a square image
* Tue Nov 19 2024 Matt Pharoah <mtpharoah@gmail.com> - 7.9.0
- The Overclock VI option no longer requires "Show advanced ROM options" to be enabled to see it
- The Overclock VI option now has a much larger effect. It is not recommended for use with retail roms, but it is very useful for certain romhacks

View File

@@ -36,7 +36,7 @@ bool Version::tryParse( const string &versionString, Version &result ) {
return true;
}
const Version CurrentVersion::Application = { 7, 9, 1 };
const Version CurrentVersion::Application = { 7, 10, 0 };
#ifdef _WIN32
const ushort APPLICATION_MAJOR_VERSION = CurrentVersion::Application.major;

View File

@@ -1,5 +1,5 @@
#define MyAppName "Parallel Launcher"
#define MyAppVersion "7.9.1"
#define MyAppVersion "7.10.0"
#define MyAppPublisher "Matt Pharoah"
#define MyAppURL "https://parallel-launcher.ca"
#define MyAppExeName "parallel-launcher.exe"