Skip to content

Commit e1c59e5

Browse files
committed
replace 5.0.1-alpha with 5.0.2-alpha
1 parent 3e22071 commit e1c59e5

File tree

10 files changed

+58
-17
lines changed

10 files changed

+58
-17
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,16 @@ jobs:
111111
env:
112112
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
113113
run: |
114-
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-5.0.1-alpha.AppImage" --clobber
114+
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-5.0.2-alpha.AppImage" --clobber
115115
- name: upload binary (macos only)
116116
if: ${{ runner.os == 'macOs' }}
117117
env:
118118
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
119119
run: |
120-
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn.5.0.1-alpha.darwin-x64.zip" --clobber
120+
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn.5.0.2-alpha.darwin-x64.zip" --clobber
121121
- name: upload binary (Windows only)
122122
if: ${{ runner.os == 'Windows' }}
123123
env:
124124
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
125125
run: |
126-
gh release upload "$($env:GITHUB_REF -replace "refs/tags/")" "electron/out/Acorn.Setup.5.0.1-alpha.exe" --clobber
126+
gh release upload "$($env:GITHUB_REF -replace "refs/tags/")" "electron/out/Acorn.Setup.5.0.2-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/v5.0.1-alpha).
9+
- [**Download & install the latest Acorn release**](https://github.com/lightningrodlabs/acorn/releases/tag/v5.0.2-alpha).
1010

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

electron/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

electron/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "acorn",
3-
"version": "5.0.1-alpha",
3+
"version": "5.0.2-alpha",
44
"description": "Open source peer-to-peer project management for software teams",
55
"main": "dist/index.js",
66
"scripts": {
@@ -20,7 +20,10 @@
2020
"afterSign": "./afterSignHook.js",
2121
"appId": "org.lightningrodlabs.acorn",
2222
"copyright": "© 2020-2022 Harris-Braun Enterprises, LLC",
23-
"asarUnpack": ["binaries/**/*", "web/**/*"],
23+
"asarUnpack": [
24+
"binaries/**/*",
25+
"web/**/*"
26+
],
2427
"files": [
2528
"dist/**/*",
2629
"web/**/*",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "acorn",
3-
"version": "5.0.1-alpha",
3+
"version": "5.0.2-alpha",
44
"description": "Acorn is software that helps people create the future",
55
"repository": {
66
"type": "git",

web/dist/splashscreen.html

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,42 @@
1-
<!doctype html><html><head><title>Acorn</title><script defer="defer" src="./splash.js"></script></head><body><div class="splash-wrapper"><div class="splash-image-wrapper"><div class="splash-image-caption">Photograph by Valeriia Miller</div></div><div class="splash-content-wrapper"><div><div class="splash-logo">acorn</div><div class="splash-version">version 5.0.1-alpha</div></div><div class="splash-loading-message" id="activity">Setting up Holochain...</div><div class="splash-description">Acorn is an open-source, peer-to-peer project management application designed and built for distributed software development teams. Acorn functions through defining Intended Outcomes for a project in a Dependency Tree structure.<br/><br/>Acorn is built as a Holochain application, meaning it runs on decentralized peer-to-peer computing and can be used without server infrastructure or a hosting service. The users of a particular Acorn instance are its hosting power.</div><div class="splash-license">© 2020-2022 Harris-Braun Enterprises, LLC.<br/>Licensed under the Cryptographic Autonomy License v1.0.</div></div></div><script>const el = document.getElementById('activity')
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Acorn</title>
5+
<script defer="defer" src="./splash.js"></script>
6+
</head>
7+
<body>
8+
<div class="splash-wrapper">
9+
<div class="splash-image-wrapper">
10+
<div class="splash-image-caption">Photograph by Valeriia Miller</div>
11+
</div>
12+
<div class="splash-content-wrapper">
13+
<div>
14+
<div class="splash-logo">acorn</div>
15+
<div class="splash-version">version 5.0.2-alpha</div>
16+
</div>
17+
<div class="splash-loading-message" id="activity">
18+
Setting up Holochain...
19+
</div>
20+
<div class="splash-description">
21+
Acorn is an open-source, peer-to-peer project management application
22+
designed and built for distributed software development teams. Acorn
23+
functions through defining Intended Outcomes for a project in a
24+
Dependency Tree structure.<br /><br />Acorn is built as a Holochain
25+
application, meaning it runs on decentralized peer-to-peer computing
26+
and can be used without server infrastructure or a hosting service.
27+
The users of a particular Acorn instance are its hosting power.
28+
</div>
29+
<div class="splash-license">
30+
© 2020-2022 Harris-Braun Enterprises, LLC.<br />Licensed under the
31+
Cryptographic Autonomy License v1.0.
32+
</div>
33+
</div>
34+
</div>
35+
<script>
36+
const el = document.getElementById('activity')
237
require('electron').ipcRenderer.on('status', (event, message) => {
338
el.innerHTML = message
4-
})</script></body></html>
39+
})
40+
</script>
41+
</body>
42+
</html>

web/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "acorn-ui",
3-
"version": "5.0.1-alpha",
3+
"version": "5.0.2-alpha",
44
"browser": {
55
"child_process": false
66
},

web/src/splashscreen.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<div class="splash-content-wrapper">
1313
<div>
1414
<div class="splash-logo">acorn</div>
15-
<div class="splash-version">version 5.0.1-alpha</div>
15+
<div class="splash-version">version 5.0.2-alpha</div>
1616
</div>
1717
<div class="splash-loading-message" id="activity">
1818
Setting up Holochain...

0 commit comments

Comments
 (0)