This repository was archived by the owner on Nov 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +16
-8
lines changed
loader/src/nativeMain/kotlin/scripts
shared/src/commonMain/kotlin Expand file tree Collapse file tree 7 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 29
29
with :
30
30
arch : amd64
31
31
vsversion : 2019
32
- - name : build with gcc
32
+ - name : build with gcc libLoaderNative
33
33
run : ./scripts/WIN/cppBuilds.bat libLoaderNative
34
+ - name : build with gcc libLoader
35
+ run : ./scripts/WIN/cppBuilds.bat libLoader
34
36
- name : copy out
35
37
run : copy ./cpp/build/Release/*.dll && copy ./cpp/build/Release/*.lib
36
38
- name : upload
52
54
platform : x64
53
55
- name : print glibc version
54
56
run : ldd --version
55
- - name : build with gcc
57
+ - name : build with gcc libLoaderNative
56
58
run : ./scripts/LINUX/cppBuilds.sh libLoaderNative
59
+ - name : build with gcc libLoader
60
+ run : ./scripts/LINUX/cppBuilds.sh libLoader
57
61
- name : copy out
58
62
run : cp ./cpp/build/*.so ./ && cp /lib/x86_64-linux-gnu/libcrypt.so.1 ./
59
63
- name : upload
Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## v2.15.0-RC2
4
+ 与上一版本无修改
5
+ 修复了打包 workflow 不导出 libLoader 的问题
6
+
3
7
## v2.15.0-RC
4
8
* 修复文件列表的问题, #188
5
9
* 修复 MiraiCP-native 的问题, 现在理论上应该是能开始用了, 但还没经过完全测试
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ PROJECT_NAME = MiraiCP
38
38
# could be handy for archiving the generated documentation or if some version
39
39
# control system is used.
40
40
41
- PROJECT_NUMBER = v2.15.0-RC
41
+ PROJECT_NUMBER = v2.15.0-RC2
42
42
43
43
# Using the PROJECT_BRIEF tag one can provide an optional one line description
44
44
# for a project that appears at the top of each page and should give viewer a
Original file line number Diff line number Diff line change 22
22
23
23
24
24
namespace MiraiCP {
25
- constexpr const char *m_MiraiCPVersion = " v2.15.0-RC " ;
25
+ constexpr const char *m_MiraiCPVersion = " v2.15.0-RC2 " ;
26
26
inline const std::string MiraiCPVersion = m_MiraiCPVersion;
27
27
28
28
struct PluginConfig {
Original file line number Diff line number Diff line change 17
17
*/
18
18
19
19
object Version {
20
- const val miraiCP = " 2.15.0-RC "
20
+ const val miraiCP = " 2.15.0-RC2 "
21
21
22
22
// plugins
23
23
const val kotlin = " 1.8.10"
Original file line number Diff line number Diff line change 17
17
#
18
18
#
19
19
20
- executable=" ./MiraiCP-loader-v2.15.0-RC .kexe"
20
+ executable=" ./MiraiCP-loader-v2.15.0-RC2 .kexe"
21
21
grep_re=$( LD_LIBRARY_PATH=./ ldd $executable | grep " not found" )
22
22
if [ " $grep_re " != " " ]; then
23
23
echo " 检测到以下依赖缺失"
Original file line number Diff line number Diff line change 19
19
package tech.eritquearcus.miraicp.shared
20
20
21
21
object BuiltInConstants {
22
- const val date = " Sun Apr 09 23:31:15 EDT 2023"
23
- const val version = " 2.15.0-RC "
22
+ const val date = " Mon Apr 10 00:28:02 EDT 2023"
23
+ const val version = " 2.15.0-RC2 "
24
24
const val miraiVersion = " 2.15.0-M1"
25
25
}
You can’t perform that action at this time.
0 commit comments