Releases
1.0.0
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
or gopatcher
Install as Node.js application
Make sure you have Node.js v10+
Download / clone this repo
Install dependencies using npm install
(or npm i
for short)
Run using npm start
Use as a Node.js dependency
Install using npm i grandeomega-patcher
Import using commonjs
goPatcher = require ( "grandeomega-patcher" )
Or with ES6 imports
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 */ ) ;
You can’t perform that action at this time.