From b9bb17dd6976119773396848dda5598f20775096 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Wed, 26 Dec 2018 12:24:12 -0600 Subject: [PATCH] Added new update data --- src/application.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/application.py b/src/application.py index 101d147..c8be988 100644 --- a/src/application.py +++ b/src/application.py @@ -6,11 +6,18 @@ authorEmail = "manuel@manuelcortez.net" copyright = u"Copyright (C) 2016-2018, Manuel Cortez" description = unicode(name+" Is an accessible VK client for Windows.") url = "https://manuelcortez.net/socializer" -update_url = "https://code.manuelcortez.net/manuelcortez/socializer/raw/master/update-files/socializer.json" # The short name will be used for detecting translation files. See languageHandler for more details. short_name = "socializer" translators = [u"Darya Ratnikova (Russian)", u"Manuel Cortez (Spanish)"] bts_name = "socializer" bts_access_token = "U29jaWFsaXplcg" bts_url = "https://issues.manuelcortez.net" -bts_project_id = 4 \ No newline at end of file +bts_project_id = 4 +### Update information +# URL to retrieve the latest updates for the stable branch. +update_stable_url = "https://code.manuelcortez.net/manuelcortez/socializer/raw/master/update-files/socializer.json" +# URL to retrieve update information for the "next" branch. This is a channel made for alpha versions. +# Every commit will trigger an update, so users wanting to have the bleeding edge code will get it as soon as it is committed here and build by a runner. +update_next_url = "https://code.manuelcortez.net/api/v4/projects/4/repository/commits/master" +# Short_id of the last commit, this is set to none here because it will be set manually by the building tools. +update_next_version = "03286a44" \ No newline at end of file