Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| af2139c671 | |||
| ca2a6bdbff | |||
| 2b8119c64e |
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE QtCreatorProject>
|
||||
<!-- Written by QtCreator 18.0.1, 2025-12-22T00:55:24. -->
|
||||
<!-- Written by QtCreator 18.0.2, 2026-02-08T02:06:43. -->
|
||||
<qtcreator>
|
||||
<data>
|
||||
<variable>EnvironmentId</variable>
|
||||
@@ -105,16 +105,16 @@
|
||||
<value type="int" key="CMake.Configure.BaseEnvironment">2</value>
|
||||
<value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value>
|
||||
<valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/>
|
||||
<value type="QString" key="CMake.Initial.Parameters">-DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx}
|
||||
-DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake
|
||||
-DCMAKE_BUILD_TYPE:STRING=Debug
|
||||
<value type="QString" key="CMake.Initial.Parameters">-DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake
|
||||
-DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx}
|
||||
-DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG}
|
||||
-DCMAKE_COLOR_DIAGNOSTICS:BOOL=ON
|
||||
-DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX}
|
||||
-DCMAKE_BUILD_TYPE:STRING=Debug
|
||||
-DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable}
|
||||
-DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C}
|
||||
-DQT_MAINTENANCE_TOOL:FILEPATH=E:/Qt/MaintenanceTool.exe
|
||||
-DCMAKE_GENERATOR:STRING=Ninja</value>
|
||||
-DCMAKE_COLOR_DIAGNOSTICS:BOOL=ON
|
||||
-DCMAKE_GENERATOR:STRING=Ninja
|
||||
-DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX}
|
||||
-DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C}</value>
|
||||
<value type="int" key="EnableQmlDebugging">0</value>
|
||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">G:\Documents\The_Grand_Archives\Qt_projects\Minecraft_launcher\build\Desktop_Qt_6_10_1_llvm_mingw_64_bit-Debug</value>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
||||
@@ -240,16 +240,16 @@
|
||||
<value type="int" key="CMake.Configure.BaseEnvironment">2</value>
|
||||
<value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value>
|
||||
<valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/>
|
||||
<value type="QString" key="CMake.Initial.Parameters">-DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx}
|
||||
-DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake
|
||||
-DCMAKE_BUILD_TYPE:STRING=Release
|
||||
<value type="QString" key="CMake.Initial.Parameters">-DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake
|
||||
-DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx}
|
||||
-DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG}
|
||||
-DCMAKE_COLOR_DIAGNOSTICS:BOOL=ON
|
||||
-DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX}
|
||||
-DCMAKE_BUILD_TYPE:STRING=Release
|
||||
-DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable}
|
||||
-DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C}
|
||||
-DQT_MAINTENANCE_TOOL:FILEPATH=E:/Qt/MaintenanceTool.exe
|
||||
-DCMAKE_GENERATOR:STRING=Ninja</value>
|
||||
-DCMAKE_COLOR_DIAGNOSTICS:BOOL=ON
|
||||
-DCMAKE_GENERATOR:STRING=Ninja
|
||||
-DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX}
|
||||
-DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C}</value>
|
||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">G:\Documents\The_Grand_Archives\Qt_projects\Minecraft_launcher\build\Desktop_Qt_6_10_1_llvm_mingw_64_bit-Release</value>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||
|
||||
@@ -87,12 +87,28 @@ Window {
|
||||
anchors.bottom: button.top
|
||||
anchors.leftMargin: -335
|
||||
anchors.bottomMargin: -218
|
||||
rotation: 0
|
||||
editable: false
|
||||
leftPadding: -30
|
||||
|
||||
model: backend.profileNames
|
||||
|
||||
contentItem: Text {
|
||||
id: profileText
|
||||
text: profileBox.displayText
|
||||
font: profileBox.font
|
||||
color: "#ffffff"
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
horizontalAlignment: Text.AlignLeft
|
||||
elide: Text.ElideRight
|
||||
anchors.fill: parent
|
||||
anchors.leftMargin: 30
|
||||
anchors.rightMargin: 5
|
||||
anchors.topMargin: 5
|
||||
anchors.bottomMargin: 5
|
||||
}
|
||||
|
||||
indicator: Image {
|
||||
id: profileArrow
|
||||
width: 10; height: 10
|
||||
visible: true
|
||||
anchors.left: parent.left
|
||||
@@ -106,18 +122,6 @@ Window {
|
||||
autoTransform: true
|
||||
}
|
||||
|
||||
contentItem: Text {
|
||||
x: 26
|
||||
width: 114
|
||||
rightPadding: profileBox.indicator.width + profileBox.spacing
|
||||
text: profileBox.displayText
|
||||
font: profileBox.font
|
||||
color: "#ffffff"
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
elide: Text.ElideRight
|
||||
}
|
||||
|
||||
background: Rectangle {
|
||||
implicitWidth: 120; implicitHeight: 40
|
||||
color: profileBox.down ? "#91B315" : "#232323"
|
||||
@@ -224,13 +228,14 @@ Window {
|
||||
height: 42
|
||||
anchors.right: button.right
|
||||
anchors.bottom: button.top
|
||||
anchors.rightMargin: 0
|
||||
anchors.bottomMargin: -218
|
||||
editable: false
|
||||
leftPadding: -30
|
||||
|
||||
model: backend.versionNames
|
||||
|
||||
indicator: Image {
|
||||
id: versionArrow
|
||||
width: 10; height: 10
|
||||
visible: true
|
||||
anchors.left: parent.left
|
||||
@@ -245,16 +250,18 @@ Window {
|
||||
}
|
||||
|
||||
contentItem: Text {
|
||||
x: 26
|
||||
width: 150
|
||||
leftPadding: 56
|
||||
rightPadding: versionBox.indicator.width + versionBox.spacing
|
||||
id: versionText
|
||||
text: versionBox.displayText
|
||||
font: versionBox.font
|
||||
color: "#ffffff"
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
horizontalAlignment: Text.AlignLeft
|
||||
elide: Text.ElideRight
|
||||
anchors.fill: parent
|
||||
anchors.leftMargin: 30
|
||||
anchors.rightMargin: 5
|
||||
anchors.topMargin: 5
|
||||
anchors.bottomMargin: 5
|
||||
}
|
||||
|
||||
background: Rectangle {
|
||||
|
||||
Binary file not shown.
@@ -101,3 +101,16 @@
|
||||
310 356 7879824954386467 CMakeFiles/appMinecraft_launcher.dir/build/Desktop_Qt_6_10_1_llvm_mingw_64_bit-Debug/.qt/rcc/qrc_appMinecraft_launcher_raw_qml_0.cpp.obj 524e34f80684a614
|
||||
305 2083 7879824954332764 CMakeFiles/appMinecraft_launcher.dir/build/Desktop_Qt_6_10_1_llvm_mingw_64_bit-Debug/.rcc/qmlcache/appMinecraft_launcher_Main_qml.cpp.obj be0243cdb4388b86
|
||||
2083 2208 7879824972117980 appMinecraft_launcher.exe 62e5e44a5fc3f884
|
||||
46 176 8000332191274301 .qt/appMinecraft_launcher_qml.txt 9baa5126b810d44c
|
||||
46 176 8000332191274301 G:/Documents/The_Grand_Archives/Qt_projects/Minecraft_launcher/build/Desktop_Qt_6_10_1_llvm_mingw_64_bit-Debug/.qt/appMinecraft_launcher_qml.txt 9baa5126b810d44c
|
||||
54 466 8000332195010532 .qt/qml_imports/appMinecraft_launcher_build.cmake 75470dc3b80e71ed
|
||||
54 466 8000332195010532 G:/Documents/The_Grand_Archives/Qt_projects/Minecraft_launcher/build/Desktop_Qt_6_10_1_llvm_mingw_64_bit-Debug/.qt/qml_imports/appMinecraft_launcher_build.cmake 75470dc3b80e71ed
|
||||
474 557 8000332195959876 .qt/rcc/qrc_appMinecraft_launcher_raw_qml_0.cpp dd6997756a3bd1c4
|
||||
474 557 8000332195959876 G:/Documents/The_Grand_Archives/Qt_projects/Minecraft_launcher/build/Desktop_Qt_6_10_1_llvm_mingw_64_bit-Debug/.qt/rcc/qrc_appMinecraft_launcher_raw_qml_0.cpp dd6997756a3bd1c4
|
||||
466 654 8000332196862001 .rcc/qmlcache/appMinecraft_launcher_Main_qml.cpp ed9a1083fc68256a
|
||||
466 654 8000332196862001 .rcc/qmlcache/appMinecraft_launcher_Main_qml.cpp.aotstats ed9a1083fc68256a
|
||||
466 654 8000332196862001 G:/Documents/The_Grand_Archives/Qt_projects/Minecraft_launcher/build/Desktop_Qt_6_10_1_llvm_mingw_64_bit-Debug/.rcc/qmlcache/appMinecraft_launcher_Main_qml.cpp ed9a1083fc68256a
|
||||
466 654 8000332196862001 G:/Documents/The_Grand_Archives/Qt_projects/Minecraft_launcher/build/Desktop_Qt_6_10_1_llvm_mingw_64_bit-Debug/.rcc/qmlcache/appMinecraft_launcher_Main_qml.cpp.aotstats ed9a1083fc68256a
|
||||
659 856 8000332197018864 CMakeFiles/appMinecraft_launcher.dir/build/Desktop_Qt_6_10_1_llvm_mingw_64_bit-Debug/.qt/rcc/qrc_appMinecraft_launcher_raw_qml_0.cpp.obj 524e34f80684a614
|
||||
654 2699 8000332196966556 CMakeFiles/appMinecraft_launcher.dir/build/Desktop_Qt_6_10_1_llvm_mingw_64_bit-Debug/.rcc/qmlcache/appMinecraft_launcher_Main_qml.cpp.obj be0243cdb4388b86
|
||||
2699 3063 8000332217406520 appMinecraft_launcher.exe 62e5e44a5fc3f884
|
||||
|
||||
+121
-100
@@ -13,106 +13,127 @@
|
||||
|
||||
static const unsigned char qt_resource_data[] = {
|
||||
// Main.qml
|
||||
0x0,0x0,0x6,0x1e,
|
||||
0x0,0x0,0x7,0x6a,
|
||||
0x0,
|
||||
0x0,0x16,0xef,0x78,0xda,0xb5,0x58,0x6d,0x6f,0xd4,0x38,0x10,0xfe,0x8e,0xc4,0x7f,
|
||||
0x88,0xf6,0xbe,0xb4,0x5c,0x49,0x37,0x69,0x7b,0x2d,0x7b,0xaa,0xd0,0xb6,0xc0,0xb5,
|
||||
0x12,0x88,0xd2,0xae,0xe8,0x7,0x84,0x90,0x37,0xf1,0xee,0xfa,0x70,0xec,0xd4,0x71,
|
||||
0xb6,0x5d,0x2a,0xfe,0xfb,0x8d,0xed,0x64,0xe3,0xc4,0xce,0xb6,0x5,0xdd,0x22,0x20,
|
||||
0xf1,0x8c,0xed,0xf1,0xbc,0x3c,0xf3,0x38,0x24,0xcb,0xb9,0x90,0xc1,0x27,0xf9,0xa9,
|
||||
0x24,0xc9,0xf7,0xe7,0xcf,0x48,0xeb,0x3d,0x7c,0x8f,0x56,0xbc,0x94,0x45,0x10,0x87,
|
||||
0xd1,0x81,0x23,0x3c,0xe5,0x4c,0xa,0x4e,0x6b,0xe9,0xf3,0x67,0xd7,0x84,0xa5,0xfc,
|
||||
0x36,0xb8,0x7f,0xfe,0x2c,0x80,0x1f,0x49,0x47,0xc1,0xad,0x1e,0x31,0xef,0xb7,0x24,
|
||||
0x95,0x8b,0x51,0x10,0xc5,0x47,0x43,0x33,0xb0,0xc0,0x64,0xbe,0x90,0xa3,0xe0,0x30,
|
||||
0xae,0x6,0x96,0xa4,0x20,0x53,0x8a,0x47,0x81,0x14,0x25,0x36,0x43,0x33,0x8a,0xe6,
|
||||
0xc5,0x8,0xb6,0xc,0xaf,0xad,0xa5,0x24,0x91,0x4a,0xed,0xa6,0x98,0x88,0xad,0xc1,
|
||||
0x19,0xa6,0x94,0x7,0xd7,0x5c,0xd0,0x74,0xb0,0xad,0xcc,0x50,0x1a,0xe7,0x19,0x9a,
|
||||
0xe3,0xda,0x92,0xda,0x1a,0xa2,0x6,0x9b,0x21,0x9e,0xa3,0x84,0xc8,0xd5,0x28,0x18,
|
||||
0x86,0xf1,0xab,0xbf,0x9a,0x71,0x8f,0x19,0xea,0x87,0x58,0xb2,0xe0,0xa2,0x8,0x67,
|
||||
0x84,0xd2,0x51,0x90,0x23,0x81,0x99,0x6c,0xa4,0x20,0x22,0x3f,0xc0,0x21,0x88,0x8e,
|
||||
0x29,0x99,0xb3,0xc,0x84,0x23,0x63,0x45,0xa8,0x7,0xce,0x4e,0x61,0x4,0xb,0x6b,
|
||||
0x17,0x2c,0x24,0x49,0xfa,0xd4,0x3f,0x77,0xd5,0xb,0x5e,0x8a,0x4,0x6c,0x1a,0xe8,
|
||||
0x43,0x14,0xbb,0xff,0xf0,0x65,0xf9,0x43,0x4e,0xae,0x8f,0xc6,0xe3,0xb3,0x9b,0x93,
|
||||
0x59,0xf8,0x6f,0x8e,0xe7,0x83,0x46,0x7d,0xc6,0x93,0x12,0xfc,0x36,0x43,0xb4,0xb0,
|
||||
0x8f,0x90,0x48,0xb2,0xc4,0xef,0x94,0xec,0x23,0x9b,0xa0,0xa9,0xa3,0x50,0x48,0x24,
|
||||
0xd5,0x26,0xd6,0x4a,0x14,0xad,0xb0,0x8,0x31,0x43,0xe0,0x92,0xd4,0x5d,0x91,0x49,
|
||||
0x82,0x28,0x41,0x5,0x61,0x73,0x47,0x98,0x50,0x92,0x3b,0x83,0x52,0x20,0x56,0xcc,
|
||||
0xb8,0xc8,0x3e,0xa,0x32,0x27,0xc,0x4e,0x2d,0x71,0x16,0x3a,0xc7,0x5,0xcf,0x80,
|
||||
0x21,0x51,0x33,0x92,0x11,0x21,0xb8,0x70,0x96,0xcb,0x48,0x9e,0x21,0x77,0x97,0x4,
|
||||
0x25,0xb,0x37,0x82,0xa5,0xe4,0x93,0x7a,0x7b,0x47,0x58,0xac,0x20,0xc0,0x82,0x33,
|
||||
0xee,0x71,0x9c,0xf1,0xfe,0x15,0xf9,0x81,0xc3,0x3a,0x6b,0x87,0x5e,0x69,0x95,0xe4,
|
||||
0x96,0x50,0xa5,0xcb,0x7,0x9e,0xe2,0x3a,0xbc,0x57,0x52,0x60,0x99,0x2c,0x8c,0xc2,
|
||||
0xcf,0x3a,0x5f,0x4f,0x4a,0x29,0x39,0xeb,0x26,0xec,0x54,0x8f,0x36,0x63,0x77,0xa3,
|
||||
0x60,0x7f,0xdf,0x5a,0x1b,0x72,0x37,0x1a,0x1e,0x34,0xef,0xd5,0xee,0x7b,0x7b,0xd6,
|
||||
0x58,0x6d,0x6f,0x74,0x38,0xb4,0xb3,0x15,0xd2,0xef,0x6d,0x6f,0x4c,0x4d,0xa2,0x27,
|
||||
0x3a,0x26,0xe7,0xcc,0x4d,0xf6,0x75,0xe5,0x58,0xf1,0x99,0xa2,0xe4,0xfb,0x5c,0xf0,
|
||||
0x92,0xa5,0x23,0xb7,0xfa,0xda,0x7,0x3a,0x6f,0xd7,0xa1,0x2f,0xbd,0x2f,0x20,0xed,
|
||||
0xbe,0x19,0xa7,0x98,0xe7,0xb1,0x4e,0xdd,0xb0,0x58,0xda,0x59,0xbe,0x76,0x9f,0xfa,
|
||||
0x1,0x1c,0x31,0xc,0x5a,0x9c,0x15,0xdd,0xad,0x25,0x12,0x73,0x2c,0x5d,0x7f,0xea,
|
||||
0xf8,0x94,0x4c,0x4f,0xa,0x38,0xbb,0x10,0xb8,0x28,0x70,0xba,0xb5,0x1d,0xdc,0xdb,
|
||||
0x96,0x86,0xc6,0xb8,0xe0,0xb8,0xdf,0xba,0xdc,0xcc,0xd4,0xe6,0x29,0xab,0xfe,0x27,
|
||||
0x3,0x2f,0x31,0xc5,0xe8,0xd7,0x2c,0xb4,0xfc,0xd7,0x31,0xb0,0x65,0xe7,0x29,0xcf,
|
||||
0xa6,0xfc,0x84,0xdf,0x75,0x33,0x31,0x17,0x1c,0x12,0x19,0x83,0xa4,0x9d,0x8d,0x87,
|
||||
0xb1,0x93,0x7d,0xd1,0xde,0x2b,0x37,0xfb,0xf6,0x63,0x37,0xbf,0xa6,0x1c,0xcc,0xcb,
|
||||
0xea,0x43,0x87,0x92,0xe7,0x7d,0x3a,0x1f,0xc0,0x3d,0xa,0x2a,0x5e,0xc6,0xd1,0x91,
|
||||
0x85,0x4c,0x78,0x26,0x2f,0x50,0x9a,0x6a,0xe8,0xb1,0x32,0x3e,0x83,0x6a,0x3,0x84,
|
||||
0xfe,0x32,0x78,0x47,0x44,0x21,0x7,0x3b,0x83,0x2b,0x9c,0x70,0x96,0xc2,0xc3,0x64,
|
||||
0x41,0x44,0x3a,0xf8,0xaa,0xe,0xdb,0xa8,0x83,0x32,0x9e,0x6b,0xd8,0x53,0x48,0xf4,
|
||||
0xa6,0x7a,0xf3,0x65,0x6f,0xad,0x69,0xcf,0x56,0x3f,0x81,0x6f,0x4a,0x22,0x70,0xaa,
|
||||
0xbc,0x94,0x3,0xac,0xaf,0x82,0x25,0x12,0xc6,0x8c,0x87,0x14,0x9,0x93,0xf0,0x37,
|
||||
0xc5,0x77,0xdd,0x35,0x2b,0x67,0x36,0x7e,0x37,0xd0,0xd2,0x56,0x82,0x63,0x49,0x28,
|
||||
0x4c,0x65,0xf7,0x28,0x98,0xe0,0x3b,0xd9,0xb5,0x5a,0xe7,0x16,0x8c,0x37,0xb6,0x87,
|
||||
0xda,0xac,0x2f,0xd6,0xba,0x4a,0x7e,0xc9,0x29,0xfe,0xea,0x4e,0x4d,0x38,0x55,0x90,
|
||||
0x3b,0xf8,0x63,0xa6,0x7f,0x3,0x57,0x63,0xc6,0x55,0xe3,0xb2,0x56,0x53,0x3,0xae,
|
||||
0x1a,0xa6,0x44,0x21,0xa0,0x32,0x31,0x7c,0xab,0x9e,0x2f,0x55,0x5a,0xb8,0x7a,0xde,
|
||||
0x2e,0xaa,0x67,0xe9,0xf7,0xf7,0x10,0x71,0x77,0x92,0xa7,0x93,0x36,0x53,0xd6,0x8d,
|
||||
0xb4,0xeb,0xe0,0x9f,0xed,0xd7,0x5,0x18,0x44,0x95,0x51,0xb8,0x95,0xed,0xa1,0x35,
|
||||
0x7e,0xae,0xe2,0x14,0x1c,0x1f,0x1f,0xd7,0x11,0xb3,0xe7,0xdb,0xf0,0x77,0x9,0x55,
|
||||
0x8e,0xd8,0x9c,0xe2,0xfb,0x6e,0xb8,0xb4,0x3b,0xd7,0xa1,0xb0,0xd6,0xe,0x5e,0x83,
|
||||
0x97,0x5f,0x45,0x27,0x7b,0xd1,0xc1,0x20,0x50,0x1e,0x8f,0xf7,0xd4,0x9f,0xc1,0x6,
|
||||
0xab,0xad,0x47,0xb0,0x7,0x1c,0x20,0xd5,0xe2,0xbd,0xd0,0x9b,0x42,0xca,0xbd,0xe1,
|
||||
0xb7,0x6c,0xc,0x6d,0xf4,0xb6,0x2d,0xee,0x10,0x9e,0xb6,0xb0,0xae,0x44,0x55,0x6d,
|
||||
0x75,0x27,0xd0,0x2f,0x7e,0xb5,0x3a,0x18,0xc6,0xed,0xeb,0x9,0xed,0x61,0x3f,0xf6,
|
||||
0x5b,0x5e,0x7,0xa6,0xc7,0x94,0x4b,0x6a,0x34,0x33,0x92,0x6f,0x20,0xda,0x1d,0x3,
|
||||
0xd0,0xca,0x6f,0xf1,0x9e,0x81,0xb2,0xd1,0x26,0x9d,0xfd,0x4e,0xbb,0x78,0x3c,0xfd,
|
||||
0xe8,0xe9,0xf9,0xd1,0x7e,0xaf,0x4a,0xd,0x7e,0x1d,0x8d,0x6e,0xf7,0x57,0x2d,0x6,
|
||||
0x8b,0x25,0x1e,0x17,0x39,0x24,0xc9,0x3b,0xd2,0xf5,0xe2,0x26,0x86,0x62,0x63,0x6c,
|
||||
0x67,0x1b,0x9f,0x81,0xad,0xde,0xb3,0xfb,0xc2,0xca,0x91,0x53,0xc4,0x96,0xa8,0xf0,
|
||||
0x25,0x49,0xa2,0x25,0xed,0xf1,0x55,0x2b,0x32,0x80,0xd2,0x15,0xe6,0x6,0x7f,0x6,
|
||||
0x5b,0x96,0x0,0x2d,0x11,0xa1,0x8a,0x50,0x9c,0x69,0x5b,0x82,0x97,0x95,0x51,0xdb,
|
||||
0xc1,0x6e,0x10,0xfb,0xf,0x11,0xfb,0xf,0x71,0xf4,0x5b,0x9,0xa8,0x24,0x75,0xbf,
|
||||
0x88,0xa2,0x43,0xf,0x60,0xde,0xc9,0xc9,0x2a,0x57,0x5c,0x23,0x4e,0x9d,0xfa,0x2,
|
||||
0x12,0x80,0x88,0x42,0x90,0x7b,0x1f,0x1a,0xea,0xc9,0xa1,0xa,0xa1,0xdc,0xda,0xfe,
|
||||
0xbb,0x5f,0x23,0x3,0x7a,0x35,0xe1,0x5b,0xc3,0x9d,0x60,0xb8,0x49,0x8d,0x12,0xa6,
|
||||
0xd4,0xb4,0x3b,0x9e,0xa0,0xaa,0x1c,0xba,0x53,0x7b,0x77,0xc3,0x9c,0x84,0xf2,0x2,
|
||||
0x5f,0x20,0xb9,0xd8,0x68,0xab,0xca,0xd0,0x2b,0xb9,0xa2,0x8a,0x3d,0x58,0xe1,0xac,
|
||||
0x18,0x8d,0xc6,0xa5,0xa,0xfd,0x6d,0x5c,0x7a,0x60,0x41,0x67,0x47,0x1b,0xb7,0x5e,
|
||||
0xec,0x3e,0x91,0x15,0xf9,0xc8,0x47,0x87,0x19,0x69,0x7a,0x3,0x98,0x6a,0xa8,0x91,
|
||||
0x49,0xe3,0x50,0xb5,0x5b,0x5c,0x48,0x1d,0x51,0xb0,0xe8,0x77,0x88,0xd9,0x93,0x4d,
|
||||
0x68,0xc1,0x6d,0x58,0x21,0x2c,0xb8,0x58,0x95,0x74,0xf,0x8a,0x3f,0xd8,0xcd,0x5b,
|
||||
0x84,0x67,0xd8,0xa1,0x16,0x2a,0x1b,0xd6,0x42,0x2b,0x90,0xeb,0xba,0x37,0x10,0x5,
|
||||
0x55,0x6b,0x9,0xb,0x45,0xe4,0xd9,0xbc,0x5b,0x5,0x86,0x32,0xd8,0x78,0x4c,0x8a,
|
||||
0x1c,0x58,0xa4,0x32,0xaa,0x73,0xfe,0x87,0xfb,0x7f,0xd5,0xf5,0x1e,0x91,0x5b,0x5e,
|
||||
0x96,0xf1,0xb8,0xee,0xfe,0x54,0xb2,0xf1,0x0,0xd1,0x38,0x6b,0x58,0x83,0x37,0x63,
|
||||
0xbc,0xdd,0xde,0x1,0xd4,0x2c,0xa7,0x4,0xee,0x49,0xd7,0x35,0xdc,0xd,0xfd,0xf2,
|
||||
0xb3,0x9a,0x23,0x77,0xe4,0x53,0x2e,0x52,0xb8,0x7a,0x3f,0xde,0x7f,0x6b,0xce,0xe0,
|
||||
0x59,0xc5,0xe5,0x93,0x90,0x93,0x25,0xa2,0xfa,0x63,0x0,0xac,0x14,0x7,0xad,0xdb,
|
||||
0x9c,0x3f,0x70,0x75,0x5b,0xf6,0x33,0x95,0x56,0x3a,0xa2,0x94,0xa8,0x7b,0x74,0xdc,
|
||||
0xe3,0xc0,0x9c,0xe7,0x25,0xdc,0xda,0x2f,0xd4,0x7f,0x5d,0xbf,0xb5,0x1b,0xce,0xa2,
|
||||
0x6e,0x27,0xd1,0x2f,0x10,0xe4,0xba,0xa5,0x7c,0x0,0x14,0xc,0x33,0xc2,0xb6,0xac,
|
||||
0x1a,0xb,0xdb,0xfe,0xdf,0xb1,0x97,0x32,0x1f,0x9b,0x9a,0xbd,0xa1,0xeb,0x99,0x9e,
|
||||
0x2,0xcf,0xf6,0x95,0x64,0xbb,0xbd,0x5d,0x5e,0xd7,0x5f,0xd4,0xad,0xa8,0x56,0x6d,
|
||||
0xbf,0x27,0x85,0xfc,0x4c,0xf0,0xad,0xaf,0xc9,0x8,0x2e,0x91,0x2,0x14,0xa7,0xc0,
|
||||
0x9b,0xf,0x2a,0x2e,0x2b,0xf0,0x65,0x53,0xb5,0xa3,0x79,0x75,0xd5,0xab,0x4b,0x92,
|
||||
0x9d,0x55,0x2a,0x16,0x6b,0xa4,0x7a,0xdd,0x8a,0x7b,0xc5,0x58,0x15,0x93,0xa1,0x10,
|
||||
0x74,0x56,0x52,0xea,0xb1,0xae,0x14,0xaa,0x37,0x6b,0x9a,0xbc,0x91,0x43,0x1b,0x32,
|
||||
0xee,0x2e,0x70,0x95,0x8,0x4e,0xe9,0xf9,0x1a,0xb0,0xea,0xd2,0x1f,0x75,0x25,0x3e,
|
||||
0xc7,0x19,0xff,0xb,0x5d,0xc8,0xb5,0x83,0xc3,0xee,0x87,0xb,0x1f,0x61,0x80,0xd8,
|
||||
0x5a,0x33,0x5a,0xb7,0xd0,0x7e,0x1a,0xb2,0xd6,0x17,0x7e,0xf7,0xfa,0xee,0xb9,0xeb,
|
||||
0x39,0x66,0xc0,0xe7,0x1,0x43,0xd5,0x1e,0x73,0x97,0x68,0x91,0x96,0xe6,0x43,0xe6,
|
||||
0x41,0xbf,0xd6,0xfa,0x32,0x57,0x15,0xaf,0x5f,0xb3,0xd3,0x9d,0x7b,0x6e,0x4b,0x3f,
|
||||
0xbb,0x3a,0x8f,0x2,0x44,0x17,0xd4,0x7a,0xd0,0xa3,0x65,0x6e,0xaf,0x86,0x7,0x63,
|
||||
0xdc,0x2b,0x92,0xf5,0x7d,0x3,0xfe,0xf9,0xf,0x57,0x8,0x1f,0x57,
|
||||
0x0,0x25,0xf0,0x78,0xda,0xcd,0x59,0x6d,0x73,0xd3,0x38,0x10,0xfe,0xce,0xc,0xff,
|
||||
0xc1,0x93,0xfb,0xd2,0x72,0xc5,0x8d,0x93,0x16,0x4a,0x6e,0x3a,0x4c,0x5b,0xe0,0xda,
|
||||
0x19,0x18,0x4a,0x9b,0xa1,0x1f,0x18,0x86,0x51,0x6c,0x25,0xd1,0xa1,0x58,0x46,0x96,
|
||||
0xd3,0x6,0xa6,0xff,0xfd,0x56,0x96,0x5f,0x64,0x4b,0x76,0x9c,0xa6,0x77,0x43,0x18,
|
||||
0xc0,0xd6,0xae,0xe4,0xf5,0xee,0xea,0xd9,0x47,0x6b,0xb2,0x88,0x18,0x17,0xce,0x27,
|
||||
0xf1,0x29,0x21,0xfe,0xf7,0xa7,0x4f,0x48,0xe5,0xde,0x7d,0x8f,0x56,0x2c,0x11,0xb1,
|
||||
0x33,0x70,0xbd,0x43,0x43,0x78,0xc6,0x42,0xc1,0x19,0xcd,0xa5,0x4f,0x9f,0xdc,0x90,
|
||||
0x30,0x60,0xb7,0xce,0xaf,0xa7,0x4f,0x1c,0xf8,0x91,0x60,0xe4,0xdc,0xa6,0x23,0xea,
|
||||
0xfe,0x96,0x4,0x62,0x3e,0x72,0xbc,0xc1,0x51,0x5f,0xd,0xcc,0x31,0x99,0xcd,0xc5,
|
||||
0xc8,0x79,0x39,0xc8,0x6,0x96,0x24,0x26,0x13,0x8a,0x47,0x8e,0xe0,0x9,0x56,0x43,
|
||||
0x53,0x8a,0x66,0xf1,0x8,0x1e,0xe9,0xde,0x68,0x4b,0x9,0x22,0xa4,0xda,0x8f,0x78,
|
||||
0xcc,0x77,0x7a,0xe7,0x98,0x52,0xe6,0xdc,0x30,0x4e,0x83,0xde,0xae,0x34,0x43,0x6a,
|
||||
0x5c,0x2c,0xd0,0xc,0xe7,0x96,0xe4,0xd6,0x10,0x39,0x58,0xe,0xb1,0x8,0xf9,0x44,
|
||||
0xac,0x46,0x4e,0xdf,0x1d,0xbc,0x7a,0x51,0x8e,0x5b,0xcc,0x90,0x3f,0x14,0xfa,0x73,
|
||||
0xc6,0x63,0x77,0x4a,0x28,0x1d,0x39,0x11,0xe2,0x38,0x14,0xa5,0x14,0x44,0xe4,0x27,
|
||||
0x38,0x4,0xd1,0x13,0x4a,0x66,0xe1,0x2,0x84,0x23,0x65,0x85,0x9b,0xe,0x9c,0x9f,
|
||||
0xc1,0x8,0xe6,0xda,0x53,0x30,0x17,0xc4,0x6f,0x52,0xff,0x5c,0x57,0x8f,0x59,0xc2,
|
||||
0x7d,0xb0,0xa9,0x97,0xbe,0x44,0xbc,0xff,0x37,0x5b,0x26,0x3f,0xc5,0xf8,0xe6,0xe8,
|
||||
0xe4,0xe4,0xfc,0xc7,0xe9,0xd4,0xfd,0x27,0xc2,0xb3,0x5e,0xa9,0x3e,0x65,0x7e,0x2,
|
||||
0x7e,0x9b,0x22,0x1a,0xeb,0xaf,0xe0,0xb,0xb2,0xc4,0xef,0xa4,0xec,0x63,0x38,0x46,
|
||||
0x13,0x43,0x21,0x16,0x48,0xc8,0x87,0x68,0x2b,0x51,0xb4,0xc2,0xdc,0xc5,0x21,0x2,
|
||||
0x97,0x4,0xe6,0x8a,0xa1,0x20,0x88,0x12,0x14,0x93,0x70,0x66,0x8,0x7d,0x4a,0x22,
|
||||
0x63,0x50,0x70,0x14,0xc6,0x53,0xc6,0x17,0x1f,0x39,0x99,0x91,0x10,0xde,0x5a,0xe0,
|
||||
0x85,0x6b,0xbc,0x2e,0x78,0x6,0xc,0xf1,0xca,0x91,0x5,0xe1,0x9c,0x71,0x63,0xb9,
|
||||
0x5,0x89,0x16,0xc8,0x7c,0x8a,0x8f,0xfc,0xb9,0x19,0xc1,0x44,0xb0,0x71,0xfe,0x78,
|
||||
0x43,0x18,0xaf,0x20,0xc0,0x9c,0x85,0xcc,0xe2,0x38,0xe5,0xfd,0x6b,0xf2,0x13,0xbb,
|
||||
0x79,0xd6,0xf6,0xad,0xd2,0x2c,0xc9,0x35,0xa1,0x4c,0x97,0xf,0x2c,0xc0,0x79,0x78,
|
||||
0xaf,0x5,0xc7,0xc2,0x9f,0x2b,0x85,0xfb,0x3c,0x5f,0x4f,0x13,0x21,0x58,0x58,0x4f,
|
||||
0xd8,0x49,0x3a,0x5a,0x8e,0xdd,0x8d,0x9c,0x83,0x3,0x6d,0x6d,0xc8,0x5d,0xaf,0x7f,
|
||||
0x58,0xde,0x67,0x4f,0x1f,0xe,0xb5,0xb1,0xdc,0x5e,0xef,0x65,0x5f,0xcf,0x56,0x48,
|
||||
0xbf,0xb7,0x8d,0x31,0x55,0x89,0xee,0xa7,0x31,0xb9,0x8,0xcd,0x64,0x2f,0x76,0x8e,
|
||||
0x16,0x9f,0x9,0xf2,0xbf,0xcf,0x38,0x4b,0xc2,0x60,0x64,0xee,0xbe,0xea,0xb,0x5d,
|
||||
0x54,0xf7,0xa1,0x2d,0xbd,0x2f,0x21,0xed,0xbe,0x29,0xa7,0xa8,0xeb,0x93,0x34,0x75,
|
||||
0xdd,0x78,0xa9,0x67,0x79,0xe1,0x3e,0xf9,0x3,0x38,0xa,0x31,0x68,0xb1,0x30,0xae,
|
||||
0x3f,0x5a,0x20,0x3e,0xc3,0xc2,0xf4,0x67,0x1a,0x9f,0x24,0x4c,0x27,0x39,0x2c,0xbc,
|
||||
0xe4,0x38,0x8e,0x71,0xb0,0xb3,0xeb,0xfc,0xd2,0x2d,0x75,0x95,0x71,0xce,0x71,0xb3,
|
||||
0x75,0x91,0x9a,0x99,0x9a,0x27,0xad,0xfa,0x8f,0xc,0xbc,0xc2,0x14,0xa3,0x87,0x59,
|
||||
0xa8,0xf9,0xaf,0x66,0x60,0xc5,0xce,0x33,0xb6,0x98,0xb0,0x53,0x76,0x57,0xcf,0xc4,
|
||||
0x88,0x33,0x48,0x64,0xc,0x12,0x23,0xdb,0x3c,0xef,0xa5,0x99,0x6d,0x7,0x3,0x33,
|
||||
0x9f,0x28,0x9e,0x16,0xaf,0xe8,0x72,0xa9,0x67,0xea,0x4c,0x18,0x48,0x17,0x85,0x96,
|
||||
0x60,0x91,0x7d,0x9d,0xf,0xe0,0x30,0x9,0x1e,0xcf,0x2b,0xb9,0x5e,0x5d,0xa5,0xd0,
|
||||
0x19,0x78,0x47,0xa5,0xe,0xe,0x88,0x40,0x29,0xbc,0xd7,0xd2,0x5e,0x2e,0x7b,0x89,
|
||||
0x82,0x20,0x45,0xb2,0xe7,0xc3,0xbe,0x1e,0xba,0x5,0x6c,0x60,0x0,0xfd,0x2f,0xbd,
|
||||
0x77,0x84,0xc7,0xa2,0xb7,0xd7,0xbb,0xc6,0x3e,0xb,0x3,0xb8,0x18,0xcf,0x9,0xf,
|
||||
0x7a,0x5f,0xa5,0x72,0xa9,0xe,0xca,0x78,0x96,0x22,0xa9,0x4,0xb7,0x37,0xd9,0x9d,
|
||||
0x6d,0x43,0xe4,0x9a,0xfa,0x6c,0xf9,0xe3,0xf8,0x47,0x42,0x38,0xe,0xa4,0xe3,0x23,
|
||||
0xa8,0x14,0x2b,0x67,0x89,0xb8,0x32,0x63,0x9d,0x22,0x9,0x5,0xfc,0xd,0xf0,0x5d,
|
||||
0x7d,0xcd,0x2c,0x5e,0x65,0x28,0x15,0x5a,0x55,0x95,0xe0,0xb5,0x4,0xec,0x75,0x69,
|
||||
0xf7,0xc8,0x19,0xe3,0x3b,0x51,0xb7,0x3a,0x4d,0x57,0x18,0x2f,0x6d,0x77,0x53,0xb3,
|
||||
0xbe,0x68,0xeb,0x4a,0xf9,0x15,0xa3,0xf8,0xab,0x39,0xd5,0x67,0x54,0xa2,0x78,0xef,
|
||||
0x8f,0x69,0xfa,0xeb,0x99,0x1a,0x53,0x26,0x6b,0xa1,0xb6,0x9a,0x1c,0x30,0xd5,0x30,
|
||||
0x25,0x12,0x54,0xa5,0x89,0xee,0x5b,0x79,0x7d,0x55,0xcd,0xa8,0xd6,0xc2,0x9c,0xce,
|
||||
0x4a,0xef,0xdf,0x43,0xd4,0xcd,0x49,0x96,0xe2,0x5c,0x4e,0x29,0x6a,0x73,0xdd,0xc1,
|
||||
0xf7,0xd5,0xdb,0x39,0x18,0x44,0xa5,0x51,0xb8,0xb2,0x81,0x5c,0x6d,0xfc,0x42,0xc6,
|
||||
0xc9,0x39,0x3e,0x3e,0xce,0x23,0xa6,0xcf,0xd7,0x11,0xf5,0xa,0x80,0x3,0x85,0x33,
|
||||
0x8a,0x7f,0x35,0xba,0xb4,0x8,0x87,0xb6,0xbe,0xf3,0x1a,0x3c,0xfd,0xca,0x3b,0x1d,
|
||||
0x7a,0x87,0x3d,0x47,0x7a,0x7d,0x30,0x94,0x7f,0x2c,0x5e,0xe7,0x28,0x20,0xb2,0xf0,
|
||||
0x1d,0xb6,0xbc,0x94,0x76,0x9,0xe6,0x82,0x7f,0x84,0x7c,0x6e,0x23,0xd8,0x7,0x90,
|
||||
0x91,0x6f,0xd8,0x6d,0x78,0x2,0x85,0xfb,0xb6,0x2a,0x6e,0xa0,0x58,0x5d,0x88,0x94,
|
||||
0x25,0xcc,0x36,0x60,0xf0,0xfa,0xcd,0x3a,0x79,0x41,0x4b,0x6f,0xec,0x6a,0x79,0x2,
|
||||
0xa8,0x50,0x17,0x13,0xaa,0xc3,0xf6,0x12,0xa6,0x45,0x1a,0x8,0x6b,0x28,0x43,0x90,
|
||||
0x83,0xb2,0x92,0x7c,0x3,0xd1,0xfe,0x9,0xd4,0xb,0xf1,0x6d,0x30,0x54,0x88,0x3c,
|
||||
0x6a,0xd3,0x39,0xa8,0x55,0xbd,0xee,0x2c,0xaa,0x81,0xba,0xd4,0x7d,0x63,0xf2,0x97,
|
||||
0xba,0x46,0x9d,0xc4,0xc8,0x4a,0x89,0xf9,0x12,0x9f,0xc4,0x11,0x24,0xe6,0x3b,0x52,
|
||||
0xf7,0x62,0x1b,0xd1,0xd2,0x4b,0x47,0xed,0x31,0x36,0x3,0x2b,0x25,0x74,0xff,0x99,
|
||||
0x96,0x78,0x67,0x28,0x5c,0xa2,0xd8,0x96,0x79,0x7e,0x2a,0xa9,0x8e,0xaf,0x2a,0x91,
|
||||
0x81,0xc2,0x92,0x61,0xbd,0xf3,0xa7,0xb3,0xa3,0x9,0xd0,0x12,0x11,0x2a,0xeb,0xc3,
|
||||
0x79,0x6a,0x8b,0xf3,0x3c,0x33,0x6a,0xd7,0xd9,0x77,0x6,0xf6,0x97,0x18,0xd8,0x5f,
|
||||
0xe2,0x68,0xab,0x4,0xac,0xe4,0xb2,0x5e,0x61,0xb,0x90,0xbe,0x13,0xe3,0x55,0x24,
|
||||
0x29,0xd3,0x20,0xe8,0xd5,0x37,0x2d,0x70,0x19,0x44,0xe4,0xc6,0xb1,0xc2,0x45,0x3a,
|
||||
0xd9,0x95,0x21,0x14,0x3b,0xbb,0x7f,0x35,0x6b,0x2c,0x80,0x25,0x8e,0xd9,0x4e,0x7f,
|
||||
0xcf,0xe9,0xb7,0xa9,0x51,0x12,0x4a,0xb5,0xd4,0x1d,0x1b,0xa8,0x4a,0x87,0xee,0xe5,
|
||||
0xde,0x6d,0x99,0xe3,0x53,0x16,0xe3,0x4b,0x24,0xe6,0xad,0xb6,0xca,0xc,0xbd,0x16,
|
||||
0x2b,0x2a,0x49,0x90,0x16,0xce,0x8c,0x98,0xa5,0x38,0x98,0x55,0x1c,0x1d,0x7,0xd7,
|
||||
0x2c,0x68,0x3c,0x51,0x7,0xc3,0x67,0xfb,0x1b,0x92,0x3b,0x1b,0x87,0xaa,0x11,0xbc,
|
||||
0x94,0xa5,0x1,0x86,0x2b,0x86,0xa7,0xd2,0xd8,0x95,0x25,0x1e,0xc7,0x22,0x8d,0x28,
|
||||
0x58,0xb4,0xd,0xbf,0xdc,0xd8,0x84,0xa,0x86,0xbb,0x19,0x6c,0x83,0x8b,0xe5,0x96,
|
||||
0x6e,0x28,0xd,0x6b,0x19,0x44,0x85,0x68,0xd5,0x10,0x20,0xa5,0x85,0x85,0x50,0xb,
|
||||
0x64,0xb1,0xef,0x15,0x44,0xc1,0xae,0xd5,0x84,0xb1,0x3c,0x8f,0x84,0xb3,0xfa,0x2e,
|
||||
0x50,0x34,0x45,0xc7,0x63,0x12,0x47,0x40,0x86,0xa5,0x51,0xb5,0xf7,0x5f,0xcf,0x39,
|
||||
0xb2,0x2a,0xdb,0x21,0xb7,0xac,0xcc,0xa6,0x1b,0xa3,0xd8,0x94,0xe0,0xac,0x21,0x37,
|
||||
0xe7,0x25,0x53,0xb1,0x66,0x8c,0x95,0x61,0x18,0x80,0xba,0x88,0x28,0x81,0xe3,0xde,
|
||||
0x4d,0xe,0x77,0x7d,0xbb,0xfc,0x3c,0xa7,0xfe,0x35,0xf9,0x84,0xf1,0x0,0x73,0xb7,
|
||||
0xbb,0xff,0xac,0x1c,0x25,0x5b,0xc5,0xe4,0xb0,0x90,0x93,0x9,0xa2,0x69,0x4f,0x3,
|
||||
0x56,0x1a,0x38,0x95,0x43,0xa9,0x3d,0x70,0x79,0x59,0x5e,0xcf,0x8c,0x72,0x56,0xf4,
|
||||
0xa2,0xc1,0x81,0x11,0x8b,0x92,0x68,0xe4,0x5c,0xca,0xff,0xea,0x7e,0xab,0x16,0x9c,
|
||||
0x79,0x5e,0x4e,0xbc,0x7,0x90,0xf2,0xbc,0xa4,0x7c,0x0,0x14,0x74,0x17,0x24,0xdc,
|
||||
0xd1,0xf6,0x98,0x5b,0xf5,0xff,0x9e,0xbe,0x94,0xea,0x99,0x95,0xcf,0x86,0xaa,0xa7,
|
||||
0x6a,0xa,0x5c,0xeb,0x67,0xa4,0xdd,0xea,0xe3,0xa2,0x7c,0xff,0x79,0xf5,0x1d,0x55,
|
||||
0xd9,0xdb,0xef,0x49,0x2c,0x3e,0x13,0x7c,0x6b,0x2b,0x32,0x9c,0x9,0x24,0x1,0xc5,
|
||||
0xd8,0xe0,0x65,0x5f,0xc8,0x64,0x5,0xb6,0x6c,0xca,0x9e,0xa8,0x6e,0x4d,0xf5,0xec,
|
||||
0x60,0xa6,0x67,0x95,0x8c,0x45,0x81,0x54,0xaf,0x2b,0x71,0xcf,0x18,0xb2,0x64,0x32,
|
||||
0x14,0x82,0x1e,0x26,0x94,0x5a,0xac,0x4b,0xb8,0xac,0xcd,0x29,0x35,0x6f,0xe5,0xed,
|
||||
0xea,0x0,0x60,0x2e,0x70,0xed,0x73,0x46,0xe9,0x45,0x1,0x58,0xf9,0xd6,0x1f,0xd5,
|
||||
0x25,0x36,0xc7,0x29,0xff,0xf3,0x74,0x23,0xe7,0xe,0x76,0xeb,0xfd,0x17,0x1b,0x61,
|
||||
0x80,0xd8,0x6a,0x33,0x2a,0x7,0xe7,0x66,0x1a,0x52,0xe8,0x73,0xbb,0x7b,0x6d,0x47,
|
||||
0xf3,0x62,0x8e,0x1a,0xb0,0x79,0x40,0x51,0xb5,0xae,0xe7,0x17,0x4b,0x3f,0xf6,0xb0,
|
||||
0x59,0xab,0x38,0x40,0x66,0x9b,0xd7,0xae,0x59,0xab,0xce,0xd,0x27,0xb4,0xfb,0xba,
|
||||
0x4e,0x27,0x40,0x34,0x41,0xad,0xe5,0x5c,0xb5,0x5e,0xc3,0x82,0x31,0xe6,0xb9,0xab,
|
||||
0x63,0x9b,0x6,0x52,0x2d,0x86,0x5d,0x67,0x6b,0xd3,0xc,0x74,0x52,0xdd,0xd6,0xa6,
|
||||
0xe1,0x4a,0xb4,0x7d,0x9f,0xa6,0xad,0xb,0xb3,0x6,0x38,0xcb,0xf7,0x58,0x7,0x9c,
|
||||
0x9a,0xe6,0xb6,0xc0,0xa9,0x2d,0xf5,0x8,0xc0,0xf9,0xf8,0xb0,0x99,0x61,0x9d,0x66,
|
||||
0x66,0x1d,0xeb,0x34,0x51,0x37,0xac,0xdb,0x10,0x6d,0xab,0xd0,0xa8,0x7,0xc9,0x80,
|
||||
0xc6,0x4d,0x30,0x7f,0x6b,0xc0,0x7c,0x38,0xa8,0x6d,0x88,0x9a,0x8d,0x18,0xb8,0x15,
|
||||
0x8c,0xdf,0xb7,0xb6,0x91,0x3a,0x63,0xd2,0x83,0xa1,0xa6,0x33,0xa0,0xd9,0x9,0x7f,
|
||||
0xd1,0x1c,0xfd,0xac,0x12,0xc2,0xf1,0x7a,0x7b,0xc5,0xf5,0x40,0xbb,0x1e,0xf6,0xbe,
|
||||
0xb6,0xb5,0x5b,0x1f,0xdc,0x5b,0xf2,0x1e,0xdc,0x5c,0x58,0xd3,0x8b,0xda,0xa2,0x1b,
|
||||
0xb4,0xcd,0x71,0xbf,0xbf,0x75,0x47,0x2c,0xef,0x45,0xe9,0x80,0xf0,0x7b,0xf5,0xa2,
|
||||
0x1a,0x82,0xd4,0xa1,0x5b,0xf5,0x98,0xbd,0xa8,0xfb,0xe,0xdf,0x5,0x36,0x6f,0xe6,
|
||||
0x3f,0xa4,0x52,0x3d,0x4e,0xc3,0xbf,0xb1,0xfd,0xdc,0x82,0xd5,0x4d,0xed,0xe7,0x4e,
|
||||
0x5f,0x2,0xd6,0xb7,0xf3,0xab,0xdf,0xa,0xbc,0xec,0x63,0x81,0x66,0x4f,0xcb,0xc7,
|
||||
0x82,0xdf,0xa0,0xc7,0x6f,0xff,0x3a,0xa1,0x99,0x6f,0x76,0xa,0xb6,0xc4,0xef,0xd2,
|
||||
0x55,0xdb,0x36,0xf2,0xd7,0x43,0x77,0x87,0x96,0x91,0x8d,0x52,0xfe,0xcf,0x5d,0xab,
|
||||
0x8d,0x4d,0xa8,0x56,0x87,0x47,0x6a,0x5b,0x65,0xe1,0xd1,0xe9,0xd7,0x26,0xd,0x20,
|
||||
0xb5,0xf,0x74,0x40,0x6e,0x6a,0x46,0x3d,0x42,0xe3,0xc7,0xcc,0xf8,0xcd,0xb3,0xbd,
|
||||
0xda,0x8a,0xd3,0xc,0x37,0x5b,0x71,0x9a,0xb0,0x68,0xc5,0x35,0x76,0xfc,0xe,0x5f,
|
||||
0xd8,0x7a,0x6f,0x8d,0x3b,0xea,0x7e,0xc3,0x76,0x95,0x19,0xa6,0xad,0xda,0x3d,0x26,
|
||||
0x37,0xea,0x90,0x0,0x1d,0x3a,0x58,0xda,0x2a,0x6b,0x3b,0x58,0xdb,0x74,0xe0,0xf4,
|
||||
0xf,0xfc,0xf0,0xcf,0xbf,0x73,0x3f,0x37,0xba,
|
||||
|
||||
};
|
||||
|
||||
@@ -156,7 +177,7 @@ static const unsigned char qt_resource_struct[] = {
|
||||
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
|
||||
// :/qt/qml/Minecraft_launcher/Main.qml
|
||||
0x0,0x0,0x0,0x40,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
|
||||
0x0,0x0,0x1,0x9b,0x3e,0x73,0x2f,0xee,
|
||||
0x0,0x0,0x1,0x9b,0x3e,0x84,0x32,0x60,
|
||||
|
||||
};
|
||||
|
||||
|
||||
+2764
-928
File diff suppressed because it is too large
Load Diff
+424
-80
@@ -8,7 +8,7 @@
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 12,
|
||||
"durationMicroseconds": 193,
|
||||
"durationMicroseconds": 307,
|
||||
"functionName": "flags",
|
||||
"line": 10,
|
||||
"message": ""
|
||||
@@ -16,7 +16,7 @@
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 30,
|
||||
"durationMicroseconds": 59,
|
||||
"durationMicroseconds": 60,
|
||||
"functionName": "horizontalAlignment",
|
||||
"line": 18,
|
||||
"message": ""
|
||||
@@ -32,7 +32,7 @@
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 26,
|
||||
"durationMicroseconds": 53,
|
||||
"durationMicroseconds": 45,
|
||||
"functionName": "transformOrigin",
|
||||
"line": 27,
|
||||
"message": ""
|
||||
@@ -48,7 +48,7 @@
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 23,
|
||||
"durationMicroseconds": 43,
|
||||
"durationMicroseconds": 53,
|
||||
"functionName": "fill",
|
||||
"line": 17,
|
||||
"message": ""
|
||||
@@ -64,7 +64,7 @@
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 21,
|
||||
"durationMicroseconds": 28,
|
||||
"durationMicroseconds": 36,
|
||||
"functionName": "target",
|
||||
"line": 54,
|
||||
"message": "Cannot retrieve a non-object type by ID: button"
|
||||
@@ -72,7 +72,7 @@
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 13,
|
||||
"durationMicroseconds": 24,
|
||||
"durationMicroseconds": 32,
|
||||
"functionName": "onPressed",
|
||||
"line": 55,
|
||||
"message": "Cannot access value for name buttonImage"
|
||||
@@ -88,7 +88,7 @@
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 13,
|
||||
"durationMicroseconds": 16,
|
||||
"durationMicroseconds": 14,
|
||||
"functionName": "onReleased",
|
||||
"line": 60,
|
||||
"message": "Cannot access value for name buttonImage"
|
||||
@@ -98,9 +98,17 @@
|
||||
"column": 16,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "model",
|
||||
"line": 72,
|
||||
"line": 75,
|
||||
"message": "Could not find property \"model\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 23,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "left",
|
||||
"line": 68,
|
||||
"message": "Could not find property \"left\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 25,
|
||||
@@ -114,7 +122,7 @@
|
||||
"column": 20,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "width",
|
||||
"line": 81,
|
||||
"line": 84,
|
||||
"message": "Could not find property \"width\"."
|
||||
},
|
||||
{
|
||||
@@ -122,15 +130,15 @@
|
||||
"column": 26,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "highlighted",
|
||||
"line": 92,
|
||||
"line": 95,
|
||||
"message": "Could not find property \"highlighted\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 23,
|
||||
"durationMicroseconds": 36,
|
||||
"durationMicroseconds": 45,
|
||||
"functionName": "text",
|
||||
"line": 83,
|
||||
"line": 86,
|
||||
"message": "Cannot access value for name delegate"
|
||||
},
|
||||
{
|
||||
@@ -138,55 +146,63 @@
|
||||
"column": 23,
|
||||
"durationMicroseconds": 15,
|
||||
"functionName": "font",
|
||||
"line": 85,
|
||||
"line": 88,
|
||||
"message": "Cannot access value for name profileBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 24,
|
||||
"durationMicroseconds": 55,
|
||||
"durationMicroseconds": 61,
|
||||
"functionName": "elide",
|
||||
"line": 86,
|
||||
"line": 89,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 38,
|
||||
"durationMicroseconds": 48,
|
||||
"durationMicroseconds": 34,
|
||||
"functionName": "horizontalAlignment",
|
||||
"line": 87,
|
||||
"line": 90,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 36,
|
||||
"durationMicroseconds": 42,
|
||||
"durationMicroseconds": 37,
|
||||
"functionName": "verticalAlignment",
|
||||
"line": 88,
|
||||
"line": 91,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 20,
|
||||
"durationMicroseconds": 40,
|
||||
"column": 24,
|
||||
"durationMicroseconds": 60,
|
||||
"functionName": "color",
|
||||
"line": 94,
|
||||
"line": 97,
|
||||
"message": "Cannot access value for name delegate"
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 34,
|
||||
"durationMicroseconds": 48,
|
||||
"functionName": "horizontalAlignment",
|
||||
"line": 105,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 21,
|
||||
"durationMicroseconds": 22,
|
||||
"durationMicroseconds": 24,
|
||||
"functionName": "source",
|
||||
"line": 104,
|
||||
"line": 109,
|
||||
"message": "Cannot access value for name profileBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 30,
|
||||
"durationMicroseconds": 43,
|
||||
"durationMicroseconds": 37,
|
||||
"functionName": "transformOrigin",
|
||||
"line": 105,
|
||||
"line": 110,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
@@ -194,45 +210,29 @@
|
||||
"column": 23,
|
||||
"durationMicroseconds": 42,
|
||||
"functionName": "fillMode",
|
||||
"line": 108,
|
||||
"line": 113,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 27,
|
||||
"durationMicroseconds": 64,
|
||||
"durationMicroseconds": 153,
|
||||
"functionName": "left",
|
||||
"line": 102,
|
||||
"line": 107,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 37,
|
||||
"durationMicroseconds": 47,
|
||||
"durationMicroseconds": 72,
|
||||
"functionName": "verticalCenter",
|
||||
"line": 103,
|
||||
"line": 108,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 21,
|
||||
"durationMicroseconds": 19,
|
||||
"functionName": "target",
|
||||
"line": 135,
|
||||
"message": "Cannot retrieve a non-object type by ID: profileBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 13,
|
||||
"durationMicroseconds": 57,
|
||||
"functionName": "onActivated",
|
||||
"line": 136,
|
||||
"message": "Cannot access value for name canvas"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 21,
|
||||
"durationMicroseconds": 16,
|
||||
"durationMicroseconds": 30,
|
||||
"functionName": "target",
|
||||
"line": 140,
|
||||
"message": "Cannot retrieve a non-object type by ID: profileBox"
|
||||
@@ -240,73 +240,89 @@
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 13,
|
||||
"durationMicroseconds": 14,
|
||||
"durationMicroseconds": 89,
|
||||
"functionName": "onActivated",
|
||||
"line": 141,
|
||||
"message": "Cannot access value for name canvas"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 21,
|
||||
"durationMicroseconds": 18,
|
||||
"functionName": "target",
|
||||
"line": 145,
|
||||
"message": "Cannot retrieve a non-object type by ID: profileBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 13,
|
||||
"durationMicroseconds": 18,
|
||||
"functionName": "onActivated",
|
||||
"line": 146,
|
||||
"message": "Cannot access value for name dropDownArrow"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 27,
|
||||
"durationMicroseconds": 33,
|
||||
"durationMicroseconds": 44,
|
||||
"functionName": "rightPadding",
|
||||
"line": 145,
|
||||
"line": 150,
|
||||
"message": "Cannot access value for name profileBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 19,
|
||||
"durationMicroseconds": 12,
|
||||
"durationMicroseconds": 15,
|
||||
"functionName": "text",
|
||||
"line": 147,
|
||||
"line": 152,
|
||||
"message": "Cannot access value for name profileBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 19,
|
||||
"durationMicroseconds": 12,
|
||||
"durationMicroseconds": 14,
|
||||
"functionName": "font",
|
||||
"line": 148,
|
||||
"line": 153,
|
||||
"message": "Cannot access value for name profileBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 20,
|
||||
"durationMicroseconds": 20,
|
||||
"durationMicroseconds": 31,
|
||||
"functionName": "color",
|
||||
"line": 149,
|
||||
"line": 154,
|
||||
"message": "Cannot access value for name profileBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 32,
|
||||
"durationMicroseconds": 42,
|
||||
"durationMicroseconds": 50,
|
||||
"functionName": "verticalAlignment",
|
||||
"line": 150,
|
||||
"line": 155,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 20,
|
||||
"durationMicroseconds": 32,
|
||||
"durationMicroseconds": 39,
|
||||
"functionName": "elide",
|
||||
"line": 151,
|
||||
"line": 156,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 34,
|
||||
"durationMicroseconds": 41,
|
||||
"durationMicroseconds": 70,
|
||||
"functionName": "horizontalAlignment",
|
||||
"line": 152,
|
||||
"line": 157,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 20,
|
||||
"durationMicroseconds": 26,
|
||||
"durationMicroseconds": 29,
|
||||
"functionName": "color",
|
||||
"line": 161,
|
||||
"line": 166,
|
||||
"message": "Cannot access value for name profileBox"
|
||||
},
|
||||
{
|
||||
@@ -314,15 +330,15 @@
|
||||
"column": 27,
|
||||
"durationMicroseconds": 21,
|
||||
"functionName": "color",
|
||||
"line": 159,
|
||||
"line": 164,
|
||||
"message": "Cannot access value for name profileBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 27,
|
||||
"durationMicroseconds": 17,
|
||||
"durationMicroseconds": 18,
|
||||
"functionName": "width",
|
||||
"line": 160,
|
||||
"line": 165,
|
||||
"message": "Cannot access value for name profileBox"
|
||||
},
|
||||
{
|
||||
@@ -330,7 +346,7 @@
|
||||
"column": 16,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "y",
|
||||
"line": 166,
|
||||
"line": 171,
|
||||
"message": "Could not find property \"y\"."
|
||||
},
|
||||
{
|
||||
@@ -338,7 +354,7 @@
|
||||
"column": 20,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "width",
|
||||
"line": 167,
|
||||
"line": 172,
|
||||
"message": "Could not find property \"width\"."
|
||||
},
|
||||
{
|
||||
@@ -346,23 +362,23 @@
|
||||
"column": 21,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "height",
|
||||
"line": 168,
|
||||
"line": 173,
|
||||
"message": "Could not find property \"height\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 33,
|
||||
"durationMicroseconds": 35,
|
||||
"durationMicroseconds": 37,
|
||||
"functionName": "implicitHeight",
|
||||
"line": 174,
|
||||
"line": 179,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 24,
|
||||
"durationMicroseconds": 37,
|
||||
"durationMicroseconds": 38,
|
||||
"functionName": "model",
|
||||
"line": 175,
|
||||
"line": 180,
|
||||
"message": "Cannot access value for name profileBox"
|
||||
},
|
||||
{
|
||||
@@ -370,7 +386,7 @@
|
||||
"column": 31,
|
||||
"durationMicroseconds": 13,
|
||||
"functionName": "currentIndex",
|
||||
"line": 176,
|
||||
"line": 181,
|
||||
"message": "Cannot access value for name profileBox"
|
||||
},
|
||||
{
|
||||
@@ -378,7 +394,7 @@
|
||||
"column": 29,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "parent",
|
||||
"line": 181,
|
||||
"line": 186,
|
||||
"message": "Could not find property \"parent\"."
|
||||
},
|
||||
{
|
||||
@@ -386,7 +402,7 @@
|
||||
"column": 34,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "top",
|
||||
"line": 182,
|
||||
"line": 187,
|
||||
"message": "Could not find property \"top\"."
|
||||
},
|
||||
{
|
||||
@@ -394,7 +410,7 @@
|
||||
"column": 35,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "left",
|
||||
"line": 183,
|
||||
"line": 188,
|
||||
"message": "Could not find property \"left\"."
|
||||
},
|
||||
{
|
||||
@@ -402,8 +418,336 @@
|
||||
"column": 37,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "bottom",
|
||||
"line": 184,
|
||||
"line": 189,
|
||||
"message": "Could not find property \"bottom\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 16,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "model",
|
||||
"line": 239,
|
||||
"message": "Could not find property \"model\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 24,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "right",
|
||||
"line": 212,
|
||||
"message": "Could not find property \"right\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 25,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "bottom",
|
||||
"line": 213,
|
||||
"message": "Could not find property \"bottom\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 16,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "y",
|
||||
"line": 216,
|
||||
"message": "Could not find property \"y\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 20,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "width",
|
||||
"line": 217,
|
||||
"message": "Could not find property \"width\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 21,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "height",
|
||||
"line": 218,
|
||||
"message": "Could not find property \"height\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 24,
|
||||
"durationMicroseconds": 52,
|
||||
"functionName": "model",
|
||||
"line": 222,
|
||||
"message": "Cannot access value for name versionBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 33,
|
||||
"durationMicroseconds": 34,
|
||||
"functionName": "implicitHeight",
|
||||
"line": 223,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 31,
|
||||
"durationMicroseconds": 17,
|
||||
"functionName": "currentIndex",
|
||||
"line": 224,
|
||||
"message": "Cannot access value for name versionBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 29,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "parent",
|
||||
"line": 230,
|
||||
"message": "Could not find property \"parent\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 35,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "left",
|
||||
"line": 227,
|
||||
"message": "Could not find property \"left\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 34,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "top",
|
||||
"line": 228,
|
||||
"message": "Could not find property \"top\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 37,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "bottom",
|
||||
"line": 229,
|
||||
"message": "Could not find property \"bottom\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 34,
|
||||
"durationMicroseconds": 44,
|
||||
"functionName": "horizontalAlignment",
|
||||
"line": 249,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 21,
|
||||
"durationMicroseconds": 34,
|
||||
"functionName": "source",
|
||||
"line": 250,
|
||||
"message": "Cannot access value for name versionBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 30,
|
||||
"durationMicroseconds": 40,
|
||||
"functionName": "transformOrigin",
|
||||
"line": 251,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 23,
|
||||
"durationMicroseconds": 35,
|
||||
"functionName": "fillMode",
|
||||
"line": 254,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 37,
|
||||
"durationMicroseconds": 111,
|
||||
"functionName": "verticalCenter",
|
||||
"line": 246,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 27,
|
||||
"durationMicroseconds": 61,
|
||||
"functionName": "left",
|
||||
"line": 247,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 20,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "width",
|
||||
"line": 260,
|
||||
"message": "Could not find property \"width\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 26,
|
||||
"durationMicroseconds": 0,
|
||||
"functionName": "highlighted",
|
||||
"line": 263,
|
||||
"message": "Could not find property \"highlighted\"."
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 23,
|
||||
"durationMicroseconds": 35,
|
||||
"functionName": "text",
|
||||
"line": 266,
|
||||
"message": "Cannot access value for name delegate1"
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 24,
|
||||
"durationMicroseconds": 54,
|
||||
"functionName": "elide",
|
||||
"line": 267,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 38,
|
||||
"durationMicroseconds": 32,
|
||||
"functionName": "horizontalAlignment",
|
||||
"line": 268,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 36,
|
||||
"durationMicroseconds": 30,
|
||||
"functionName": "verticalAlignment",
|
||||
"line": 269,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 23,
|
||||
"durationMicroseconds": 17,
|
||||
"functionName": "font",
|
||||
"line": 270,
|
||||
"message": "Cannot access value for name versionBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 24,
|
||||
"durationMicroseconds": 23,
|
||||
"functionName": "color",
|
||||
"line": 273,
|
||||
"message": "Cannot access value for name delegate1"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 21,
|
||||
"durationMicroseconds": 44,
|
||||
"functionName": "target",
|
||||
"line": 278,
|
||||
"message": "Cannot retrieve a non-object type by ID: versionBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 13,
|
||||
"durationMicroseconds": 46,
|
||||
"functionName": "onActivated",
|
||||
"line": 279,
|
||||
"message": "Cannot access value for name canvas"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 21,
|
||||
"durationMicroseconds": 16,
|
||||
"functionName": "target",
|
||||
"line": 283,
|
||||
"message": "Cannot retrieve a non-object type by ID: versionBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 13,
|
||||
"durationMicroseconds": 14,
|
||||
"functionName": "onActivated",
|
||||
"line": 284,
|
||||
"message": "Cannot access value for name dropDownArrow1"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 20,
|
||||
"durationMicroseconds": 23,
|
||||
"functionName": "color",
|
||||
"line": 287,
|
||||
"message": "Cannot access value for name versionBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 19,
|
||||
"durationMicroseconds": 13,
|
||||
"functionName": "text",
|
||||
"line": 288,
|
||||
"message": "Cannot access value for name versionBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 20,
|
||||
"durationMicroseconds": 53,
|
||||
"functionName": "elide",
|
||||
"line": 289,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 34,
|
||||
"durationMicroseconds": 32,
|
||||
"functionName": "horizontalAlignment",
|
||||
"line": 290,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 0,
|
||||
"column": 32,
|
||||
"durationMicroseconds": 30,
|
||||
"functionName": "verticalAlignment",
|
||||
"line": 291,
|
||||
"message": ""
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 27,
|
||||
"durationMicroseconds": 32,
|
||||
"functionName": "rightPadding",
|
||||
"line": 292,
|
||||
"message": "Cannot access value for name versionBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 19,
|
||||
"durationMicroseconds": 13,
|
||||
"functionName": "font",
|
||||
"line": 294,
|
||||
"message": "Cannot access value for name versionBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 20,
|
||||
"durationMicroseconds": 23,
|
||||
"functionName": "color",
|
||||
"line": 297,
|
||||
"message": "Cannot access value for name versionBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 27,
|
||||
"durationMicroseconds": 23,
|
||||
"functionName": "color",
|
||||
"line": 299,
|
||||
"message": "Cannot access value for name versionBox"
|
||||
},
|
||||
{
|
||||
"codegenResult": 2,
|
||||
"column": 27,
|
||||
"durationMicroseconds": 16,
|
||||
"functionName": "width",
|
||||
"line": 300,
|
||||
"message": "Cannot access value for name versionBox"
|
||||
}
|
||||
],
|
||||
"filePath": "G:/Documents/The_Grand_Archives/Qt_projects/Minecraft_launcher/Main.qml"
|
||||
|
||||
@@ -63,12 +63,15 @@ Window {
|
||||
|
||||
ComboBox {
|
||||
id: profileBox
|
||||
x: 472
|
||||
width: 139
|
||||
width: 117
|
||||
height: 42
|
||||
anchors.left: button.right
|
||||
anchors.bottom: button.top
|
||||
anchors.leftMargin: -335
|
||||
anchors.bottomMargin: -218
|
||||
leftPadding: 5
|
||||
editable: false
|
||||
leftPadding: -30
|
||||
|
||||
model: ["First","Second","Third"]
|
||||
|
||||
|
||||
@@ -92,23 +95,25 @@ Window {
|
||||
highlighted: profileBox.highlightedIndex === index
|
||||
background: Rectangle{
|
||||
color: delegate.highlighted ? "#91B315" : "#232323"
|
||||
radius: 5
|
||||
|
||||
}
|
||||
}
|
||||
indicator: Image {
|
||||
id: dropDownArrow
|
||||
visible: true
|
||||
|
||||
horizontalAlignment: Image.AlignRight
|
||||
anchors.leftMargin: 10
|
||||
anchors.left: parent.left
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
source: profileBox.down ? "images/Profile_Box/Asset_23.svg" : "images/Profile_Box/Asset_24.svg"
|
||||
transformOrigin: Item.Center
|
||||
sourceSize.height: 14
|
||||
sourceSize.width: 14
|
||||
sourceSize.height: 10
|
||||
sourceSize.width: 10
|
||||
fillMode: Image.PreserveAspectFit
|
||||
autoTransform: true
|
||||
width: 14
|
||||
height: 14
|
||||
width: 10
|
||||
height: 10
|
||||
}
|
||||
|
||||
/*indicator: Canvas {
|
||||
@@ -159,7 +164,7 @@ Window {
|
||||
border.color: profileBox.pressed ? "#ffffff" : "#232323"
|
||||
border.width: profileBox.visualFocus ? 2 : 1
|
||||
color: profileBox.down ? "#91B315" : "#232323"
|
||||
radius: 2
|
||||
radius: 6
|
||||
}
|
||||
|
||||
popup: Popup {
|
||||
@@ -194,10 +199,108 @@ Window {
|
||||
background: Rectangle {
|
||||
border.color: "#232323"
|
||||
color: "#232323"
|
||||
radius: 2
|
||||
radius: 6
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
ComboBox {
|
||||
id: versionBox
|
||||
width: 210
|
||||
height: 42
|
||||
anchors.right: button.right
|
||||
anchors.bottom: button.top
|
||||
anchors.bottomMargin: -218
|
||||
popup: Popup {
|
||||
y: versionBox.height - 1
|
||||
width: versionBox.width
|
||||
height: Math.min(contentItem.implicitHeight, versionBox.Window.height - topMargin - bottomMargin)
|
||||
padding: 1
|
||||
contentItem: ListView {
|
||||
rotation: 0
|
||||
model: versionBox.popup.visible ? versionBox.delegateModel : null
|
||||
implicitHeight: contentHeight
|
||||
currentIndex: versionBox.highlightedIndex
|
||||
clip: true
|
||||
ScrollIndicator.vertical: ScrollIndicator {
|
||||
anchors.left: ListView.right
|
||||
anchors.top: ListView.top
|
||||
anchors.bottom: ListView.bottom
|
||||
parent: ListView.parent
|
||||
}
|
||||
}
|
||||
background: Rectangle {
|
||||
color: "#232323"
|
||||
radius: 6
|
||||
border.color: "#232323"
|
||||
}
|
||||
}
|
||||
model: ["Version 1","Version 2","Version 3"]
|
||||
leftPadding: -30
|
||||
indicator: Image {
|
||||
id: dropDownArrow1
|
||||
width: 10
|
||||
height: 10
|
||||
visible: true
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
anchors.left: parent.left
|
||||
anchors.leftMargin: 10
|
||||
horizontalAlignment: Image.AlignRight
|
||||
source: versionBox.down ? "images/Profile_Box/Asset_23.svg" : "images/Profile_Box/Asset_24.svg"
|
||||
transformOrigin: Item.Center
|
||||
sourceSize.width: 10
|
||||
sourceSize.height: 10
|
||||
fillMode: Image.PreserveAspectFit
|
||||
autoTransform: true
|
||||
}
|
||||
editable: false
|
||||
delegate: ItemDelegate {
|
||||
id: delegate1
|
||||
width: versionBox.width
|
||||
required property var model
|
||||
required property int index
|
||||
highlighted: versionBox.highlightedIndex === index
|
||||
contentItem: Text {
|
||||
color: "#ffffff"
|
||||
text: delegate1.model[versionBox.textRole]
|
||||
elide: Text.ElideRight
|
||||
horizontalAlignment: Text.AlignLeft
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
font: versionBox.font
|
||||
}
|
||||
background: Rectangle {
|
||||
color: delegate1.highlighted ? "#91B315" : "#232323"
|
||||
radius: 5
|
||||
}
|
||||
}
|
||||
Connections {
|
||||
target: versionBox
|
||||
function onActivated() { canvas.requestPaint(); }
|
||||
}
|
||||
|
||||
Connections {
|
||||
target: versionBox
|
||||
function onActivated() { dropDownArrow1.visible = true }
|
||||
}
|
||||
contentItem: Text {
|
||||
color: versionBox.pressed ? "#ffffff" : "#ffffff"
|
||||
text: versionBox.displayText
|
||||
elide: Text.ElideRight
|
||||
horizontalAlignment: Text.AlignLeft
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
rightPadding: versionBox.indicator.width + versionBox.spacing
|
||||
leftPadding: 56
|
||||
font: versionBox.font
|
||||
}
|
||||
background: Rectangle {
|
||||
color: versionBox.down ? "#91B315" : "#232323"
|
||||
radius: 6
|
||||
border.color: versionBox.pressed ? "#ffffff" : "#232323"
|
||||
border.width: versionBox.visualFocus ? 2 : 1
|
||||
implicitWidth: 120
|
||||
implicitHeight: 40
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user