mirror of
https://github.com/QuasarApp/Hanoi-Towers.git
synced 2025-04-27 10:14:31 +00:00
commit
95555a215c
4
.gitignore
vendored
4
.gitignore
vendored
@ -53,6 +53,10 @@ installer/packages/HanoiTowers/parts
|
|||||||
installer/packages/HanoiTowers/prime
|
installer/packages/HanoiTowers/prime
|
||||||
installer/packages/HanoiTowers/stage
|
installer/packages/HanoiTowers/stage
|
||||||
installer/packages/HanoiTowers/data/*
|
installer/packages/HanoiTowers/data/*
|
||||||
|
HanoiTowers/client/android/src/com/falsinsoft/
|
||||||
|
HanoiTowers/client/android/aidl/
|
||||||
|
HanoiTowers/client/android/src/com/google/
|
||||||
|
|
||||||
.snapcraft
|
.snapcraft
|
||||||
Distro
|
Distro
|
||||||
# QtCreator
|
# QtCreator
|
||||||
|
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -16,3 +16,6 @@
|
|||||||
[submodule "HanoiTowers/client/Credits"]
|
[submodule "HanoiTowers/client/Credits"]
|
||||||
path = submodules/Credits
|
path = submodules/Credits
|
||||||
url = https://github.com/QuasarApp/Credits
|
url = https://github.com/QuasarApp/Credits
|
||||||
|
[submodule "submodules/QtAndroidTools"]
|
||||||
|
path = submodules/QtAndroidTools
|
||||||
|
url = https://github.com/QuasarApp/QtAndroidTools.git
|
||||||
|
@ -11,13 +11,12 @@ project(HanoiTowers)
|
|||||||
set(BUILD_SHARED_LIBS ON)
|
set(BUILD_SHARED_LIBS ON)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
include(submodules/Heart/QuasarAppLib/CMake/QuasarApp.cmake)
|
include(submodules/Heart/QuasarAppLib/CMake/QuasarApp.cmake)
|
||||||
include(submodules/Heart/QuasarAppLib/CMake/Version.cmake)
|
include(submodules/Heart/QuasarAppLib/CMake/Version.cmake)
|
||||||
|
initAll()
|
||||||
|
|
||||||
if (DEFINED TARGET_PLATFORM_TOOLCHAIN)
|
if (DEFINED TARGET_PLATFORM_TOOLCHAIN)
|
||||||
if (${TARGET_PLATFORM_TOOLCHAIN} STREQUAL "wasm32")
|
if (${TARGET_PLATFORM_TOOLCHAIN} STREQUAL "wasm32")
|
||||||
initAll()
|
|
||||||
return()
|
return()
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
@ -28,6 +27,8 @@ endif()
|
|||||||
|
|
||||||
if(ONLINE_FUNCTIONS)
|
if(ONLINE_FUNCTIONS)
|
||||||
add_definitions(-DONLINE_FUNCTIONS)
|
add_definitions(-DONLINE_FUNCTIONS)
|
||||||
|
else()
|
||||||
|
set(HEART_SSL OFF)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (NOT DEFINED HANOI_TESTS)
|
if (NOT DEFINED HANOI_TESTS)
|
||||||
@ -45,7 +46,7 @@ if (NOT DEFINED HANOI_SERVER)
|
|||||||
set(HANOI_SERVER OFF)
|
set(HANOI_SERVER OFF)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (ONLINE_FUNCTIONS)
|
if ( NOT ONLINE_FUNCTIONS)
|
||||||
set(HANOI_SERVER OFF)
|
set(HANOI_SERVER OFF)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@ -65,8 +66,8 @@ SET(PRODUCT_VER_Mn 6)
|
|||||||
SET(PRODUCT_VER_Re 0)
|
SET(PRODUCT_VER_Re 0)
|
||||||
|
|
||||||
file(MAKE_DIRECTORY ${TARGET_DIR})
|
file(MAKE_DIRECTORY ${TARGET_DIR})
|
||||||
|
|
||||||
initAll()
|
initAll()
|
||||||
|
|
||||||
addDoc(${PROJECT_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/doxygen.conf)
|
addDoc(${PROJECT_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/doxygen.conf)
|
||||||
|
|
||||||
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
|
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
|
||||||
@ -97,7 +98,35 @@ if (HANOI_CLIENT)
|
|||||||
add_subdirectory(submodules/SimpleQmlNotify)
|
add_subdirectory(submodules/SimpleQmlNotify)
|
||||||
add_subdirectory(submodules/ViewSolutions)
|
add_subdirectory(submodules/ViewSolutions)
|
||||||
add_subdirectory(submodules/Credits)
|
add_subdirectory(submodules/Credits)
|
||||||
|
|
||||||
|
if (ANDROID)
|
||||||
|
set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/HanoiTowers/client/android")
|
||||||
|
set(QTAT_APP_PERMISSIONS OFF)
|
||||||
|
set(QTAT_APK_EXPANSION_FILES OFF)
|
||||||
|
set(QTAT_APK_INFO OFF)
|
||||||
|
set(QTAT_SCREEN OFF)
|
||||||
|
set(QTAT_SYSTEM OFF)
|
||||||
|
set(QTAT_BATTERY_STATE OFF)
|
||||||
|
set(QTAT_SIGNAL_STRENGTH OFF)
|
||||||
|
set(QTAT_IMAGES OFF)
|
||||||
|
set(QTAT_NOTIFICATION OFF)
|
||||||
|
set(QTAT_ADMOB_BANNER OFF)
|
||||||
|
set(QTAT_ADMOB_INTERSTITIAL ON)
|
||||||
|
set(QTAT_ADMOB_REWARDED_VIDEO OFF)
|
||||||
|
set(QTAT_PLAY_STORE OFF)
|
||||||
|
set(QTAT_GOOGLE_ACCOUNT OFF)
|
||||||
|
set(QTAT_GOOGLE_DRIVE OFF)
|
||||||
|
set(QTAT_SHARING OFF)
|
||||||
|
set(QTAT_USER_MESSAGING_PLATFORM OFF)
|
||||||
|
set(QTAT_AUDIO OFF)
|
||||||
|
|
||||||
|
add_subdirectory(submodules/QtAndroidTools/QtAndroidTools)
|
||||||
|
include_directories(submodules/QtAndroidTools/QtAndroidTools)
|
||||||
|
|
||||||
|
endif()
|
||||||
|
|
||||||
add_subdirectory(HanoiTowers/client)
|
add_subdirectory(HanoiTowers/client)
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (HANOI_SERVER)
|
if (HANOI_SERVER)
|
||||||
@ -105,6 +134,3 @@ if (HANOI_SERVER)
|
|||||||
add_subdirectory(HanoiTowers/Server)
|
add_subdirectory(HanoiTowers/Server)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,5 +21,6 @@
|
|||||||
"qif": "./../installer",
|
"qif": "./../installer",
|
||||||
"icon": "./../HanoiTowers/client/res/iconInstall.png",
|
"icon": "./../HanoiTowers/client/res/iconInstall.png",
|
||||||
"deb": true,
|
"deb": true,
|
||||||
|
"zip": true,
|
||||||
"targetDir": "./../Distro"
|
"targetDir": "./../Distro"
|
||||||
}
|
}
|
||||||
|
@ -14,8 +14,8 @@
|
|||||||
#include "hanoitowersprotockol_global.h"
|
#include "hanoitowersprotockol_global.h"
|
||||||
|
|
||||||
struct HANOITOWERSPROTOCOL_EXPORT UserPreview: public QH::StreamBase {
|
struct HANOITOWERSPROTOCOL_EXPORT UserPreview: public QH::StreamBase {
|
||||||
explicit UserPreview();
|
UserPreview();
|
||||||
explicit UserPreview(const QString& id);
|
UserPreview(const QString& id);
|
||||||
|
|
||||||
QString id;
|
QString id;
|
||||||
QString userName;
|
QString userName;
|
||||||
|
@ -49,18 +49,31 @@ if (ANDROID)
|
|||||||
Credits
|
Credits
|
||||||
QmlNotyfyService)
|
QmlNotyfyService)
|
||||||
|
|
||||||
|
find_package(QT NAMES Qt6 Qt5 COMPONENTS AndroidExtras REQUIRED)
|
||||||
|
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS AndroidExtras REQUIRED)
|
||||||
|
|
||||||
addDeployAPK(${CURRENT_PROJECT} "${CMAKE_CURRENT_LIST_DIR}/android" "digitalface" "${SIGN_PATH}/DigitalFaceMobily.keystore" "${SIGN_STORE_PASSWORD}" "${TARGET_DIR}" "${HANOI_EXTRA_LIBS}")
|
addDeployAPK(${CURRENT_PROJECT} "${CMAKE_CURRENT_LIST_DIR}/android" "digitalface" "${SIGN_PATH}/DigitalFaceMobily.keystore" "${SIGN_STORE_PASSWORD}" "${TARGET_DIR}" "${HANOI_EXTRA_LIBS}")
|
||||||
|
target_link_libraries(${CURRENT_PROJECT} PRIVATE QtAndroidTools Qt${QT_VERSION_MAJOR}::AndroidExtras)
|
||||||
|
|
||||||
|
file(GLOB java_files
|
||||||
|
"android/src/com/quasarapp/androidtools/*.java"
|
||||||
|
)
|
||||||
|
|
||||||
|
add_custom_target(${name}Android
|
||||||
|
SOURCES ${java_files}
|
||||||
|
)
|
||||||
|
|
||||||
else()
|
else()
|
||||||
# Desctop deploying
|
# Desctop deploying
|
||||||
addDeployFromCustomFile("Client" "${CMAKE_SOURCE_DIR}/Deploy/Client.json")
|
addDeployFromCustomFile("Client" "${CMAKE_SOURCE_DIR}/Deploy/Client.json")
|
||||||
|
|
||||||
# if (UNIX)
|
if (UNIX)
|
||||||
# #addDeployQIF("Client" ${INSTALLER_DIR} ${TARGET_DIR} "${INSTALLER_DIR}/config/configLinux.xml")
|
#addDeployQIF("Client" ${INSTALLER_DIR} ${TARGET_DIR} "${INSTALLER_DIR}/config/configLinux.xml")
|
||||||
# #addDeploySnap("Client" ${TARGET_DIR})
|
addDeploySnap("Client" ${TARGET_DIR})
|
||||||
|
|
||||||
# #addReleaseSnap("Client")
|
#addReleaseSnap("Client")
|
||||||
|
|
||||||
# endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
#addReleaseQif("Client" ${DATA_DIR} ${TARGET_DIR})
|
#addReleaseQif("Client" ${DATA_DIR} ${TARGET_DIR})
|
||||||
|
49
HanoiTowers/client/activityhandler.cpp
Normal file
49
HanoiTowers/client/activityhandler.cpp
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2021-2021 QuasarApp.
|
||||||
|
* Distributed under the lgplv3 software license, see the accompanying
|
||||||
|
* Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
* of this license document, but changing it is not allowed.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "activityhandler.h"
|
||||||
|
|
||||||
|
#ifdef Q_OS_ANDROID
|
||||||
|
|
||||||
|
#include <QAndroidIntent>
|
||||||
|
|
||||||
|
const int REQUEST_CODE = 123;
|
||||||
|
const jint RESULT_OK = QAndroidJniObject::getStaticField<jint>("android/app/Activity", "RESULT_OK");
|
||||||
|
|
||||||
|
ActivityHandler *ActivityHandler::m_instance = nullptr;
|
||||||
|
|
||||||
|
ActivityHandler::ActivityHandler(QObject *parent) : QObject(parent) {
|
||||||
|
m_instance = this;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ActivityHandler::showSecondActivity() {
|
||||||
|
QAndroidIntent activityIntent(QtAndroid::androidActivity().object(),
|
||||||
|
"org/qtproject/example/activityhandler/CustomActivity");
|
||||||
|
|
||||||
|
QtAndroid::startActivity(
|
||||||
|
activityIntent.handle(), REQUEST_CODE,
|
||||||
|
[this](int requestCode, int resultCode, const QAndroidJniObject &data) {
|
||||||
|
activityReceiver(requestCode, resultCode, data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
void ActivityHandler::activityReceiver(int requestCode,
|
||||||
|
int resultCode,
|
||||||
|
const QAndroidJniObject &data) {
|
||||||
|
if (requestCode == REQUEST_CODE) {
|
||||||
|
if (resultCode == RESULT_OK) {
|
||||||
|
const QAndroidJniObject key = QAndroidJniObject::fromString("message");
|
||||||
|
const QAndroidJniObject message = data.callObjectMethod(
|
||||||
|
"getStringExtra", "(Ljava/lang/String;)Ljava/lang/String;", key.object());
|
||||||
|
if (message.isValid())
|
||||||
|
emit ActivityHandler::instance()->receiveFromActivityResult(message.toString());
|
||||||
|
} else {
|
||||||
|
emit ActivityHandler::instance()->receiveFromActivityResult("Rejected!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
36
HanoiTowers/client/activityhandler.h
Normal file
36
HanoiTowers/client/activityhandler.h
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2021-2021 QuasarApp.
|
||||||
|
* Distributed under the lgplv3 software license, see the accompanying
|
||||||
|
* Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
* of this license document, but changing it is not allowed.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef ACTIVITYHANDLER_H
|
||||||
|
#define ACTIVITYHANDLER_H
|
||||||
|
#include <QObject>
|
||||||
|
|
||||||
|
#ifdef Q_OS_ANDROID
|
||||||
|
#include <QtAndroid>
|
||||||
|
|
||||||
|
class ActivityHandler : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
ActivityHandler(QObject *parent = nullptr);
|
||||||
|
static ActivityHandler *instance() { return m_instance; }
|
||||||
|
|
||||||
|
Q_INVOKABLE void showSecondActivity();
|
||||||
|
void activityReceiver(int requestCode, int resultCode, const QAndroidJniObject &data);
|
||||||
|
|
||||||
|
signals:
|
||||||
|
void receiveFromActivityResult(const QString &message);
|
||||||
|
|
||||||
|
private:
|
||||||
|
static ActivityHandler *m_instance;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif // ACTIVITYHANDLER_H
|
11
HanoiTowers/client/admod/AdMobInterstitialAndroid.qml
Normal file
11
HanoiTowers/client/admod/AdMobInterstitialAndroid.qml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import QtQuick 2.15
|
||||||
|
import QtAndroidTools 1.0
|
||||||
|
|
||||||
|
QtAndroidAdMobInterstitial {
|
||||||
|
id: interstitial
|
||||||
|
unitId: "ca-app-pub-5799112356811682/5211864198"
|
||||||
|
nonPersonalizedAds: false
|
||||||
|
onLoading: interstitialState.text = "Loading"
|
||||||
|
onLoaded: interstitialState.text = "Loaded"
|
||||||
|
onLoadError: interstitialState.text = "Error " + errorId
|
||||||
|
}
|
@ -10,7 +10,9 @@
|
|||||||
|
|
||||||
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
|
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
|
||||||
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="-- %%INSERT_APP_NAME%% --" android:extractNativeLibs="true" android:icon="@drawable/icon">
|
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="-- %%INSERT_APP_NAME%% --" android:extractNativeLibs="true" android:icon="@drawable/icon">
|
||||||
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density" android:name="org.qtproject.qt5.android.bindings.QtActivity" android:label="-- %%INSERT_APP_NAME%% --" android:screenOrientation="landscape" android:launchMode="singleTop">
|
<!-- Sample AdMob app ID: ca-app-pub-5799112356811682~1226170116 -->
|
||||||
|
<meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="ca-app-pub-5799112356811682~1226170116"/>
|
||||||
|
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density" android:name="com.quasarapp.androidtools.MainActivity" android:label="-- %%INSERT_APP_NAME%% --" android:screenOrientation="landscape" android:launchMode="singleTop">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN"/>
|
<action android:name="android.intent.action.MAIN"/>
|
||||||
<category android:name="android.intent.category.LAUNCHER"/>
|
<category android:name="android.intent.category.LAUNCHER"/>
|
||||||
@ -75,4 +77,7 @@
|
|||||||
<!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
|
<!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
||||||
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
||||||
</manifest>
|
</manifest>
|
||||||
|
@ -18,6 +18,7 @@ apply plugin: 'com.android.application'
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
||||||
|
implementation 'com.google.android.gms:play-services-ads:19.+'
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
@ -71,6 +72,7 @@ android {
|
|||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
resConfig "en"
|
resConfig "en"
|
||||||
|
multiDexEnabled true
|
||||||
minSdkVersion = 22
|
minSdkVersion = 22
|
||||||
targetSdkVersion = 30
|
targetSdkVersion = 30
|
||||||
}
|
}
|
||||||
|
@ -9,3 +9,7 @@ org.gradle.jvmargs=-Xmx2048m
|
|||||||
# build with the same inputs. However, over time, the cache size will
|
# build with the same inputs. However, over time, the cache size will
|
||||||
# grow. Uncomment the following line to enable it.
|
# grow. Uncomment the following line to enable it.
|
||||||
#org.gradle.caching=true
|
#org.gradle.caching=true
|
||||||
|
|
||||||
|
android.useAndroidX=true
|
||||||
|
|
||||||
|
android.enableJetifier=true
|
||||||
|
@ -0,0 +1,50 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2021-2021 QuasarApp.
|
||||||
|
* Distributed under the lgplv3 software license, see the accompanying
|
||||||
|
* Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
* of this license document, but changing it is not allowed.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.quasarapp.androidtools;
|
||||||
|
|
||||||
|
import org.qtproject.qt5.android.bindings.QtActivity;
|
||||||
|
import android.view.View;
|
||||||
|
|
||||||
|
public class MainActivity extends QtActivity
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
public void onWindowFocusChanged(boolean hasFocus) {
|
||||||
|
super.onWindowFocusChanged(hasFocus);
|
||||||
|
if (hasFocus) {
|
||||||
|
hideSystemUI();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void hideSystemUI() {
|
||||||
|
// Enables regular immersive mode.
|
||||||
|
// For "lean back" mode, remove SYSTEM_UI_FLAG_IMMERSIVE.
|
||||||
|
// Or for "sticky immersive," replace it with SYSTEM_UI_FLAG_IMMERSIVE_STICKY
|
||||||
|
View decorView = getWindow().getDecorView();
|
||||||
|
decorView.setSystemUiVisibility(
|
||||||
|
View.SYSTEM_UI_FLAG_IMMERSIVE
|
||||||
|
// Set the content to appear under the system bars so that the
|
||||||
|
// content doesn't resize when the system bars hide and show.
|
||||||
|
| View.SYSTEM_UI_FLAG_LAYOUT_STABLE
|
||||||
|
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
|
||||||
|
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
|
||||||
|
// Hide the nav bar and status bar
|
||||||
|
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
|
||||||
|
| View.SYSTEM_UI_FLAG_FULLSCREEN);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Shows the system bars by removing all the flags
|
||||||
|
// except for the ones that make the content appear under the system bars.
|
||||||
|
private void showSystemUI() {
|
||||||
|
View decorView = getWindow().getDecorView();
|
||||||
|
decorView.setSystemUiVisibility(
|
||||||
|
View.SYSTEM_UI_FLAG_LAYOUT_STABLE
|
||||||
|
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
|
||||||
|
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -220,6 +220,14 @@ QObject *HanoiTowers::selectedUser() {
|
|||||||
return &_selectedUser;
|
return &_selectedUser;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool HanoiTowers::isAndroid() const{
|
||||||
|
#ifdef Q_OS_ANDROID
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
void HanoiTowers::handleChangeName(const QString &) {
|
void HanoiTowers::handleChangeName(const QString &) {
|
||||||
emit profileChanged();
|
emit profileChanged();
|
||||||
}
|
}
|
||||||
|
@ -108,6 +108,8 @@ public:
|
|||||||
QObject *bestUser();
|
QObject *bestUser();
|
||||||
QObject *selectedUser();
|
QObject *selectedUser();
|
||||||
|
|
||||||
|
Q_INVOKABLE bool isAndroid() const;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
@ -192,12 +192,12 @@
|
|||||||
<translation type="vanished">Tower height: </translation>
|
<translation type="vanished">Tower height: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../menu/GameStateWidget.qml" line="34"/>
|
<location filename="../menu/GameStateWidget.qml" line="33"/>
|
||||||
<source>Tower height: </source>
|
<source>Tower height: </source>
|
||||||
<translation>Tower height: </translation>
|
<translation>Tower height: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../menu/GameStateWidget.qml" line="63"/>
|
<location filename="../menu/GameStateWidget.qml" line="62"/>
|
||||||
<source>step </source>
|
<source>step </source>
|
||||||
<translation>step </translation>
|
<translation>step </translation>
|
||||||
</message>
|
</message>
|
||||||
@ -266,68 +266,68 @@
|
|||||||
<translation>User data updated successful</translation>
|
<translation>User data updated successful</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="239"/>
|
<location filename="../hanoitowers.cpp" line="247"/>
|
||||||
<source>login error</source>
|
<source>login error</source>
|
||||||
<translation>Login error</translation>
|
<translation>Login error</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="240"/>
|
<location filename="../hanoitowers.cpp" line="248"/>
|
||||||
<source>Failed to login into online account, please check your password and username</source>
|
<source>Failed to login into online account, please check your password and username</source>
|
||||||
<translation>Failed to login into online account, please check your password and username</translation>
|
<translation>Failed to login into online account, please check your password and username</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="250"/>
|
<location filename="../hanoitowers.cpp" line="258"/>
|
||||||
<source>Register online error</source>
|
<source>Register online error</source>
|
||||||
<translation>Register online error</translation>
|
<translation>Register online error</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="251"/>
|
<location filename="../hanoitowers.cpp" line="259"/>
|
||||||
<source>Failed to register this account, if this account was created by you, try to restore it.</source>
|
<source>Failed to register this account, if this account was created by you, try to restore it.</source>
|
||||||
<translation>Failed to register this account, if this account was created by you, try to restore it.</translation>
|
<translation>Failed to register this account, if this account was created by you, try to restore it.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="261"/>
|
<location filename="../hanoitowers.cpp" line="269"/>
|
||||||
<location filename="../hanoitowers.cpp" line="283"/>
|
<location filename="../hanoitowers.cpp" line="291"/>
|
||||||
<source>Server error</source>
|
<source>Server error</source>
|
||||||
<translation>Server error</translation>
|
<translation>Server error</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="268"/>
|
<location filename="../hanoitowers.cpp" line="276"/>
|
||||||
<source>User with this id is not registered. If it you then use please the sigup form.</source>
|
<source>User with this id is not registered. If it you then use please the sigup form.</source>
|
||||||
<translation>User with this id is not registered. If it you then use please the sigup form.</translation>
|
<translation>User with this id is not registered. If it you then use please the sigup form.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="276"/>
|
<location filename="../hanoitowers.cpp" line="284"/>
|
||||||
<source>User with this id already registered. If it you then use please the login form.</source>
|
<source>User with this id already registered. If it you then use please the login form.</source>
|
||||||
<translation>User with this id already registered. If it you then use please the login form.</translation>
|
<translation>User with this id already registered. If it you then use please the login form.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="424"/>
|
<location filename="../hanoitowers.cpp" line="432"/>
|
||||||
<source>Create user error</source>
|
<source>Create user error</source>
|
||||||
<translation>User create error</translation>
|
<translation>User create error</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="425"/>
|
<location filename="../hanoitowers.cpp" line="433"/>
|
||||||
<source>Failed to create a new user, The name %0 alredy used.</source>
|
<source>Failed to create a new user, The name %0 alredy used.</source>
|
||||||
<translation>Failed to create a new user, This name %0 alredy used.</translation>
|
<translation>Failed to create a new user, This name %0 alredy used.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="456"/>
|
<location filename="../hanoitowers.cpp" line="464"/>
|
||||||
<source>Remove online error</source>
|
<source>Remove online error</source>
|
||||||
<translation>Remove online error</translation>
|
<translation>Remove online error</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="456"/>
|
<location filename="../hanoitowers.cpp" line="464"/>
|
||||||
<source>current profile not online!</source>
|
<source>current profile not online!</source>
|
||||||
<translation>Current profile is offline!</translation>
|
<translation>Current profile is offline!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="462"/>
|
<location filename="../hanoitowers.cpp" line="470"/>
|
||||||
<source>Remove Local user</source>
|
<source>Remove Local user</source>
|
||||||
<translation>Remove Local user</translation>
|
<translation>Remove Local user</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="462"/>
|
<location filename="../hanoitowers.cpp" line="470"/>
|
||||||
<source>Failed to remove the local user data</source>
|
<source>Failed to remove the local user data</source>
|
||||||
<translation>Failed to remove the local user data</translation>
|
<translation>Failed to remove the local user data</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -210,12 +210,12 @@
|
|||||||
<translation type="vanished">塔の高さ: </translation>
|
<translation type="vanished">塔の高さ: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../menu/GameStateWidget.qml" line="34"/>
|
<location filename="../menu/GameStateWidget.qml" line="33"/>
|
||||||
<source>Tower height: </source>
|
<source>Tower height: </source>
|
||||||
<translation>タワーの高さ: </translation>
|
<translation>タワーの高さ: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../menu/GameStateWidget.qml" line="63"/>
|
<location filename="../menu/GameStateWidget.qml" line="62"/>
|
||||||
<source>step </source>
|
<source>step </source>
|
||||||
<translation>ステップ </translation>
|
<translation>ステップ </translation>
|
||||||
</message>
|
</message>
|
||||||
@ -284,68 +284,68 @@
|
|||||||
<translation>ユーザーデータが正常に更新されました</translation>
|
<translation>ユーザーデータが正常に更新されました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="239"/>
|
<location filename="../hanoitowers.cpp" line="247"/>
|
||||||
<source>login error</source>
|
<source>login error</source>
|
||||||
<translation>ログインエラー</translation>
|
<translation>ログインエラー</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="240"/>
|
<location filename="../hanoitowers.cpp" line="248"/>
|
||||||
<source>Failed to login into online account, please check your password and username</source>
|
<source>Failed to login into online account, please check your password and username</source>
|
||||||
<translation>オンラインアカウントにログインできませんでした。パスワードとユーザー名を確認してください</translation>
|
<translation>オンラインアカウントにログインできませんでした。パスワードとユーザー名を確認してください</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="250"/>
|
<location filename="../hanoitowers.cpp" line="258"/>
|
||||||
<source>Register online error</source>
|
<source>Register online error</source>
|
||||||
<translation>登録オンラインエラー</translation>
|
<translation>登録オンラインエラー</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="251"/>
|
<location filename="../hanoitowers.cpp" line="259"/>
|
||||||
<source>Failed to register this account, if this account was created by you, try to restore it.</source>
|
<source>Failed to register this account, if this account was created by you, try to restore it.</source>
|
||||||
<translation>このアカウントが登録されなかった場合、このアカウントが作成された場合、それを元に戻してください。</translation>
|
<translation>このアカウントが登録されなかった場合、このアカウントが作成された場合、それを元に戻してください。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="261"/>
|
<location filename="../hanoitowers.cpp" line="269"/>
|
||||||
<location filename="../hanoitowers.cpp" line="283"/>
|
<location filename="../hanoitowers.cpp" line="291"/>
|
||||||
<source>Server error</source>
|
<source>Server error</source>
|
||||||
<translation>サーバエラー</translation>
|
<translation>サーバエラー</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="268"/>
|
<location filename="../hanoitowers.cpp" line="276"/>
|
||||||
<source>User with this id is not registered. If it you then use please the sigup form.</source>
|
<source>User with this id is not registered. If it you then use please the sigup form.</source>
|
||||||
<translation>このIDのユーザーは登録されていません。 それを使用する場合は、サインアップフォームを使用してください。</translation>
|
<translation>このIDのユーザーは登録されていません。 それを使用する場合は、サインアップフォームを使用してください。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="276"/>
|
<location filename="../hanoitowers.cpp" line="284"/>
|
||||||
<source>User with this id already registered. If it you then use please the login form.</source>
|
<source>User with this id already registered. If it you then use please the login form.</source>
|
||||||
<translation>このIDのユーザーはすでに登録されています。 それを使用する場合は、ログインフォームを使用してください。</translation>
|
<translation>このIDのユーザーはすでに登録されています。 それを使用する場合は、ログインフォームを使用してください。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="424"/>
|
<location filename="../hanoitowers.cpp" line="432"/>
|
||||||
<source>Create user error</source>
|
<source>Create user error</source>
|
||||||
<translation>ユーザーエラーの作成</translation>
|
<translation>ユーザーエラーの作成</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="425"/>
|
<location filename="../hanoitowers.cpp" line="433"/>
|
||||||
<source>Failed to create a new user, The name %0 alredy used.</source>
|
<source>Failed to create a new user, The name %0 alredy used.</source>
|
||||||
<translation>新しいユーザーの作成に失敗しました。名前 %0 はすでに使用されています。</translation>
|
<translation>新しいユーザーの作成に失敗しました。名前 %0 はすでに使用されています。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="456"/>
|
<location filename="../hanoitowers.cpp" line="464"/>
|
||||||
<source>Remove online error</source>
|
<source>Remove online error</source>
|
||||||
<translation>オンラインユーザーデータの削除中にエラーが発生しました</translation>
|
<translation>オンラインユーザーデータの削除中にエラーが発生しました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="456"/>
|
<location filename="../hanoitowers.cpp" line="464"/>
|
||||||
<source>current profile not online!</source>
|
<source>current profile not online!</source>
|
||||||
<translation>現在のプロファイルはオフラインです!</translation>
|
<translation>現在のプロファイルはオフラインです!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="462"/>
|
<location filename="../hanoitowers.cpp" line="470"/>
|
||||||
<source>Remove Local user</source>
|
<source>Remove Local user</source>
|
||||||
<translation>ローカルユーザーを削除する</translation>
|
<translation>ローカルユーザーを削除する</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="462"/>
|
<location filename="../hanoitowers.cpp" line="470"/>
|
||||||
<source>Failed to remove the local user data</source>
|
<source>Failed to remove the local user data</source>
|
||||||
<translation>ローカルユーザーデータの削除に失敗しました</translation>
|
<translation>ローカルユーザーデータの削除に失敗しました</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -217,12 +217,12 @@
|
|||||||
<translation type="vanished">Высота башни</translation>
|
<translation type="vanished">Высота башни</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../menu/GameStateWidget.qml" line="34"/>
|
<location filename="../menu/GameStateWidget.qml" line="33"/>
|
||||||
<source>Tower height: </source>
|
<source>Tower height: </source>
|
||||||
<translation>Высота башни: </translation>
|
<translation>Высота башни: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../menu/GameStateWidget.qml" line="63"/>
|
<location filename="../menu/GameStateWidget.qml" line="62"/>
|
||||||
<source>step </source>
|
<source>step </source>
|
||||||
<translation>Шаг </translation>
|
<translation>Шаг </translation>
|
||||||
</message>
|
</message>
|
||||||
@ -291,68 +291,68 @@
|
|||||||
<translation>Данные пользователя обновлены</translation>
|
<translation>Данные пользователя обновлены</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="239"/>
|
<location filename="../hanoitowers.cpp" line="247"/>
|
||||||
<source>login error</source>
|
<source>login error</source>
|
||||||
<translation>Ошибка входа</translation>
|
<translation>Ошибка входа</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="240"/>
|
<location filename="../hanoitowers.cpp" line="248"/>
|
||||||
<source>Failed to login into online account, please check your password and username</source>
|
<source>Failed to login into online account, please check your password and username</source>
|
||||||
<translation>Ошибка входа в онлайн аккаунт, пожалуйста проверте свой логин и пароль</translation>
|
<translation>Ошибка входа в онлайн аккаунт, пожалуйста проверте свой логин и пароль</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="250"/>
|
<location filename="../hanoitowers.cpp" line="258"/>
|
||||||
<source>Register online error</source>
|
<source>Register online error</source>
|
||||||
<translation>Ошибка регистрации</translation>
|
<translation>Ошибка регистрации</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="251"/>
|
<location filename="../hanoitowers.cpp" line="259"/>
|
||||||
<source>Failed to register this account, if this account was created by you, try to restore it.</source>
|
<source>Failed to register this account, if this account was created by you, try to restore it.</source>
|
||||||
<translation>Не удалось зарегистрировать аккаунт, если этот аккаунт был создан вами попробуйте восстановить его.</translation>
|
<translation>Не удалось зарегистрировать аккаунт, если этот аккаунт был создан вами попробуйте восстановить его.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="261"/>
|
<location filename="../hanoitowers.cpp" line="269"/>
|
||||||
<location filename="../hanoitowers.cpp" line="283"/>
|
<location filename="../hanoitowers.cpp" line="291"/>
|
||||||
<source>Server error</source>
|
<source>Server error</source>
|
||||||
<translation>Ошибка сервера</translation>
|
<translation>Ошибка сервера</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="268"/>
|
<location filename="../hanoitowers.cpp" line="276"/>
|
||||||
<source>User with this id is not registered. If it you then use please the sigup form.</source>
|
<source>User with this id is not registered. If it you then use please the sigup form.</source>
|
||||||
<translation>Пользователь с этим id не зарегистрирован. Пожалуйста, заполните форму регистрации.</translation>
|
<translation>Пользователь с этим id не зарегистрирован. Пожалуйста, заполните форму регистрации.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="276"/>
|
<location filename="../hanoitowers.cpp" line="284"/>
|
||||||
<source>User with this id already registered. If it you then use please the login form.</source>
|
<source>User with this id already registered. If it you then use please the login form.</source>
|
||||||
<translation>Пользователь с этим id уже зарегистрирован. Если это вы, пожалуйста используйте форму входа.</translation>
|
<translation>Пользователь с этим id уже зарегистрирован. Если это вы, пожалуйста используйте форму входа.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="424"/>
|
<location filename="../hanoitowers.cpp" line="432"/>
|
||||||
<source>Create user error</source>
|
<source>Create user error</source>
|
||||||
<translation>Ошибка создания пользователя</translation>
|
<translation>Ошибка создания пользователя</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="425"/>
|
<location filename="../hanoitowers.cpp" line="433"/>
|
||||||
<source>Failed to create a new user, The name %0 alredy used.</source>
|
<source>Failed to create a new user, The name %0 alredy used.</source>
|
||||||
<translation>Не удалось создать пользователя. Данное имя %0 уже используется</translation>
|
<translation>Не удалось создать пользователя. Данное имя %0 уже используется</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="456"/>
|
<location filename="../hanoitowers.cpp" line="464"/>
|
||||||
<source>Remove online error</source>
|
<source>Remove online error</source>
|
||||||
<translation>Ошибка удаления онлайн аккаунта</translation>
|
<translation>Ошибка удаления онлайн аккаунта</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="456"/>
|
<location filename="../hanoitowers.cpp" line="464"/>
|
||||||
<source>current profile not online!</source>
|
<source>current profile not online!</source>
|
||||||
<translation>Текущий профиль не в сети!</translation>
|
<translation>Текущий профиль не в сети!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="462"/>
|
<location filename="../hanoitowers.cpp" line="470"/>
|
||||||
<source>Remove Local user</source>
|
<source>Remove Local user</source>
|
||||||
<translation>Удалить локального.пользователя</translation>
|
<translation>Удалить локального.пользователя</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="462"/>
|
<location filename="../hanoitowers.cpp" line="470"/>
|
||||||
<source>Failed to remove the local user data</source>
|
<source>Failed to remove the local user data</source>
|
||||||
<translation>Ошибка удаления локального пользователя</translation>
|
<translation>Ошибка удаления локального пользователя</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -218,12 +218,12 @@ Bu seviye için minimum adımlar: %2</translation>
|
|||||||
<translation type="vanished">Kule yüksekliği: </translation>
|
<translation type="vanished">Kule yüksekliği: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../menu/GameStateWidget.qml" line="34"/>
|
<location filename="../menu/GameStateWidget.qml" line="33"/>
|
||||||
<source>Tower height: </source>
|
<source>Tower height: </source>
|
||||||
<translation>Kule yüksekliği: </translation>
|
<translation>Kule yüksekliği: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../menu/GameStateWidget.qml" line="63"/>
|
<location filename="../menu/GameStateWidget.qml" line="62"/>
|
||||||
<source>step </source>
|
<source>step </source>
|
||||||
<translation>adım </translation>
|
<translation>adım </translation>
|
||||||
</message>
|
</message>
|
||||||
@ -292,68 +292,68 @@ Bu seviye için minimum adımlar: %2</translation>
|
|||||||
<translation>Kullanıcı verileri başarıyla güncellendi</translation>
|
<translation>Kullanıcı verileri başarıyla güncellendi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="239"/>
|
<location filename="../hanoitowers.cpp" line="247"/>
|
||||||
<source>login error</source>
|
<source>login error</source>
|
||||||
<translation>sisteme giriş hatası</translation>
|
<translation>sisteme giriş hatası</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="240"/>
|
<location filename="../hanoitowers.cpp" line="248"/>
|
||||||
<source>Failed to login into online account, please check your password and username</source>
|
<source>Failed to login into online account, please check your password and username</source>
|
||||||
<translation>Çevrimiçi hesaba giriş yapılamadı, lütfen şifrenizi ve kullanıcı adınızı kontrol edin</translation>
|
<translation>Çevrimiçi hesaba giriş yapılamadı, lütfen şifrenizi ve kullanıcı adınızı kontrol edin</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="250"/>
|
<location filename="../hanoitowers.cpp" line="258"/>
|
||||||
<source>Register online error</source>
|
<source>Register online error</source>
|
||||||
<translation>Çevrimiçi kayıt hatası</translation>
|
<translation>Çevrimiçi kayıt hatası</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="251"/>
|
<location filename="../hanoitowers.cpp" line="259"/>
|
||||||
<source>Failed to register this account, if this account was created by you, try to restore it.</source>
|
<source>Failed to register this account, if this account was created by you, try to restore it.</source>
|
||||||
<translation>Bu hesap kaydedilemedi, bu hesap sizin tarafınızdan oluşturulduysa, geri yüklemeyi deneyin.</translation>
|
<translation>Bu hesap kaydedilemedi, bu hesap sizin tarafınızdan oluşturulduysa, geri yüklemeyi deneyin.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="261"/>
|
<location filename="../hanoitowers.cpp" line="269"/>
|
||||||
<location filename="../hanoitowers.cpp" line="283"/>
|
<location filename="../hanoitowers.cpp" line="291"/>
|
||||||
<source>Server error</source>
|
<source>Server error</source>
|
||||||
<translation>Server hatası</translation>
|
<translation>Server hatası</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="268"/>
|
<location filename="../hanoitowers.cpp" line="276"/>
|
||||||
<source>User with this id is not registered. If it you then use please the sigup form.</source>
|
<source>User with this id is not registered. If it you then use please the sigup form.</source>
|
||||||
<translation>Bu kimliğe sahip kullanıcı kayıtlı değil. Daha sonra kullanırsanız, lütfen kayıt formunu kullanın.</translation>
|
<translation>Bu kimliğe sahip kullanıcı kayıtlı değil. Daha sonra kullanırsanız, lütfen kayıt formunu kullanın.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="276"/>
|
<location filename="../hanoitowers.cpp" line="284"/>
|
||||||
<source>User with this id already registered. If it you then use please the login form.</source>
|
<source>User with this id already registered. If it you then use please the login form.</source>
|
||||||
<translation>Bu kimliğe sahip kullanıcı zaten kayıtlı. Eğer öyleyse, lütfen giriş formunu kullanın.</translation>
|
<translation>Bu kimliğe sahip kullanıcı zaten kayıtlı. Eğer öyleyse, lütfen giriş formunu kullanın.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="424"/>
|
<location filename="../hanoitowers.cpp" line="432"/>
|
||||||
<source>Create user error</source>
|
<source>Create user error</source>
|
||||||
<translation>Kullanıcı hatası oluştur</translation>
|
<translation>Kullanıcı hatası oluştur</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="425"/>
|
<location filename="../hanoitowers.cpp" line="433"/>
|
||||||
<source>Failed to create a new user, The name %0 alredy used.</source>
|
<source>Failed to create a new user, The name %0 alredy used.</source>
|
||||||
<translation>Yeni bir kullanıcı oluşturulamadı, %0 adı kullanıldı.</translation>
|
<translation>Yeni bir kullanıcı oluşturulamadı, %0 adı kullanıldı.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="456"/>
|
<location filename="../hanoitowers.cpp" line="464"/>
|
||||||
<source>Remove online error</source>
|
<source>Remove online error</source>
|
||||||
<translation>Çevrimiçi kullanıcı verilerini kaldırma hatası</translation>
|
<translation>Çevrimiçi kullanıcı verilerini kaldırma hatası</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="456"/>
|
<location filename="../hanoitowers.cpp" line="464"/>
|
||||||
<source>current profile not online!</source>
|
<source>current profile not online!</source>
|
||||||
<translation>Mevcut profil çevrimdışı!</translation>
|
<translation>Mevcut profil çevrimdışı!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="462"/>
|
<location filename="../hanoitowers.cpp" line="470"/>
|
||||||
<source>Remove Local user</source>
|
<source>Remove Local user</source>
|
||||||
<translation>Yerel kullanıcıyı kaldır</translation>
|
<translation>Yerel kullanıcıyı kaldır</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="462"/>
|
<location filename="../hanoitowers.cpp" line="470"/>
|
||||||
<source>Failed to remove the local user data</source>
|
<source>Failed to remove the local user data</source>
|
||||||
<translation>Yerel kullanıcı verileri kaldırılamadı</translation>
|
<translation>Yerel kullanıcı verileri kaldırılamadı</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -220,12 +220,12 @@
|
|||||||
<translation type="vanished">Висота вежі: </translation>
|
<translation type="vanished">Висота вежі: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../menu/GameStateWidget.qml" line="34"/>
|
<location filename="../menu/GameStateWidget.qml" line="33"/>
|
||||||
<source>Tower height: </source>
|
<source>Tower height: </source>
|
||||||
<translation>Висота вежі: </translation>
|
<translation>Висота вежі: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../menu/GameStateWidget.qml" line="63"/>
|
<location filename="../menu/GameStateWidget.qml" line="62"/>
|
||||||
<source>step </source>
|
<source>step </source>
|
||||||
<translation>крок </translation>
|
<translation>крок </translation>
|
||||||
</message>
|
</message>
|
||||||
@ -294,68 +294,68 @@
|
|||||||
<translation>Дані користувачів оновлено успішно</translation>
|
<translation>Дані користувачів оновлено успішно</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="239"/>
|
<location filename="../hanoitowers.cpp" line="247"/>
|
||||||
<source>login error</source>
|
<source>login error</source>
|
||||||
<translation>Помилка входу</translation>
|
<translation>Помилка входу</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="240"/>
|
<location filename="../hanoitowers.cpp" line="248"/>
|
||||||
<source>Failed to login into online account, please check your password and username</source>
|
<source>Failed to login into online account, please check your password and username</source>
|
||||||
<translation>Не вдалося увійти в онлайн-акаунт, перевірте свій пароль та ім’я користувача</translation>
|
<translation>Не вдалося увійти в онлайн-акаунт, перевірте свій пароль та ім’я користувача</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="250"/>
|
<location filename="../hanoitowers.cpp" line="258"/>
|
||||||
<source>Register online error</source>
|
<source>Register online error</source>
|
||||||
<translation>Помилка реєстрації в Інтернеті</translation>
|
<translation>Помилка реєстрації в Інтернеті</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="251"/>
|
<location filename="../hanoitowers.cpp" line="259"/>
|
||||||
<source>Failed to register this account, if this account was created by you, try to restore it.</source>
|
<source>Failed to register this account, if this account was created by you, try to restore it.</source>
|
||||||
<translation>Не вдалося зареєструвати цей обліковий запис, якщо цей обліковий запис був створений вами, спробуйте відновити його.</translation>
|
<translation>Не вдалося зареєструвати цей обліковий запис, якщо цей обліковий запис був створений вами, спробуйте відновити його.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="261"/>
|
<location filename="../hanoitowers.cpp" line="269"/>
|
||||||
<location filename="../hanoitowers.cpp" line="283"/>
|
<location filename="../hanoitowers.cpp" line="291"/>
|
||||||
<source>Server error</source>
|
<source>Server error</source>
|
||||||
<translation>Помилка серверу</translation>
|
<translation>Помилка серверу</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="268"/>
|
<location filename="../hanoitowers.cpp" line="276"/>
|
||||||
<source>User with this id is not registered. If it you then use please the sigup form.</source>
|
<source>User with this id is not registered. If it you then use please the sigup form.</source>
|
||||||
<translation>Користувач з цим id не зареєстрований. Якщо ви це використовуєте, будь ласка, будь ласка, зареєструйтесь.</translation>
|
<translation>Користувач з цим id не зареєстрований. Якщо ви це використовуєте, будь ласка, будь ласка, зареєструйтесь.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="276"/>
|
<location filename="../hanoitowers.cpp" line="284"/>
|
||||||
<source>User with this id already registered. If it you then use please the login form.</source>
|
<source>User with this id already registered. If it you then use please the login form.</source>
|
||||||
<translation>Користувач з цим ідентифікатором вже зареєстрований. Якщо ви використовуєте його, будь ласка, увійдіть у форму для входу.</translation>
|
<translation>Користувач з цим ідентифікатором вже зареєстрований. Якщо ви використовуєте його, будь ласка, увійдіть у форму для входу.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="424"/>
|
<location filename="../hanoitowers.cpp" line="432"/>
|
||||||
<source>Create user error</source>
|
<source>Create user error</source>
|
||||||
<translation>Помилка створення користувача</translation>
|
<translation>Помилка створення користувача</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="425"/>
|
<location filename="../hanoitowers.cpp" line="433"/>
|
||||||
<source>Failed to create a new user, The name %0 alredy used.</source>
|
<source>Failed to create a new user, The name %0 alredy used.</source>
|
||||||
<translation>Не вдалося створити нового користувача, ім’я %0 вже використовується.</translation>
|
<translation>Не вдалося створити нового користувача, ім’я %0 вже використовується.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="456"/>
|
<location filename="../hanoitowers.cpp" line="464"/>
|
||||||
<source>Remove online error</source>
|
<source>Remove online error</source>
|
||||||
<translation>Помилка видалення онлайн даних користувачів</translation>
|
<translation>Помилка видалення онлайн даних користувачів</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="456"/>
|
<location filename="../hanoitowers.cpp" line="464"/>
|
||||||
<source>current profile not online!</source>
|
<source>current profile not online!</source>
|
||||||
<translation>Поточний профіль офлайн!</translation>
|
<translation>Поточний профіль офлайн!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="462"/>
|
<location filename="../hanoitowers.cpp" line="470"/>
|
||||||
<source>Remove Local user</source>
|
<source>Remove Local user</source>
|
||||||
<translation>Видалити локального користувача</translation>
|
<translation>Видалити локального користувача</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../hanoitowers.cpp" line="462"/>
|
<location filename="../hanoitowers.cpp" line="470"/>
|
||||||
<source>Failed to remove the local user data</source>
|
<source>Failed to remove the local user data</source>
|
||||||
<translation>Не вдалося видалити локальні дані користувача</translation>
|
<translation>Не вдалося видалити локальні дані користувача</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -12,11 +12,14 @@
|
|||||||
#include <QQmlApplicationEngine>
|
#include <QQmlApplicationEngine>
|
||||||
#include <QQmlComponent>
|
#include <QQmlComponent>
|
||||||
#include <QQmlContext>
|
#include <QQmlContext>
|
||||||
|
#include "activityhandler.h"
|
||||||
#include "hanoitowers.h"
|
#include "hanoitowers.h"
|
||||||
#include <QTranslator>
|
#include <QTranslator>
|
||||||
#include <qmlnotifyservice.h>
|
#include <qmlnotifyservice.h>
|
||||||
#include <credits.h>
|
#include <credits.h>
|
||||||
|
#ifdef Q_OS_ANDROID
|
||||||
|
#include <QtAndroidTools.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
@ -29,7 +32,7 @@ int main(int argc, char *argv[])
|
|||||||
QLocale locale = QLocale::system();
|
QLocale locale = QLocale::system();
|
||||||
|
|
||||||
if(argc > 1) {
|
if(argc > 1) {
|
||||||
locale = QString::fromLatin1(argv[1]);
|
locale = QLocale(QString::fromLatin1(argv[1]));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!QuasarAppUtils::Locales::init(locale, {":/languages/languages/",
|
if(!QuasarAppUtils::Locales::init(locale, {":/languages/languages/",
|
||||||
@ -51,6 +54,13 @@ int main(int argc, char *argv[])
|
|||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef Q_OS_ANDROID
|
||||||
|
QtAndroidTools::initializeQmlTools();
|
||||||
|
|
||||||
|
ActivityHandler *activityHandler = new ActivityHandler(&app);
|
||||||
|
engine.rootContext()->setContextProperty(QLatin1String("activityHandler"), activityHandler);
|
||||||
|
#endif
|
||||||
|
|
||||||
root->setContextProperty("backEnd", &back);
|
root->setContextProperty("backEnd", &back);
|
||||||
root->setContextProperty("OnlineStatusQml", QVariant::fromValue(OnlineStatusQml{}));
|
root->setContextProperty("OnlineStatusQml", QVariant::fromValue(OnlineStatusQml{}));
|
||||||
|
|
||||||
|
@ -20,6 +20,25 @@ ApplicationWindow {
|
|||||||
width: 1240
|
width: 1240
|
||||||
height: 720
|
height: 720
|
||||||
title: qsTr("Hanoi Towers")
|
title: qsTr("Hanoi Towers")
|
||||||
|
property var admodbanner: null
|
||||||
|
|
||||||
|
function createSpriteObjects(url, parent) {
|
||||||
|
if (!backEnd.isAndroid()) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
const component = Qt.createComponent(url);
|
||||||
|
return component.createObject(parent);
|
||||||
|
}
|
||||||
|
|
||||||
|
Component.onCompleted: {
|
||||||
|
|
||||||
|
const obj = createSpriteObjects("qrc:/admod/AdMobInterstitialAndroid.qml", this);
|
||||||
|
if (obj) {
|
||||||
|
admodbanner = obj;
|
||||||
|
admodbanner.load()
|
||||||
|
admodbanner.show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
header: Menu.ToolBarPage {
|
header: Menu.ToolBarPage {
|
||||||
id: toolBar
|
id: toolBar
|
||||||
@ -47,6 +66,17 @@ ApplicationWindow {
|
|||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
interactive: false
|
interactive: false
|
||||||
|
|
||||||
|
onCurrentIndexChanged: {
|
||||||
|
if (currentIndex)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (admodbanner) {
|
||||||
|
admodbanner.load()
|
||||||
|
admodbanner.show();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
background: Item {}
|
background: Item {}
|
||||||
|
|
||||||
Menu.MainMenu {
|
Menu.MainMenu {
|
||||||
@ -142,6 +172,7 @@ ApplicationWindow {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
NotificationServiceView {
|
NotificationServiceView {
|
||||||
anchors.fill: parent;
|
anchors.fill: parent;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
import QtQuick 2.15
|
import QtQuick 2.15
|
||||||
import QtQuick.Controls 2.15
|
import QtQuick.Controls 2.15
|
||||||
import QtQuick.Dialogs 1.3
|
|
||||||
import QtQuick.Layouts 1.15
|
import QtQuick.Layouts 1.15
|
||||||
import QtQuick.Window 2.1
|
import QtQuick.Window 2.1
|
||||||
import ".."
|
import ".."
|
||||||
|
@ -3,7 +3,7 @@ import QtQuick.Controls 2.15
|
|||||||
import QtQuick.Controls.Material 2.15
|
import QtQuick.Controls.Material 2.15
|
||||||
import QtQuick.Layouts 1.15
|
import QtQuick.Layouts 1.15
|
||||||
import QtQuick.Window 2.15
|
import QtQuick.Window 2.15
|
||||||
import QtQuick.Dialogs 1.1
|
import QtQuick.Dialogs 1.2
|
||||||
|
|
||||||
GridLayout {
|
GridLayout {
|
||||||
id: mainLayout
|
id: mainLayout
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
<file>menu/LocalUsersTable.qml</file>
|
<file>menu/LocalUsersTable.qml</file>
|
||||||
<file>Background.qml</file>
|
<file>Background.qml</file>
|
||||||
<file>HelpPage.qml</file>
|
<file>HelpPage.qml</file>
|
||||||
|
<file>admod/AdMobInterstitialAndroid.qml</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
<qresource prefix="/textures">
|
<qresource prefix="/textures">
|
||||||
<file>res/fogBack.png</file>
|
<file>res/fogBack.png</file>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Version=1.5.2
|
Version=1.6.0
|
||||||
Name=Hanoi Towers
|
Name=Hanoi Towers
|
||||||
Comment=Hanoi Towers Game.
|
Comment=Hanoi Towers Game.
|
||||||
Exec=hanoi-tower
|
Exec=hanoi-tower
|
||||||
@ -10,6 +10,6 @@ Categories=Games;Application;
|
|||||||
X-GNOME-Bugzilla-Bugzilla=GNOME
|
X-GNOME-Bugzilla-Bugzilla=GNOME
|
||||||
X-GNOME-Bugzilla-Product=hanoi-tower
|
X-GNOME-Bugzilla-Product=hanoi-tower
|
||||||
X-GNOME-Bugzilla-Component=General
|
X-GNOME-Bugzilla-Component=General
|
||||||
X-GNOME-Bugzilla-Version=1.5.2
|
X-GNOME-Bugzilla-Version=1.6.0
|
||||||
StartupNotify=true
|
StartupNotify=true
|
||||||
Name[ru_RU]=Hanoi-Tower
|
Name[ru_RU]=Ханойские башни
|
||||||
|
@ -9,16 +9,14 @@ description: |
|
|||||||
|
|
||||||
grade: stable # must be 'stable' to release into candidate/stable channels
|
grade: stable # must be 'stable' to release into candidate/stable channels
|
||||||
confinement: strict # use 'strict' once you have the right plugs and slots
|
confinement: strict # use 'strict' once you have the right plugs and slots
|
||||||
base: core18
|
base: core20
|
||||||
icon: installer/packages/HanoiTowers/data/icons/icon.png
|
icon: installer/config/logo.png
|
||||||
|
|
||||||
apps:
|
apps:
|
||||||
hanoi-tower:
|
hanoi-tower:
|
||||||
command: desktop-launch $SNAP/HanoiTowers.sh
|
command: bin/desktop-launch $SNAP/HanoiTowers.sh
|
||||||
|
|
||||||
plugs: [desktop, unity7, home, opengl, x11, wayland, gsettings]
|
plugs: [desktop, unity7, home, opengl, x11, wayland, gsettings]
|
||||||
|
|
||||||
|
|
||||||
parts:
|
parts:
|
||||||
hanoi-tower:
|
hanoi-tower:
|
||||||
plugin: nil
|
plugin: nil
|
||||||
@ -26,12 +24,20 @@ parts:
|
|||||||
- libasn1-8-heimdal
|
- libasn1-8-heimdal
|
||||||
- libgssapi3-heimdal
|
- libgssapi3-heimdal
|
||||||
- libldap-2.4-2
|
- libldap-2.4-2
|
||||||
after: [libsgl, qtlib]
|
after: [libsgl, qtlib, desktop-qt5]
|
||||||
|
|
||||||
|
override-stage: |
|
||||||
|
snapcraftctl stage
|
||||||
|
chmod +x -R "$SNAPCRAFT_STAGE"
|
||||||
|
|
||||||
|
desktop-qt5:
|
||||||
|
source: https://github.com/ubuntu/snapcraft-desktop-helpers.git
|
||||||
|
source-subdir: qt
|
||||||
|
plugin: make
|
||||||
|
|
||||||
qtlib:
|
qtlib:
|
||||||
plugin: dump
|
plugin: dump
|
||||||
source: installer/packages/HanoiTowers/data
|
source: Distro/HanoiTowers.zip
|
||||||
|
|
||||||
libsgl:
|
libsgl:
|
||||||
plugin: nil
|
plugin: nil
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit a765010efa2b4eafcb6a151e7f56ede04d0a9333
|
Subproject commit afb5e5a40501066673c480adeed3314fe2b6b197
|
@ -1 +1 @@
|
|||||||
Subproject commit 239fc7dae74a4e88fc379162428d3ca5217d2a5a
|
Subproject commit 755f9565dc1696ced7c40dc2dec998b808b9d942
|
@ -1 +1 @@
|
|||||||
Subproject commit a7b22dac24bd8e2a079d758d4dde9921fef23056
|
Subproject commit edafe48668f01058e724d763669e3af865566edc
|
@ -1 +1 @@
|
|||||||
Subproject commit 055445ac2b5983125d77bcbe41b4d9a2774287b1
|
Subproject commit ec0d9a9904e1b48df90c1583de769dab920a5f14
|
1
submodules/QtAndroidTools
Submodule
1
submodules/QtAndroidTools
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit d3f1c400719858fc22eefa0cbfe9485b8e9666af
|
@ -1 +1 @@
|
|||||||
Subproject commit 099a83ccf6c0a72acfef772884ae08d0594dd489
|
Subproject commit cdeab90d82ee95edbe86afa1da5ac6dd16cee7bb
|
@ -1 +1 @@
|
|||||||
Subproject commit 220b9b7035bcdc7b1cc79e0f0d8e31f0c10e5359
|
Subproject commit 5e765f171ae73e18a6fa6c75139cb9e8274373ad
|
Loading…
x
Reference in New Issue
Block a user