Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6c6a08d8e0 | ||
|
|
deafbae945 | ||
|
|
0b23c609f1 | ||
|
|
0359061321 | ||
|
|
bc7a5f6be4 | ||
|
|
be36f8f6e8 | ||
|
|
3b8d084c76 | ||
|
|
ce1cdca6a0 |
@@ -312,6 +312,7 @@ class ExternalLibs {
|
|||||||
inpxUrl = '';
|
inpxUrl = '';
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
|
this.commit = this.$store.commit;
|
||||||
this.oldStartLink = '';
|
this.oldStartLink = '';
|
||||||
this.justOpened = true;
|
this.justOpened = true;
|
||||||
this.$root.addEventHook('key', this.keyHook);
|
this.$root.addEventHook('key', this.keyHook);
|
||||||
@@ -404,6 +405,8 @@ class ExternalLibs {
|
|||||||
this.ready = true;
|
this.ready = true;
|
||||||
if (d.data)
|
if (d.data)
|
||||||
this.libs = _.cloneDeep(d.data);
|
this.libs = _.cloneDeep(d.data);
|
||||||
|
if (d.sets)
|
||||||
|
this.updateSets(d.sets);
|
||||||
} else if (d.type == 'notify') {
|
} else if (d.type == 'notify') {
|
||||||
this.$root.notify.success(d.data, '', {position: 'bottom-right'});
|
this.$root.notify.success(d.data, '', {position: 'bottom-right'});
|
||||||
}
|
}
|
||||||
@@ -448,6 +451,11 @@ class ExternalLibs {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
updateSets(sets) {
|
||||||
|
if (sets.nightMode !== this.nightMode)
|
||||||
|
this.commit('reader/nightModeToggle');
|
||||||
|
}
|
||||||
|
|
||||||
commitLibs(libs) {
|
commitLibs(libs) {
|
||||||
this.sendMessage({type: 'libs', data: libs});
|
this.sendMessage({type: 'libs', data: libs});
|
||||||
}
|
}
|
||||||
@@ -496,6 +504,10 @@ class ExternalLibs {
|
|||||||
return this.$store.state.config.mode;
|
return this.$store.state.config.mode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get nightMode() {
|
||||||
|
return this.$store.state.reader.settings.nightMode;
|
||||||
|
}
|
||||||
|
|
||||||
get header() {
|
get header() {
|
||||||
let result = [this.ready ? 'Сетевая библиотека' : 'Загрузка...'];
|
let result = [this.ready ? 'Сетевая библиотека' : 'Загрузка...'];
|
||||||
if (this.ready && this.selectedLink) {
|
if (this.ready && this.selectedLink) {
|
||||||
|
|||||||
@@ -119,8 +119,12 @@ class LibsPage {
|
|||||||
return this.$store.state.reader.libs;
|
return this.$store.state.reader.libs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get nightMode() {
|
||||||
|
return this.$store.state.reader.settings.nightMode;
|
||||||
|
}
|
||||||
|
|
||||||
sendLibs() {
|
sendLibs() {
|
||||||
this.sendMessage({type: 'libs', data: _.cloneDeep(this.libs)});
|
this.sendMessage({type: 'libs', data: _.cloneDeep(this.libs), sets: {nightMode: this.nightMode}});
|
||||||
}
|
}
|
||||||
|
|
||||||
close() {
|
close() {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
export const versionHistory = [
|
export const versionHistory = [
|
||||||
{
|
{
|
||||||
version: '1.1.0',
|
version: '1.1.1',
|
||||||
releaseDate: '2023-01-11',
|
releaseDate: '2023-01-11',
|
||||||
showUntil: '2023-01-15',
|
showUntil: '2023-01-15',
|
||||||
content:
|
content:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "liberama",
|
"name": "liberama",
|
||||||
"version": "1.1.0",
|
"version": "1.1.1",
|
||||||
"author": "Book Pauk <bookpauk@gmail.com>",
|
"author": "Book Pauk <bookpauk@gmail.com>",
|
||||||
"license": "CC0-1.0",
|
"license": "CC0-1.0",
|
||||||
"repository": "bookpauk/liberama",
|
"repository": "bookpauk/liberama",
|
||||||
|
|||||||
Reference in New Issue
Block a user