Skip to content

Commit bedad5d

Browse files
committed
update readme
1 parent e0018cd commit bedad5d

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,28 @@
44

55
## [Unreleased]
66

7+
## [2025.0.13] - 2025-02-21
8+
9+
- feat: clean code
10+
- enh: readme
11+
712
## [2025.0.12] - 2025-02-17
813

9-
feat: allowed mon/tue/wen/... and jan/feb/mar syntax
14+
- feat: allowed mon/tue/wen/... and jan/feb/mar syntax
1015

1116
## [2025.0.11] - 2025-02-13
1217

13-
feat: allowed mon/tue/wen/... and jan/feb/mar syntax
18+
- feat: allowed mon/tue/wen/... and jan/feb/mar syntax
1419

1520
## [2025.0.9] - 2025-02-02
1621

17-
feat: add doc comments support for variables
18-
fix: allowing time-ranges for step ranges: 1-10/2
22+
- feat: add doc comments support for variables
23+
- fix: allowing time-ranges for step ranges: 1-10/2
1924

2025
## [2025.0.8] - 2025-01-30
2126

22-
fix: allow command starting with slash
23-
fix: disable file masks crontab.*, cron.*
27+
- fix: allow command starting with slash
28+
- fix: disable file masks crontab.*, cron.*
2429

2530
## [2025.0.7] - 2025-01-29
2631

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
<!-- Plugin description -->
1010

11+
[Github](https://github.com/xepozz/crontab-intellij-plugin) | [Telegram](https://t.me/jb_plugins/2) | [Donation](https://github.com/xepozz/xepozz?tab=readme-ov-file#become-a-sponsor)
12+
1113
## Cron &amp; Crontab Support
1214

1315
Crontab syntax support:

src/main/kotlin/com/github/xepozz/crontab/ide/inspections/AbstractQuickFix.kt renamed to src/main/kotlin/com/github/xepozz/crontab/ide/inspections/CrontabScheduleQuickFix.kt

File renamed without changes.

src/main/kotlin/com/github/xepozz/crontab/language/CrontabSyntaxHighlighter.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ class CrontabSyntaxHighlighter : SyntaxHighlighterBase() {
1313
override fun getHighlightingLexer() = CrontabLexerAdapter()
1414

1515
override fun getTokenHighlights(tokenType: IElementType) = when (tokenType) {
16-
// CrontabTypes.SCHEDULE -> COMMENT_KEYS
17-
// CrontabTypes.TIME_POINTER -> CONSTANT_KEYS
18-
// CrontabTypes.COMMAND -> KEYWORD_KEYS
1916
CrontabTypes.EQUAL_SIGN -> OPERATION_KEYS
2017

2118
CrontabTypes.COMMENT -> COMMENT_KEYS

0 commit comments

Comments
 (0)