Skip to content

Commit

Permalink
Whats going on!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
ahqsoftwares committed Sep 3, 2024
1 parent 0dae82f commit 2c79c53
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src-ahqstore-types/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-ahqstore-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ahqstore-types"
description = "Standard types used by AHQ Store"
version = "3.1.7"
version = "3.2.0"
edition = "2021"
license-file = "../LICENSE.md"
repository = "https://github.com/ahqsoftwares/tauri-ahq-store"
Expand Down
2 changes: 1 addition & 1 deletion src-ahqstore-types/src/app/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ impl AHQStoreApplication {
resp.push_str("❌ A maximum of 6 images (1 icon + 5 display images) can be set in displayImages\n");
} else if x.get(&0).is_none() {
resp.push_str("❌ Resource with id 0 must be present as it represents icon\n");
} else if !x.iter().all(|(id, _)| x.get(&(*id + 1)).is_some()) {
} else if !self.displayImages.iter().all(|id| x.get(&(*id + 1)).is_some()) {
resp.push_str("❌ Every display images should have their resource id\n");
} else {
resp.push_str("✅ Resources are valid\n");
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ bcrypt = "0.15.1"


[target.'cfg(windows)'.dependencies]
windows = { version = "0.57.0", features = [
windows = { version = "0.58.0", features = [
"Win32_System_Com",
"Win32_Foundation",
"Win32_UI_Shell",
Expand Down

0 comments on commit 2c79c53

Please sign in to comment.