diff --git a/changelog.md b/changelog.md index 58722d3a..cf55a250 100644 --- a/changelog.md +++ b/changelog.md @@ -2,7 +2,7 @@ This document is the authoritative source for TurboWarp's changelogs. Everything Prefix notes with "Windows:", "macOS:", or "Linux:" as needed. Do not use **formatting** or [links](https://desktop.turbowarp.org/). -# 1.10.0-beta.2 (2024-01-22) +# 1.10.0-beta.3 (2024-01-22) - Support for Windows 7, 8, and 8.1 has been re-added. We now offer two builds for Windows: one for Windows 10 and later, and one 'Legacy' build for Windows 7 and later. We'll keep the legacy build around as long as it is not an unreasonable maintenance burden - A similar approach will be used to maintain support for macOS 10.13 and macOS 10.14 in 1.11 diff --git a/docs/changelog.json b/docs/changelog.json index 7a362e1b..8dbc6d2b 100644 --- a/docs/changelog.json +++ b/docs/changelog.json @@ -1,6 +1,6 @@ [ { - "version": "1.10.0-beta.2", + "version": "1.10.0-beta.3", "date": "2024-1-22", "notes": [ "Support for Windows 7, 8, and 8.1 has been re-added. We now offer two builds for Windows: one for Windows 10 and later, and one 'Legacy' build for Windows 7 and later. We'll keep the legacy build around as long as it is not an unreasonable maintenance burden", diff --git a/linux-files/org.turbowarp.TurboWarp.metainfo.xml b/linux-files/org.turbowarp.TurboWarp.metainfo.xml index 5d174c2c..6e978d01 100644 --- a/linux-files/org.turbowarp.TurboWarp.metainfo.xml +++ b/linux-files/org.turbowarp.TurboWarp.metainfo.xml @@ -64,7 +64,7 @@ - +
  • Support for Windows 7, 8, and 8.1 has been re-added. We now offer two builds for Windows: one for Windows 10 and later, and one 'Legacy' build for Windows 7 and later. We'll keep the legacy build around as long as it is not an unreasonable maintenance burden
  • diff --git a/release-automation/build.js b/release-automation/build.js index dd9f035d..2f0a516d 100644 --- a/release-automation/build.js +++ b/release-automation/build.js @@ -4,6 +4,7 @@ const builder = require('electron-builder'); const electronNotarize = require('@electron/notarize'); const electronGet = require('@electron/get'); const AdmZip = require('adm-zip'); +const packageJSON = require('../package.json'); const {Platform, Arch} = builder;