2023-04-28 14:54:05 +00:00
|
|
|
import QtCore
|
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Controls.Basic
|
|
|
|
import QtQuick.Layouts
|
|
|
|
import download
|
|
|
|
import network
|
|
|
|
import llm
|
|
|
|
|
2023-07-06 14:53:43 +00:00
|
|
|
MyDialog {
|
2023-04-28 14:54:05 +00:00
|
|
|
id: newVerionDialog
|
|
|
|
anchors.centerIn: parent
|
|
|
|
modal: true
|
|
|
|
width: contentItem.width
|
|
|
|
height: contentItem.height
|
2023-07-09 18:56:54 +00:00
|
|
|
padding: 20
|
|
|
|
closeButtonVisible: false
|
2023-04-28 14:54:05 +00:00
|
|
|
|
|
|
|
Theme {
|
|
|
|
id: theme
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: contentItem
|
|
|
|
width: childrenRect.width + 40
|
|
|
|
height: childrenRect.height + 40
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: label
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.left: parent.left
|
|
|
|
topPadding: 20
|
|
|
|
bottomPadding: 20
|
|
|
|
text: qsTr("New version is available:")
|
|
|
|
color: theme.textColor
|
|
|
|
}
|
|
|
|
|
2023-05-23 13:53:32 +00:00
|
|
|
MyButton {
|
2023-04-28 14:54:05 +00:00
|
|
|
id: button
|
|
|
|
anchors.left: label.right
|
|
|
|
anchors.leftMargin: 10
|
|
|
|
anchors.verticalCenter: label.verticalCenter
|
|
|
|
padding: 20
|
2023-05-23 13:53:32 +00:00
|
|
|
text: qsTr("Update")
|
2023-05-23 15:26:49 +00:00
|
|
|
Accessible.description: qsTr("Update to new version")
|
2023-04-28 14:54:05 +00:00
|
|
|
onClicked: {
|
|
|
|
if (!LLM.checkForUpdates())
|
|
|
|
checkForUpdatesError.open()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|