Skip to content

Commit

Permalink
Capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
Macitron authored and Enorovan committed Aug 20, 2023
1 parent 2a25b9c commit 94cfd14
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,12 @@ Here you can find a table of all the SciADV games which have received patches an

| **Game** | **Short Name** | **App ID** |
| ---------------- |:--------------:|:----------:|
| Chaos;Head NoAH | chn | 1961950 |
| Steins;Gate | sg | 412830 |
| Robotics;Notes Elite | rne | 1111380 |
| Chaos;Child | cc | 970570 |
| Steins;Gate 0 | sg0 | 825630 |
| Robotics;Notes DaSH | rnd | 1111390 |
| CHAOS;HEAD NOAH | chn | 1961950 |
| STEINS;GATE | sg | 412830 |
| ROBOTICS;NOTES ELITE | rne | 1111380 |
| CHAOS;CHILD | cc | 970570 |
| STEINS;GATE 0 | sg0 | 825630 |
| ROBOTICS;NOTES DaSH | rnd | 1111390 |

Some variations like 'dash' are supported. Consult the script itself for a full list.

Expand Down
24 changes: 12 additions & 12 deletions polyversal
Original file line number Diff line number Diff line change
Expand Up @@ -355,12 +355,12 @@ function set_game() {
arg_game=$(zenity --list --radiolist --title "$2" \
--height 400 --width 600 \
--column "Select" --column "Title" \
TRUE 'Chaos;Head NoAH' \
FALSE 'Steins;Gate' \
FALSE 'Robotics;Notes Elite' \
FALSE 'Chaos;Child' \
FALSE 'Steins;Gate 0' \
FALSE 'Robotics;Notes DaSH')
TRUE 'CHAOS;HEAD NOAH' \
FALSE 'STEINS;GATE' \
FALSE 'ROBOTICS;NOTES ELITE' \
FALSE 'CHAOS;CHILD' \
FALSE 'STEINS;GATE 0' \
FALSE 'ROBOTICS;NOTES DaSH')
handle_zenity "You must select which game to patch for the script to work."
else
arg_game=$1
Expand All @@ -373,37 +373,37 @@ function set_game() {
'chn' | 'ch' | 'chaos'[\;\ ]'head noah')
appid=1961950
patch_exe='CHNSteamPatch-Installer.exe'
gamename="Chaos;Head NoAH"
gamename="CHAOS;HEAD NOAH"
gamecode=chn
;;
'sg' | 'steins'[\;\ ]'gate')
appid=412830
patch_exe='SGPatch-Installer.exe'
gamename="Steins;Gate"
gamename="STEINS;GATE"
gamecode=sg
;;
'rne' | 'rn' | 'robotics'[\;\ ]'notes elite')
appid=1111380
patch_exe='RNEPatch-Installer.exe'
gamename="Robotics;Notes Elite"
gamename="ROBOTICS;NOTES ELITE"
gamecode=rne
;;
'cc' | 'chaos'[\;\ ]'child')
appid=970570
patch_exe='CCPatch-Installer.exe'
gamename="Chaos;Child"
gamename="CHAOS;CHILD"
gamecode=cc
;;
'sg0' | '0' | 'steins'[\;\ ]'gate 0')
appid=825630
patch_exe='SG0Patch-Installer.exe'
gamename="Steins;Gate 0"
gamename="STEINS;GATE 0"
gamecode=sg0
;;
'rnd' | 'dash' | 'robotics'[\;\ ]'notes dash')
appid=1111390
patch_exe='RNDPatch-Installer.exe'
gamename="Robotics;Notes DaSH"
gamename="ROBOTICS;NOTES DaSH"
gamecode=rnd
;;
*)
Expand Down

0 comments on commit 94cfd14

Please sign in to comment.