Skip to content

Commit 076ea41

Browse files
authored
Merge pull request #381 from lightningrodlabs/feat/profile-refactor
Profile refactor
2 parents 7163ccc + d3f5061 commit 076ea41

File tree

88 files changed

+870
-1219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+870
-1219
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,17 @@ back/2-conductor-config.yml
2222
back/scripts/2-install-happ.sh
2323
2-config-admin-ws
2424
2-config-app-ws
25-
.hc
2625
databases
2726
databases2
2827
keystore
2928
keystore2
3029
my-proxy-cert.cert
3130

31+
**/.hc*
32+
**/.kitsune2_bootstrap_srv
3233
**/*.dna
3334
**/*.happ
35+
**/*.webhapp
3436

3537
**/.DS_Store
3638
.DS_Store
-9.23 MB
Binary file not shown.

happs/happ/workdir/acorn.webhapp

-9.09 MB
Binary file not shown.

happs/happ/workdir/dna/projects/dna.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,15 @@ integrity:
88
zomes:
99
- name: projects_integrity
1010
bundled: ../../../../target/wasm32-unknown-unknown/release/projects_integrity.wasm
11+
- name: profiles_integrity
12+
bundled: ../../../../target/wasm32-unknown-unknown/release/profiles_integrity.wasm
1113
coordinator:
1214
zomes:
1315
- name: projects
1416
bundled: ../../../../target/wasm32-unknown-unknown/release/projects.wasm
1517
dependencies:
1618
- name: projects_integrity
19+
- name: profiles
20+
bundled: ../../../../target/wasm32-unknown-unknown/release/profiles.wasm
21+
dependencies:
22+
- name: profiles_integrity

happs/happ/workdir/happ.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@ manifest_version: "1"
22
name: acorn
33
description: productivity tool for distributed software teams
44
roles:
5-
- name: profiles
6-
provisioning:
7-
strategy: create
8-
deferred: false
9-
dna:
10-
bundled: "./profiles.dna"
11-
clone_limit: 0
125
- name: projects
136
provisioning:
147
strategy: create

weave-tool/acorn-moss.webhapp

-8.37 MB
Binary file not shown.

weave-tool/acorn.webhapp

-8.23 MB
Binary file not shown.

weave-tool/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"dev-weave2-webhapp": "weave --agent-idx 2 --dev-config weave.dev.config.webhapp.ts"
1111
},
1212
"dependencies": {
13-
"@theweave/cli": "0.14.0-rc.5"
13+
"@theweave/cli": "0.14.0-src.0"
1414
}
1515
}

weave-tool/weave.dev.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default defineConfig({
7878
},
7979
source: {
8080
type: 'https',
81-
url: 'https://github.com/holochain-apps/kando/releases/download/v0.12.0-rc.1/kando.webhapp',
81+
url: 'https://github.com/holochain-apps/kando/releases/download/v0.13.0-rc.0/kando.webhapp',
8282
},
8383
},
8484
],

web/dist/splashscreen.html

Lines changed: 2 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,4 @@
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 11.2.2</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-2023 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')
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 11.2.2</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')
372
require('electron').ipcRenderer.on('status', (event, message) => {
383
el.innerHTML = message
39-
})
40-
</script>
41-
</body>
42-
</html>
4+
})</script></body></html>

0 commit comments

Comments
 (0)