Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 3.59 KB

README.md

File metadata and controls

59 lines (41 loc) · 3.59 KB

Launcher used for SWGemu "Project Carbonite"

Adapted from TCW's Launcher by: Boogles

Electron application based on dpwhitter's RoC Launcher and Tylco's SR Launcher

Get Started

To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:

Note: If you're using Linux Bash for Windows, see this guide or use node from the command prompt.

Building

Commands for building can be found in package.json under scripts. Argument of -p always will publish the build as a release to your repository.

Windows - Public Release

  • Create a Personal Access Token
  • In Windows, set an Environmental variable in PowerShell with the following command, replacing "YOUR_TOKEN" with the token you generated above: [Environment]::SetEnvironmentVariable("GH_TOKEN","YOUR_TOKEN","User") - You may need to restart after running this.
  • npm pack - Pack the applications
  • npm run-script build-win - Build applications and publish draft to release of your applications repo.

Windows - Local Build

  • In package.json - Change "build-win": "build --win --ia32 -p always", to "build-win": "build --win --ia32",
  • npm pack - Pack the applications
  • npm run-script build-win - Build applications and publish draft to release of your applications repo.
  • Inside of the /dist directory should an executable with your application.

Linux / macOS - Local Build

  • npm pack - Pack the applications
  • Linux: npm run-script build-linux - Build applications and publish draft to release of your applications repo.
  • macOS: npm run-script build-mac - Build applications and publish draft to release of your applications repo.
  • Inside of the /dist directory should a package containing your application. Some limitations apply when packaging on a platform that cannot execute the package. (You can only make a macOS .dmg on macOS)

About

Structure

  • package.json - Points to the app's main file and lists its details and dependencies.
  • main.js - Starts the app and creates a browser window to render HTML. This is the app's main process.
  • index.html - A web page to render. This is the app's renderer process.
  • renderer.js - Handles users interaction with the application.
  • install.js - Handles the patching process.
  • md5.js - Checks md5 of files for patching.
  • /setup - Directory containing files for guided setup process.

Resources for Learning Electron

License

CC0 1.0 (Public Domain)