|
| 1 | +## 1.5.0 |
| 2 | +* Dropped support for IntelliJ versions < 2025.2 |
| 3 | + * Resolves "``ActionUtil.performActionDumbAwareWithCallbacks`` deprecated" #250 |
| 4 | + |
| 5 | +## 1.4.2 |
| 6 | +* Fix storage deserialization crash on unknown actions value #273 |
| 7 | + |
| 8 | +## 1.4.1 |
| 9 | +* Fix ``Add class qualifier to static member access outside declaring class`` not working correctly for ``switch`` statements #263 |
| 10 | + |
| 11 | +## 1.4.0 |
| 12 | +* Dropped support for IntelliJ versions < 2024.3 |
| 13 | + * This is required to fix a few deprecations and remove some workarounds #171 |
| 14 | + |
| 15 | +## 1.3.1 |
| 16 | +* Fix IDE hang when projects with different "Process files asynchronously" are open #160 |
| 17 | + |
| 18 | +## 1.3.0 |
| 19 | +* Make it possible to run processors asynchronously #130 |
| 20 | + * This way the UI should be more responsive when processing a lot of files |
| 21 | + * May break processors that interact with the UI e.g. when showing dialogs |
| 22 | +* Don't process files during project load #145 |
| 23 | + * This should cause less race conditions due to partial project initialization |
| 24 | + * Only active on IntelliJ < 2024.3 as [the underlying problem was fixed in IntelliJ 2024.3](https://github.com/JetBrains/intellij-community/commit/765caa71175d0a67a54836cf840fae829da590d9) |
| 25 | + |
| 26 | +## 1.2.4 |
| 27 | +* Dropped support for IntelliJ versions < 2024.2 |
| 28 | +* Removed deprecated code that was only required for older IDE versions |
| 29 | + |
| 30 | +## 1.2.3 |
| 31 | +* Fix "run on multiple files" not working when the file is not a text file #129 |
| 32 | + |
| 33 | +## 1.2.2 |
| 34 | +* Workaround scaling problem on "New UI" [#26](https://github.com/xdev-software/intellij-plugin-template/issues/26) |
| 35 | + |
| 36 | +## 1.2.1 |
| 37 | +* Fixed ``ToggleAnAction must override getActionUpdateThread`` warning inside IntelliJ 2024+ |
| 38 | +* Dropped support for IntelliJ versions < 2023.2 |
| 39 | + |
| 40 | +## 1.2.0 |
| 41 | +* Run GlobalProcessors (e.g. Reformat) last so that code is formatted correctly #90 |
| 42 | +* Dropped support for IntelliJ versions < 2023 |
| 43 | + |
| 44 | +## 1.1.1 |
| 45 | +* Shortened plugin name - new name: "Save Actions X" |
| 46 | +* Updated assets |
| 47 | + |
| 48 | +## 1.1.0 |
| 49 | +* Removed "Remove unused suppress warning annotation" |
| 50 | + * This option never worked #64 |
| 51 | + * Allows usage of the plugin with IntelliJ IDEA 2024+ #63 |
| 52 | + * If you used this option you should remove the line ``<option value="suppressAnnotation" />`` inside ``saveactions_settings.xml`` |
| 53 | +* Allow compilation with Java 21 |
| 54 | + |
| 55 | +## 1.0.5 |
| 56 | +* Fixed ``Add class qualifier to static member access outside declaring class`` not working in combination with Qodana plugin #25 |
| 57 | + |
| 58 | +## 1.0.4 |
| 59 | +* Fixed pluginIcon being not displayed #35 |
| 60 | +* Improved support of Android Studio (until a 2023 version is released) #27 |
| 61 | + |
| 62 | +## 1.0.3 |
| 63 | +* Fixed problem in combination with Qodana plugin #25 |
| 64 | +* Improved compatibility and cleaned up code #27 |
| 65 | + |
| 66 | +## 1.0.2 |
| 67 | +* Fixed missing display name which causes an error when multiple configurable plugins are installed #20 |
| 68 | + |
| 69 | +## 1.0.1 |
| 70 | +* Fixed ``Change visibility of field or method to lower access`` not working #14 |
| 71 | + |
| 72 | +## 1.0.0 |
| 73 | +<i>Initial release</i> |
| 74 | +* Fork of [dubreuia/intellij-plugin-save-actions](https://github.com/dubreuia/intellij-plugin-save-actions) and [fishermans/intellij-plugin-save-actions](https://github.com/fishermans/intellij-plugin-save-actions) |
| 75 | + * ⚠️ This plugin is not compatible with the old/deprecated/forked one.<br/>Please ensure that the old plugin is uninstalled. |
| 76 | +* Rebrand |
| 77 | +* Updated copy pasted classes from IDEA |
| 78 | + |
0 commit comments