Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
StarWishsama committed Oct 24, 2021
2 parents 9ee1d4c + 4e800e7 commit c34e8ed
Show file tree
Hide file tree
Showing 658 changed files with 21,273 additions and 17,389 deletions.
12 changes: 7 additions & 5 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ labels: 🐞 Bug
assignees: ''

---
<!-- 请不要改动模板中的任何内容, 否则问题可能会被系统自动关闭! -->

## 描述 (必须)
<!-- 简单详细地描述一下你遇到的问题. -->
Expand All @@ -14,13 +15,14 @@ assignees: ''
<!-- 建议使用截图/GIF/视频等方式完善你的表述 -->

## 服务器 Log / Slimefun 自带的错误报告
<!-- 将 Log 发在这里或者使用 https://pastebin.com 等同类网站分享你的 Log -->
<!-- 使用 https://pastebin.com 等同类网站分享你的 Log -->
<!-- 还有 Slimefun 自带的错误报告系统文件 (如果有的话) -->

## 服务器环境 (必须)
<!-- 如果你不提供你的服务器环境, 问题可能会被一瞬关闭. -->
<!-- "最新版" 永远都不是个版本号. -->
<!-- 只要输个 "/sf versions" 命令然后截图发上来就行了. -->
<!-- "最新版" 不能作为你的 Minecraft/Slimefun 版本. -->
<!-- 可以输入 "/sf versions" 命令然后截图. -->

- Minecraft 版本:
- Slimefun 版本:
- Minecraft 版本:
- Slimefun 版本:
- 插件列表 (可选):
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/translation-error.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ labels: 📜 Translation wrong | 汉化错误
assignees: 'StarWishsama'

---
<!-- 请不要改动模板中的任何内容, 否则问题可能会被系统自动关闭! -->

## 汉化错误的位置 (必须)

## 版本
Expand Down
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/translation-lost.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ labels: 📜 Translation lost | 汉化缺失
assignees: 'StarWishsama'

---
<!-- 请不要改动模板中的任何内容, 否则问题可能会被系统自动关闭! -->

## 汉化缺失的位置 (必须)

## 版本
Expand Down
6 changes: 6 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## 简介
<!-- 大致解释一下这个提交更改变动了什么. -->

## 相关的 Issues (没有可不填)
<!-- 如果这个提交更改解决了 Issue 中的问题, 请手动标记对应的 Issues -->
<!-- 例如: "Fixes #000" -->
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "maven" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
5 changes: 5 additions & 0 deletions .github/pull.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
version: "1"
rules:
- base: master
upstream: Slimefun:master
mergeMethod: merge
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@
/target
/.idea/
dependency-reduced-pom.xml
.factorypath
.factorypath

/src/test/
2 changes: 1 addition & 1 deletion .mvn/extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<extension>
<groupId>me.qoomon</groupId>
<artifactId>maven-git-versioning-extension</artifactId>
<version>6.4.1</version>
<version>7.1.1</version>
</extension>

</extensions>
36 changes: 19 additions & 17 deletions .mvn/maven-git-versioning-extension.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
<configuration xmlns="https://github.com/qoomon/maven-git-versioning-extension" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://github.com/qoomon/maven-git-versioning-extension https://qoomon.github.io/maven-git-versioning-extension/configuration-6.4.0.xsd">
<branch>
<pattern>master</pattern>
<versionFormat>4.9-canary-${commit.short}</versionFormat>
</branch>
<branch>
<pattern>release</pattern>
<versionFormat>4.9-release-${commit.short}</versionFormat>
</branch>
<branch>
<pattern>feature/(.+)></pattern>
<versionFormat>4.9-${1}-${commit.short}</versionFormat>
</branch>
<tag>
<pattern>v([0-9].*)></pattern>
<versionFormat>${1}</versionFormat>
</tag>
xsi:schemaLocation="https://github.com/qoomon/maven-git-versioning-extension https://qoomon.github.io/maven-git-versioning-extension/configuration-7.1.0.xsd">
<refs>
<ref type ="branch">
<pattern>master</pattern>
<version>4.9-canary-${commit.short}</version>
</ref>
<ref type ="branch">
<pattern>release</pattern>
<version>4.9-release-${commit.timestamp.year.2digit}${commit.timestamp.month}${commit.timestamp.day}</version>
</ref>
<ref type ="branch">
<pattern>feature/(.+)</pattern>
<version>4.9-${1}-${commit.short}</version>
</ref>
<ref type = "tag">
<pattern>v([0-9].*)></pattern>
<version>${1}</version>
</ref>
</refs>
</configuration>
Loading

0 comments on commit c34e8ed

Please sign in to comment.