Skip to content

Commit fca7bc5

Browse files
committed
Merge pull request #100 from thathoff/kirby-4
Add Kirby 4 Support
2 parents 443223a + 07b38d4 commit fca7bc5

File tree

7 files changed

+139
-71
lines changed

7 files changed

+139
-71
lines changed

.github/screenshot.png

37.9 KB
Loading

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<a name="5.2.0"></a>
2+
# [5.2.0](https://github.com/thathoff/kirby-git-content/compare/v5.1.0...v5.2.0) (2023-12-09)
3+
4+
### Features
5+
- Add support for Kirby 4
6+
- Configurable panel menu item
7+
18
<a name="5.1.0"></a>
29
# [5.1.0](https://github.com/thathoff/kirby-git-content/compare/v5.0.2...v5.1.0) (2023-10-16)
310

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Kirby Git Content
22

3-
This is a plugin for [Kirby 3](http://getkirby.com/) that commits and pushes content changes made via the Panel to your git repository.
3+
This is a plugin for [Kirby](http://getkirby.com/) that commits and pushes content changes made via the Panel to your git repository.
44

55
![Screnshot of Panel Area](/.github/screenshot.png?raw=true)
66

77
## Requirements
88

9-
This plugin supports **Kirby from version 3.6** and requires **git version > 2.24**
9+
This plugin supports **Kirby from version 3.6 (including Kirby 4)** and requires **git version > 2.24**
1010

1111
## Usage
1212

@@ -85,6 +85,8 @@ return [
8585
- `disable` (Boolean): If set to `true`, the plugin won't initialize. (default: `false`)
8686
- `disableBranchManagement` (Boolean): If set to `true`, the options to create and switch branches are hidden. (default: `false`)
8787
- `helpText` (String): Supply a custom help text shown in the panel UI. (default: `null`)
88+
- `menuIcon` (String): Supply a custom icon for the panel menu item. (default: `sitemap`)
89+
- `menuLabel` (String): Supply a custom label for the panel menu item. (default: `Git Content`)
8890

8991
### Custom Commit Message
9092

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Plugin to track changes to content in a git repository.",
44
"type": "kirby-plugin",
55
"license": "MIT",
6-
"version": "5.1.0",
6+
"version": "5.2.0",
77
"authors": [
88
{
99
"name": "Markus Denhoff",
@@ -23,7 +23,7 @@
2323
"getkirby/composer-installer": "^1.1"
2424
},
2525
"require-dev": {
26-
"getkirby/cms": "^3.6.0"
26+
"getkirby/cms": "^3.6.0|^4.0.0"
2727
},
2828
"autoload": {
2929
"psr-4": {

0 commit comments

Comments
 (0)