From bab9d8b87b761f4747ea361daaba5c42afca15a1 Mon Sep 17 00:00:00 2001 From: fraganator <7381808+fraganator@users.noreply.github.com> Date: Tue, 8 Mar 2022 14:09:13 +0000 Subject: [PATCH] Prep v2.0.10 release --- HISTORY.md | 3 +++ README.md | 13 +++---------- src/Core/CacheManager.cs | 2 +- src/Plugin/Properties/AssemblyInfo.cs | 2 +- 4 files changed, 8 insertions(+), 12 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index ad467f4..7bede9b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,4 +1,7 @@ # Archive Cache Manager change history +## v2.0.10 (2022-03-08) +* Support for LaunchBox 12.8 Extract ROM per platform setting + ## v2.0.9 (2022-01-31) * Fix file priority for files in subfolder of archive when not in cache * Fix launching individual file from archive when not in cache diff --git a/README.md b/README.md index 9d307dc..9207d31 100644 --- a/README.md +++ b/README.md @@ -3,16 +3,9 @@ A LaunchBox plugin which caches extracted ROM archives, letting you play games faster. Also allows launching individual files from archives, and loading preferred files from an archive. -## New in v2.0.9 -* Fix file priority for files in subfolder of archive when not in cache -* Fix launching individual file from archive when not in cache - -## New in v2.0.8 -* Wildcard based filename matching for file priorities in archive - * Prioritize a file extension, filename, or combination - * Create priorities to automatically play preferred ROM region from GoodMerged archives -* Performance improvements, especially for archives with many hundreds or thousands files -* [BigBox] "Select ROM In Archive" menu option (accepts keyboard input only) +## New in v2.0.10 +* Support for LaunchBox 12.8 Extract ROM per platform setting. + * *Note this release is for LaunchBox 12.8 and above only.* ## Description When a compressed ROM (in zip, 7z, or rar format) is first extracted, it is stored in the archive cache. The next time it is played, the game is loaded directly from the cache, virtually eliminating wait time. diff --git a/src/Core/CacheManager.cs b/src/Core/CacheManager.cs index 7e7ec3d..a1f3e71 100644 --- a/src/Core/CacheManager.cs +++ b/src/Core/CacheManager.cs @@ -25,7 +25,7 @@ public static string Version { Version version = Assembly.GetExecutingAssembly().GetName().Version; - return string.Format("v{0}.{1}.{2} beta", version.Major, version.Minor, version.Build); + return string.Format("v{0}.{1}.{2}", version.Major, version.Minor, version.Build); } } diff --git a/src/Plugin/Properties/AssemblyInfo.cs b/src/Plugin/Properties/AssemblyInfo.cs index f3d5ee5..1337cd3 100644 --- a/src/Plugin/Properties/AssemblyInfo.cs +++ b/src/Plugin/Properties/AssemblyInfo.cs @@ -12,7 +12,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Archive Cache Manager")] -[assembly: AssemblyCopyright("Copyright © 2021")] +[assembly: AssemblyCopyright("Copyright © 2022")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")]