This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c33424a
commit 26e91c5
Showing
4 changed files
with
65 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
real version: `v0.0.10` | ||
|
||
simbot-mirai version: `v3.0.0.preview.5.0-21000.1.0` | ||
|
||
## 更新内容 | ||
- 优化登录成功后的额外说明 | ||
- 优化扫码登录的提示 | ||
- 更新内置simbot版本 | ||
|
||
## 其他说明 | ||
#### 版本号 | ||
目前版本 `v3.0.10` 等同于 `v0.0.10`, 请在脑海中自动将版本最前的数字-3。 | ||
由于 `macOS`(`dmg` & `pkg`) 打包必须保证版本号符合规则: `MAJOR[.MINOR][.PATCH]` 且: | ||
- `MAJOR` 是大于0的数字; | ||
- `MINOR` 是一个可选的非负整数; | ||
- `PATCH` 是一个可选的非负整数; | ||
因此对于`dmg`和`pkg`文件来说,不能使用最大版本号小于0的版本。因此选择将 `MAJOR` 数字与当前环境下 `simbot` 对应的 `MAJOR` 一致,也就是 `3`。 | ||
|
||
有关于其他文件的版本说明请参考 [compose-jb/tutorials/Building native distribution/Specifying package version](https://github.com/JetBrains/compose-jb/tree/master/tutorials/Native_distributions_and_local_execution#specifying-package-version) | ||
|
||
<hr> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ plugins { | |
} | ||
|
||
group = "love.forte.simbot" | ||
val subVersion = "0.9" | ||
val subVersion = "0.10" | ||
version = "3.$subVersion" | ||
|
||
repositories { | ||
|
@@ -27,7 +27,7 @@ configurations.all { | |
} | ||
} | ||
|
||
val simbotMirai = "3.0.0.preview.3.0-292.0.1-SNAPSHOT" | ||
val simbotMirai = "3.0.0.preview.5.0-21000.1.0" | ||
|
||
|
||
dependencies { | ||
|
@@ -111,17 +111,17 @@ compose.desktop { | |
|
||
|
||
macOS { | ||
this.iconFile.set(project.file("icon.icns")) | ||
iconFile.set(project.file("icon.icns")) | ||
} | ||
|
||
windows { | ||
this.iconFile.set(project.file("icon.ico")) | ||
iconFile.set(project.file("icon.ico")) | ||
shortcut = true | ||
menuGroup = "simbot" | ||
} | ||
|
||
linux { | ||
this.iconFile.set(project.file("icon.png")) | ||
iconFile.set(project.file("icon.png")) | ||
shortcut = true | ||
debMaintainer = "[email protected]" | ||
menuGroup = "simbot" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters