diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c1a1934..0825cc45 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.25.0 FATAL_ERROR) set(PROJECT AmneziaVPN) -project(${PROJECT} VERSION 4.4.0.0 +project(${PROJECT} VERSION 4.4.1.1 DESCRIPTION "AmneziaVPN" HOMEPAGE_URL "https://amnezia.org/" ) diff --git a/client/ui/qml/Pages2/PageHome.qml b/client/ui/qml/Pages2/PageHome.qml index 1ca74f47..06ce907a 100644 --- a/client/ui/qml/Pages2/PageHome.qml +++ b/client/ui/qml/Pages2/PageHome.qml @@ -165,7 +165,7 @@ PageType { expandedContent: Item { id: serverMenuContainer - implicitHeight: root.height * 0.9 + implicitHeight: Qt.platform.os !== "ios" ? root.height * 0.9 : screen.height * 0.77 Component.onCompleted: { drawer.expandedHeight = serverMenuContainer.implicitHeight @@ -252,7 +252,7 @@ PageType { model: SortFilterProxyModel { id: proxyDefaultServerContainersModel sourceModel: DefaultServerContainersModel - + sorters: [ RoleSorter { roleName: "isInstalled"; sortOrder: Qt.DescendingOrder } ] diff --git a/client/ui/qml/Pages2/PageSettingsServerInfo.qml b/client/ui/qml/Pages2/PageSettingsServerInfo.qml index 01db5695..dc17d98d 100644 --- a/client/ui/qml/Pages2/PageSettingsServerInfo.qml +++ b/client/ui/qml/Pages2/PageSettingsServerInfo.qml @@ -130,7 +130,7 @@ PageType { } Component.onCompleted: { - if (header.itemAt(0)) { + if (header.itemAt(0) && !GC.isMobile()) { defaultActiveFocusItem = serverName.textField } }