kandown 0.13.0 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/tui.js +9 -1
- package/dist/favicon-16x16.png +0 -0
- package/dist/favicon-32x32.png +0 -0
- package/dist/favicon-48x48.png +0 -0
- package/dist/favicon.ico +0 -0
- package/dist/favicon.svg +24 -10
- package/dist/index.html +4 -4
- package/package.json +1 -1
- package/templates/kandown.json +2 -1
package/bin/tui.js
CHANGED
|
@@ -53993,7 +53993,8 @@ var DEFAULT_CONFIG = {
|
|
|
53993
53993
|
board: {
|
|
53994
53994
|
columns: ["Backlog", "Todo", "In Progress", "Review", "Done"],
|
|
53995
53995
|
defaultPriority: "P3",
|
|
53996
|
-
defaultOwnerType: "human"
|
|
53996
|
+
defaultOwnerType: "human",
|
|
53997
|
+
stackDefaultState: "collapsed"
|
|
53997
53998
|
},
|
|
53998
53999
|
fields: {
|
|
53999
54000
|
priority: false,
|
|
@@ -54107,6 +54108,13 @@ var SETTINGS = [
|
|
|
54107
54108
|
max: 5
|
|
54108
54109
|
},
|
|
54109
54110
|
// Board
|
|
54111
|
+
{
|
|
54112
|
+
key: "board.stackDefaultState",
|
|
54113
|
+
label: "Task groups",
|
|
54114
|
+
section: "Board",
|
|
54115
|
+
type: "select",
|
|
54116
|
+
options: ["collapsed", "expanded"]
|
|
54117
|
+
},
|
|
54110
54118
|
{
|
|
54111
54119
|
key: "board.defaultPriority",
|
|
54112
54120
|
label: "Default priority",
|
package/dist/favicon-16x16.png
CHANGED
|
Binary file
|
package/dist/favicon-32x32.png
CHANGED
|
Binary file
|
package/dist/favicon-48x48.png
CHANGED
|
Binary file
|
package/dist/favicon.ico
CHANGED
|
Binary file
|
package/dist/favicon.svg
CHANGED
|
@@ -1,25 +1,39 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<!--
|
|
3
3
|
@file public/favicon.svg
|
|
4
|
-
@description Kandown brand mark —
|
|
5
|
-
📖
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
@description Kandown brand mark — adaptive favicon.
|
|
5
|
+
📖 Transparent background so the icon adapts to the browser's tab-strip
|
|
6
|
+
color (no more black-on-black on dark themes). The K recolors itself
|
|
7
|
+
via @media (prefers-color-scheme: dark) so the contrast holds in both
|
|
8
|
+
light and dark browser themes:
|
|
9
|
+
• light browser: dark K (#0a0a0a) on white/cream tab → high contrast
|
|
10
|
+
• dark browser: white K (#ffffff) on dark tab → high contrast
|
|
11
|
+
The lime slash (#cef867) is the constant brand element on top.
|
|
12
|
+
📖 PNG fallbacks (16/32/48/ico) ship in the light-mode variant (dark K on
|
|
13
|
+
transparent) for browsers that don't honor SVG media queries. PWA /
|
|
14
|
+
OS-launcher icons (apple-touch, android-chrome, mstile, og-image)
|
|
15
|
+
still use the dark surface — those have a different use case (solid
|
|
16
|
+
background required by the platform).
|
|
9
17
|
-->
|
|
10
18
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" role="img" aria-label="Kandown">
|
|
11
19
|
<title>Kandown</title>
|
|
12
|
-
<
|
|
20
|
+
<style>
|
|
21
|
+
.k { fill: #0a0a0a; }
|
|
22
|
+
.slash { fill: #cef867; }
|
|
23
|
+
@media (prefers-color-scheme: dark) {
|
|
24
|
+
.k { fill: #ffffff; }
|
|
25
|
+
}
|
|
26
|
+
</style>
|
|
13
27
|
|
|
14
28
|
<!-- K vertical bar (left stem) -->
|
|
15
|
-
<rect x="50" y="36" width="34" height="184" rx="3" ry="3"
|
|
29
|
+
<rect class="k" x="50" y="36" width="34" height="184" rx="3" ry="3"/>
|
|
16
30
|
|
|
17
31
|
<!-- K upper diagonal: middle-left → top-right -->
|
|
18
|
-
<path d="M 84 128 L 200 36 L 222 36 L 84 152 Z"
|
|
32
|
+
<path class="k" d="M 84 128 L 200 36 L 222 36 L 84 152 Z"/>
|
|
19
33
|
|
|
20
34
|
<!-- K lower diagonal: middle-left → bottom-right (with the small flag/notch on the right) -->
|
|
21
|
-
<path d="M 84 128 L 200 220 L 222 220 L 188 186 L 200 174 L 84 132 Z"
|
|
35
|
+
<path class="k" d="M 84 128 L 200 220 L 222 220 L 188 186 L 200 174 L 84 132 Z"/>
|
|
22
36
|
|
|
23
37
|
<!-- Lime diagonal slash: thick parallelogram from top-right to bottom-left -->
|
|
24
|
-
<path d="M 232 22 L 174 22 L 24 172 L 24 230 Z"
|
|
38
|
+
<path class="slash" d="M 232 22 L 174 22 L 24 172 L 24 230 Z"/>
|
|
25
39
|
</svg>
|