@xmbl/simulator 0.1.14 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.15
4
+
5
+ ### Patch Changes
6
+
7
+ - **The Linux and Windows desktop builds still failed at v0.1.14; both are fixed.** v0.1.14 attached
8
+ the macOS dmg (x64 + arm64), both web bundles and the extension zip — the first downloadable
9
+ builds this repo has ever produced — but two targets were still missing:
10
+
11
+ - **Linux** — the default deb/AppImage artifact name is `${name}_${version}_${arch}`, and `name`
12
+ is the SCOPED package name `@xmbl/desktop-app`, so fpm tried to write into `dist/@xmbl/` and
13
+ died with "Parent directory does not exist". Artifacts are now named explicitly.
14
+ - **Windows** — electron-builder rebuilt every native dependency in the hoisted workspace tree
15
+ for the electron ABI, and `classic-level`'s node-gyp build fails on Windows, so the `.exe` was
16
+ never produced. Nothing in the desktop app loads a native module (`main.js` and
17
+ `src/core/xmbl-core.js` require only `electron` and `path`), so the rebuild is skipped.
18
+
19
+ No change to any published package's code in this release.
20
+
3
21
  ## 0.1.14
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmbl/simulator",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "description": "XMBL Simulator",