From 2809f955ad62a3e13f2d067abc2b7b7c0c98e970 Mon Sep 17 00:00:00 2001 From: mswgen <54498184+mswgen@users.noreply.github.com> Date: Wed, 17 Nov 2021 08:56:31 +0900 Subject: [PATCH] bump version --- package.json | 2 +- src/update/069-to-070.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0a3a0e5..7c63ad5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "oc-updater", "productName": "OpenCore Updater", - "version": "1.1.0", + "version": "1.1.1", "description": "OpenCore Updater", "main": "dist/index.js", "scripts": { diff --git a/src/update/069-to-070.ts b/src/update/069-to-070.ts index c35b9ac..7961d74 100644 --- a/src/update/069-to-070.ts +++ b/src/update/069-to-070.ts @@ -19,7 +19,7 @@ export default { cnt2++; } plistParsed.NVRAM.Add['7C436110-AB2A-4BBB-A880-FE41995C9F82'].ForceDisplayRotationInEFI = 0; - plistParsed.PlatformInfo.Generic.AdviseFeatures = plistParsed.PlatformInfo.Generic.AdviseWindows; + plistParsed.PlatformInfo.Generic.AdviseFeatures = plistParsed.PlatformInfo.Generic.AdviseWindows ? true : false; delete plistParsed.PlatformInfo.Generic.AdviseWindows; plistParsed.UEFI.Output.GopPassThrough = plistParsed.UEFI.Output.GopPassThrough == true ? 'Enabled' : 'Disabled'; plistParsed.UEFI.ProtocolOverrides.AppleEg2Info = false;