1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-06-29 08:42:29 +00:00

Update build : use prebuild binaries + Add libgit2

This commit is contained in:
2025-01-07 14:41:48 +01:00
parent c6d7a025ff
commit 37c481ece1
50 changed files with 294 additions and 408 deletions

View File

@ -1,7 +1,7 @@
import QtQuick 2.4
import QtQuick.Layouts 1.1
import Ubuntu.Components 1.3
import Ubuntu.Components.Popups 1.3
import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
import Pass 1.0
import "dialogs"

View File

@ -1,5 +1,5 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Lomiri.Components 1.3
import "../styles"
Item {
@ -12,7 +12,7 @@ Item {
property int tBorderwidth: 0
property int bBorderwidth: 0
property int commonBorderWidth: 0
property string borderColor: UbuntuColors.warmGrey
property string borderColor: LomiriColors.warmGrey
width: parent.width
height: units.gu(6)
@ -33,13 +33,13 @@ Item {
anchors.rightMargin: units.gu(2)
height: units.gu(4)
name: "edit-copy"
color: UbuntuColors.orange
color: LomiriColors.orange
}
MouseArea {
anchors.fill: parent
onPressed: {
parent.color = UbuntuColors.warmGrey
parent.color = LomiriColors.warmGrey
}
onClicked: {
var mimeData = Clipboard.newData()

View File

@ -1,5 +1,5 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Lomiri.Components 1.3
import "../styles"
Item {
@ -14,7 +14,7 @@ Item {
property int tBorderwidth: 0
property int bBorderwidth: 0
property int commonBorderWidth: 0
property string borderColor: UbuntuColors.warmGrey
property string borderColor: LomiriColors.warmGrey
width: parent.width
height: units.gu(6)
@ -36,7 +36,7 @@ Item {
width: units.gu(4)
height: units.gu(4)
name: "go-next"
color: UbuntuColors.orange
color: LomiriColors.orange
}
MouseArea {

View File

@ -1,6 +1,6 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Components.Popups 1.3
import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
import Pass 1.0
import "../styles"
import "../dialogs"
@ -27,7 +27,7 @@ Component {
anchors.rightMargin: units.gu(2)
height: units.gu(4)
name: fileIsDir ? "go-next" : "lock"
color: UbuntuColors.orange
color: LomiriColors.orange
}
MouseArea {
@ -62,7 +62,7 @@ Component {
rBorderwidth: 0
tBorderwidth: 0
bBorderwidth: 1
borderColor: UbuntuColors.warmGrey
borderColor: LomiriColors.warmGrey
}
Component {

View File

@ -1,5 +1,5 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Lomiri.Components 1.3
import "../styles"
Item {
@ -17,7 +17,7 @@ Item {
property int tBorderwidth: 0
property int bBorderwidth: 0
property int commonBorderWidth: 0
property string borderColor: UbuntuColors.warmGrey
property string borderColor: LomiriColors.warmGrey
width: parent.width
height: units.gu(6)
@ -39,7 +39,7 @@ Item {
width: units.gu(4)
height: units.gu(4)
name: "go-next"
color: UbuntuColors.orange
color: LomiriColors.orange
}
MouseArea {

View File

@ -1,6 +1,6 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Components.Popups 1.3
import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
Dialog {
id: doubleValidationDialog
@ -26,7 +26,7 @@ Dialog {
Button {
text: i18n.tr("Ok")
color: UbuntuColors.green
color: LomiriColors.green
onClicked: {
if (nb_validation == 1) {
@ -42,7 +42,7 @@ Dialog {
Button {
id: cancelButton
text: i18n.tr("Cancel")
color: UbuntuColors.red
color: LomiriColors.red
onClicked: {
nb_validation = 0
canceled()

View File

@ -1,6 +1,6 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Components.Popups 1.3
import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
Dialog {
id: dialogSuccess
@ -13,7 +13,7 @@ Dialog {
text: textError
Button {
text: i18n.tr("OK")
color: UbuntuColors.red
color: LomiriColors.red
onClicked: function () {
dialogClosed()
PopupUtils.close(dialogSuccess)

View File

@ -1,6 +1,6 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Components.Popups 1.3
import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
Dialog {
id: passphraseProvider
@ -27,7 +27,7 @@ Dialog {
id: okButton
text: i18n.tr("Ok")
color: UbuntuColors.green
color: LomiriColors.green
onClicked: {
validated(passphraseField.text)
@ -40,7 +40,7 @@ Dialog {
id: cancelButton
text: i18n.tr("Cancel")
color: UbuntuColors.red
color: LomiriColors.red
onClicked: {
canceled()

View File

@ -1,6 +1,6 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Components.Popups 1.3
import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
Dialog {
id: doubleValidationDialog
@ -17,7 +17,7 @@ Dialog {
Button {
text: i18n.tr("Ok")
color: UbuntuColors.green
color: LomiriColors.green
onClicked: {
validated()
@ -28,7 +28,7 @@ Dialog {
Button {
id: cancelButton
text: i18n.tr("Cancel")
color: UbuntuColors.red
color: LomiriColors.red
onClicked: {
canceled()
PopupUtils.close(doubleValidationDialog)

View File

@ -1,6 +1,6 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Components.Popups 1.3
import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
Dialog {
id: dialogSuccess
@ -13,7 +13,7 @@ Dialog {
text: textSuccess
Button {
text: i18n.tr("OK")
color: UbuntuColors.green
color: LomiriColors.green
onClicked: function () {
dialogClosed()
PopupUtils.close(dialogSuccess)

View File

@ -1,5 +1,5 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Lomiri.Components 1.3
import "headers"
import "../components"

View File

@ -1,6 +1,6 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Components.Popups 1.3
import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
import "headers"
Page {

View File

@ -1,5 +1,5 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Lomiri.Components 1.3
import Qt.labs.folderlistmodel 2.1
import Pass 1.0
import "../components"

View File

@ -1,5 +1,5 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Lomiri.Components 1.3
PageHeader {
id: mainHeader

View File

@ -1,5 +1,5 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Lomiri.Components 1.3
PageHeader {
id: stackHeader

View File

@ -1,7 +1,7 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Content 1.3
import Ubuntu.Components.Popups 1.3
import Lomiri.Components 1.3
import Lomiri.Content 1.3
import Lomiri.Components.Popups 1.3
import Pass 1.0
import Utils 1.0
import "../headers"

View File

@ -1,7 +1,7 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Content 1.3
import Ubuntu.Components.Popups 1.3
import Lomiri.Components 1.3
import Lomiri.Content 1.3
import Lomiri.Components.Popups 1.3
import Pass 1.0
import Utils 1.0
import "../headers"

View File

@ -1,6 +1,6 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Ubuntu.Components.Popups 1.3
import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
import Pass 1.0
import "../headers"
import "../../components"
@ -47,7 +47,7 @@ Page {
Button {
id: buttonDeleteKey
text: i18n.tr("Delete this key")
color: UbuntuColors.red
color: LomiriColors.red
onClicked: {
infoKeysPage.currentKey = model.modelData.uid
PopupUtils.open(infoKeysPageDeleteValidation, infoKeysPage)

View File

@ -1,5 +1,5 @@
import QtQuick 2.4
import Ubuntu.Components 1.3
import Lomiri.Components 1.3
import Pass 1.0
import "../headers"
import "../../components"
@ -51,7 +51,7 @@ Page {
verticalAlignment: Text.AlignVCenter
width: parent.width
height: units.gu(4)
color: UbuntuColors.red
color: LomiriColors.red
text: i18n.tr(
'Warning: importing delete any exiting Password Store')
}