update readmes

This commit is contained in:
pls.153 2022-03-06 15:58:54 +01:00
parent c3badf835b
commit a172789b58
3 changed files with 14 additions and 7 deletions

View file

@ -74,6 +74,11 @@ lisp/qml-reload/on-reloaded.lisp
For **android**, in order to see the debug output of eventual QML errors, you
need to run `./log.sh` in your `build-android/` directory.
If you don't want auto reload enabled (would block the app if the web server
isn't reachable), comment out `auto-reload-qml` in `lisp/main.lisp`.
Both desktop and mobile auto reload can also be run **simultaneously**, since
they share the QML source files.
Important notes for mobile

View file

@ -8,6 +8,10 @@ reloading QML.*
doesn't depend on Swank, and should therefore also be stable (it uses a local
trivial web server).*
*You may even run both the desktop and mobile device auto reload simultaneously
(`swank-server` example only), because they both watch/load the same QML
sources.*
QML Preview and Slime
---------------------

View file

@ -39,11 +39,9 @@ TODO
macOS note
----------
Qt is (obviously) working perfectly well on Linux (and on Linux only, I dare to
say).
Qt works (obviously) perfectly well on Linux.
On macOS/iOS you'll always find some subtle bug, like a QQuickView not updating
after a property change through e.g. Slime.
In the above case you need to click on the QQuickView in order to update the
view; after that, it seems to work for subsequent property changes.
On macOS instead, I found this a little annoying bug: after a QML property
change in Slime, the QQuickView is not updating. So, for a visual update you
need to click on the view; but it seems to work for subsequent property
changes.