You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"plugin.description": "Track and visualize tag values over time with interactive charts. Monitor @sleep, @sleep_deep, @rps, @alcohol, and @bedtime across your daily notes. Toggle between line and bar chart views.",
8
+
"plugin.author": "grdn",
9
+
"plugin.version": "1.1.0",
10
+
"plugin.dependencies": [],
11
+
"plugin.requiredFiles": [],
12
+
"plugin.script": "script.js",
13
+
"plugin.commands": [
14
+
{
15
+
"name": "showTagTracker",
16
+
"description": "Show tag frequency tracker with line graph visualization",
17
+
"jsFunction": "showTagTracker"
18
+
}
19
+
],
20
+
"plugin.settings": [
21
+
{
22
+
"type": "heading",
23
+
"title": "Chart Color Settings"
24
+
},
25
+
{
26
+
"key": "customColor1",
27
+
"title": "Color 1 (Hex Code)",
28
+
"description": "First chart color (default: #0a84ff - blue)",
29
+
"type": "string",
30
+
"default": "#0a84ff",
31
+
"required": false
32
+
},
33
+
{
34
+
"key": "customColor2",
35
+
"title": "Color 2 (Hex Code)",
36
+
"description": "Second chart color (default: #bf5af2 - purple)",
37
+
"type": "string",
38
+
"default": "#bf5af2",
39
+
"required": false
40
+
},
41
+
{
42
+
"key": "customColor3",
43
+
"title": "Color 3 (Hex Code)",
44
+
"description": "Third chart color (default: #32d74b - green)",
45
+
"type": "string",
46
+
"default": "#32d74b",
47
+
"required": false
48
+
},
49
+
{
50
+
"key": "customColor4",
51
+
"title": "Color 4 (Hex Code)",
52
+
"description": "Fourth chart color (default: #ff453a - red)",
53
+
"type": "string",
54
+
"default": "#ff453a",
55
+
"required": false
56
+
},
57
+
{
58
+
"key": "customColor5",
59
+
"title": "Color 5 (Hex Code)",
60
+
"description": "Fifth chart color (default: #ffd60a - yellow)",
61
+
"type": "string",
62
+
"default": "#ffd60a",
63
+
"required": false
64
+
},
65
+
{
66
+
"key": "customColor6",
67
+
"title": "Color 6 (Hex Code)",
68
+
"description": "Sixth chart color (default: #ff9f0a - orange)",
69
+
"type": "string",
70
+
"default": "#ff9f0a",
71
+
"required": false
72
+
},
73
+
{
74
+
"key": "customColor7",
75
+
"title": "Color 7 (Hex Code)",
76
+
"description": "Seventh chart color (default: #64d2ff - cyan)",
77
+
"type": "string",
78
+
"default": "#64d2ff",
79
+
"required": false
80
+
},
81
+
{
82
+
"key": "customColor8",
83
+
"title": "Color 8 (Hex Code)",
84
+
"description": "Eighth chart color (default: #ff375f - pink)",
85
+
"type": "string",
86
+
"default": "#ff375f",
87
+
"required": false
88
+
},
89
+
{
90
+
"key": "customColor9",
91
+
"title": "Color 9 (Hex Code)",
92
+
"description": "Ninth chart color (default: #30d158 - mint)",
93
+
"type": "string",
94
+
"default": "#30d158",
95
+
"required": false
96
+
},
97
+
{
98
+
"key": "customColor10",
99
+
"title": "Color 10",
100
+
"description": "Tenth chart color (default: #ac8e68 - brown)",
101
+
"type": "string",
102
+
"default": "#ac8e68",
103
+
"required": false
104
+
},
105
+
{
106
+
"key": "customColor11",
107
+
"title": "Color 11",
108
+
"description": "Eleventh chart color (default: #5856d6 - indigo)",
109
+
"type": "string",
110
+
"default": "#5856d6",
111
+
"required": false
112
+
},
113
+
{
114
+
"key": "customColor12",
115
+
"title": "Color 12",
116
+
"description": "Twelfth chart color (default: #ff2d55 - rose)",
117
+
"type": "string",
118
+
"default": "#ff2d55",
119
+
"required": false
120
+
},
121
+
{
122
+
"type": "separator"
123
+
},
124
+
{
125
+
"type": "heading",
126
+
"title": "Color Format Instructions\nSupported: Hex (#F00, #FF0000), Named (red, blue), RGB (rgb(255,0,0)), HSL (hsl(0,100%,50%)).\nColors cycle if you have 12+ habits."
Copy file name to clipboardExpand all lines: jgclark.Summaries/CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,16 @@
1
1
# What's Changed in ⏱ Habits and Summaries plugin?
2
2
(And see the full [README](https://github.com/NotePlan/plugins/tree/main/jgclark.Summaries).)
3
3
4
+
## [1.1.0.b1] - 2026-02-02 (private beta)
5
+
- Added **/Chart Summary Stats** command. This ???. (It was prototyped by @grdn and then integrated, updated and made maintainable by @jgclark.)
6
+
### Significant changes since prototype
7
+
- Added to NP sidebar
8
+
- Moved all configuration from code to settings system
9
+
- Simplified specifying colors for charts, and added Tailwind color support.
10
+
- Chart stats now track which tags include any time-based values and display their sums and averages in HH:MM format (not decimal) in the summary and tooltips. This can be overriden by the "Tags to display using time format" setting.
11
+
- yes/no habits can be specified in a calendar note as either:
12
+
- the habit as a completed task or checklist item;
13
+
- For hashtag or @mention: counts how many times the tag appears in any line.
4
14
5
15
## [1.0.3] - 2026-01-30 (unreleased)
6
16
- worked around a new bug in the API for getting hashtags and mentions that meant some were being ignored, affecting the accuracy of the plugin's output.
0 commit comments