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

Compare changes

Choose any two refs to compare.

Changed files
+14 -18
appview
pages
templates
knots
fragments
user
settings
docs
migrations
+1 -1
appview/pages/templates/knots/fragments/banner.html
··· 3 3 A knot ({{range $i, $r := .Registrations}}{{if ne $i 0}}, {{end}}{{ $r.Domain }}{{ end }}) 4 4 that you administer is presently read-only. Consider upgrading this knot to 5 5 continue creating repositories on it. 6 - <a href="https://tangled.sh/@tangled.sh/core/tree/master/docs/migrations">Click to read the upgrade guide</a>. 6 + <a href="https://tangled.sh/@tangled.sh/core/blob/master/docs/migrations/knot-1.7.0.md">Click to read the upgrade guide</a>. 7 7 </div> 8 8 {{ end }} 9 9
+10 -10
appview/pages/templates/user/settings/profile.html
··· 30 30 <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"> 31 31 <div class="flex items-center justify-between p-4"> 32 32 <div class="hover:no-underline flex flex-col gap-1 min-w-0 max-w-[80%]"> 33 + <div class="flex flex-wrap text-sm items-center gap-1 text-gray-500 dark:text-gray-400"> 34 + <span>Handle</span> 35 + </div> 33 36 {{ if .LoggedInUser.Handle }} 34 37 <span class="font-bold"> 35 38 @{{ .LoggedInUser.Handle }} 36 39 </span> 37 - <div class="flex flex-wrap text items-center gap-1 text-gray-500 dark:text-gray-400"> 38 - <span>Handle</span> 39 - </div> 40 40 {{ end }} 41 41 </div> 42 42 </div> 43 43 <div class="flex items-center justify-between p-4"> 44 44 <div class="hover:no-underline flex flex-col gap-1 min-w-0 max-w-[80%]"> 45 - <span class="font-mono text-xs"> 46 - {{ .LoggedInUser.Did }} 47 - </span> 48 - <div class="flex flex-wrap text items-center gap-1 text-gray-500 dark:text-gray-400"> 45 + <div class="flex flex-wrap text-sm items-center gap-1 text-gray-500 dark:text-gray-400"> 49 46 <span>Decentralized Identifier (DID)</span> 50 47 </div> 48 + <span class="font-mono font-bold"> 49 + {{ .LoggedInUser.Did }} 50 + </span> 51 51 </div> 52 52 </div> 53 53 <div class="flex items-center justify-between p-4"> 54 54 <div class="hover:no-underline flex flex-col gap-1 min-w-0 max-w-[80%]"> 55 + <div class="flex flex-wrap text-sm items-center gap-1 text-gray-500 dark:text-gray-400"> 56 + <span>Personal Data Server (PDS)</span> 57 + </div> 55 58 <span class="font-bold"> 56 59 {{ .LoggedInUser.Pds }} 57 60 </span> 58 - <div class="flex flex-wrap text items-center gap-1 text-gray-500 dark:text-gray-400"> 59 - <span>Personal Data Server (PDS)</span> 60 - </div> 61 61 </div> 62 62 </div> 63 63 </div>
+3 -7
docs/migrations/knot-1.7.0.md
··· 2 2 3 3 After v1.7.0, knot secrets have been deprecated. You no 4 4 longer need a secret from the appview to run a knot. All 5 - authorized commands between services to knots are managed 6 - via [Service 7 - Auth](https://atproto.com/specs/xrpc#inter-service-authentication-jwt). 5 + authorized commands to knots are managed via [Inter-Service 6 + Authentication](https://atproto.com/specs/xrpc#inter-service-authentication-jwt). 8 7 Knots will be read-only until upgraded. 9 8 10 9 Upgrading is quite easy, in essence: ··· 14 13 - `KNOT_SERVER_OWNER` is now required on boot, set this to 15 14 your DID. You can find your DID in the 16 15 [settings](https://tangled.sh/settings) page. 17 - - Restart your knot once you have replace the environment 16 + - Restart your knot once you have replaced the environment 18 17 variable 19 18 - Head to the [knot dashboard](https://tangled.sh/knots) and 20 19 hit the "retry" button to verify your knot. This simply ··· 31 30 server = { 32 31 - secretFile = /path/to/secret; 33 32 + owner = "did:plc:foo"; 34 - . 35 - . 36 - . 37 33 }; 38 34 }; 39 35 ```