└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # QtGraphicalEffects 2 | 3 | **The QtGraphicalEffects module has been deprecated and is no longer part of Qt.** 4 | 5 | The functionality of the module has been partially incorporated into the Qt5Compat module. 6 | 7 | The documentation for those parts can be found at 8 | [Qt 5 Compatibility APIs: Graphical Effects](https://doc.qt.io/qt-6/qtgraphicaleffects5-index.html) 9 | 10 | ## Working on Qt 5 11 | 12 | To work on patches for the Qt 5 series, check out a local branch of the relevant Qt version, e.g.: 13 | 14 | ```bash 15 | $ git checkout 5.15 16 | Branch '5.15' set up to track remote branch '5.15' from 'origin' by rebasing. 17 | Switched to a new branch '5.15' 18 | ``` 19 | 20 | ## Going back in time 21 | 22 | To inspect the code in the `dev` branch prior to its removal, follow these steps: 23 | 24 | ```bash 25 | $ git checkout -b my-dev dev~1 26 | Switched to a new branch 'my-dev' 27 | ``` 28 | 29 | --------------------------------------------------------------------------------