forked from tangled.org/core
this repo has no description

appview,docs: touch up copy text

Signed-off-by: oppiliappan <me@oppi.li>

oppi.li 8dae47cf 0dd491e1

verified
Changed files
+14 -18
appview
pages
templates
knots
fragments
user
settings
docs
migrations
+1 -1
appview/pages/templates/knots/fragments/banner.html
···
A knot ({{range $i, $r := .Registrations}}{{if ne $i 0}}, {{end}}{{ $r.Domain }}{{ end }})
that you administer is presently read-only. Consider upgrading this knot to
continue creating repositories on it.
-
<a href="https://tangled.sh/@tangled.sh/core/tree/master/docs/migrations">Click to read the upgrade guide</a>.
+
<a href="https://tangled.sh/@tangled.sh/core/blob/master/docs/migrations/knot-1.7.0.md">Click to read the upgrade guide</a>.
</div>
{{ end }}
+10 -10
appview/pages/templates/user/settings/profile.html
···
<div class="flex flex-col rounded border border-gray-200 dark:border-gray-700 divide-y divide-gray-200 dark:divide-gray-700 w-full">
<div class="flex items-center justify-between p-4">
<div class="hover:no-underline flex flex-col gap-1 min-w-0 max-w-[80%]">
+
<div class="flex flex-wrap text-sm items-center gap-1 text-gray-500 dark:text-gray-400">
+
<span>Handle</span>
+
</div>
{{ if .LoggedInUser.Handle }}
<span class="font-bold">
@{{ .LoggedInUser.Handle }}
</span>
-
<div class="flex flex-wrap text items-center gap-1 text-gray-500 dark:text-gray-400">
-
<span>Handle</span>
-
</div>
{{ end }}
</div>
</div>
<div class="flex items-center justify-between p-4">
<div class="hover:no-underline flex flex-col gap-1 min-w-0 max-w-[80%]">
-
<span class="font-mono text-xs">
-
{{ .LoggedInUser.Did }}
-
</span>
-
<div class="flex flex-wrap text items-center gap-1 text-gray-500 dark:text-gray-400">
+
<div class="flex flex-wrap text-sm items-center gap-1 text-gray-500 dark:text-gray-400">
<span>Decentralized Identifier (DID)</span>
</div>
+
<span class="font-mono font-bold">
+
{{ .LoggedInUser.Did }}
+
</span>
</div>
</div>
<div class="flex items-center justify-between p-4">
<div class="hover:no-underline flex flex-col gap-1 min-w-0 max-w-[80%]">
+
<div class="flex flex-wrap text-sm items-center gap-1 text-gray-500 dark:text-gray-400">
+
<span>Personal Data Server (PDS)</span>
+
</div>
<span class="font-bold">
{{ .LoggedInUser.Pds }}
</span>
-
<div class="flex flex-wrap text items-center gap-1 text-gray-500 dark:text-gray-400">
-
<span>Personal Data Server (PDS)</span>
-
</div>
</div>
</div>
</div>
+3 -7
docs/migrations/knot-1.7.0.md
···
After v1.7.0, knot secrets have been deprecated. You no
longer need a secret from the appview to run a knot. All
-
authorized commands between services to knots are managed
-
via [Service
-
Auth](https://atproto.com/specs/xrpc#inter-service-authentication-jwt).
+
authorized commands to knots are managed via [Inter-Service
+
Authentication](https://atproto.com/specs/xrpc#inter-service-authentication-jwt).
Knots will be read-only until upgraded.
Upgrading is quite easy, in essence:
···
- `KNOT_SERVER_OWNER` is now required on boot, set this to
your DID. You can find your DID in the
[settings](https://tangled.sh/settings) page.
-
- Restart your knot once you have replace the environment
+
- Restart your knot once you have replaced the environment
variable
- Head to the [knot dashboard](https://tangled.sh/knots) and
hit the "retry" button to verify your knot. This simply
···
server = {
- secretFile = /path/to/secret;
+ owner = "did:plc:foo";
-
.
-
.
-
.
};
};
```