Skip to content

Commit af66b29

Browse files
committed
update ver. info
1 parent 87e8c26 commit af66b29

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name := "gitbucket-embedding-plugin"
22
organization := "io.github.gitbucket"
3-
version := "1.1.0"
3+
version := "1.2.0"
44
scalaVersion := "2.13.6"
55
gitbucketVersion := "4.35.3"

src/main/scala/Plugin.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class Plugin extends gitbucket.core.plugin.Plugin {
1414
new Version("1.0.0"),
1515
new Version("1.0.1"),
1616
new Version("1.1.0"),
17+
new Version("1.2.0"),
1718
)
1819

1920
override val assetsMappings: Seq[(String, String)] = Seq("/embedding" -> "/embedding/assets")
@@ -22,7 +23,7 @@ class Plugin extends gitbucket.core.plugin.Plugin {
2223
val jsPath = settings.baseUrl.getOrElse(context.getContextPath) + "/plugin-assets/embedding/entry.js"
2324
Seq(".*" ->
2425
s"""</script>
25-
|<script src="${jsPath}">""".stripMargin)
26+
|<script src="$jsPath">""".stripMargin)
2627
}
2728

2829
}

0 commit comments

Comments
 (0)