Skip to content

Commit 480b590

Browse files
committed
update binary
1 parent e2a9bad commit 480b590

13 files changed

+1070
-30
lines changed

.tmp/auth_info.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"accessToken":"bIbjnBbzJuYQ1oQwVlVLMhauzHFGcfUE-5znIamdUK4X8WTg","port":42291}

README.md

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1 @@
1-
# vue-desktop-app
2-
3-
## Project setup
4-
```
5-
npm install
6-
```
7-
8-
### Compiles and hot-reloads for development
9-
```
10-
npm run serve
11-
```
12-
13-
### Compiles and minifies for production
14-
```
15-
npm run build
16-
```
17-
18-
### Lints and fixes files
19-
```
20-
npm run lint
21-
```
22-
23-
### Customize configuration
24-
See [Configuration Reference](https://cli.vuejs.org/config/).
1+
# Vue Desktop With NeutralinoJS

bin/WebView2Loader.dll

418 KB
Binary file not shown.

bin/neutralino-linux_arm64

1.51 MB
Binary file not shown.

bin/neutralino-linux_x64

1.43 MB
Binary file not shown.

bin/neutralino-mac_x64

1.68 MB
Binary file not shown.

bin/neutralino-win_x64.exe

2.13 MB
Binary file not shown.

neutralino.config.json

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"applicationId": "js.neutralino.sample",
3+
"version": "1.0.0",
4+
"defaultMode": "window",
5+
"port": 0,
6+
"documentRoot": "/dist/",
7+
"url": "/#/app",
8+
"enableServer": true,
9+
"enableNativeAPI": true,
10+
"tokenSecurity": "one-time",
11+
"logging": {
12+
"enabled": true,
13+
"writeToLogFile": true
14+
},
15+
"nativeAllowList": [
16+
"app.*",
17+
"os.*",
18+
"debug.log"
19+
],
20+
"globalVariables": {
21+
"TEST1": "Hello",
22+
"TEST2": [
23+
2,
24+
4,
25+
5
26+
],
27+
"TEST3": {
28+
"value1": 10,
29+
"value2": {}
30+
}
31+
},
32+
"modes": {
33+
"window": {
34+
"title": "neutralino-app",
35+
"width": 800,
36+
"height": 500,
37+
"minWidth": 400,
38+
"minHeight": 200,
39+
"fullScreen": true,
40+
"alwaysOnTop": false,
41+
"icon": "/dist/img/icons/android-chrome-192x192.png",
42+
"enableInspector": true,
43+
"borderless": true,
44+
"maximize": true,
45+
"hidden": false,
46+
"resizable": false,
47+
"exitProcessOnClose": false
48+
},
49+
"browser": {
50+
"globalVariables": {
51+
"TEST": "Test value browser"
52+
},
53+
"nativeBlockList": [
54+
"filesystem.*"
55+
]
56+
},
57+
"cloud": {
58+
"url": "/dist/#cloud",
59+
"nativeAllowList": [
60+
"app.*"
61+
]
62+
},
63+
"chrome": {
64+
"width": 800,
65+
"height": 500,
66+
"args": "--user-agent=\"Neutralinojs chrome mode\"",
67+
"nativeBlockList": [
68+
"filesystem.*",
69+
"os.*"
70+
]
71+
}
72+
},
73+
"cli": {
74+
"binaryName": "neutralino-app",
75+
"resourcesPath": "/dist/",
76+
"extensionsPath": "/extensions/",
77+
"clientLibrary": "/public/neutralino.js",
78+
"binaryVersion": "4.6.0",
79+
"clientVersion": "3.5.0"
80+
}
81+
}

neutralinojs.log

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
INFO 2022-06-26 16:00:43,637 Auth info was exported to ./.tmp/auth_info.json api/debug/debug.cpp:14 mydan3@unknown-host
2+
ERROR 2022-06-26 16:00:43,783 Unable to open ./resources/icons/appIcon.png api/debug/debug.cpp:16 mydan3@unknown-host
3+
INFO 2022-06-26 16:01:16,548 Auth info was exported to ./.tmp/auth_info.json api/debug/debug.cpp:14 mydan3@unknown-host
4+
ERROR 2022-06-26 16:01:16,614 Unable to open ./resources/icons/appIcon.png api/debug/debug.cpp:16 mydan3@unknown-host
5+
INFO 2022-06-26 16:02:28,821 Auth info was exported to ./.tmp/auth_info.json api/debug/debug.cpp:14 mydan3@unknown-host
6+
ERROR 2022-06-26 16:02:28,888 Unable to open ./resources/icons/appIcon.png api/debug/debug.cpp:16 mydan3@unknown-host
7+
INFO 2022-06-26 16:09:25,200 Auth info was exported to ./.tmp/auth_info.json api/debug/debug.cpp:14 mydan3@unknown-host
8+
INFO 2022-06-26 16:09:56,654 Auth info was exported to ./.tmp/auth_info.json api/debug/debug.cpp:14 mydan3@unknown-host
9+
INFO 2022-06-26 16:10:58,327 Auth info was exported to ./.tmp/auth_info.json api/debug/debug.cpp:14 mydan3@unknown-host
10+
INFO 2022-06-26 16:12:32,074 Auth info was exported to ./.tmp/auth_info.json api/debug/debug.cpp:14 mydan3@unknown-host
11+
INFO 2022-06-26 16:24:32,299 Auth info was exported to ./.tmp/auth_info.json api/debug/debug.cpp:14 mydan3@unknown-host
12+
INFO 2022-06-26 16:26:15,688 Auth info was exported to ./.tmp/auth_info.json api/debug/debug.cpp:14 mydan3@unknown-host

public/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
2121
</noscript>
2222
<div id="app"></div>
23+
<script src="<%= BASE_URL %>neutralino.js"></script>
2324
<!-- built files will be auto injected -->
2425
</body>
2526
</html>

public/neutralino.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,9 @@ const app = createApp(App)
1515
app.use(appstore)
1616
app.use(router)
1717

18-
app.mount('#app')
18+
app.mount('#app')
19+
20+
21+
if(window.Neutralino != undefined) {
22+
window.Neutralino.init();
23+
}

0 commit comments

Comments
 (0)