aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2021-06-07 16:02:47 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2021-06-07 14:24:19 +0000
commitffad63daff96760bca44c83215995fa0240d5773 (patch)
tree81bd7dd55fdabd70a53f23af75af32d04aa28992 /README.md
parent9d99db029613d9cd847407085c5de7f310cd0937 (diff)
Flesh out READMEHEADdev
Change-Id: I58d5e82c0fd04764d1bfb9bd068810b3d1a3790c Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
Diffstat (limited to 'README.md')
-rw-r--r--README.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..93fc44a
--- /dev/null
+++ b/README.md
@@ -0,0 +1,33 @@
+# QtMacExtras
+
+**The QtMacExtras module has been deprecated and is no longer part of Qt.**
+
+The functionality of the module has been incorporated into other parts of Qt, or in some cases
+removed due to being obsolete or better suited as cross platform APIs.
+
+For more details, see [QTBUG-93629](https://bugreports.qt.io/browse/QTBUG-93629) in the Qt issue
+tracker.
+
+## Porting away from QtMacExtras
+
+To learn more about how to port from QtMacExtras to alternative APIs please visit the
+[Qt 6 porting guide](https://doc.qt.io/qt-6/portingguide.html).
+
+## Working on Qt 5
+
+To work on patches for the Qt 5 series, check out a local branch of the relevant Qt version, e.g.:
+
+```bash
+$ git checkout 5.15
+Branch '5.15' set up to track remote branch '5.15' from 'origin' by rebasing.
+Switched to a new branch '5.15'
+```
+
+## Going back in time
+
+To inspect the code in the `dev` branch prior to its removal, follow these steps:
+
+```bash
+$ git checkout -b my-dev 1af4a00d7
+Switched to a new branch 'my-dev'
+```