Releases: Matthbo/GrandeOmega-patcher
Releases · Matthbo/GrandeOmega-patcher
GrandeOmega-patcher v1.3.1
GrandeOmega-patcher v1.2.1
Fixes
- Downloader now works with the stupid (maybe temporary) zip structure (from GO 1.8.2+)
- Skins can be applied again after updating GO
GrandeOmega-patcher v1.2.0
Features added in this release
- CLI can now download & install Grande Omega in empty folder or outdated version
GrandeOmega-patcher v1.1.1
Changes
- Add askUserInput parameter for dependency usage
Fixes
- Skin download with non capitalized characters
- pre-installed dependencies causing npm silent install error (#1)
GrandeOmega-patcher v1.1.0
Features added in this release
- Option to apply a skin to your Grande Omega install
Changes
- Update Grande Omega dependencies
- Remove unused 'electron-debug' dependency
GrandeOmega-patcher v1.0.1
Changes
- Fix yarn on linux CRLF problem
- Update dependencies
GrandeOmega-patcher v1.0.0
Features added in this release
- Downloader to download & unzip grandeomega (mac version)
- Patcher that updates GO's needed dependencies & removes the ones not needed
- Support to be run as; Node.js application, Node.js dependency & CLI tool
Install as cli tool
- Make sure you have Node.js v10+
- Install using
npm i -g grandeomega-patcher
- Open a CMD/Powershell/Terminal window
- Go to a folder containing Grande Omega
- Run using
go-patcher
orgopatcher
Install as Node.js application
- Make sure you have Node.js v10+
- Download / clone this repo
- Install dependencies using
npm install
(ornpm i
for short) - Run using
npm start
Use as a Node.js dependency
- Install using
npm i grandeomega-patcher
- Import using commonjs
Or with ES6 imports
goPatcher = require("grandeomega-patcher")
import { patcher, Downloader } from "grandeomega-patcher"
- How to use
// Downloader const dl = new Downloader(/* outDir: string, goDir: string */); await dl.downloadFile(/* url: string */); dl.unzipFile(); // Static cleanup function await Downloader.cleanUp(/* outDir: string, handleError?: (error: Error) => void */); // Patcher await patcher(/* goDir: string */);
v1 Release Candidate
Install as cli tool
- Make sure you have Node.js v10+
- Install using
npm i -g grandeomega-patcher-1.0.0-rc.tgz
- Open a CMD/Powershell/Terminal window
- Go to a folder containing Grande Omega
- Run using
go-patcher
orgopatcher
Install as Node.js application
- Make sure you have Node.js v10+
- Download / clone this repo
- Install dependencies using
npm install
(ornpm i
for short) - Run using
npm start