@neonwilderness/moveskins 1.1.3 → 1.3.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/CHANGELOG.md +15 -1
- package/dist/index.js +788 -650
- package/package.json +13 -11
- package/skins/skinRegister.json +12 -0
- package/src/_download.js +63 -1
- package/src/_upload.js +34 -12
- package/src/index.js +17 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.3.0 (02.05.2026)
|
|
4
|
+
|
|
5
|
+
- Add --toolbar CLI switch to additionally download 3 related modToolbar skins
|
|
6
|
+
|
|
7
|
+
## 1.2.0 (25.04.2026)
|
|
8
|
+
|
|
9
|
+
- Implement recursive expansion of <% xxx.skin name="yyy" %> macros
|
|
10
|
+
- Implement additional download of sidebar freetext modules (CLI param --modules)
|
|
11
|
+
- Implement upload of sidebar freetext modules when in skin folder
|
|
12
|
+
|
|
3
13
|
## 1.1.3 (05.04.2026)
|
|
14
|
+
|
|
4
15
|
- Add ssr noExternal=true config to vite config
|
|
5
16
|
|
|
6
17
|
## 1.1.2 (05.04.2026)
|
|
18
|
+
|
|
7
19
|
- Add skins/skinRegister.json to package files
|
|
8
20
|
|
|
9
21
|
## 1.1.1 (05.04.2026)
|
|
10
|
-
|
|
22
|
+
|
|
23
|
+
- Add bin entry to package.json
|
|
11
24
|
|
|
12
25
|
## 1.1.0 (31.03.2026)
|
|
26
|
+
|
|
13
27
|
- Migrate to Vite+
|
|
14
28
|
- Swap Ava for Vitest
|
|
15
29
|
- Generate minified dist js file
|