Skip to content

Commit a589e63

Browse files
committed
Bump version to 0.4.0
1 parent 84e36be commit a589e63

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed

autogit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Kirby Auto Git Plugin
55
*
6-
* @version 0.3.0
6+
* @version 0.4.0
77
* @author Pedro Borges <[email protected]>
88
* @copyright Pedro Borges <[email protected]>
99
* @link https://github.com/pedroborges/kirby-autogit

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [0.4.0] - 2016-07-13
5+
### Added
6+
- Panel widget with pull/push buttons.
7+
48
## [0.3.0] - 2016-07-08
59
### Fixed
610
- Library sebastian/git was not being included on the release tarball.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "autogit",
33
"author": "Pedro Borges <[email protected]>",
4-
"version": "0.3.0",
4+
"version": "0.4.0",
55
"description": "Kirby Auto Git",
66
"type": "kirby-plugin",
77
"license": "MIT"

readme.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,16 @@ The following options can be set in your `/site/config/config.php`:
5757
c::set('autogit.branch', 'master');
5858
c::set('autogit.remote.name', 'origin');
5959
c::set('autogit.remote.branch', 'master');
60+
6061
c::set('autogit.webhook.secret', false);
6162
c::set('autogit.webhook.url', 'autogit')
63+
6264
c::set('autogit.panel.user', true);
6365
c::set('autogit.user.name', 'Auto Git');
6466
c::set('autogit.user.email', 'autogit@localhost');
67+
68+
c::set('autogit.widget', true);
69+
6570
c::set('autogit.language', 'en');
6671
c::set('autogit.translation', [
6772
'site.update' => 'Changed site options',
@@ -132,6 +137,11 @@ Default commit author name. Applied only when the option `autogit.panel.user` is
132137
### autogit.user.email
133138
Default commit author email. Applied only when the option `autogit.panel.user` is set to `false` or when user's first name isn't set on his account info.
134139

140+
### autogit.widget
141+
Auto Git will add a widget to the Panel by default, set this option to false to hide it.
142+
143+
![Auto Git widget](https://raw.githubusercontent.com/pedroborges/kirby-autogit/master/widget.png)
144+
135145
### autogit.language
136146
Default commit language. You can choose from any of the languages that ships with Auto Git: `'en'`, `'pt_BR'` or `'pt_PT'`.
137147

@@ -144,7 +154,7 @@ An array containing a custom translation. This will override the default transla
144154

145155
## Roadmap
146156
- [X] Pull and push webhooks
147-
- [ ] Panel widget (pull/push buttons)
157+
- [X] Panel widget (pull/push buttons)
148158
- [ ] Panel widget (show commit history)
149159
- [ ] Panel widget (undo button)
150160
- [ ] Panel widget (see commit diff)

widget.png

12.7 KB
Loading

0 commit comments

Comments
 (0)