pake-cli 3.8.6 โ 3.8.7
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/dist/cli.js +1 -1
- package/package.json +1 -1
- package/src-tauri/Cargo.lock +1 -1
- package/src-tauri/Cargo.toml +1 -1
- package/src-tauri/src/lib.rs +2 -3
package/dist/cli.js
CHANGED
|
@@ -22,7 +22,7 @@ import * as psl from 'psl';
|
|
|
22
22
|
import { InvalidArgumentError, program as program$1, Option } from 'commander';
|
|
23
23
|
|
|
24
24
|
var name = "pake-cli";
|
|
25
|
-
var version = "3.8.
|
|
25
|
+
var version = "3.8.7";
|
|
26
26
|
var description = "๐คฑ๐ป Turn any webpage into a desktop app with one command. ๐คฑ๐ป ไธ้ฎๆๅ
็ฝ้กต็ๆ่ฝป้ๆก้ขๅบ็จใ";
|
|
27
27
|
var engines = {
|
|
28
28
|
node: ">=18.0.0"
|
package/package.json
CHANGED
package/src-tauri/Cargo.lock
CHANGED
package/src-tauri/Cargo.toml
CHANGED
package/src-tauri/src/lib.rs
CHANGED
|
@@ -155,10 +155,9 @@ pub fn run_app() {
|
|
|
155
155
|
window.hide().unwrap();
|
|
156
156
|
});
|
|
157
157
|
api.prevent_close();
|
|
158
|
-
} else {
|
|
159
|
-
// Exit app completely when hide_on_close is false
|
|
160
|
-
std::process::exit(0);
|
|
161
158
|
}
|
|
159
|
+
// If hide_on_close is false, allow normal close behavior
|
|
160
|
+
// This lets tauri-plugin-window-state save the window position and size
|
|
162
161
|
}
|
|
163
162
|
})
|
|
164
163
|
.build(tauri::generate_context!())
|