68
.gitignore
vendored
|
@ -1,45 +1,45 @@
|
||||||
# Compile output
|
# Compile output
|
||||||
build/
|
/build/
|
||||||
lib/libgit2/
|
/docs/build
|
||||||
*.o
|
/*.o
|
||||||
zh_CN.qm
|
/zh_CN.qm
|
||||||
fk_ver
|
/fk_ver
|
||||||
|
|
||||||
# IDE & LSP
|
# IDE & LSP
|
||||||
.kdev4/
|
/.kdev4/
|
||||||
.vscode/
|
/.vscode/
|
||||||
*.user
|
/*.user
|
||||||
*-swp
|
*-swp
|
||||||
*.kdev4
|
/*.kdev4
|
||||||
.cache/
|
/.cache/
|
||||||
tags
|
/tags
|
||||||
|
|
||||||
# file produced by game
|
# file produced by game
|
||||||
/FreeKill
|
/FreeKill
|
||||||
|
/FreeKill.exe
|
||||||
/mymod
|
/mymod
|
||||||
FreeKill.exe
|
|
||||||
freekill-wrap.cxx
|
freekill-wrap.cxx
|
||||||
server/users.db
|
/server/users.db
|
||||||
server/rsa
|
/server/rsa
|
||||||
server/rsa_pub
|
/server/rsa_pub
|
||||||
freekill.client.config.json
|
/freekill.client.config.json
|
||||||
freekill.server.config.json
|
/freekill.server.config.json
|
||||||
flist.txt
|
/flist.txt
|
||||||
|
|
||||||
# windeployqt
|
# windeployqt
|
||||||
bearer/
|
/bearer/
|
||||||
iconengines/
|
/iconengines/
|
||||||
imageformats/
|
/imageformats/
|
||||||
platforms/
|
/platforms/
|
||||||
Qt/
|
/Qt/
|
||||||
QtGraphicalEffects/
|
/QtGraphicalEffects/
|
||||||
QtQuick/
|
/QtQuick/
|
||||||
QtQuick.2/
|
/QtQuick.2/
|
||||||
Qt5Compat/
|
/Qt5Compat/
|
||||||
QtQml/
|
/QtQml/
|
||||||
QtMultimedia/
|
/QtMultimedia/
|
||||||
sqldrivers/
|
/sqldrivers/
|
||||||
styles/
|
/styles/
|
||||||
tls/
|
/tls/
|
||||||
translations/
|
/translations/
|
||||||
*.dll
|
/*.dll
|
||||||
|
|
|
@ -36,7 +36,7 @@ Rectangle {
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
id: fktext
|
id: fktext
|
||||||
text: "FreeKill"
|
text: qsTr("FreeKill")
|
||||||
// color: "#ffffff"
|
// color: "#ffffff"
|
||||||
font.pixelSize: 40
|
font.pixelSize: 40
|
||||||
opacity: 0
|
opacity: 0
|
||||||
|
@ -151,7 +151,7 @@ Rectangle {
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
text: "常用联机IP:175.178.66.93\nFK联机交流群:531553435"
|
text: "常用联机IP:175.178.66.93\n新月杀联机交流群:531553435"
|
||||||
font.pixelSize: 20
|
font.pixelSize: 20
|
||||||
anchors.bottom: parent.bottom
|
anchors.bottom: parent.bottom
|
||||||
anchors.bottomMargin: 20
|
anchors.bottomMargin: 20
|
||||||
|
|
|
@ -13,7 +13,7 @@ Window {
|
||||||
height: 540
|
height: 540
|
||||||
minimumWidth: 160
|
minimumWidth: 160
|
||||||
minimumHeight: 90
|
minimumHeight: 90
|
||||||
title: "FreeKill v" + FkVersion
|
title: qsTr("FreeKill") + " v" + FkVersion
|
||||||
property var callbacks: Logic.callbacks
|
property var callbacks: Logic.callbacks
|
||||||
property var tipList: []
|
property var tipList: []
|
||||||
|
|
||||||
|
|
2
android/.gitignore
vendored
|
@ -1,4 +1,4 @@
|
||||||
assets/
|
assets/
|
||||||
res/
|
res/mipmap
|
||||||
build.sh
|
build.sh
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<application
|
<application
|
||||||
android:name="org.qtproject.qt.android.bindings.QtApplication"
|
android:name="org.qtproject.qt.android.bindings.QtApplication"
|
||||||
android:hardwareAccelerated="true"
|
android:hardwareAccelerated="true"
|
||||||
android:label="FreeKill"
|
android:label="@string/app_name"
|
||||||
android:icon="@mipmap/icon"
|
android:icon="@mipmap/icon"
|
||||||
|
|
||||||
android:requestLegacyExternalStorage="true"
|
android:requestLegacyExternalStorage="true"
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
<activity
|
<activity
|
||||||
android:name="org.qtproject.qt.android.bindings.QtActivity"
|
android:name="org.qtproject.qt.android.bindings.QtActivity"
|
||||||
android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density"
|
android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density"
|
||||||
android:label="FreeKill"
|
android:label="@string/app_name"
|
||||||
android:launchMode="singleTop"
|
android:launchMode="singleTop"
|
||||||
android:screenOrientation="sensorLandscape"
|
android:screenOrientation="sensorLandscape"
|
||||||
android:theme="@style/FkTheme"
|
android:theme="@style/FkTheme"
|
||||||
|
|
4
android/res/values/strings.xml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<resources>
|
||||||
|
<string name="app_name">新月杀</string>
|
||||||
|
</resources>
|
|
@ -1,6 +1,7 @@
|
||||||
#!/usr/bin/env xdg-open
|
#!/usr/bin/env xdg-open
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=FreeKill
|
Name=FreeKill
|
||||||
|
Name[zh_CN]=新月杀
|
||||||
Comment=A Bang!-like card game
|
Comment=A Bang!-like card game
|
||||||
Comment[zh_CN]=一款玩法类似Bang!的桌游
|
Comment[zh_CN]=一款玩法类似Bang!的桌游
|
||||||
Icon=freekill_logo
|
Icon=freekill_logo
|
||||||
|
|
BIN
image/icon.ico
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.4 KiB |
BIN
image/icon.png
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 44 B |
1
image/logo/freekill.png
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
/home/notify/develop/FreeKill/image/icon.png
|
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 44 B |
|
@ -117,8 +117,20 @@
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
|
||||||
|
<context>
|
||||||
|
<name>main</name>
|
||||||
|
<message>
|
||||||
|
<source>FreeKill</source>
|
||||||
|
<translation>新月杀</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
|
||||||
<context>
|
<context>
|
||||||
<name>Splash</name>
|
<name>Splash</name>
|
||||||
|
<message>
|
||||||
|
<source>FreeKill</source>
|
||||||
|
<translation>新月杀</translation>
|
||||||
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Free</source>
|
<source>Free</source>
|
||||||
<translation>自由</translation>
|
<translation>自由</translation>
|
||||||
|
|
|
@ -56,7 +56,7 @@ Fk:loadTranslationTable{
|
||||||
["Replay"] = "录像",
|
["Replay"] = "录像",
|
||||||
["About"] = "关于",
|
["About"] = "关于",
|
||||||
["about_freekill_description"] = [[
|
["about_freekill_description"] = [[
|
||||||
# 关于FreeKill
|
# 关于新月杀
|
||||||
|
|
||||||
以便于DIY为首要目的的开源三国杀游戏。
|
以便于DIY为首要目的的开源三国杀游戏。
|
||||||
|
|
||||||
|
|