mirror of
https://github.com/forkless/NotAlterra.git
synced 2026-08-21 10:28:59 +02:00
Rename Recover menu item, update docs
This commit is contained in:
@@ -7,6 +7,7 @@ All notable changes to NotAlterra are documented in this file.
|
||||
## [v0.1.1] — 2026-05-31
|
||||
|
||||
### Changed
|
||||
- "Recover .sav file from .bak" renamed to "Recover save file" (less technical)
|
||||
- Dashboard stats now filter by `savegame_*` prefix, matching the file picker
|
||||
- Save/Backup labels pluralize based on count
|
||||
|
||||
|
||||
@@ -75,7 +75,7 @@ Run the binary. On first launch it auto-scans for your save folder. The menu is
|
||||
|
||||
### Menu
|
||||
|
||||
1. **Recover .sav from .bak** — pick a backup, preview metadata, overwrite the live save
|
||||
1. **Recover save file** — pick a backup, preview metadata, overwrite the live save
|
||||
2. **Create full backup** — copies all `savegame_*` files to `NotAlterra_Backups`
|
||||
3. **Restore full backup** — overwrite the save folder from a previous backup
|
||||
4. **Inspect save files** — view all GVAS properties of any `.sav` / `.bak`
|
||||
|
||||
+4
-4
@@ -75,7 +75,7 @@ impl Default for AppState {
|
||||
pub fn draw_main_menu(f: &mut Frame, state: &mut ListState, app: &AppState, save_found: bool) {
|
||||
let items: Vec<&str> = if save_found {
|
||||
vec![
|
||||
" Recover .sav file from .bak",
|
||||
" Recover save file",
|
||||
" Create full backup",
|
||||
" Restore full backup",
|
||||
" Inspect save files",
|
||||
@@ -86,7 +86,7 @@ pub fn draw_main_menu(f: &mut Frame, state: &mut ListState, app: &AppState, save
|
||||
} else {
|
||||
vec![
|
||||
" Locate Subnautica save files",
|
||||
" Recover .sav file from .bak",
|
||||
" Recover save file",
|
||||
" Create full backup",
|
||||
" Restore full backup",
|
||||
" Inspect save files",
|
||||
@@ -97,7 +97,7 @@ pub fn draw_main_menu(f: &mut Frame, state: &mut ListState, app: &AppState, save
|
||||
};
|
||||
let descs: Vec<&str> = if save_found {
|
||||
vec![
|
||||
"Restore a .sav file from its .bak backup",
|
||||
"Restore a save file from a backup",
|
||||
"Copy the savegame files to NotAlterra_Backups",
|
||||
"Restore a full backup from NotAlterra_Backups",
|
||||
"View detailed GVAS metadata for each save file",
|
||||
@@ -108,7 +108,7 @@ pub fn draw_main_menu(f: &mut Frame, state: &mut ListState, app: &AppState, save
|
||||
} else {
|
||||
vec![
|
||||
"Scan all drives for Subnautica 2 save folders",
|
||||
"Restore a .sav file from its .bak backup",
|
||||
"Restore a save file from a backup",
|
||||
"Copy the savegame files to NotAlterra_Backups",
|
||||
"Restore a full backup from NotAlterra_Backups",
|
||||
"View detailed GVAS metadata for each save file",
|
||||
|
||||
Reference in New Issue
Block a user