fileuni 0.1.5-gui.0 → 0.1.5

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 CHANGED
@@ -1,48 +1,46 @@
1
- # fileuni@gui
1
+ # fileuni
2
2
 
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.
3
+ FileUni CLI distributed through npm as a single package.
4
+ The package downloads the matching prebuilt binary from GitHub Releases during `postinstall`.
5
+
6
+ The GUI channel is published separately as `fileuni@gui` and installs only the `fileuni-gui` launcher.
6
7
 
7
8
  ## Install
8
9
 
9
10
  ```bash
10
- npm install fileuni@gui
11
+ npm install fileuni
11
12
  ```
12
13
 
13
- ## Run
14
+ ## GUI Channel
14
15
 
15
16
  ```bash
17
+ npm install fileuni@gui
16
18
  npx fileuni-gui
17
19
  ```
18
20
 
19
- ## Supported Platforms
20
-
21
- - Windows x64
22
- - Linux x64 (glibc)
23
- - Linux arm64 (glibc)
24
- - macOS Intel
25
- - macOS Apple Silicon
21
+ ## Run
26
22
 
27
- For prerelease GUI channels, use tags such as `fileuni@gui-alpha`, `fileuni@gui-beta`, or `fileuni@gui-rc`.
23
+ ```bash
24
+ npx fileuni --help
25
+ ```
28
26
 
29
27
  ## Platform Override
30
28
 
31
29
  The installer auto-detects the current platform.
32
- You can override the target manually when needed.
30
+ You can override the target manually when you need a specific Linux runtime variant.
33
31
 
34
32
  Examples:
35
33
 
36
34
  ```bash
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
35
+ FILEUNI_NPM_LIBC=musl npm install fileuni
36
+ FILEUNI_NPM_TARGET=x86_64-unknown-linux-musl npm install fileuni
39
37
  ```
40
38
 
41
39
  ## Optional Controls
42
40
 
43
41
  ```bash
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
42
+ FILEUNI_NPM_SKIP_DOWNLOAD=1 npm install fileuni
43
+ FILEUNI_NPM_BASE_URL=https://github.com/FileUni/FileUni-Project npm install fileuni
46
44
  ```
47
45
 
48
46
  ## License
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "fileuni",
3
- "version": "0.1.5-gui.0",
4
- "description": "FileUni GUI distributed through the fileuni@gui npm dist-tag with on-demand desktop bundle downloads.",
3
+ "version": "0.1.5",
4
+ "description": "FileUni CLI distributed through npm with on-demand platform binary 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-gui": "bin/launcher.js"
22
+ "fileuni": "bin/launcher.js"
23
23
  },
24
24
  "scripts": {
25
25
  "postinstall": "node ./scripts/postinstall.cjs"
@@ -1,34 +1,35 @@
1
1
  {
2
2
  "repository": "FileUni/FileUni-Project",
3
3
  "release_tag": "FileUni-v0.1.5",
4
- "version": "0.1.5-gui.0",
4
+ "version": "0.1.5",
5
5
  "package": {
6
6
  "name": "fileuni",
7
- "description": "FileUni GUI distributed through the fileuni@gui npm dist-tag with on-demand desktop bundle downloads.",
7
+ "description": "FileUni CLI distributed through npm with on-demand platform binary downloads.",
8
8
  "repository_directory": ".github/npm",
9
- "bin_name": "fileuni-gui",
10
- "display_name": "FileUni GUI",
11
- "env_prefix": "FILEUNI_GUI_NPM",
12
- "npm_config_prefix": "fileuni_gui"
9
+ "bin_name": "fileuni",
10
+ "display_name": "FileUni CLI",
11
+ "env_prefix": "FILEUNI_NPM",
12
+ "npm_config_prefix": "fileuni"
13
13
  },
14
14
  "targets": [
15
15
  {
16
- "target": "x86_64-pc-windows-msvc",
17
- "os": "win32",
16
+ "target": "x86_64-unknown-linux-gnu",
17
+ "os": "linux",
18
18
  "arch": "x64",
19
- "asset_name": "FileUni-gui-x86_64-windows-msvc.exe.zip",
19
+ "libc": "gnu",
20
+ "asset_name": "FileUni-cli-x86_64-linux-gnu.zip",
20
21
  "asset_format": "zip",
21
- "installed_rel_path": "fileuni-gui.exe",
22
+ "installed_rel_path": "fileuni",
22
23
  "launch_strategy": "exec"
23
24
  },
24
25
  {
25
- "target": "x86_64-unknown-linux-gnu",
26
+ "target": "x86_64-unknown-linux-musl",
26
27
  "os": "linux",
27
28
  "arch": "x64",
28
- "libc": "gnu",
29
- "asset_name": "FileUni-gui-x86_64-linux-gnu.AppImage",
30
- "asset_format": "file",
31
- "installed_rel_path": "fileuni-gui.AppImage",
29
+ "libc": "musl",
30
+ "asset_name": "FileUni-cli-x86_64-linux-musl.zip",
31
+ "asset_format": "zip",
32
+ "installed_rel_path": "fileuni",
32
33
  "launch_strategy": "exec"
33
34
  },
34
35
  {
@@ -36,28 +37,152 @@
36
37
  "os": "linux",
37
38
  "arch": "arm64",
38
39
  "libc": "gnu",
39
- "asset_name": "FileUni-gui-aarch64-linux-gnu.AppImage",
40
- "asset_format": "file",
41
- "installed_rel_path": "fileuni-gui.AppImage",
40
+ "asset_name": "FileUni-cli-aarch64-linux-gnu.zip",
41
+ "asset_format": "zip",
42
+ "installed_rel_path": "fileuni",
43
+ "launch_strategy": "exec"
44
+ },
45
+ {
46
+ "target": "aarch64-unknown-linux-musl",
47
+ "os": "linux",
48
+ "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
+ "libc": "gnu",
100
+ "asset_name": "FileUni-cli-riscv64gc-linux-gnu.zip",
101
+ "asset_format": "zip",
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",
42
131
  "launch_strategy": "exec"
43
132
  },
44
133
  {
45
134
  "target": "x86_64-apple-darwin",
46
135
  "os": "darwin",
47
136
  "arch": "x64",
48
- "asset_name": "FileUni-gui-x86_64-macos-app.zip",
137
+ "asset_name": "FileUni-cli-x86_64-macos-darwin.zip",
49
138
  "asset_format": "zip",
50
- "installed_rel_path": "FileUni UI.app",
51
- "launch_strategy": "open"
139
+ "installed_rel_path": "fileuni",
140
+ "launch_strategy": "exec"
52
141
  },
53
142
  {
54
143
  "target": "aarch64-apple-darwin",
55
144
  "os": "darwin",
56
145
  "arch": "arm64",
57
- "asset_name": "FileUni-gui-aarch64-macos-app.zip",
146
+ "asset_name": "FileUni-cli-aarch64-macos-darwin.zip",
58
147
  "asset_format": "zip",
59
- "installed_rel_path": "FileUni UI.app",
60
- "launch_strategy": "open"
148
+ "installed_rel_path": "fileuni",
149
+ "launch_strategy": "exec"
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"
61
186
  }
62
187
  ]
63
188
  }