Rename storage -> offline-web-application-storage to -cache
This commit is contained in:
parent
c696723650
commit
0ca59f2184
@ -97,6 +97,7 @@ Changed
|
|||||||
- `storage -> object-cache-capacities` (default depends on disk space)
|
- `storage -> object-cache-capacities` (default depends on disk space)
|
||||||
- `content -> css-regions` (now always turned off)
|
- `content -> css-regions` (now always turned off)
|
||||||
- `storage -> offline-storage-database` (merged into `storage -> local-storage`)
|
- `storage -> offline-storage-database` (merged into `storage -> local-storage`)
|
||||||
|
- (QtWebKit) storage -> offline-web-application-storage` got renamed to `...-cache`
|
||||||
|
|
||||||
|
|
||||||
Fixed
|
Fixed
|
||||||
|
@ -228,7 +228,7 @@ MAPPINGS = {
|
|||||||
# Attribute(QWebSettings.TiledBackingStoreEnabled),
|
# Attribute(QWebSettings.TiledBackingStoreEnabled),
|
||||||
},
|
},
|
||||||
'storage': {
|
'storage': {
|
||||||
'offline-web-application-storage':
|
'offline-web-application-cache':
|
||||||
Attribute(QWebSettings.OfflineWebApplicationCacheEnabled),
|
Attribute(QWebSettings.OfflineWebApplicationCacheEnabled),
|
||||||
'local-storage':
|
'local-storage':
|
||||||
Attribute(QWebSettings.LocalStorageEnabled,
|
Attribute(QWebSettings.LocalStorageEnabled,
|
||||||
|
@ -390,6 +390,8 @@ class ConfigManager(QObject):
|
|||||||
('colors', 'statusbar.bg.warning'): 'messages.bg.warning',
|
('colors', 'statusbar.bg.warning'): 'messages.bg.warning',
|
||||||
('colors', 'statusbar.fg.prompt'): 'prompts.fg',
|
('colors', 'statusbar.fg.prompt'): 'prompts.fg',
|
||||||
('colors', 'statusbar.bg.prompt'): 'prompts.bg',
|
('colors', 'statusbar.bg.prompt'): 'prompts.bg',
|
||||||
|
('storage', 'offline-web-application-storage'):
|
||||||
|
'offline-web-application-cache',
|
||||||
}
|
}
|
||||||
DELETED_OPTIONS = [
|
DELETED_OPTIONS = [
|
||||||
('colors', 'tab.separator'),
|
('colors', 'tab.separator'),
|
||||||
|
@ -767,7 +767,7 @@ def data(readonly=False):
|
|||||||
"For more information about the feature, please refer to: "
|
"For more information about the feature, please refer to: "
|
||||||
"http://webkit.org/blog/427/webkit-page-cache-i-the-basics/"),
|
"http://webkit.org/blog/427/webkit-page-cache-i-the-basics/"),
|
||||||
|
|
||||||
('offline-web-application-storage',
|
('offline-web-application-cache',
|
||||||
SettingValue(typ.Bool(), 'true',
|
SettingValue(typ.Bool(), 'true',
|
||||||
backends=[usertypes.Backend.QtWebKit]),
|
backends=[usertypes.Backend.QtWebKit]),
|
||||||
"Whether support for the HTML 5 web application cache feature is "
|
"Whether support for the HTML 5 web application cache feature is "
|
||||||
|
Loading…
Reference in New Issue
Block a user