Mark tabs -> auto-hide as removed as well.
tabs -> hide-auto was removed in d8017a04a8
because it was easier to do so compared to transforming it correctly when tabs
-> show was introduced. However, tabs -> auto-hide (the even older version)
wasn't removed, breaking config migration from earlier versions.
Fixes #1171.
This commit is contained in:
parent
202bf59edc
commit
24607fda8b
@ -108,6 +108,7 @@ Fixed
|
|||||||
- Using an external editor should now work correctly with some funny chars
|
- Using an external editor should now work correctly with some funny chars
|
||||||
(U+2028/U+2029/BOM).
|
(U+2028/U+2029/BOM).
|
||||||
- Movements in caret mode now should work correctly on OS X and Windows.
|
- Movements in caret mode now should work correctly on OS X and Windows.
|
||||||
|
- Fixed upgrade from earlier config versions.
|
||||||
|
|
||||||
v0.4.1
|
v0.4.1
|
||||||
------
|
------
|
||||||
|
@ -337,7 +337,6 @@ class ConfigManager(QObject):
|
|||||||
('colors', 'tab.indicator.stop'): 'tabs.indicator.stop',
|
('colors', 'tab.indicator.stop'): 'tabs.indicator.stop',
|
||||||
('colors', 'tab.indicator.error'): 'tabs.indicator.error',
|
('colors', 'tab.indicator.error'): 'tabs.indicator.error',
|
||||||
('colors', 'tab.indicator.system'): 'tabs.indicator.system',
|
('colors', 'tab.indicator.system'): 'tabs.indicator.system',
|
||||||
('tabs', 'auto-hide'): 'hide-auto',
|
|
||||||
('completion', 'history-length'): 'cmd-history-max-items',
|
('completion', 'history-length'): 'cmd-history-max-items',
|
||||||
('colors', 'downloads.fg'): 'downloads.fg.start',
|
('colors', 'downloads.fg'): 'downloads.fg.start',
|
||||||
}
|
}
|
||||||
@ -347,6 +346,7 @@ class ConfigManager(QObject):
|
|||||||
('colors', 'completion.item.bg'),
|
('colors', 'completion.item.bg'),
|
||||||
('tabs', 'indicator-space'),
|
('tabs', 'indicator-space'),
|
||||||
('tabs', 'hide-auto'),
|
('tabs', 'hide-auto'),
|
||||||
|
('tabs', 'auto-hide'),
|
||||||
('tabs', 'hide-always'),
|
('tabs', 'hide-always'),
|
||||||
]
|
]
|
||||||
CHANGED_OPTIONS = {
|
CHANGED_OPTIONS = {
|
||||||
|
Loading…
Reference in New Issue
Block a user