Electron distribution of the Dasher application. For latest releases see here
git clone [email protected]:dasher-project/dasher-electron.git
cd dasher-electron
git submodule update --init
yarn install
yarn start
yarn build
Production builds are periodically realeased for the following platforms:
- Windows (.exe)
- Mac (.dmg)
- Linux (.AppImage)
For more information on running AppImage files, please see (https://docs.appimage.org/user-guide/faq.html)
To create a new production build:
- Merge the feature branches required into main
- Update the version number within package.json
- Tag the commit with the corresponding version number and push the changes to origin.
Example:
package.json
...
"version": "1.1.2",
...
git tag v1.1.2
git push && git push --tags
Dasher-Electron follows Symantic Versioning