aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorNunoSempere <nuno.semperelh@protonmail.com>2024-03-12 14:13:47 -0300
committerNunoSempere <nuno.semperelh@protonmail.com>2024-03-12 14:13:47 -0300
commit0f940a7460182187195b6300ae9bc0c822a11724 (patch)
tree0aa86ef0e65fc26375f25abdd56a68cd08b3f5e2 /config.h
parent641b4055c25c612ca843934583efdddedef5d90c (diff)
webkit upgrade: remove deprecated opts and change variable names.
References for the removed opts: https://webkitgtk.org/reference/webkit2gtk/stable/property.WebContext.local-storage-directory.html?q= https://webkitgtk.org/reference/webkit2gtk/stable/property.WebsiteDataManager.disk-cache-directory.html https://webkitgtk.org/reference/webkit2gtk/stable/property.WebsiteDataManager.indexeddb-directory.html https://webkitgtk.org/reference/webkit2gtk/stable/property.WebsiteDataManager.service-worker-registrations-directory.html https://webkitgtk.org/reference/webkit2gtk/stable/property.WebsiteDataManager.itp-directory.html https://webkitgtk.org/reference/webkit2gtk/stable/property.WebsiteDataManager.hsts-cache-directory.html
Diffstat (limited to 'config.h')
-rw-r--r--config.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/config.h b/config.h
index 7280bc3..531b6c2 100644
--- a/config.h
+++ b/config.h
@@ -41,13 +41,7 @@ To remove plugins completely;
"default-charset", "utf-8"
/* CACHE */
#define CACHE_DIR "/home/nuno/.cache/rose"
-#define CACHE \
- "base-cache-directory", CACHE_DIR, "base-data-directory", CACHE_DIR, \
- "disk-cache-directory", CACHE_DIR, "dom-cache-directory", CACHE_DIR, \
- "hsts-cache-directory", CACHE_DIR, "indexeddb-directory", CACHE_DIR, \
- "itp-directory", CACHE_DIR, "local-storage-directory", CACHE_DIR, \
- "offline-application-cache-directory", CACHE_DIR, \
- "service-worker-registrations-directory", CACHE_DIR
+#define DATA_MANAGER_OPTS "base-cache-directory", CACHE_DIR, "base-data-directory", CACHE_DIR,
// GTK
#define GTK_SETTINGS_CONFIG_H "gtk-application-prefer-dark-theme", false, "gtk-enable-animations", false