dashboard / erock/git-pr / refactor: custom index page #56 rss

accepted · opened on 2025-03-27T20:16:09Z by erock
Help
checkout latest patchset:
ssh pr.pico.sh print pr-56 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print ps-X | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 56
add review to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add --review 56
accept PR:
ssh pr.pico.sh pr accept 56
close PR:
ssh pr.pico.sh pr close 56

Logs

erock created pr with ps-114 on 2025-03-27T20:16:09Z
erock added ps-115 on 2025-03-27T20:17:48Z
erock added ps-116 on 2025-03-28T14:48:26Z
erock added ps-121 on 2025-04-06T19:08:12Z
erock changed status on 2025-04-06T22:13:51Z {"status":"accepted"}

Patchsets

ps-114 by erock on 2025-03-27T20:16:09Z
Range Diff ↕ rd-115
1: 0200c93 ! 1: a2710a3 refactor: custom index page
ps-115 by erock on 2025-03-27T20:17:48Z
Range Diff ↕ rd-116
1: a2710a3 ! 1: 7338b44 feat: allow config `desc` to add a description box to index page
ps-116 by erock on 2025-03-28T14:48:26Z
Range Diff ↕ rd-121
1: 7338b44 ! 1: 26daea4 feat(pgs): lru cache for object info and special files
-: ------- > 2: b004b64 chore(pgs): use http cache clear event to rm lru cache for special files
-: ------- > 3: 59f5618 refactor(pgs): store lru cache on web router
ps-121 by erock on 2025-04-06T19:08:12Z

Range-diff rd-121

title
feat(pgs): lru cache for object info and special files
description
Patch changed
old #1
7338b44
new #1
26daea4
title
chore(pgs): use http cache clear event to rm lru cache for special files
description
Patch added
old #0
(none)
new #2
b004b64
title
refactor(pgs): store lru cache on web router
description
Patch added
old #0
(none)
new #3
59f5618
Back to top
1: 7338b44 ! 1: 26daea4 feat(pgs): lru cache for object info and special files
cfg.go cfg.go
 	CreateRepo string          `koanf:"create_repo"`
 	Theme      string          `koanf:"theme"`
 	TimeFormat string          `koanf:"time_format"`
+	Desc       string          `koanf:"desc"`
 	Logger     *slog.Logger
 }
 
 		"theme", out.Theme,
 		"time_format", out.TimeFormat,
 		"create_repo", out.CreateRepo,
+		"desc", out.Desc,
 	)
 
 	for _, pubkey := range out.AdminsStr {