@ecmaos/jaffa 0.2.13 → 0.2.15

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/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @ecmaos/jaffa
2
2
 
3
+ ## 0.2.15
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [53068e0]
8
+ - @ecmaos/kernel@0.9.2
9
+
10
+ ## 0.2.14
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [c6d3ea8]
15
+ - @ecmaos/kernel@0.9.0
16
+ - @ecmaos/types@0.7.0
17
+
3
18
  ## 0.2.13
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecmaos/jaffa",
3
- "version": "0.2.13",
3
+ "version": "0.2.15",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -8,8 +8,8 @@
8
8
  "dependencies": {
9
9
  "@tauri-apps/api": "^2",
10
10
  "@tauri-apps/plugin-shell": "^2",
11
- "@ecmaos/kernel": "^0.8.1",
12
- "@ecmaos/types": "^0.6.1"
11
+ "@ecmaos/kernel": "^0.9.2",
12
+ "@ecmaos/types": "^0.7.0"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@tauri-apps/cli": "^2",
package/src/main.ts CHANGED
@@ -17,9 +17,9 @@ declare global {
17
17
  }
18
18
  }
19
19
 
20
- const username = import.meta.env.VITE_AUTOLOGIN_USERNAME
21
- const password = import.meta.env.VITE_AUTOLOGIN_PASSWORD
22
- const socket = import.meta.env.VITE_METAL_SOCKET
20
+ const username = import.meta.env.ECMAOS_AUTOLOGIN_USERNAME
21
+ const password = import.meta.env.ECMAOS_AUTOLOGIN_PASSWORD
22
+ const socket = import.meta.env.ECMAOS_METAL_SOCKET
23
23
 
24
24
  const kernel = new Kernel({
25
25
  credentials: (username && password) ? { username, password } : undefined,