revisions

This commit is contained in:
pls.153 2024-05-06 14:30:26 +02:00
parent 593d1e723c
commit 3898f0988e
7 changed files with 10 additions and 9 deletions

View file

@ -81,16 +81,16 @@ Item {
text: "USB"
autoExclusive: true
checkable: true
enabled: (Qt.platform.os !== "android") && (Qt.platform.os !== "ios")
onTriggered: connection.changed(objectName)
Component.onCompleted: if (mobile) { height = 0 }
}
Com.MenuItem {
objectName: "WIFI"
text: "WiFi"
palette.windowText: (Qt.platform.os === "ios") ? "crimson" : palette.windowText
autoExclusive: true
checkable: true
onTriggered: connection.changed(objectName)
Component.onCompleted: if (Qt.platform.os === "ios") { palette.windowText = "crimson" }
}
}
@ -103,6 +103,7 @@ Item {
Com.MenuItem {
text: qsTr("Export message DB (Lisp)")
onTriggered: Lisp.call("db:export-to-list")
enabled: (view.pageIndex === 1)
}
Com.MenuItem {

View file

@ -24,7 +24,7 @@ void USB_ME::connectToRadio() {
if (!con->backgroundMode) {
con->setReady(QVariant(QVariantList() << portName()));
}
qDebug() << "USB already open;" << portName();
qDebug() << "USB already open:" << portName();
return;
}

View file

@ -188,7 +188,7 @@
;;; check app version (mobile)
#+mobile
(defconstant +version+ 1)
(defconstant +version+ 2)
#+mobile
(let ((.version (merge-pathnames ".version")))

View file

@ -17,7 +17,7 @@
</script>
</head>
<body>
<h3>Save / Restore data from cl-meshtastic</h3>
<h3>Save / Restore data from Mesh SMS</h3>
<p>
<b>Save</b> data first (backup):
<br>&nbsp;<a href="backup/mt-data.zip" download><code><b>mt-data.zip</b></code></a>

View file

@ -17,7 +17,7 @@
</script>
</head>
<body>
<h3>Save / Restore data from cl-meshtastic</h3>
<h3>Save / Restore data from Mesh SMS</h3>
<p>
<b>Save</b> data first (backup):
<br>&nbsp;<a href="backup/mt-data.zip" download><code><b>mt-data.zip</b></code></a>

View file

@ -102,6 +102,7 @@ Item {
Com.MenuItem {
text: qsTr("Export message DB (Lisp)")
onTriggered: Lisp.call("db:export-to-list")
enabled: (view.pageIndex === 1)
}
Com.MenuItem {

View file

@ -113,9 +113,8 @@ meshtastic \
--set network.wifi_psk "<password>"
```
You should now be able to see the IP of your WiFi connected radio on it's
small display (use the user button to switch to the WiFi page). After entering
the IP in the appropriate setting of this app, you should be able to choose
'WiFi' as connection type after switching to 'Radios'.
small display (use the user button to switch to the WiFi page). The app will
ask for the IP if not entered yet, or if it has changed.
See also [readme-usage](readme-usage.md).