pake-cli 2.3.5 β 2.3.6
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/README.md +4 -4
- package/dist/cli.js +1 -1
- package/package.json +1 -1
- package/src-tauri/info.plist +11 -6
- package/src-tauri/src/app/menu.rs +1 -1
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
- π Nearly 20 times smaller than an Electron package (around 5M!)
|
|
27
27
|
- π With Rust Tauri, Pake is much more lightweight and faster than JS-based frameworks.
|
|
28
28
|
- π¦ Battery-included package β shortcut pass-through, immersive windows, and minimalist customization.
|
|
29
|
-
- π» Pake is just a simple tool β replace the old bundle approach with
|
|
29
|
+
- π» Pake is just a simple tool β replace the old bundle approach with Tauri (though PWA is good enough).
|
|
30
30
|
|
|
31
31
|
## Popular Packages
|
|
32
32
|
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
</td>
|
|
61
61
|
</tr>
|
|
62
62
|
<tr>
|
|
63
|
-
<td><img src=https://cdn.fliggy.com/upic/
|
|
64
|
-
<td><img src=https://
|
|
63
|
+
<td><img src=https://cdn.fliggy.com/upic/5aO6yP.png width=600/></td>
|
|
64
|
+
<td><img src=https://cdn.fliggy.com/upic/Ztsx23.png width=600/></td>
|
|
65
65
|
</tr>
|
|
66
66
|
<tr>
|
|
67
67
|
<td>YouTube Music
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
</td>
|
|
77
77
|
</tr>
|
|
78
78
|
<tr>
|
|
79
|
-
<td><img src=https://cdn.fliggy.com/upic/
|
|
79
|
+
<td><img src=https://cdn.fliggy.com/upic/3UREAw.png width=600/></td>
|
|
80
80
|
<td><img src=https://gw.alipayobjects.com/zos/k/pn/1.jpg width=600/></td>
|
|
81
81
|
</tr>
|
|
82
82
|
<tr>
|
package/dist/cli.js
CHANGED
|
@@ -20,7 +20,7 @@ import psl from 'psl';
|
|
|
20
20
|
import isUrl from 'is-url';
|
|
21
21
|
|
|
22
22
|
var name = "pake-cli";
|
|
23
|
-
var version = "2.3.
|
|
23
|
+
var version = "2.3.6";
|
|
24
24
|
var description = "π€±π» Turn any webpage into a desktop app with Rust. π€±π» ε©η¨ Rust θ½»ζΎζε»Ίθ½»ιηΊ§ε€η«―ζ‘ι’εΊη¨γ";
|
|
25
25
|
var engines = {
|
|
26
26
|
node: ">=16.0.0"
|
package/package.json
CHANGED
package/src-tauri/info.plist
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
2
2
|
<plist version="1.0">
|
|
3
|
-
<dict>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
</
|
|
3
|
+
<dict>
|
|
4
|
+
<key>NSCameraUsageDescription</key>
|
|
5
|
+
<string>Request camera access</string>
|
|
6
|
+
<key>NSMicrophoneUsageDescription</key>
|
|
7
|
+
<string>Request microphone access</string>
|
|
8
|
+
<key>NSAppTransportSecurity</key>
|
|
9
|
+
<dict>
|
|
10
|
+
<key>NSAllowsArbitraryLoads</key>
|
|
11
|
+
<true/>
|
|
12
|
+
</dict>
|
|
13
|
+
</dict>
|
|
9
14
|
</plist>
|
|
@@ -3,7 +3,7 @@ use tauri::MenuItem;
|
|
|
3
3
|
use tauri::{CustomMenuItem, Menu, Submenu, WindowMenuEvent};
|
|
4
4
|
|
|
5
5
|
#[cfg(any(target_os = "linux", target_os = "windows"))]
|
|
6
|
-
use tauri::{Manager, SystemTray, SystemTrayEvent, SystemTrayMenu
|
|
6
|
+
use tauri::{Manager, SystemTray, SystemTrayEvent, SystemTrayMenu};
|
|
7
7
|
|
|
8
8
|
#[cfg(any(target_os = "linux", target_os = "windows"))]
|
|
9
9
|
use tauri_plugin_window_state::{AppHandleExt, StateFlags};
|