-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGELOG.json
More file actions
28 lines (28 loc) · 1.84 KB
/
Copy pathCHANGELOG.json
File metadata and controls
28 lines (28 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"agent_rules": "When updating, first check for an existing entry with the same category and today's date. If one is found, append new changes to its 'changes' array. Otherwise, create a new object at the top of the 'changelog' array. Each object requires a 'category', a 'date' (YYYY-MM-DD), and a 'changes' array with descriptive, full-sentence strings. Use 'General' category for project-wide or uncategorized changes.",
"categories": ["general"],
"changelog": [
{
"category": "general",
"date": "2024-07-04",
"changes": [
"Adapted the script to recent breaking changes in the Cursor dashboard UI, ensuring compatibility with the new layout and cost column.",
"Enhanced the usage chart and summary to display a detailed breakdown of 'Included' value versus 'Overage' costs, providing deeper usage insights."
]
},
{
"category": "general",
"date": "2024-06-10",
"changes": [
"Fixed a timezone display issue in the hourly usage chart to correctly show local time.",
"Added a dynamic summary line to display the total cost and date range for the visible table entries.",
"Refactored and optimized the userscript for improved performance, and cleaned up verbose console logs.",
"Enhanced script resiliency with error handling and a text-based fallback for the usage chart.",
"Improved code clarity and maintainability by adding comprehensive JSDoc comments.",
"Finalized the script for public release, updating versioning and adding automatic update placeholders.",
"Added an MIT license to the project to clarify usage rights.",
"Improved the installation process by fixing the README link, renaming the script for auto-detection, and adding manual fallback instructions."
]
}
]
}