Skip to content

Commit 346a3df

Browse files
chore(release): 2.0.0 [skip ci]
# [2.0.0](v1.13.2...v2.0.0) (2024-03-04) * Code and compatibility improvements (#66) ([51e4ccf](51e4ccf)), closes [#66](#66) ### BREAKING CHANGES * Komments plugin will not use cookies anymore * improvement: use structures in snippets no more arrays * comments and replies are splitted, strcutures are used now * chore: add deprecation warning * improvement: base utils optimization * feat: added frontend class (wip) * feat: removed unused quote feature BRAKING CHANGE: Quotes are getting removed * improvement: moved kommentsAreExpired to frontend class * feat: multilang page mock * improvement: tests * chore: ignore tilde folder * chore: remove dump * chore: class loader * improvement: refactored classes and tests * improvement: remove needless api calls * fix: better backwards compatibility with Kirby 3 * chore: added translations * fix: show all language comments in panel * improvement: reduced css * CSS has been reduced to a minimum
1 parent 51e4ccf commit 346a3df

File tree

2 files changed

+58
-4
lines changed

2 files changed

+58
-4
lines changed

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
1+
# [2.0.0](https://github.com/mauricerenck/komments/compare/v1.13.2...v2.0.0) (2024-03-04)
2+
3+
4+
* Code and compatibility improvements (#66) ([51e4ccf](https://github.com/mauricerenck/komments/commit/51e4ccf8a09ae8b9454c86c7d4ce1bcb8721947d)), closes [#66](https://github.com/mauricerenck/komments/issues/66)
5+
6+
7+
### BREAKING CHANGES
8+
9+
* Komments plugin will not use cookies anymore
10+
11+
* improvement: use structures in snippets no more arrays
12+
* comments and replies are splitted, strcutures are used now
13+
14+
* chore: add deprecation warning
15+
16+
* improvement: base utils optimization
17+
18+
* feat: added frontend class (wip)
19+
20+
* feat: removed unused quote feature
21+
22+
BRAKING CHANGE: Quotes are getting removed
23+
24+
* improvement: moved kommentsAreExpired to frontend class
25+
26+
* feat: multilang page mock
27+
28+
* improvement: tests
29+
30+
* chore: ignore tilde folder
31+
32+
* chore: remove dump
33+
34+
* chore: class loader
35+
36+
* improvement: refactored classes and tests
37+
38+
* improvement: remove needless api calls
39+
40+
* fix: better backwards compatibility with Kirby 3
41+
42+
* chore: added translations
43+
44+
* fix: show all language comments in panel
45+
46+
* improvement: reduced css
47+
* CSS has been reduced to a minimum
48+
149
## [1.13.2](https://github.com/mauricerenck/komments/compare/v1.13.1...v1.13.2) (2024-01-22)
250

351

composer.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mauricerenck/komments",
3-
"version": "1.13.2",
3+
"version": "2.0.0",
44
"description": "A comment and webmention plugin for Kirby 3",
55
"homepage": "https://github.com/mauricerenck/komments",
66
"type": "kirby-plugin",
@@ -15,7 +15,9 @@
1515
"psr-4": {
1616
"mauricerenck\\Komments\\": "utils/"
1717
},
18-
"classmap": ["utils"]
18+
"classmap": [
19+
"utils"
20+
]
1921
},
2022
"require-dev": {
2123
"getkirby/cms": "^4",
@@ -41,6 +43,10 @@
4143
"test": "vendor/bin/phpunit --testdox --colors=always",
4244
"build-test-package": "git archive HEAD -o komments.zip --worktree-attributes",
4345
"build-composer": "composer install --no-dev --optimize-autoloader",
44-
"build-release": ["composer test tests", "composer install --no-dev --optimize-autoloader", "npm run build"]
46+
"build-release": [
47+
"composer test tests",
48+
"composer install --no-dev --optimize-autoloader",
49+
"npm run build"
50+
]
4551
}
46-
}
52+
}

0 commit comments

Comments
 (0)