f31522130f
Build system (5 gaps hardened): - COOKBOOK_OFFLINE defaults to true (fork-mode) - normalize_patch handles diff -ruN format - New 'repo validate-patches' command (25/25 relibc patches) - 14 patched Qt/Wayland/display recipes added to protected list - relibc archive regenerated with current patch chain Boot fixes (fixable): - Full ISO EFI partition: 16 MiB → 1 MiB (matches mini, BIOS hardcoded 2 MiB offset) - D-Bus system bus: absolute /usr/bin/dbus-daemon path (was skipped) - redbear-sessiond: absolute /usr/bin/redbear-sessiond path (was skipped) - daemon framework: silenced spurious INIT_NOTIFY warnings for oneshot_async services (P0-daemon-silence-init-notify.patch) - udev-shim: demoted INIT_NOTIFY warning to INFO (expected for oneshot_async) - relibc: comprehensive named semaphores (sem_open/close/unlink) replacing upstream todo!() stubs - greeterd: Wayland socket timeout 15s → 30s (compositor DRM wait) - greeter-ui: built and linked (header guard unification, sem_compat stubs removed) - mc: un-ignored in both configs, fixed glib/libiconv/pcre2 transitive deps - greeter config: removed stale keymapd dependency from display/greeter services - prefix toolchain: relibc headers synced, _RELIBC_STDLIB_H guard unified Unfixable (diagnosed, upstream): - i2c-hidd: abort on no-I2C-hardware (QEMU) — process::exit → relibc abort - kded6/greeter-ui: page fault 0x8 — Qt library null deref - Thread panics fd != -1 — Rust std library on Redox - DHCP timeout / eth0 MAC — QEMU user-mode networking - hwrngd/thermald — no hardware RNG/thermal in VM - live preload allocation — BIOS memory fragmentation, continues on demand
99 lines
4.7 KiB
Plaintext
99 lines
4.7 KiB
Plaintext
Qt 5.13 introduces many new features and improvements as well as bugfixes
|
|
over the 5.12.x series. For more details, refer to the online documentation
|
|
included in this distribution. The documentation is also available online:
|
|
|
|
https://doc.qt.io/qt-5/index.html
|
|
|
|
The Qt version 5.13 series is binary compatible with the 5.12.x series.
|
|
Applications compiled for 5.12 will continue to run with 5.13.
|
|
|
|
Some of the changes listed in this file include issue tracking numbers
|
|
corresponding to tasks in the Qt Bug Tracker:
|
|
|
|
https://bugreports.qt.io/
|
|
|
|
Each of these identifiers can be entered in the bug tracker to obtain more
|
|
information about a particular change.
|
|
|
|
****************************************************************************
|
|
* Important Behavior Changes *
|
|
****************************************************************************
|
|
|
|
- [QTBUG-68278] The Canvas requestAnimationFrame callback now gets passed a
|
|
millisecond timestamp instead of seconds.
|
|
|
|
****************************************************************************
|
|
* QtQml *
|
|
****************************************************************************
|
|
|
|
- Nested arrays are not flattened anymore when printed through console.log()
|
|
and friends.
|
|
- [QTBUG-72098] Assigning JavaScript null to incompatibly typed properties
|
|
generates a compile warning now. In future versions of Qt this will
|
|
become an error.
|
|
- [QTBUG-60057] QVariant's debug stream operator is now used in console.log()
|
|
and friends. This often includes more information than before, and
|
|
works better for custom types.
|
|
- [QTBUG-74068] Qt.include() is deprecated in favor of ECMAScript modules.
|
|
- [QTBUG-60338] Added support for QSequentialIterable in QML, meaning
|
|
that the engine understands many sequential value types (such as lists
|
|
of Q_GADGETS) and is able to convert them to JS arrays.
|
|
- [QTBUG-66504] QmlDebug has new features to improve integration with
|
|
external tools and IDEs.
|
|
- [QTBUG-50061] Global exception handlers are now called reliably by
|
|
unwinding JIT-generated code via a function table.
|
|
- [QTBUG-72294] Fixed a function table error on WinRT.
|
|
- [QTBUG-72430] Added the QTQUICK_COMPILER_RETAINED_RESOURCES option to
|
|
retain sources when generating QML cache files.
|
|
- [QTBUG-72930] A Component can no longer be assigned to properties of other types.
|
|
- [QTBUG-71838] LocalStorage now returns the new database version
|
|
from changeVersion() without reopening the connection.
|
|
|
|
- qml:
|
|
* [QTBUG-70826][QTBUG-74662] The QML Runtime tool now has an updated
|
|
application icon and a default window icon. QtQuick applications can
|
|
still use QWindow::setIcon() to override the window icon.
|
|
|
|
- qmlscene:
|
|
* [QDS-589] qmlscene now supports file selectors.
|
|
|
|
****************************************************************************
|
|
* QtQuick *
|
|
****************************************************************************
|
|
|
|
- Item Views:
|
|
* Added itemAtIndex() to GridView, ListView and PathView to fetch a visible
|
|
delegate by index.
|
|
|
|
- TableView:
|
|
* Added support for hiding rows and columns by setting their size to 0 from
|
|
the columnsWidthProvider/rowHeightProvider.
|
|
|
|
- Text:
|
|
* [QTBUG-32525][QTBUG-70748] Inline images in a QTextDocumentLayout are
|
|
now displayed in Text and friends.
|
|
* [QTBUG-68711] Fixed Keys.onShortcutOverride for TextEdit
|
|
* [QTBUG-50587] Fixed persistentSelection for readonly TextEdit
|
|
* [QTBUG-72736] Text wrapping no longer breaks on the last line if right
|
|
elide is enabled
|
|
|
|
- Window:
|
|
* [QTBUG-67903] Added the Window.transientParent property. QtQuick normally
|
|
guesses the transient parent relationship from the nesting of declarations,
|
|
but now you can override this "magic" by setting it explicitly.
|
|
* [QTBUG-73929] Fixed a race condition when closing windows.
|
|
|
|
****************************************************************************
|
|
* QtQuickTest *
|
|
****************************************************************************
|
|
|
|
- [QTBUG-71224] Added QQuickTest::qWaitForItemPolished() for verifying that
|
|
updatePolish() was called on an item.
|
|
- [QTBUG-71224] Added qIsPolishScheduled() function to allow checking if
|
|
updatePolish() has been called on an item since the last call to its
|
|
polish() function. This is useful to verify that a polish has been
|
|
scheduled.
|
|
- Added TestCase.isPolishScheduled() function to allow checking whether
|
|
updatePolish() has been called on an item since the last call to its polish()
|
|
function. This is useful to verify that a polish has been scheduled.
|