ChangeLog: v0.1.3

This commit is contained in:
notify 2023-04-21 20:57:03 +08:00
parent ab4cfba7a3
commit cded53f261
5 changed files with 14 additions and 3 deletions

View File

@ -2,6 +2,15 @@
___
## v0.1.3
1. 优化了武将一览和卡牌一览的UI。
2. 增强exppattern
3. 引入调试器在Lua代码中调用`dbg()`可以下断点
4. 修复cloneCard未复制is_damage_card
___
## v0.1.2
一次更小的更新。

View File

@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 3.16)
project(FreeKill VERSION 0.1.2)
project(FreeKill VERSION 0.1.3)
add_definitions(-DFK_VERSION=\"${CMAKE_PROJECT_VERSION}\")
if (NOT ${CMAKE_SYSTEM_NAME} MATCHES "Emscripten")

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="102"
android:versionName="0.1.2">
android:versionCode="103"
android:versionName="0.1.3">
<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

@ -135,6 +135,7 @@ function Card:clone(suit, number)
newCard.skill = self.skill
newCard.special_skills = self.special_skills
newCard.equip_skill = self.equip_skill
newCard.is_damage_card = self.is_damage_card
return newCard
end

View File

@ -13,6 +13,7 @@ Window {
height: 540
minimumWidth: 160
minimumHeight: 90
title: "FreeKill v" + FkVersion
property var callbacks: Logic.callbacks
Item {