Skip to content

Commit cb6736f

Browse files
committed
Fix for GitBucket 4.25.0
Fix for GitBucket 4.25.0
1 parent 47e06d7 commit cb6736f

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ This is a GitBucket plug-in which provides code snippet repository like Gist.
44

55
Plugin version | GitBucket version
66
:--------------|:--------------------
7+
4.15.x | 4.25.x -
78
4.13.x, 4.14.x | 4.23.x -
89
4.12.x | 4.21.x -
910
4.11.x | 4.19.x -

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
organization := "io.github.gitbucket"
22
name := "gitbucket-gist-plugin"
3-
version := "4.14.0"
3+
version := "4.15.0"
44
scalaVersion := "2.12.6"
5-
gitbucketVersion := "4.24.0"
5+
gitbucketVersion := "4.25.0"
66

77
scalacOptions := Seq("-deprecation", "-feature", "-language:postfixOps")
88
javacOptions in compile ++= Seq("-target", "8", "-source", "8")

src/main/scala/Plugin.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
3636
new Version("4.11.0"),
3737
new Version("4.12.0"),
3838
new Version("4.13.0"),
39-
new Version("4.14.0")
39+
new Version("4.14.0"),
40+
new Version("4.15.0")
4041
)
4142

4243
override def initialize(registry: PluginRegistry, context: ServletContext, settings: SystemSettings): Unit = {

src/main/scala/gitbucket/gist/controller/GistController.scala

+1
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ trait GistControllerBase extends ControllerBase {
272272
html.profile(
273273
account,
274274
if(account.isGroupAccount) Nil else getGroupsByUserName(userName),
275+
getAccountExtraMailAddresses(userName),
275276
result._1
276277
)
277278
} getOrElse NotFound

src/main/twirl/gitbucket/gist/editor.scala.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@
3636
}
3737

3838
@if(fileName.nonEmpty){
39-
editor.getSession().setMode("ace/mode/@helpers.editorType(fileName)");
39+
var modelist = ace.require("ace/ext/modelist");
40+
var mode = modelist.getModeForPath("@fileName");
41+
editor.getSession().setMode(mode.mode);
4042
}
4143

4244
$('#wrap-@i').change(function(){

src/main/twirl/gitbucket/gist/profile.scala.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
@(account: gitbucket.core.model.Account, groupNames: List[String],
1+
@(account: gitbucket.core.model.Account, groupNames: List[String], extraMailAddresses: List[String],
22
gists: Seq[gitbucket.gist.model.Gist])(implicit context: gitbucket.core.controller.Context)
33
@import gitbucket.gist.model.Mode
4-
@gitbucket.core.account.html.main(account, groupNames, "snippets"){
4+
@gitbucket.core.account.html.main(account, groupNames, "snippets", extraMailAddresses){
55
@if(gists.isEmpty){
66
No snippets
77
} else {

0 commit comments

Comments
 (0)