Skip to content

Commit 0511a6d

Browse files
author
Ronny Wegener
committed
changed update URL in client configuration
changed default development version info
1 parent abeb38f commit 0511a6d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/app/Configuration.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = class Configuration {
2323
constructor(configuration) {
2424
let options = configuration || {};
2525
let applicationExecutableDirectory = path.dirname(electron.app.getPath('exe'));
26-
this._applicationUpdateURL = options['applicationUpdateURL'] || 'https://manga-download.github.io/hakuneko/master/latest';
26+
this._applicationUpdateURL = options['applicationUpdateURL'] || 'https://manga-download.github.io/hakuneko/6.1.7/latest';
2727
this._applicationStartupURL = options['applicationStartupURL'] || 'hakuneko://cache/index.html';
2828
this._applicationCacheDirectory = options['applicationCacheDirectory'] || path.join(applicationExecutableDirectory, 'cache');
2929
this._applicationUserDataDirectory = options['applicationUserDataDirectory'] || path.join(applicationExecutableDirectory, 'userdata');

src/app/__tests__/Configuration.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ describe('Configuration', function() {
8585
describe('applicationUpdateURL', function() {
8686
it('should have default after initialization', () => {
8787
let testee = new Configuration(undefined);
88-
expect(testee.applicationUpdateURL).toEqual('https://manga-download.github.io/hakuneko/master/latest');
88+
expect(testee.applicationUpdateURL).toEqual('https://manga-download.github.io/hakuneko/6.1.7/latest');
8989
});
9090
it('should be overwritten by update URL from options', () => {
9191
let testee = new Configuration(expected);

src/app/__tests__/ConfigurationDarwin.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ var suite = function() {
8686
describe('applicationUpdateURL', function() {
8787
it('should have default after initialization', () => {
8888
let testee = new Configuration(undefined);
89-
expect(testee.applicationUpdateURL).toEqual('https://manga-download.github.io/hakuneko/master/latest');
89+
expect(testee.applicationUpdateURL).toEqual('https://manga-download.github.io/hakuneko/6.1.7/latest');
9090
});
9191
it('should be overwritten by update URL from options', () => {
9292
let testee = new Configuration(expected);

src/app/__tests__/ConfigurationLinux.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ var suite = function() {
8686
describe('applicationUpdateURL', function() {
8787
it('should have default after initialization', () => {
8888
let testee = new Configuration(undefined);
89-
expect(testee.applicationUpdateURL).toEqual('https://manga-download.github.io/hakuneko/master/latest');
89+
expect(testee.applicationUpdateURL).toEqual('https://manga-download.github.io/hakuneko/6.1.7/latest');
9090
});
9191
it('should be overwritten by update URL from options', () => {
9292
let testee = new Configuration(expected);

src/app/__tests__/ConfigurationWindows.tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ var suite = function() {
8787
describe('applicationUpdateURL', function() {
8888
it('should have default after initialization', () => {
8989
let testee = new Configuration(undefined);
90-
expect(testee.applicationUpdateURL).toEqual('https://manga-download.github.io/hakuneko/master/latest');
90+
expect(testee.applicationUpdateURL).toEqual('https://manga-download.github.io/hakuneko/6.1.7/latest');
9191
});
9292
it('should be overwritten by update URL from options', () => {
9393
let testee = new Configuration(expected);

src/web/mjs/VersionInfo.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default {
22
branch: {
3-
label: 'master',
4-
link: 'https://github.com/manga-download/hakuneko/commits/master',
3+
label: '6.1.7',
4+
link: 'https://github.com/manga-download/hakuneko/commits/6.1.7',
55
},
66
revision: {
77
label: 'HEAD',

0 commit comments

Comments
 (0)