mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2025-02-16 19:38:26 +00:00
#365 changelog and WIP
This commit is contained in:
parent
19dc896f9b
commit
ce4db6467f
3 changed files with 3 additions and 9 deletions
|
@ -3,6 +3,8 @@
|
||||||
## V0.3.13
|
## V0.3.13
|
||||||
|
|
||||||
* [#395 Show alert if we can't connect to plex.tv](https://github.com/WebTools-NG/WebTools-NG/issues/395)
|
* [#395 Show alert if we can't connect to plex.tv](https://github.com/WebTools-NG/WebTools-NG/issues/395)
|
||||||
|
* [#399 [RFE] ET: Consider splitting outfile into many](https://github.com/WebTools-NG/WebTools-NG/issues/399)
|
||||||
|
* [#396 [RFE] ET: Seperate xlsx and csv export](https://github.com/WebTools-NG/WebTools-NG/issues/396)
|
||||||
|
|
||||||
## V0.3.12
|
## V0.3.12
|
||||||
|
|
||||||
|
|
|
@ -276,12 +276,9 @@
|
||||||
etHelper.Settings.accessToken = this.$store.getters.getSelectedServerToken;
|
etHelper.Settings.accessToken = this.$store.getters.getSelectedServerToken;
|
||||||
etHelper.Settings.totalItems = await etHelper.getSectionSize();
|
etHelper.Settings.totalItems = await etHelper.getSectionSize();
|
||||||
this.itemEndNo = etHelper.Settings.totalItems;
|
this.itemEndNo = etHelper.Settings.totalItems;
|
||||||
|
etHelper.Settings.endItem = this.itemEndNo;
|
||||||
this.sectionMaxItems = this.itemEndNo;
|
this.sectionMaxItems = this.itemEndNo;
|
||||||
this.$refs['startEnd'].show();
|
this.$refs['startEnd'].show();
|
||||||
|
|
||||||
|
|
||||||
// getMedia()
|
|
||||||
|
|
||||||
},
|
},
|
||||||
hideStartEnd: async function(){
|
hideStartEnd: async function(){
|
||||||
// Hide StartEnd modal
|
// Hide StartEnd modal
|
||||||
|
|
|
@ -690,10 +690,7 @@ const etHelper = new class ETHELPER {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
++this.Settings.count;
|
++this.Settings.count;
|
||||||
console.log('Ged 8 counter: ' + this.Settings.count)
|
|
||||||
console.log('Ged 8-1 Max: ' + this.Settings.endItem)
|
|
||||||
if ( this.Settings.count >= this.Settings.endItem) {
|
if ( this.Settings.count >= this.Settings.endItem) {
|
||||||
console.log('Ged 8-3 counter break')
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -747,8 +744,6 @@ const etHelper = new class ETHELPER {
|
||||||
await this.createOutFile();
|
await this.createOutFile();
|
||||||
// Now we need to find out how many calls to make
|
// Now we need to find out how many calls to make
|
||||||
this.Settings.call = await this.getLevelCall();
|
this.Settings.call = await this.getLevelCall();
|
||||||
// Get total size of the section
|
|
||||||
this.Settings.totalItems = await this.getSectionSize();
|
|
||||||
// Get items from PMS, and populate export files
|
// Get items from PMS, and populate export files
|
||||||
await this.populateExpFiles();
|
await this.populateExpFiles();
|
||||||
await this.closeOutFile();
|
await this.closeOutFile();
|
||||||
|
|
Loading…
Add table
Reference in a new issue