Skip to content

Commit f007c0f

Browse files
committed
maybe smol release test.
1 parent 9841619 commit f007c0f

23 files changed

+180
-92
lines changed

docs/message_types/about.md

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
# about (profile update)
2+
About messages are used to add additional information to another message, much like attaching post-it notes to some book page. You're _attaching information about_ something. Most use cases of `about` messages are to add names, images and descriptions to a user profile.
3+
4+
> **Attention:** There is no central authority handling names on the Scuttleverse. Much like in the physical world where two people can have the exact same name so it is on Scuttlebutt.
5+
>
6+
> You can name other people as well, just like partners and friends do.
7+
8+
9+
## What does it look like?
10+
11+
~~~
12+
{
13+
"key": "%buRChtQMrk/WjZQsfsgsg17XHmSDnMMKfFEXv/bjL43lQ=.sha256",
14+
"value": {
15+
"previous": null,
16+
"sequence": 1,
17+
"author": "@G/zUdqlPsdgsgd8yXIfMjx1676ApAOghwgc=.ed25519",
18+
"timestamp": 1560287825423,
19+
"hash": "sha256",
20+
"content": {
21+
"type": "about",
22+
"about": "@G/zUdqlPMsdgsdg8yXIfMjx1676ApAOghwgc=.ed25519",
23+
"image": "&N3ectV2qM5gyH2Zrsdgsdgd+InCMkJBc/MaTbJ0=.sha256",
24+
"name": "Hilo",
25+
"description": "extrem klug"
26+
},
27+
"signature": "UMjf4aFsdgsgUY9zeDAqWdTZeymoQznicvfgATu0/kArvLnshqbkiG7ZIngXcnztMUc6SyI4GrDwkAA==.sig.ed25519"
28+
},
29+
"timestamp": 1560288248693,
30+
"rts": 1560287825423
31+
}
32+
~~~
33+
34+
The message above is adding a `name`, an `image` and a `description` to the user specified by the `about` field.
35+
36+
There is a lot more [information about `about` online](http://scuttlebot.io/docs/message-types/about.html).
37+
38+
139
# about (gathering)
240

341
`about` messages are very flexible. They are often used to add or alter metadata _about_ some other message. In Patchfox documentation, I use the jargon that this message is _overloaded_ and it's meaning depends on which message it is _abouting_ about.
@@ -51,41 +89,3 @@ Let's look at another case of `about` being used with _gatherings_:
5189
```
5290

5391
That message is marking a _feed_ (aka a user) as attending the _gathering_.
54-
55-
56-
# about (profile update)
57-
About messages are used to add additional information to another message, much like attaching post-it notes to some book page. You're _attaching information about_ something. Most use cases of `about` messages are to add names, images and descriptions to a user profile.
58-
59-
> **Attention:** There is no central authority handling names on the Scuttleverse. Much like in the physical world where two people can have the exact same name so it is on Scuttlebutt.
60-
>
61-
> You can name other people as well, just like partners and friends do.
62-
63-
64-
## What does it look like?
65-
66-
~~~
67-
{
68-
"key": "%buRChtQMrk/WjZQsfsgsg17XHmSDnMMKfFEXv/bjL43lQ=.sha256",
69-
"value": {
70-
"previous": null,
71-
"sequence": 1,
72-
"author": "@G/zUdqlPsdgsgd8yXIfMjx1676ApAOghwgc=.ed25519",
73-
"timestamp": 1560287825423,
74-
"hash": "sha256",
75-
"content": {
76-
"type": "about",
77-
"about": "@G/zUdqlPMsdgsdg8yXIfMjx1676ApAOghwgc=.ed25519",
78-
"image": "&N3ectV2qM5gyH2Zrsdgsdgd+InCMkJBc/MaTbJ0=.sha256",
79-
"name": "Hilo",
80-
"description": "extrem klug"
81-
},
82-
"signature": "UMjf4aFsdgsgUY9zeDAqWdTZeymoQznicvfgATu0/kArvLnshqbkiG7ZIngXcnztMUc6SyI4GrDwkAA==.sig.ed25519"
83-
},
84-
"timestamp": 1560288248693,
85-
"rts": 1560287825423
86-
}
87-
~~~
88-
89-
The message above is adding a `name`, an `image` and a `description` to the user specified by the `about` field.
90-
91-
There is a lot more [information about `about` online](http://scuttlebot.io/docs/message-types/about.html).

docs/packages/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ These are the packages that Patchfox is loading.
77
* [blog](/packages/blog/)
88
* [books](/packages/books/)
99
* [errorHandler](/packages/errorHandler/)
10-
* [contacts](/packages/contacts/)
1110
* [calendar](/packages/calendar/)
11+
* [contacts](/packages/contacts/)
1212
* [githubIntegration](/packages/githubIntegration/)
1313
* [globalMenu](/packages/globalMenu/)
1414
* [helpMenu](/packages/helpMenu/)
@@ -21,6 +21,7 @@ These are the packages that Patchfox is loading.
2121
* [pub](/packages/pub/)
2222
* [search](/packages/search/)
2323
* [settings](/packages/settings/)
24+
* [settings-old](/packages/settings-old/)
2425
* [sourcehutIntegration](/packages/sourcehutIntegration/)
2526
* [statusBar](/packages/statusBar/)
2627
* [system](/packages/system/)
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Settings Package
2+
3+
The `settings` package handles all of Patchfox's settings.
4+
5+
Most importantly, it is in this package that the feed secret is configured.
6+
7+
## Source code
8+
* [View package `settings-old` at GitHub](https://github.com/soapdog/patchfox/blob/master/ui/packages/settings-old)
9+
* [View package `settings-old` at SourceHut](https://git.sr.ht/~soapdog/patchfox/tree/master/item/ui/packages/settings-old)

docs/release_notes/2022.8.1-alpha.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ This is a complete rework of Patchfox. I've outlined the challenges and decision
44

55
Patchfox is now an Electron-based application. What you're using now is an alpha quality release.
66

7+
# WARNING
8+
9+
This is an alpha version of Patchfox. At the moment it can only load the default
10+
identity in your \`.ssb\` folder. Support for multiple identities and multiple
11+
backends will be reinstated soon.
12+
13+
This version uses `db1`, it is not compatible with existing `db2` installations such as Manyverse and Perihelion.
14+
15+
Patchfox will use your current installed identity. If you're using Patchwork, you need to quit Patchwork before running Patchfox.
16+
17+
Patchfox will reindex the database if needed. This process might take a while (there is a dialog showing the progress). If you switch back from Patchfox to Patchwork, Patchwork will reindex the database to its taste.
18+
719
## Changes
820

921
oh boy...

electron-builder.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,6 @@ module.exports = {
138138
protocol: "https",
139139
owner: "soapdog",
140140
repo: "patchfox",
141-
releaseType: "release",
141+
releaseType: "prerelease",
142142
},
143143
}

scripts/copy-package-docs.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@ const fs = require("fs-extra")
33
const path = require("path")
44
const globby = require("globby")
55
const rimraf = require("rimraf")
6+
const localVersion = require("../package.json").version
7+
68

79
const main = async () => {
810
const packageDocumentationRootPath = "docs/packages"
911
const messageTypesDocumentationRootPath = "docs/message_types"
12+
13+
let release_notes = `docs/release_notes/${localVersion}.md`
14+
fs.copyFileSync(release_notes, `build/release-notes.md`)
1015

1116
let paths = await globby([
1217
"ui/packages/*/docs/**",

ui/assets/css/tailwind.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3491,7 +3491,7 @@ html {
34913491
color: hsla(var(--bc) / var(--tw-placeholder-opacity, 1));
34923492
}
34933493

3494-
.select[size].select:not([size="1"]) {
3494+
.select[multiple],.select[size].select:not([size="1"]) {
34953495
background-image: none;
34963496
padding-right: 1rem;
34973497
}
@@ -4361,6 +4361,10 @@ html {
43614361
color: hsla(var(--bc) / var(--tw-text-opacity));
43624362
}
43634363

4364+
.underline {
4365+
text-decoration: underline;
4366+
}
4367+
43644368
*, ::before, ::after {
43654369
--tw-shadow: 0 0 #0000;
43664370
}

ui/packages/packages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require("./globalMenu/globalMenu.js")
1010
require("./statusBar/statusBar.js")
1111
require("./search/search.js")
1212
require("./system/system.js")
13-
// require("./settings/settings.js")
13+
require("./settings/settings.js")
1414
require("./hub/hub.js")
1515
require("./post/post.js")
1616
require("./blog/blog.js")
File renamed without changes.

0 commit comments

Comments
 (0)