mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-11-16 15:27:46 +00:00
Fix spelling of a term, also update gitignore
This commit is contained in:
parent
de033260e6
commit
6b3ae3ea5e
3 changed files with 4 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1 +1,3 @@
|
|||
/target
|
||||
|
||||
.DS_Store
|
|
@ -292,7 +292,7 @@ Long-term state is saved onto the disk in the "OS data folder", using the [TOML]
|
|||
|
||||
Given a slightly corrupted `state.toml` file, Gupax will attempt to merge it with a new default one. This will most likely happen if the internal data structure of `state.toml` is changed in the future (e.g removing an outdated setting). The node/pool database cannot be merged.
|
||||
|
||||
If Gupax can't read/write to disk at all, or if there are any other big issues, it will show an un-recoverable error screen.
|
||||
If Gupax can't read/write to disk at all, or if there are any other big issues, it will show an unrecoverable error screen.
|
||||
|
||||
| OS | Data Folder | Example |
|
||||
|----------|------------------------------------------|-------------------------------------------------|
|
||||
|
|
|
@ -1255,7 +1255,7 @@ impl eframe::App for App {
|
|||
},
|
||||
_ => {
|
||||
match self.error_state.ferris {
|
||||
Panic => ui.add_sized([width, height], Label::new("--- Gupax has encountered an un-recoverable error! ---")),
|
||||
Panic => ui.add_sized([width, height], Label::new("--- Gupax has encountered an unrecoverable error! ---")),
|
||||
Happy => ui.add_sized([width, height], Label::new("--- Success! ---")),
|
||||
_ => ui.add_sized([width, height], Label::new("--- Gupax has encountered an error! ---")),
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue