Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.6.5 #455

Merged
merged 5 commits into from
Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ $ igir --help
| $$ | $$ __\$$ | $$ | $$__| $$
| $$ | $$| \ | $$ | $$ $$ ROM collection manager
| $$ | $$ \$$$$ | $$ | $$$$$$$\
_| $$_ | $$__| $$ _| $$_ | $$ | $$ v1.6.4
_| $$_ | $$__| $$ _| $$_ | $$ | $$ v1.6.5
| $$ \ \$$ $$| $$ \| $$ | $$
\$$$$$$ \$$$$$$ \$$$$$$ \$$ \$$

Expand Down Expand Up @@ -164,9 +164,10 @@ Report options:
[string] [default: "./igir_%YYYY-%MM-%DDT%HH:%mm:%ss.csv"]

Help & debug options:
--dat-threads Number of DATs to process in parallel [number] [default: 3]
-v, --verbose Enable verbose logging, can specify up to three times (-vvv) [count]
-h, --help Show help [boolean]
--dat-threads Number of DATs to process in parallel [number] [default: 3]
--writer-threads Maximum number of ROMs to write in parallel [number] [default: 20]
-v, --verbose Enable verbose logging, can specify up to three times (-vvv) [count]
-h, --help Show help [boolean]

-------------------------------------------------------------------------------------------------

Expand All @@ -177,10 +178,10 @@ Advanced usage:
{datReleaseRegion} The region of the ROM release (e.g. "USA"), each ROM can have multiple
{datReleaseLanguage} The language of the ROM release (e.g. "En"), each ROM can have multiple

{inputDirname} The input ROM's dirname
{inputDirname} The input file's dirname
{outputBasename} Equivalent to "{outputName}.{outputExt}"
{outputName} The output ROM's filename without extension
{outputExt} The output ROM's extension
{outputName} The output file's filename without extension
{outputExt} The output file's extension

{pocket} The ROM's core-specific /Assets/* directory for the Analogue Pocket (e.g. "gb")
{mister} The ROM's core-specific /games/* directory for the MiSTer FPGA (e.g. "Gameboy")
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "igir",
"version": "1.6.4",
"version": "1.6.5",
"description": "🕹 A video game ROM collection manager to help filter, sort, patch, archive, and report on collections on any OS.",
"keywords": [
"1g1r",
"analogue-pocket",
"anbernic",
"cmpro",
"emulation",
"logiqx",
"mister",
Expand Down
6 changes: 3 additions & 3 deletions src/modules/argumentsParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -539,10 +539,10 @@ Advanced usage:
{datReleaseRegion} The region of the ROM release (e.g. "USA"), each ROM can have multiple
{datReleaseLanguage} The language of the ROM release (e.g. "En"), each ROM can have multiple

{inputDirname} The input ROM's dirname
{inputDirname} The input file's dirname
{outputBasename} Equivalent to "{outputName}.{outputExt}"
{outputName} The output ROM's filename without extension
{outputExt} The output ROM's extension
{outputName} The output file's filename without extension
{outputExt} The output file's extension

{pocket} The ROM's core-specific /Assets/* directory for the Analogue Pocket (e.g. "gb")
{mister} The ROM's core-specific /games/* directory for the MiSTer FPGA (e.g. "Gameboy")
Expand Down