For more information, check out the Ogmo 3 homepage. Or just go straight to the downloads page! If you need a build for 32 bit Windows, @vontoGH has graciously made them available here!
This project requires Haxe v4.0.0 or later, Node v10+, and various dependencies for each of them.
- Install Node
- Install Haxe
- Run the following commands:
haxelib setup
haxelib install electron 4.1.4
haxelib install jQueryExtern
haxelib install haxe-loader
npm i
npm run build
This builds the App and puts it in the bin
directory. You can then start the app by running npm start
, or by starting electron in the directory.
Speed up development by using Webpack's dev server! Running npm run dev
builds the app, starts a server that will watch for changes in the project, then starts electron. If changes are found, Webpack will rebuild the source and refresh the app. If there are errors, they will show up in the app's DevTools.
While running the dev server, all code that is within #if debug
conditionals are added in.
NOTES:
- Changes to
App.hx
are not watched, and the app will need to manually be rebuilt if changes are made there. - The app will need to be rebuilt normally (
npm run build
) in order to run it again after using the dev server.
npm i
npm run build
npm run dist
This builds, then packages the App into an executable.
- Created by Matt Thorson and Noel Berry
- Icons & Logo by Kyle Pulver
- Ported to Haxe and extended by Caleb Cornett, Will Blanton, and Austin East