Skip to content

Commit 298bebf

Browse files
Updated "TotK Dump" to say "Game Dump"
1 parent 5d876d0 commit 298bebf

6 files changed

Lines changed: 7 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Preview and edit subfiles of SARC and BNTX archives
7070
**Your Projects**
7171
- Add the current folder open in VS Code to a list of Project Folders
7272

73-
**TotK Dump**
73+
**Game Dump**
7474
- Browse your dump of TotK in Read-Only mode. Right click to add a file to the correct romfs path within a Project Folder of your choosing
7575

7676
### Additional capabilities:

docs/gamebananadesc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ <h3>Activity Bar Tabs</h3>
9494
<li>Add the current folder open in VS Code to a list of Project Folders</li>
9595
</ul>
9696

97-
<p><strong>TotK Dump</strong></p>
97+
<p><strong>Game Dump</strong></p>
9898
<ul>
9999
<li>
100100
Browse your dump of TotK in Read-Only mode. Right click to add a file to the

docs/release-notes/0.0.3-beta.5.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Features
22
- Fonts can now be replaced using bfotf or ttf/otf files
3+
- Swap between games using the arrow in "Your Projects" or "Game Dump"
34

45
# Tweaks
56
- Added OTF/TTF as supported file types

docs/settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# TKVSC Settings
22

33
## RomFS Dump Path
4-
The absolute path to your TotK Dump's romfs folder (the folder does not need to be named romfs).
4+
The absolute path to your Game Dump's romfs folder (the folder does not need to be named romfs).
55

66
For example: `C:\Users\Aster\Zelda\TotK Dumps\140\romfs`
77

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@
491491
},
492492
{
493493
"id": "totk-editor-dump",
494-
"title": "TotK Dump",
494+
"title": "Game Dump",
495495
"icon": "icons/dump.svg"
496496
}
497497
]

src/dumpTree.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ export function registerGameDumpTree(
659659
);
660660
if (entries.length === 0) {
661661
void vscode.window.showWarningMessage(
662-
'Select one or more files in TotK Dump first.',
662+
'Select one or more files in Game Dump first.',
663663
);
664664
return;
665665
}
@@ -718,7 +718,7 @@ export function registerGameDumpTree(
718718
);
719719
if (entries.length === 0) {
720720
void vscode.window.showWarningMessage(
721-
'Select one or more files in TotK Dump first.',
721+
'Select one or more files in Game Dump first.',
722722
);
723723
return;
724724
}

0 commit comments

Comments
 (0)