Compare commits
2 commits
033f065f92
...
f4c6e82c6d
Author | SHA1 | Date | |
---|---|---|---|
f4c6e82c6d | |||
dd7e078525 |
4 changed files with 11 additions and 6 deletions
|
@ -106,7 +106,7 @@
|
||||||
|
|
||||||
**Fixed bugs**
|
**Fixed bugs**
|
||||||
|
|
||||||
* Confined packages (snapcraft & flatpak) won't show error messages related to update checks.
|
* Sandboxed packages (snapcraft and flatpak) won't show error messages related to update checks.
|
||||||
* Equations of the form (x + y) / z were not being simplified properly.
|
* Equations of the form (x + y) / z were not being simplified properly.
|
||||||
|
|
||||||
## v0.1.2 (30 Sep 2021)
|
## v0.1.2 (30 Sep 2021)
|
||||||
|
|
|
@ -18,8 +18,8 @@
|
||||||
|
|
||||||
import QtQuick 2.12
|
import QtQuick 2.12
|
||||||
import QtQuick.Dialogs 1.3
|
import QtQuick.Dialogs 1.3
|
||||||
//import QtQuick.Controls 2.12
|
import QtQuick.Controls 2.15
|
||||||
import eu.ad5001.MixedMenu 1.1
|
//import eu.ad5001.MixedMenu 1.1
|
||||||
import "js/objects.js" as Objects
|
import "js/objects.js" as Objects
|
||||||
import "js/historylib.js" as HistoryLib
|
import "js/historylib.js" as HistoryLib
|
||||||
|
|
||||||
|
@ -146,13 +146,18 @@ MenuBar {
|
||||||
Action {
|
Action {
|
||||||
text: qsTr("&Source code")
|
text: qsTr("&Source code")
|
||||||
icon.name: 'software-sources'
|
icon.name: 'software-sources'
|
||||||
onTriggered: Qt.openUrlExternally("https://git.ad5001.eu/Ad5001/LogarithmPlotter/issues")
|
onTriggered: Qt.openUrlExternally("https://git.ad5001.eu/Ad5001/LogarithmPlotter")
|
||||||
}
|
}
|
||||||
Action {
|
Action {
|
||||||
text: qsTr("&Report a bug")
|
text: qsTr("&Report a bug")
|
||||||
icon.name: 'tools-report-bug'
|
icon.name: 'tools-report-bug'
|
||||||
onTriggered: Qt.openUrlExternally("https://git.ad5001.eu/Ad5001/LogarithmPlotter/issues")
|
onTriggered: Qt.openUrlExternally("https://git.ad5001.eu/Ad5001/LogarithmPlotter/issues")
|
||||||
}
|
}
|
||||||
|
Action {
|
||||||
|
text: qsTr("&User manual")
|
||||||
|
icon.name: 'documentation'
|
||||||
|
onTriggered: Qt.openUrlExternally("https://git.ad5001.eu/Ad5001/LogarithmPlotter/wiki")
|
||||||
|
}
|
||||||
Action {
|
Action {
|
||||||
text: qsTr("&Changelog")
|
text: qsTr("&Changelog")
|
||||||
icon.name: 'state-information'
|
icon.name: 'state-information'
|
||||||
|
|
|
@ -47,7 +47,7 @@ ApplicationWindow {
|
||||||
SystemPalette { id: sysPalette; colorGroup: SystemPalette.Active }
|
SystemPalette { id: sysPalette; colorGroup: SystemPalette.Active }
|
||||||
SystemPalette { id: sysPaletteIn; colorGroup: SystemPalette.Disabled }
|
SystemPalette { id: sysPaletteIn; colorGroup: SystemPalette.Disabled }
|
||||||
|
|
||||||
menuBar: appMenu.trueItem
|
menuBar: appMenu//.trueItem
|
||||||
|
|
||||||
AppMenuBar {id: appMenu}
|
AppMenuBar {id: appMenu}
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ Column {
|
||||||
|
|
||||||
Button {
|
Button {
|
||||||
id: createBtn
|
id: createBtn
|
||||||
width: parent.width/3
|
width: 96
|
||||||
visible: Objects.types[modelData].createable()
|
visible: Objects.types[modelData].createable()
|
||||||
height: visible ? width*0.8 : 0
|
height: visible ? width*0.8 : 0
|
||||||
// The KDE SDK is kinda buggy, so it respects neither specified color nor display propreties.
|
// The KDE SDK is kinda buggy, so it respects neither specified color nor display propreties.
|
||||||
|
|
Loading…
Reference in a new issue