Skip to content

Commit 3a84a8a

Browse files
committed
fixes #9, prepare release 1.2
1 parent 6cfe8c5 commit 3a84a8a

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

README.MD

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ It is then possible, for example, to notify every user that an upgrade of the sy
1616

1717
Plugin version | GitBucket version
1818
:--------------|:-----------------
19-
1.1.x | 3.7.x
19+
1.2.x | 3.11.x
20+
1.1.x | 3.7.x -> 3.10.x
2021
1.0.x | 3.6.x
2122

2223

@@ -29,6 +30,9 @@ Plugin version | GitBucket version
2930

3031
## Release Notes
3132

33+
### 1.2
34+
- [issue-9](https://github.com/gitbucket-plugins/gitbucket-announce-plugin/issues/9) make the plugin compatible with gitbucket 3.11
35+
3236
### 1.1
3337

3438
- [issue-5](https://github.com/gitbucket-plugins/gitbucket-announce-plugin/issues/5) use new `SystemSettings.useSMTP` property introduced in gitbucket 3.7

project/build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ object MyBuild extends Build {
77

88
val Organization = "fr.brouillard.gitbucket"
99
val Name = "gitbucket-announce-plugin"
10-
val Version = "1.1"
10+
val Version = "1.2"
1111
val ScalaVersion = "2.11.6"
1212

1313
lazy val project = Project (
@@ -25,7 +25,7 @@ object MyBuild extends Build {
2525
"amateras-repo" at "http://amateras.sourceforge.jp/mvn/"
2626
),
2727
libraryDependencies ++= Seq(
28-
"gitbucket" % "gitbucket-assembly" % "3.7.0" % "provided",
28+
"gitbucket" % "gitbucket-assembly" % "3.11.0" % "provided",
2929
"com.typesafe.play" %% "twirl-compiler" % "1.0.4" % "provided",
3030
"javax.servlet" % "javax.servlet-api" % "3.1.0" % "provided"
3131
),

src/main/scala/fr/brouillard/gitbucket/announce/controller/AnnounceController.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import gitbucket.core.controller.ControllerBase
55
import gitbucket.core.service.{AccountService, SystemSettingsService}
66
import gitbucket.core.servlet.Database
77
import gitbucket.core.util.AdminAuthenticator
8-
import jp.sf.amateras.scalatra.forms._
8+
import io.github.gitbucket.scalatra.forms._
99
import org.apache.commons.mail.{DefaultAuthenticator, HtmlEmail}
1010
import io.github.gitbucket.markedj.Marked
1111
import io.github.gitbucket.markedj.Options

src/main/twirl/fr/brouillard/gitbucket/announce/announce.scala.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<div class="box-content">
1616
<fieldset>
1717
<label><span class="strong">To</span></label>
18-
<p class="muted">Enter a comma separated list of groupname the announce will be sent to, or the keyword 'ALL' to send to all users</p>
1918
<input type="text" style="width: 635px;" name="to"/>
19+
<p class="muted">Enter a comma separated list of groupname the announce will be sent to, or the keyword 'ALL' to send to all users</p>
2020
</fieldset>
2121
<fieldset>
2222
<label><span class="strong">Subject</span></label>

0 commit comments

Comments
 (0)