Skip to content

Commit d0d58fa

Browse files
authored
Add files via upload
1 parent 5b358d2 commit d0d58fa

13 files changed

Lines changed: 814 additions & 152 deletions

File tree

src-tauri/Cargo.lock

Lines changed: 79 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zgamelib"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
description = "ZGameLib - Personal Game Library"
55
authors = ["TheHolyOneZ"]
66
license = "MIT"
@@ -36,6 +36,7 @@ base64 = "0.22"
3636

3737
[target.'cfg(windows)'.dependencies]
3838
winreg = "0.52"
39+
windows = { version = "0.58", features = ["Win32_UI_WindowsAndMessaging", "Win32_Foundation", "Win32_System_Diagnostics_ToolHelp", "Win32_System_Threading"] }
3940

4041
[features]
4142
default = ["custom-protocol"]

src-tauri/src/commands/games.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ pub fn create_game(state: State<DbState>, payload: CreateGamePayload) -> Result<
4848
publisher: None,
4949
release_year: None,
5050
igdb_skipped: false,
51+
not_installed: false,
5152
};
5253
queries::insert_game(&conn, &game).map_err(|e| e.to_string())?;
5354
Ok(game)

0 commit comments

Comments
 (0)