Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,13 @@ Since `v4.6.0`, we have switched to automated releases and this file does not ne

## [4.18.1](https://github.com/nwutils/nw-builder/compare/v4.18.0...v4.18.1) (2026-08-19)


### Bug Fixes

* set LSFileQuarantineEnabled to false ([#1631](https://github.com/nwutils/nw-builder/issues/1631)) ([e59b34d](https://github.com/nwutils/nw-builder/commit/e59b34d8029ab46f30d5d504218a897758e10aef))

- set LSFileQuarantineEnabled to false ([#1631](https://github.com/nwutils/nw-builder/issues/1631)) ([e59b34d](https://github.com/nwutils/nw-builder/commit/e59b34d8029ab46f30d5d504218a897758e10aef))

### Chores

* **deps-dev:** bump the npm group across 1 directory with 5 updates ([#1633](https://github.com/nwutils/nw-builder/issues/1633)) ([1a2e085](https://github.com/nwutils/nw-builder/commit/1a2e085d9e0eb63782ad86e4d0c9d61a369cecb6))
- **deps-dev:** bump the npm group across 1 directory with 5 updates ([#1633](https://github.com/nwutils/nw-builder/issues/1633)) ([1a2e085](https://github.com/nwutils/nw-builder/commit/1a2e085d9e0eb63782ad86e4d0c9d61a369cecb6))

## [4.18.0](https://github.com/nwutils/nw-builder/compare/v4.17.13...v4.18.0) (2026-07-25)

Expand Down
2 changes: 1 addition & 1 deletion src/bld/osx.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default async function setOsxConfig({
outApp,
"Contents/Frameworks/nwjs Framework.framework/Versions",
/* TODO: Version mismatch tracked in https://github.com/nwjs/nw.js/issues/8371 */
"Current",
chromiumVersion,
"Helpers",
);

Expand Down
2 changes: 1 addition & 1 deletion tests/specs/bld.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe.skip("bld test suite", async () => {
const nwOptions = {
srcDir: "tests/fixtures/app",
mode: "build",
version: "0.114.0",
version: "0.115.0",
flavor: "sdk",
platform: util.PLATFORM_KV[process.platform],
arch: util.ARCH_KV[process.arch],
Expand Down
8 changes: 4 additions & 4 deletions tests/specs/osx.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"Frameworks",
"nwjs Framework.framework",
"Versions",
"Current",
chromiumVersion,
"Helpers",
"Demo Helper (Alerts).app",
);
Expand All @@ -41,7 +41,7 @@
"Frameworks",
"nwjs Framework.framework",
"Versions",
"Current",
chromiumVersion,
"Helpers",
"Demo Helper (GPU).app",
);
Expand All @@ -51,7 +51,7 @@
"Frameworks",
"nwjs Framework.framework",
"Versions",
"Current",
chromiumVersion,
"Helpers",
"Demo Helper (Renderer).app",
);
Expand All @@ -61,7 +61,7 @@
"Frameworks",
"nwjs Framework.framework",
"Versions",
"Current",
chromiumVersion,
"Helpers",
"Demo Helper.app",
);
Expand Down Expand Up @@ -101,7 +101,7 @@
expect(appPathExists).toEqual(true);

const helperAlertsPathExists = await util.fileExists(helperAlertsPath);
expect(helperAlertsPathExists).toEqual(true);

Check failure on line 104 in tests/specs/osx.test.js

View workflow job for this annotation

GitHub Actions / MacOS 26 Intel

tests/specs/osx.test.js > bld/setOsxConfig > renames the .app files correctly

AssertionError: expected false to deeply equal true - Expected + Received - true + false ❯ tests/specs/osx.test.js:104:38

Check failure on line 104 in tests/specs/osx.test.js

View workflow job for this annotation

GitHub Actions / MacOS 26 ARM

tests/specs/osx.test.js > bld/setOsxConfig > renames the .app files correctly

AssertionError: expected false to deeply equal true - Expected + Received - true + false ❯ tests/specs/osx.test.js:104:38

const helperGPUPathExists = await util.fileExists(helperGPUPath);
expect(helperGPUPathExists).toEqual(true);
Expand All @@ -127,7 +127,7 @@
);
const helperAlertsExePathExists =
await util.fileExists(helperAlertsExePath);
expect(helperAlertsExePathExists).toEqual(true);

Check failure on line 130 in tests/specs/osx.test.js

View workflow job for this annotation

GitHub Actions / MacOS 26 Intel

tests/specs/osx.test.js > bld/setOsxConfig > renames the executables correctly

AssertionError: expected false to deeply equal true - Expected + Received - true + false ❯ tests/specs/osx.test.js:130:41

Check failure on line 130 in tests/specs/osx.test.js

View workflow job for this annotation

GitHub Actions / MacOS 26 ARM

tests/specs/osx.test.js > bld/setOsxConfig > renames the executables correctly

AssertionError: expected false to deeply equal true - Expected + Received - true + false ❯ tests/specs/osx.test.js:130:41

const helperGPUExePath = path.join(
helperGPUPath,
Expand Down Expand Up @@ -168,7 +168,7 @@
const ContentsInfoPlistJson = parse(
await fs.promises.readFile(ContentsInfoPlistPath, "utf-8"),
);
expect(ContentsInfoPlistJson.LSApplicationCategoryType).toEqual(

Check failure on line 171 in tests/specs/osx.test.js

View workflow job for this annotation

GitHub Actions / MacOS 26 Intel

tests/specs/osx.test.js > bld/setOsxConfig >

AssertionError: expected undefined to deeply equal 'public.app-category.utilities' - Expected: "public.app-category.utilities" + Received: undefined ❯ tests/specs/osx.test.js:171:63

Check failure on line 171 in tests/specs/osx.test.js

View workflow job for this annotation

GitHub Actions / MacOS 26 ARM

tests/specs/osx.test.js > bld/setOsxConfig >

AssertionError: expected undefined to deeply equal 'public.app-category.utilities' - Expected: "public.app-category.utilities" + Received: undefined ❯ tests/specs/osx.test.js:171:63
"public.app-category.utilities",
);
expect(ContentsInfoPlistJson.CFBundleIdentifier).toEqual(
Expand Down
Loading