aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-05-17 15:34:29 -0400
committerB. Stack <bgstack15@gmail.com>2022-05-17 15:34:29 -0400
commit3133681bf29a9e4dfacb8d63d7a041424862cf54 (patch)
tree1fc68d26bd194bdcc8d028071e289923b01d964f
parentfix upload button add event (diff)
downloadradicaleinfcloud-3133681bf29a9e4dfacb8d63d7a041424862cf54.tar.gz
radicaleinfcloud-3133681bf29a9e4dfacb8d63d7a041424862cf54.tar.bz2
radicaleinfcloud-3133681bf29a9e4dfacb8d63d7a041424862cf54.zip
improve config, and add .gitremotes
-rw-r--r--.gitremotes6
-rw-r--r--radicale_infcloud/web/config.js2
2 files changed, 7 insertions, 1 deletions
diff --git a/.gitremotes b/.gitremotes
new file mode 100644
index 0000000..439aab4
--- /dev/null
+++ b/.gitremotes
@@ -0,0 +1,6 @@
+github https://github.com/bgstack15/radicaleInfCloud (fetch)
+github https://github.com/bgstack15/radicaleInfCloud (push)
+gitlab https://gitlab.com/bgstack15/radicaleInfCloud.git (fetch)
+gitlab https://gitlab.com/bgstack15/radicaleInfCloud.git (push)
+local https://bgstack15.ddns.net/git/radicaleinfcloud (fetch)
+local https://bgstack15.ddns.net/git/radicaleinfcloud (push)
diff --git a/radicale_infcloud/web/config.js b/radicale_infcloud/web/config.js
index 0312027..b3b15f6 100644
--- a/radicale_infcloud/web/config.js
+++ b/radicale_infcloud/web/config.js
@@ -755,7 +755,7 @@ var globalTimeZoneSupport=true;
// timezones (defined in timezones.js):
// grep "'[^']\+': {" timezones.js | sed -Ee "s#(\s*'|':\s*\{)##g"
// Example:
-var globalTimeZone='Europe/Berlin';
+var globalTimeZone='America/New_York';
// globalTimeZonesEnabled
bgstack15