ChangeLog: v0.1.8

This commit is contained in:
Ho-spair 2023-05-13 15:20:47 +08:00
parent 6e2687a3ab
commit 89dd04fd5d
5 changed files with 26 additions and 4 deletions

View File

@ -1,4 +1,16 @@
# ChangeLog
___
## v0.1.8
1. 实现禁将功能
2. 实现转换技,新增发动转换技动画
3. 分离觉醒技的觉醒条件
4. 封装不同实例卡牌的花色、点数、颜色的比较,用于处理无花色等情况
5. 新增mark_enum.lua用于注册通用标记名
6. 实现将特定实现列表按结算顺序排序的函数
7. 允许UI解析值为数组的标记
8. 初步实现不加入牌堆中的衍生卡牌(待改进)
___

View File

@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 3.16)
project(FreeKill VERSION 0.1.7)
project(FreeKill VERSION 0.1.8)
add_definitions(-DFK_VERSION=\"${CMAKE_PROJECT_VERSION}\")
include_directories(fkparse/src)

View File

@ -3,8 +3,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.notify.FreeKill"
android:installLocation="preferExternal"
android:versionCode="107"
android:versionName="0.1.7">
android:versionCode="108"
android:versionName="0.1.8">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

View File

@ -199,6 +199,16 @@ FreeKill使用的是libgit2的C API与此同时使用Git完成拓展包的下
["basic_char"] = "",
["trick_char"] = "",
["equip_char"] = "",
["Bulletin Info"] = "<h2>更新说明</h2>\
1. 退/<br>\
2. <br>\
3. <br>\
4. <br>\
5. mark_enum.lua用于注册通用标记名<br>\
6. <br>\
7. UI解析值为数组的标记<br>\
8. ",
}
-- Game concepts

View File

@ -38,7 +38,7 @@ Item {
Text {
anchors.fill: parent
wrapMode: TextEdit.WrapAnywhere
text: '<h1>公告测试</h1><br>● 更新跳过觉醒(神郭嘉)、转换技概念(许攸)。<br>● 武将一览中增加禁将功能。'
text: Backend.translate('Bulletin Info')
}
}
}