git-pr

created pr with 3.1 on 2024-07-19T14:53:23Z · by c8ef7d19
added 3.2 on 2024-07-19T14:55:48Z · by c8ef7d19
1: 3b99dc0 < -: ------- feat: static assets
2: 8919af5 ! 1: 66cafc6 feat: static assets folder
3: 7346122 ! 2: 5e76ed3 fix(cli): access control for removing patchsets
4: d8792d5 < -: ------- feat: static folder
pr_reviewed on 2024-07-19T15:42:29Z · by 964fa508
changed status to reviewed on 2024-07-19T15:42:29Z · by 964fa508
added 3.4 on 2024-07-19T17:43:47Z · by c8ef7d19
1: cc56ea1 = 1: 0467f9e feat: static assets folder
2: ef749a4 = 2: da1730f review: typo and future enhancement comment
-: ------- > 3: c038404 refactor: per-file override for static folder
changed status to accepted on 2024-07-19T18:27:53Z · by 964fa508
cmds
checkout latest patchset:
ssh pr.pico.sh print 3 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print 3.[rev] | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 3
set PR to open (enables RSS notifications):
ssh pr.pico.sh pr open 3
set PR to draft (stops RSS notifications):
ssh pr.pico.sh pr draft 3

Patchset 3.1 on 2024-07-19T14:53:23Z · commit 7346122

+1 -0 Makefile #
......@@ -29,4 +29,5 @@ bp: bp-setup
2929
3030 smol:
3131 curl https://pico.sh/smol.css -o ./static/smol.css
32+ cat patches/smol.diff | git apply
3233 .PHONY: smol
+53 -0 patches/smol.diff #
......@@ -0,0 +1,53 @@
1+diff --git a/static/smol.css b/static/smol.css
2+index e9b59ec..9e9d925 100644
3+--- a/static/smol.css
4++++ b/static/smol.css
5+@@ -15,48 +15,6 @@
6+ box-shadow: none;
7+ }
8+
9+-@media (prefers-color-scheme: light) {
10+- :root {
11+- --main-hue: 250;
12+- --white: #2e3f53;
13+- --white-light: #cfe0f4;
14+- --white-dark: #6c6a6a;
15+- --code: #52576f;
16+- --pre: #e1e7ee;
17+- --bg-color: #f4f4f4;
18+- --text-color: #24292f;
19+- --link-color: #005cc5;
20+- --visited: #6f42c1;
21+- --blockquote: #005cc5;
22+- --blockquote-bg: #cfe0f4;
23+- --hover: #c11e7a;
24+- --grey: #ccc;
25+- --grey-light: #6a708e;
26+- --shadow: #e8e8e8;
27+- }
28+-}
29+-
30+-@media (prefers-color-scheme: dark) {
31+- :root {
32+- --main-hue: 250;
33+- --white: #f2f2f2;
34+- --white-light: #f2f2f2;
35+- --white-dark: #e8e8e8;
36+- --code: #414558;
37+- --pre: #252525;
38+- --bg-color: #282a36;
39+- --text-color: #f2f2f2;
40+- --link-color: #8be9fd;
41+- --visited: #bd93f9;
42+- --blockquote: #bd93f9;
43+- --blockquote-bg: #353548;
44+- --hover: #ff80bf;
45+- --grey: #414558;
46+- --grey-light: #6a708e;
47+- --shadow: #252525;
48+- }
49+-}
50+-
51+ html {
52+ background-color: var(--bg-color);
53+ color: var(--text-color);
+0 -42 static/smol.css #
......@@ -15,48 +15,6 @@
1515 box-shadow: none;
1616 }
1717
18-@media (prefers-color-scheme: light) {
19- :root {
20- --main-hue: 250;
21- --white: #2e3f53;
22- --white-light: #cfe0f4;
23- --white-dark: #6c6a6a;
24- --code: #52576f;
25- --pre: #e1e7ee;
26- --bg-color: #f4f4f4;
27- --text-color: #24292f;
28- --link-color: #005cc5;
29- --visited: #6f42c1;
30- --blockquote: #005cc5;
31- --blockquote-bg: #cfe0f4;
32- --hover: #c11e7a;
33- --grey: #ccc;
34- --grey-light: #6a708e;
35- --shadow: #e8e8e8;
36- }
37-}
38-
39-@media (prefers-color-scheme: dark) {
40- :root {
41- --main-hue: 250;
42- --white: #f2f2f2;
43- --white-light: #f2f2f2;
44- --white-dark: #e8e8e8;
45- --code: #414558;
46- --pre: #252525;
47- --bg-color: #282a36;
48- --text-color: #f2f2f2;
49- --link-color: #8be9fd;
50- --visited: #bd93f9;
51- --blockquote: #bd93f9;
52- --blockquote-bg: #353548;
53- --hover: #ff80bf;
54- --grey: #414558;
55- --grey-light: #6a708e;
56- --shadow: #252525;
57- }
58-}
59-
6018 html {
6119 background-color: var(--bg-color);
6220 color: var(--text-color);
Back to top