Skip to content

Commit db49b03

Browse files
committed
v9.7.1-alpha
1 parent f9c4a29 commit db49b03

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,16 @@ jobs:
5959
env:
6060
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6161
run: |
62-
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-9.6.1-alpha.AppImage" --clobber
62+
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn-9.7.1-alpha.AppImage" --clobber
6363
- name: upload binary (macos only)
6464
if: ${{ runner.os == 'macOs' }}
6565
env:
6666
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6767
run: |
68-
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn.9.6.1-alpha.darwin-x64.zip" --clobber
68+
gh release upload "${GITHUB_REF#refs/tags/}" "electron/out/Acorn.9.7.1-alpha.darwin-x64.zip" --clobber
6969
- name: upload binary (Windows only)
7070
if: ${{ runner.os == 'Windows' }}
7171
env:
7272
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7373
run: |
74-
gh release upload "$($env:GITHUB_REF -replace "refs/tags/")" "electron/out/Acorn.Setup.9.6.1-alpha.exe" --clobber
74+
gh release upload "$($env:GITHUB_REF -replace "refs/tags/")" "electron/out/Acorn.Setup.9.7.1-alpha.exe" --clobber

README.md

+1-1
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/v9.6.1-alpha).
9+
- [**Download & install the latest Acorn release**](https://github.com/lightningrodlabs/acorn/releases/tag/v9.7.1-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.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "acorn",
3-
"version": "9.6.1-alpha",
3+
"version": "9.7.1-alpha",
44
"description": "Open source peer-to-peer project management for software teams",
55
"main": "dist/index.js",
66
"scripts": {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "acorn-workspace",
33
"packageManager": "[email protected]",
4-
"version": "9.6.1-alpha",
4+
"version": "9.7.1-alpha",
55
"private": true,
66
"workspaces": {
77
"packages": [

web/dist/splashscreen.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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 9.6.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-2023 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><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 9.7.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-2023 Harris-Braun Enterprises, LLC.<br/>Licensed under the Cryptographic Autonomy License v1.0.</div></div></div><script>const el = document.getElementById('activity')
22
require('electron').ipcRenderer.on('status', (event, message) => {
33
el.innerHTML = message
44
})</script></body></html>

web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "acorn-ui",
3-
"version": "9.6.1-alpha",
3+
"version": "9.7.1-alpha",
44
"browser": {
55
"child_process": false
66
},

web/src/splashscreen.html

+1-1
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 9.6.1-alpha</div>
15+
<div class="splash-version">version 9.7.1-alpha</div>
1616
</div>
1717
<div class="splash-loading-message" id="activity">
1818
Setting up Holochain...

0 commit comments

Comments
 (0)