ChangeLog: v0.1.2

This commit is contained in:
notify 2023-04-20 18:15:18 +08:00
parent bc36cfbce4
commit 221cc552c7
6 changed files with 16 additions and 4 deletions

View File

@ -2,6 +2,16 @@
___ ___
## v0.1.2
一次更小的更新。
1. 修复单机启动闪退
2. 公告也发送到聊天里面
3. 上线/下线时发送公告
___
## v0.1.1 ## v0.1.1
一次小更新。 一次小更新。

View File

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

View File

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

View File

@ -10,7 +10,7 @@
with import nixpkgs { system = "x86_64-linux"; }; with import nixpkgs { system = "x86_64-linux"; };
stdenv.mkDerivation { stdenv.mkDerivation {
name = "freekill"; name = "freekill";
version = "0.1.1"; version = "0.1.2";
src = self; src = self;
buildInputs = with qt6; [ buildInputs = with qt6; [

View File

@ -247,6 +247,7 @@ Item {
function sendDanmaku(msg) { function sendDanmaku(msg) {
danmaku.sendLog(msg); danmaku.sendLog(msg);
lobbyChat.append(msg);
} }
Component.onCompleted: { Component.onCompleted: {

View File

@ -786,6 +786,7 @@ Item {
function sendDanmaku(msg) { function sendDanmaku(msg) {
danmaku.sendLog(msg); danmaku.sendLog(msg);
chat.append(msg);
} }
function showDistance(show) { function showDistance(show) {