File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
src/main/java/com/ignorelist/kassandra/steam/scraper Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,14 @@ usage: java -jar steam-scraper-*.one-jar.jar
1515 -f <file> absolute path to sharedconfig.vdf to use
1616 -g don't add genres
1717 -h,--help show this help and print paths
18- -i <file> whitelist for tags to include
18+ -i <file> whitelist for tags to include (one tag per line)
1919 -I remove all existing tags not in specified
2020 whitelist
2121 -p print all available tags (respects -c, -g and
2222 -u)
2323 -r,--remove <category> remove categories
24+ -R <file> file containing replacements (one replacement
25+ per line, in the format original=replacement)
2426 -u add user tags
2527 -w directly overwrite sharedconfig.vdf (quit steam
2628 before running!)
@@ -48,6 +50,13 @@ java -jar steam-scraper-*.one-jar.jar -u -i whitelist.txt -I -w
4850```
4951
5052
53+ Replacement file example:
54+ ```
55+ 1990's = 1990s
56+ Rogue-lite = Rogue-like
57+ Single-player = Singleplayer
58+ ```
59+
5160## Build dependencies
5261* maven 3
5362* openjdk 7/8
Original file line number Diff line number Diff line change @@ -242,9 +242,9 @@ private static Options buildOptions() {
242242 options .addOption ("u" , false , "add user tags" );
243243 options .addOption ("p" , false , "print all available tags (respects -c, -g and -u)" );
244244 options .addOption (Option .builder ("r" ).longOpt ("remove" ).hasArgs ().argName ("category" ).desc ("remove categories" ).build ());
245- options .addOption (Option .builder ("i" ).hasArg ().argName ("file" ).desc ("whitelist for tags to include" ).build ());
245+ options .addOption (Option .builder ("i" ).hasArg ().argName ("file" ).desc ("whitelist for tags to include (one tag per line) " ).build ());
246246 options .addOption ("I" , false , "remove all existing tags not in specified whitelist" );
247- options .addOption (Option .builder ("R" ).hasArg ().argName ("file" ).desc ("file containing replacements" ).build ());
247+ options .addOption (Option .builder ("R" ).hasArg ().argName ("file" ).desc ("file containing replacements (one replacement per line, in the format original=replacement) " ).build ());
248248 return options ;
249249 }
250250
You can’t perform that action at this time.
0 commit comments