Skip to content

Releases: Matthbo/GrandeOmega-patcher

GrandeOmega-patcher v1.3.1

05 Sep 23:53
Compare
Choose a tag to compare

Features added in this release

  • CLI can now apply skins on the Windows version of GO

Look forward to full support for windows in combination with a rewrite of this tool

GrandeOmega-patcher v1.2.1

08 Jun 18:19
Compare
Choose a tag to compare

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

13 May 20:25
Compare
Choose a tag to compare

Features added in this release

  • CLI can now download & install Grande Omega in empty folder or outdated version

GrandeOmega-patcher v1.1.1

13 Apr 15:12
Compare
Choose a tag to compare

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

12 Apr 19:27
Compare
Choose a tag to compare

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

07 Feb 13:46
Compare
Choose a tag to compare

Changes

  • Fix yarn on linux CRLF problem
  • Update dependencies

GrandeOmega-patcher v1.0.0

25 Jan 23:00
Compare
Choose a tag to compare

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

  1. Make sure you have Node.js v10+
  2. Install using npm i -g grandeomega-patcher
  3. Open a CMD/Powershell/Terminal window
  4. Go to a folder containing Grande Omega
  5. Run using go-patcher or gopatcher

Install as Node.js application

  1. Make sure you have Node.js v10+
  2. Download / clone this repo
  3. Install dependencies using npm install (or npm i for short)
  4. Run using npm start

Use as a Node.js dependency

  1. Install using npm i grandeomega-patcher
  2. Import using commonjs
    goPatcher = require("grandeomega-patcher")
    Or with ES6 imports
    import { patcher, Downloader } from "grandeomega-patcher"
  3. 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

16 Jan 01:22
Compare
Choose a tag to compare
v1 Release Candidate Pre-release
Pre-release

Install as cli tool

  1. Make sure you have Node.js v10+
  2. Install using npm i -g grandeomega-patcher-1.0.0-rc.tgz
  3. Open a CMD/Powershell/Terminal window
  4. Go to a folder containing Grande Omega
  5. Run using go-patcher or gopatcher

Install as Node.js application

  1. Make sure you have Node.js v10+
  2. Download / clone this repo
  3. Install dependencies using npm install (or npm i for short)
  4. Run using npm start