diff --git a/spyderlib/config.py b/spyderlib/config.py index 28031360ecc..26761a181ab 100644 --- a/spyderlib/config.py +++ b/spyderlib/config.py @@ -715,7 +715,7 @@ def is_ubuntu(): # 2. If you want to *remove* options that are no longer needed in our codebase, # you need to do a MAJOR update in version, e.g. from 3.0.0 to 4.0.0 # 3. You don't need to touch this value if you're just adding a new option -CONF_VERSION = '16.1.0' +CONF_VERSION = '17.0.0' # XXX: Previously we had load=(not DEV) here but DEV was set to *False*. # Check if it *really* needs to be updated or not diff --git a/spyderlib/plugins/ipythonconsole.py b/spyderlib/plugins/ipythonconsole.py index d14da656783..593814c6e6b 100644 --- a/spyderlib/plugins/ipythonconsole.py +++ b/spyderlib/plugins/ipythonconsole.py @@ -181,7 +181,7 @@ def setup_page(self): comp_group = QGroupBox(_("Completion Widget")) comp_label = QLabel(_("Decide what type of completion to use")) comp_label.setWordWrap(True) - completers = [("plain", 0), ("droplist", 1), ("ncurses", 2)] + completers = [("Graphical", 0), ("Terminal", 1), ("Plain", 2)] comp_box = self.create_combobox(_("Completion:")+" ", completers, 'completion_widget', default=0) comp_layout = QVBoxLayout()