@ahqstore/cli 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.toml +1 -1
- package/package.json +10 -10
- package/src/app/build/mod.rs +1 -1
- package/src/app/shared/mod.rs +0 -2
package/Cargo.toml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ahqstore/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"readme": "./README.md",
|
|
5
5
|
"napi": {
|
|
6
6
|
"name": "cli",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"version": "napi version"
|
|
41
41
|
},
|
|
42
42
|
"optionalDependencies": {
|
|
43
|
-
"@ahqstore/cli-win32-x64-msvc": "0.
|
|
44
|
-
"@ahqstore/cli-darwin-x64": "0.
|
|
45
|
-
"@ahqstore/cli-linux-x64-gnu": "0.
|
|
46
|
-
"@ahqstore/cli-darwin-arm64": "0.
|
|
47
|
-
"@ahqstore/cli-linux-arm64-gnu": "0.
|
|
48
|
-
"@ahqstore/cli-win32-arm64-msvc": "0.
|
|
49
|
-
"@ahqstore/cli-win32-ia32-msvc": "0.
|
|
50
|
-
"@ahqstore/cli-darwin-universal": "0.
|
|
51
|
-
"@ahqstore/cli-linux-riscv64-gnu": "0.
|
|
43
|
+
"@ahqstore/cli-win32-x64-msvc": "0.7.0",
|
|
44
|
+
"@ahqstore/cli-darwin-x64": "0.7.0",
|
|
45
|
+
"@ahqstore/cli-linux-x64-gnu": "0.7.0",
|
|
46
|
+
"@ahqstore/cli-darwin-arm64": "0.7.0",
|
|
47
|
+
"@ahqstore/cli-linux-arm64-gnu": "0.7.0",
|
|
48
|
+
"@ahqstore/cli-win32-arm64-msvc": "0.7.0",
|
|
49
|
+
"@ahqstore/cli-win32-ia32-msvc": "0.7.0",
|
|
50
|
+
"@ahqstore/cli-darwin-universal": "0.7.0",
|
|
51
|
+
"@ahqstore/cli-linux-riscv64-gnu": "0.7.0"
|
|
52
52
|
}
|
|
53
53
|
}
|
package/src/app/build/mod.rs
CHANGED
|
@@ -104,7 +104,6 @@ pub fn build_config(upload: bool, gh_action: bool) {
|
|
|
104
104
|
downloadUrls: HashMap::default(),
|
|
105
105
|
displayImages,
|
|
106
106
|
resources: Some(resources),
|
|
107
|
-
app_page: config.source,
|
|
108
107
|
license_or_tos: config.license_or_tos,
|
|
109
108
|
install: InstallerOptions {
|
|
110
109
|
linux: None,
|
|
@@ -118,6 +117,7 @@ pub fn build_config(upload: bool, gh_action: bool) {
|
|
|
118
117
|
version,
|
|
119
118
|
site: config.site,
|
|
120
119
|
source: config.redistributed,
|
|
120
|
+
verified: false
|
|
121
121
|
};
|
|
122
122
|
|
|
123
123
|
let mut num = 0;
|
package/src/app/shared/mod.rs
CHANGED
|
@@ -25,7 +25,6 @@ pub struct IMetadata<'a> {
|
|
|
25
25
|
#[serde[borrow]]
|
|
26
26
|
pub finder: FileFinder<'a>,
|
|
27
27
|
pub site: Option<Str>,
|
|
28
|
-
pub source: Option<Str>,
|
|
29
28
|
pub redistributed: Option<Str>,
|
|
30
29
|
pub license_or_tos: Option<Str>,
|
|
31
30
|
}
|
|
@@ -55,7 +54,6 @@ impl<'a> IMetadata<'a> {
|
|
|
55
54
|
platform,
|
|
56
55
|
finder: FileFinder::new(),
|
|
57
56
|
site: None,
|
|
58
|
-
source: None,
|
|
59
57
|
redistributed: None,
|
|
60
58
|
license_or_tos: None
|
|
61
59
|
},
|