From 3843245bbbde82691037eda47b0d5adb62c7e7f5 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 28 Apr 2014 09:27:31 -0400 Subject: [PATCH] feature(config) change default options: zip, diff --- HELP.md | 4 ++-- json/config.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HELP.md b/HELP.md index 2a1c33a8..d87071d3 100644 --- a/HELP.md +++ b/HELP.md @@ -173,8 +173,8 @@ All main configuration could be done via `json/config.json`. "apiURL" :"/api/v1", "appCache" : false, /* cache files for offline use */ "analytics" : true, /* google analytics support */ - "diff" : false, /* when save - send patch, not whole file */ - "zip" : false, /* zip text before send / unzip before save */ + "diff" : true, /* when save - send patch, not whole file */ + "zip" : true, /* zip text before send / unzip before save */ "notifications" : false, /* show notifications when tab is not active*/ "localStorage" : true, /* cache directory data */ "minify" : true /* minification of js,css,html and img */ diff --git a/json/config.json b/json/config.json index 24429aaf..01a8914c 100644 --- a/json/config.json +++ b/json/config.json @@ -5,8 +5,8 @@ "apiURL": "/api/v1", "appДache": false, "analytics": true, - "diff": false, - "zip" : false, + "diff": true, + "zip" : true, "notifications": false, "localStorage": true, "minify": true,