fileuni 0.1.1 → 0.1.2-gui.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/README.md +19 -17
- package/package.json +3 -3
- package/scripts/fileuni-manifest.json +25 -150
package/README.md
CHANGED
|
@@ -1,46 +1,48 @@
|
|
|
1
|
-
# fileuni
|
|
1
|
+
# fileuni@gui
|
|
2
2
|
|
|
3
|
-
FileUni
|
|
4
|
-
The package downloads the matching prebuilt
|
|
5
|
-
|
|
6
|
-
The GUI channel is published separately as `fileuni@gui` and installs only the `fileuni-gui` launcher.
|
|
3
|
+
FileUni GUI distributed through the `fileuni@gui` npm dist-tag as a single desktop package.
|
|
4
|
+
The package downloads the matching prebuilt desktop bundle from GitHub Releases during `postinstall`.
|
|
5
|
+
This channel installs only the `fileuni-gui` launcher and does not include the CLI launcher.
|
|
7
6
|
|
|
8
7
|
## Install
|
|
9
8
|
|
|
10
9
|
```bash
|
|
11
|
-
npm install fileuni
|
|
10
|
+
npm install fileuni@gui
|
|
12
11
|
```
|
|
13
12
|
|
|
14
|
-
##
|
|
13
|
+
## Run
|
|
15
14
|
|
|
16
15
|
```bash
|
|
17
|
-
npm install fileuni@gui
|
|
18
16
|
npx fileuni-gui
|
|
19
17
|
```
|
|
20
18
|
|
|
21
|
-
##
|
|
19
|
+
## Supported Platforms
|
|
22
20
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
21
|
+
- Windows x64
|
|
22
|
+
- Linux x64 (glibc)
|
|
23
|
+
- Linux arm64 (glibc)
|
|
24
|
+
- macOS Intel
|
|
25
|
+
- macOS Apple Silicon
|
|
26
|
+
|
|
27
|
+
For prerelease GUI channels, use tags such as `fileuni@gui-alpha`, `fileuni@gui-beta`, or `fileuni@gui-rc`.
|
|
26
28
|
|
|
27
29
|
## Platform Override
|
|
28
30
|
|
|
29
31
|
The installer auto-detects the current platform.
|
|
30
|
-
You can override the target manually when
|
|
32
|
+
You can override the target manually when needed.
|
|
31
33
|
|
|
32
34
|
Examples:
|
|
33
35
|
|
|
34
36
|
```bash
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
FILEUNI_GUI_NPM_TARGET=x86_64-unknown-linux-gnu npm install fileuni@gui
|
|
38
|
+
FILEUNI_GUI_NPM_TARGET=aarch64-apple-darwin npm install fileuni@gui
|
|
37
39
|
```
|
|
38
40
|
|
|
39
41
|
## Optional Controls
|
|
40
42
|
|
|
41
43
|
```bash
|
|
42
|
-
|
|
43
|
-
|
|
44
|
+
FILEUNI_GUI_NPM_SKIP_DOWNLOAD=1 npm install fileuni@gui
|
|
45
|
+
FILEUNI_GUI_NPM_BASE_URL=https://github.com/FileUni/FileUni-Project npm install fileuni@gui
|
|
44
46
|
```
|
|
45
47
|
|
|
46
48
|
## License
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fileuni",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "FileUni
|
|
3
|
+
"version": "0.1.2-gui.0",
|
|
4
|
+
"description": "FileUni GUI distributed through the fileuni@gui npm dist-tag with on-demand desktop bundle downloads.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"LICENSE"
|
|
20
20
|
],
|
|
21
21
|
"bin": {
|
|
22
|
-
"fileuni": "bin/launcher.js"
|
|
22
|
+
"fileuni-gui": "bin/launcher.js"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"postinstall": "node ./scripts/postinstall.cjs"
|
|
@@ -1,188 +1,63 @@
|
|
|
1
1
|
{
|
|
2
2
|
"repository": "FileUni/FileUni-Project",
|
|
3
|
-
"release_tag": "FileUni-v0.1.
|
|
4
|
-
"version": "0.1.
|
|
3
|
+
"release_tag": "FileUni-v0.1.2",
|
|
4
|
+
"version": "0.1.2-gui.0",
|
|
5
5
|
"package": {
|
|
6
6
|
"name": "fileuni",
|
|
7
|
-
"description": "FileUni
|
|
7
|
+
"description": "FileUni GUI distributed through the fileuni@gui npm dist-tag with on-demand desktop bundle downloads.",
|
|
8
8
|
"repository_directory": ".github/npm",
|
|
9
|
-
"bin_name": "fileuni",
|
|
10
|
-
"display_name": "FileUni
|
|
11
|
-
"env_prefix": "
|
|
12
|
-
"npm_config_prefix": "
|
|
9
|
+
"bin_name": "fileuni-gui",
|
|
10
|
+
"display_name": "FileUni GUI",
|
|
11
|
+
"env_prefix": "FILEUNI_GUI_NPM",
|
|
12
|
+
"npm_config_prefix": "fileuni_gui"
|
|
13
13
|
},
|
|
14
14
|
"targets": [
|
|
15
15
|
{
|
|
16
|
-
"target": "x86_64-
|
|
17
|
-
"os": "
|
|
16
|
+
"target": "x86_64-pc-windows-msvc",
|
|
17
|
+
"os": "win32",
|
|
18
18
|
"arch": "x64",
|
|
19
|
-
"
|
|
20
|
-
"asset_name": "FileUni-cli-x86_64-linux-gnu.zip",
|
|
19
|
+
"asset_name": "FileUni-gui-x86_64-windows-msvc.exe.zip",
|
|
21
20
|
"asset_format": "zip",
|
|
22
|
-
"installed_rel_path": "fileuni",
|
|
21
|
+
"installed_rel_path": "fileuni-gui.exe",
|
|
23
22
|
"launch_strategy": "exec"
|
|
24
23
|
},
|
|
25
24
|
{
|
|
26
|
-
"target": "x86_64-unknown-linux-
|
|
25
|
+
"target": "x86_64-unknown-linux-gnu",
|
|
27
26
|
"os": "linux",
|
|
28
27
|
"arch": "x64",
|
|
29
|
-
"libc": "musl",
|
|
30
|
-
"asset_name": "FileUni-cli-x86_64-linux-musl.zip",
|
|
31
|
-
"asset_format": "zip",
|
|
32
|
-
"installed_rel_path": "fileuni",
|
|
33
|
-
"launch_strategy": "exec"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"target": "aarch64-unknown-linux-gnu",
|
|
37
|
-
"os": "linux",
|
|
38
|
-
"arch": "arm64",
|
|
39
28
|
"libc": "gnu",
|
|
40
|
-
"asset_name": "FileUni-
|
|
41
|
-
"asset_format": "
|
|
42
|
-
"installed_rel_path": "fileuni",
|
|
29
|
+
"asset_name": "FileUni-gui-x86_64-linux-gnu.AppImage",
|
|
30
|
+
"asset_format": "file",
|
|
31
|
+
"installed_rel_path": "fileuni-gui.AppImage",
|
|
43
32
|
"launch_strategy": "exec"
|
|
44
33
|
},
|
|
45
34
|
{
|
|
46
|
-
"target": "aarch64-unknown-linux-
|
|
35
|
+
"target": "aarch64-unknown-linux-gnu",
|
|
47
36
|
"os": "linux",
|
|
48
37
|
"arch": "arm64",
|
|
49
|
-
"libc": "musl",
|
|
50
|
-
"asset_name": "FileUni-cli-aarch64-linux-musl.zip",
|
|
51
|
-
"asset_format": "zip",
|
|
52
|
-
"installed_rel_path": "fileuni",
|
|
53
|
-
"launch_strategy": "exec"
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"target": "i686-unknown-linux-gnu",
|
|
57
|
-
"os": "linux",
|
|
58
|
-
"arch": "ia32",
|
|
59
|
-
"libc": "gnu",
|
|
60
|
-
"asset_name": "FileUni-cli-x86_32-linux-gnu.zip",
|
|
61
|
-
"asset_format": "zip",
|
|
62
|
-
"installed_rel_path": "fileuni",
|
|
63
|
-
"launch_strategy": "exec"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"target": "i686-unknown-linux-musl",
|
|
67
|
-
"os": "linux",
|
|
68
|
-
"arch": "ia32",
|
|
69
|
-
"libc": "musl",
|
|
70
|
-
"asset_name": "FileUni-cli-x86_32-linux-musl.zip",
|
|
71
|
-
"asset_format": "zip",
|
|
72
|
-
"installed_rel_path": "fileuni",
|
|
73
|
-
"launch_strategy": "exec"
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"target": "arm-unknown-linux-gnueabi",
|
|
77
|
-
"os": "linux",
|
|
78
|
-
"arch": "arm",
|
|
79
|
-
"libc": "gnu",
|
|
80
|
-
"asset_name": "FileUni-cli-arm-linux-gnu.zip",
|
|
81
|
-
"asset_format": "zip",
|
|
82
|
-
"installed_rel_path": "fileuni",
|
|
83
|
-
"launch_strategy": "exec"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"target": "armv7-unknown-linux-musleabihf",
|
|
87
|
-
"os": "linux",
|
|
88
|
-
"arch": "arm",
|
|
89
|
-
"libc": "musl",
|
|
90
|
-
"asset_name": "FileUni-cli-armv7-linux-musl.zip",
|
|
91
|
-
"asset_format": "zip",
|
|
92
|
-
"installed_rel_path": "fileuni",
|
|
93
|
-
"launch_strategy": "exec"
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
"target": "riscv64gc-unknown-linux-gnu",
|
|
97
|
-
"os": "linux",
|
|
98
|
-
"arch": "riscv64",
|
|
99
38
|
"libc": "gnu",
|
|
100
|
-
"asset_name": "FileUni-
|
|
101
|
-
"asset_format": "
|
|
102
|
-
"installed_rel_path": "fileuni",
|
|
103
|
-
"launch_strategy": "exec"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"target": "powerpc64le-unknown-linux-gnu",
|
|
107
|
-
"os": "linux",
|
|
108
|
-
"arch": "ppc64",
|
|
109
|
-
"libc": "gnu",
|
|
110
|
-
"asset_name": "FileUni-cli-powerpc64le-linux-gnu.zip",
|
|
111
|
-
"asset_format": "zip",
|
|
112
|
-
"installed_rel_path": "fileuni",
|
|
113
|
-
"launch_strategy": "exec"
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"target": "x86_64-pc-windows-msvc",
|
|
117
|
-
"os": "win32",
|
|
118
|
-
"arch": "x64",
|
|
119
|
-
"asset_name": "FileUni-cli-x86_64-windows-msvc.exe.zip",
|
|
120
|
-
"asset_format": "zip",
|
|
121
|
-
"installed_rel_path": "fileuni.exe",
|
|
122
|
-
"launch_strategy": "exec"
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"target": "i686-pc-windows-msvc",
|
|
126
|
-
"os": "win32",
|
|
127
|
-
"arch": "ia32",
|
|
128
|
-
"asset_name": "FileUni-cli-x86_32-windows-msvc.exe.zip",
|
|
129
|
-
"asset_format": "zip",
|
|
130
|
-
"installed_rel_path": "fileuni.exe",
|
|
39
|
+
"asset_name": "FileUni-gui-aarch64-linux-gnu.AppImage",
|
|
40
|
+
"asset_format": "file",
|
|
41
|
+
"installed_rel_path": "fileuni-gui.AppImage",
|
|
131
42
|
"launch_strategy": "exec"
|
|
132
43
|
},
|
|
133
44
|
{
|
|
134
45
|
"target": "x86_64-apple-darwin",
|
|
135
46
|
"os": "darwin",
|
|
136
47
|
"arch": "x64",
|
|
137
|
-
"asset_name": "FileUni-
|
|
48
|
+
"asset_name": "FileUni-gui-x86_64-macos-app.zip",
|
|
138
49
|
"asset_format": "zip",
|
|
139
|
-
"installed_rel_path": "
|
|
140
|
-
"launch_strategy": "
|
|
50
|
+
"installed_rel_path": "FileUni UI.app",
|
|
51
|
+
"launch_strategy": "open"
|
|
141
52
|
},
|
|
142
53
|
{
|
|
143
54
|
"target": "aarch64-apple-darwin",
|
|
144
55
|
"os": "darwin",
|
|
145
56
|
"arch": "arm64",
|
|
146
|
-
"asset_name": "FileUni-
|
|
57
|
+
"asset_name": "FileUni-gui-aarch64-macos-app.zip",
|
|
147
58
|
"asset_format": "zip",
|
|
148
|
-
"installed_rel_path": "
|
|
149
|
-
"launch_strategy": "
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
"target": "aarch64-linux-android",
|
|
153
|
-
"os": "android",
|
|
154
|
-
"arch": "arm64",
|
|
155
|
-
"asset_name": "FileUni-cli-aarch64-android-cli.zip",
|
|
156
|
-
"asset_format": "zip",
|
|
157
|
-
"installed_rel_path": "fileuni",
|
|
158
|
-
"launch_strategy": "exec"
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"target": "armv7-linux-androideabi",
|
|
162
|
-
"os": "android",
|
|
163
|
-
"arch": "arm",
|
|
164
|
-
"asset_name": "FileUni-cli-armv7-android-cli.zip",
|
|
165
|
-
"asset_format": "zip",
|
|
166
|
-
"installed_rel_path": "fileuni",
|
|
167
|
-
"launch_strategy": "exec"
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
"target": "x86_64-linux-android",
|
|
171
|
-
"os": "android",
|
|
172
|
-
"arch": "x64",
|
|
173
|
-
"asset_name": "FileUni-cli-x86_64-android-cli.zip",
|
|
174
|
-
"asset_format": "zip",
|
|
175
|
-
"installed_rel_path": "fileuni",
|
|
176
|
-
"launch_strategy": "exec"
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
"target": "x86_64-unknown-freebsd",
|
|
180
|
-
"os": "freebsd",
|
|
181
|
-
"arch": "x64",
|
|
182
|
-
"asset_name": "FileUni-cli-x86_64-freebsd-freebsd.zip",
|
|
183
|
-
"asset_format": "zip",
|
|
184
|
-
"installed_rel_path": "fileuni",
|
|
185
|
-
"launch_strategy": "exec"
|
|
59
|
+
"installed_rel_path": "FileUni UI.app",
|
|
60
|
+
"launch_strategy": "open"
|
|
186
61
|
}
|
|
187
62
|
]
|
|
188
63
|
}
|