File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ sbt clean package
65
65
66
66
## Release Notes
67
67
68
- ### 1.5.0
68
+ ### 1.5.1
69
69
- compatibility with gitbucket 4.16.0 and scala 2.12
70
70
71
71
### 1.4.0
Original file line number Diff line number Diff line change 1
1
val Organization = " fr.brouillard.gitbucket"
2
2
val ProjectName = " gitbucket-h2-backup-plugin"
3
- val ProjectVersion = " 1.5.0 "
3
+ val ProjectVersion = " 1.5.1 "
4
4
5
5
lazy val h2_backup_plugin = (project in file(" ." )).enablePlugins(SbtTwirl )
6
6
Original file line number Diff line number Diff line change @@ -16,16 +16,15 @@ class Plugin extends gitbucket.core.plugin.Plugin {
16
16
new Version (" 1.2.0" ),
17
17
new Version (" 1.3.0" ),
18
18
new Version (" 1.4.0" ),
19
- new Version (" 1.5.0" )
19
+ new Version (" 1.5.0" ),
20
+ new Version (" 1.5.1" )
20
21
)
21
22
22
23
override val systemSettingMenus : Seq [(Context ) => Option [Link ]] = Seq (
23
24
(ctx : Context ) => Some (Link (" h2-backup" , " H2 Backup" , " admin/h2backup" ))
24
25
)
25
26
26
27
override val controllers = Seq (
27
- " /admin/h2backup" -> new H2BackupController ()
28
- , " /database/backup" -> new H2BackupController ()
29
- , " /api/v3/plugins/database/backup" -> new H2BackupController ()
28
+ " /*" -> new H2BackupController ()
30
29
)
31
30
}
You can’t perform that action at this time.
0 commit comments