diff --git a/desktop/README.md b/desktop/README.md index 63547bd..bc1d7a6 100644 --- a/desktop/README.md +++ b/desktop/README.md @@ -13,13 +13,27 @@ npm start ``` -## Create a binary +## Make a new public release + +### Building the miner binaries + +#### MacOS + +``` +cmake .. -DWITH_AEON=OFF -DWITH_HTTPD=OFF -DWITH_TLS=OFF +``` + +### Changes to Electron + +Increment the version number found in `package.json` to make a new release. + +### Create a BailBloc binary ``` npm run buildall ``` -or +or ``` electron-builder --mac #or --windows or --linux @@ -27,7 +41,7 @@ electron-builder --mac #or --windows or --linux This will package up the app and stick it in the `dist` folder. -## Make a new public releaes +### Publish to GitHub First generate a GitHub access token by going to [https://github.com/settings/tokens/new](https://github.com/settings/tokens/new). @@ -44,5 +58,3 @@ npm run publish ``` This will create a draft of a github release at [https://github.com/thenewinquiry/bailbloc/releases](https://github.com/thenewinquiry/bailbloc/releases). Edit the draft to make the release public. - -Please note: you must increment the version number found in `package.json` to make a new release. diff --git a/desktop/miner_binaries/bailbloc_worker b/desktop/miner_binaries/bailbloc_worker index 549663d..5216561 100755 Binary files a/desktop/miner_binaries/bailbloc_worker and b/desktop/miner_binaries/bailbloc_worker differ diff --git a/desktop/package.json b/desktop/package.json index 20245a6..dca7004 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -1,6 +1,6 @@ { "name": "bailbloc", - "version": "1.3.2", + "version": "1.3.4", "description": "converts computational cycles in bail funds", "main": "main.js", "scripts": {