summaryrefslogtreecommitdiff
path: root/plugins/PluginUpdater/src/Common.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-06-28 17:07:02 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-06-28 17:07:02 +0000
commitcd729212350658281b46b9c202587f18e205a87c (patch)
tree37329eb2f0d21746543897ffd987c7833c7e482d /plugins/PluginUpdater/src/Common.h
parent8d11b4da82fdd800bd0d8b2471ba71f5e8593470 (diff)
defaults changed for PU
git-svn-id: http://svn.miranda-ng.org/main/trunk@9601 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src/Common.h')
-rw-r--r--plugins/PluginUpdater/src/Common.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/plugins/PluginUpdater/src/Common.h b/plugins/PluginUpdater/src/Common.h
index b829e92eae..1c9282481e 100644
--- a/plugins/PluginUpdater/src/Common.h
+++ b/plugins/PluginUpdater/src/Common.h
@@ -101,13 +101,19 @@ struct PlugOptions
int Period;
};
-#define DEFAULT_UPDATEICONS 0
#define DEFAULT_UPDATEONSTARTUP 1
-#define DEFAULT_ONLYONCEADAY 1
#define DEFAULT_UPDATEONPERIOD 0
#define DEFAULT_PERIOD 1
#define DEFAULT_PERIODMEASURE 1
+#if MIRANDA_VER < 0x0A00
+ #define DEFAULT_UPDATEICONS 1
+ #define DEFAULT_ONLYONCEADAY 0
+#else
+ #define DEFAULT_UPDATEICONS 0
+ #define DEFAULT_ONLYONCEADAY 1
+#endif
+
#define DEFAULT_UPDATE_URL "http://miranda-ng.org/distr/stable/x%platform%"
#define DEFAULT_UPDATE_URL_TRUNK "http://miranda-ng.org/distr/x%platform%"
#define DEFAULT_UPDATE_URL_TRUNK_SYMBOLS "http://miranda-ng.now.im/pdb_x%platform%/"