Skip to content

Commit f2488c1

Browse files
committed
Updated CHANGELOG
1 parent 6f72b74 commit f2488c1

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# guidata Releases #
22

3+
## Version 2.2.1 ##
4+
5+
Bug fixes:
6+
7+
* Collection editor: fixed "Save array" feature
8+
* Console widget context menu: added missing icons
9+
310
## Version 2.2.0 ##
411

512
Changes:

guidata/__init__.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
.. _GoogleGroup: http://groups.google.fr/group/guidata_guiqwt
1818
"""
1919

20-
__version__ = "2.2.0"
20+
__version__ = "2.2.1"
2121

2222
# TODO: Investigate the qthelpers test failure (see after if __name__=='__main__')
2323

@@ -564,7 +564,7 @@ def install_translator(qapp):
564564
"""Install Qt translator to the QApplication instance"""
565565
global QT_TRANSLATOR
566566
if QT_TRANSLATOR is None:
567-
from qtpy.QtCore import QLocale, QTranslator, QLibraryInfo
567+
from qtpy.QtCore import QLibraryInfo, QLocale, QTranslator
568568

569569
locale = QLocale.system().name()
570570
# Qt-specific translator
@@ -579,9 +579,10 @@ def install_translator(qapp):
579579

580580
def set_color_mode(app):
581581
"""Set color mode (dark or light), depending on OS setting"""
582-
from qtpy.QtWidgets import QStyleFactory
583-
from qtpy.QtGui import QPalette, QColor
584582
from qtpy.QtCore import Qt
583+
from qtpy.QtGui import QColor, QPalette
584+
from qtpy.QtWidgets import QStyleFactory
585+
585586
from guidata import qthelpers
586587

587588
if qthelpers.is_dark_mode():

0 commit comments

Comments
 (0)