updater link

This commit is contained in:
Antelle 2016-02-05 00:08:04 +03:00
parent 66c0d4ec3d
commit c68fef14e6
2 changed files with 3 additions and 2 deletions

View File

@ -85,7 +85,7 @@ var Updater = {
}
logger.info('Checking for update...');
Transport.httpGet({
url: Links.WebApp + 'manifest.appcache',
url: Links.Manifest,
utf8: true,
success: function(data) {
var dt = new Date();

View File

@ -7,7 +7,8 @@ var Links = {
License: 'https://github.com/antelle/keeweb/blob/master/MIT-LICENSE.txt',
UpdateDesktop: 'https://github.com/antelle/keeweb/releases/download/v{ver}/UpdateDesktop.zip',
ReleaseNotes: 'https://github.com/antelle/keeweb/blob/master/release-notes.md#release-notes',
SelfHostedDropbox: 'https://github.com/antelle/keeweb#self-hosting'
SelfHostedDropbox: 'https://github.com/antelle/keeweb#self-hosting',
Manifest: 'https://antelle.github.io/keeweb/manifest.appcache'
};
module.exports = Links;