Skip to content

Commit b97badd

Browse files
Merge pull request #161 from lightningrodlabs/electron-holochain-0.0.41
use lrl electron-holochain 0.0.41
2 parents 69b3030 + 0e7be82 commit b97badd

38 files changed

+525
-553
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
matrix:
4747
os:
48-
- ubuntu-18.04
48+
- ubuntu-latest
4949
- macos-latest
5050
- windows-latest
5151
runs-on: ${{ matrix.os }}
@@ -95,16 +95,16 @@ jobs:
9595
env:
9696
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9797
run: |
98-
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-1.1.0-alpha.AppImage" --clobber
98+
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-1.1.1-alpha.AppImage" --clobber
9999
- name: upload binary (macos only)
100100
if: ${{ runner.os == 'macOs' }}
101101
env:
102102
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
103103
run: |
104-
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-1.1.0-alpha.dmg" --clobber
104+
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-1.1.1-alpha.dmg" --clobber
105105
- name: upload binary (Windows only)
106106
if: ${{ runner.os == 'Windows' }}
107107
env:
108108
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
109109
run: |
110-
gh release upload "$($env:GITHUB_REF -replace "refs/tags/")" "electron/out/Acorn.Setup.1.1.0-alpha.exe" --clobber
110+
gh release upload "$($env:GITHUB_REF -replace "refs/tags/")" "electron/out/Acorn.Setup.1.1.1-alpha.exe" --clobber

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Acorn is currently in **Alpha** testing phase.
66

77
## Things you can do
88

9-
- [**Download & install the latest Acorn release**](https://github.com/lightningrodlabs/acorn/releases/tag/v1.1.0-alpha).
9+
- [**Download & install the latest Acorn release**](https://github.com/lightningrodlabs/acorn/releases/tag/v1.1.1-alpha).
1010

1111
- Check out the [Acorn Knowledge Base](https://docs.acorn.software) to learn more about Acorn, its methodology and features.
1212

default.nix

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
let
2+
holonixRev = "0b1bf0eb19626f354c8efce70a21dbdbbaffbc71";
3+
4+
holonixPath = builtins.fetchTarball "https://github.com/holochain/holonix/archive/${holonixRev}.tar.gz";
5+
holonix = import (holonixPath) {
6+
holochainVersionId = "v0_0_150";
7+
};
8+
nixpkgs = holonix.pkgs;
9+
in nixpkgs.mkShell {
10+
inputsFrom = [ holonix.main ];
11+
packages = with nixpkgs; [
12+
nodejs-16_x
13+
];
14+
}

electron/afterSignHook.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = async function (params) {
1010

1111
console.log('afterSign hook triggered', params)
1212

13-
const appId = 'com.harris-braun-enterprises.acorn'
13+
const appId = 'org.lightningrodlabs.acorn'
1414

1515
const appPath = path.join(
1616
params.appOutDir,

electron/build/icon.icns

-49.7 KB
Binary file not shown.

electron/build/icon.ico

154 KB
Binary file not shown.

0 commit comments

Comments
 (0)