Skip to content

Commit

Permalink
Prep v2.0.10 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fraganator committed Mar 8, 2022
1 parent eb987be commit bab9d8b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
13 changes: 3 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/Core/CacheManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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("")]

Expand Down

0 comments on commit bab9d8b

Please sign in to comment.