mirror of
https://github.com/TheBeastLT/torrentio-scraper.git
synced 2026-03-11 17:15:37 +00:00
bump version
This commit is contained in:
parent
86cf502725
commit
4c83c8d69b
2 changed files with 3 additions and 3 deletions
|
|
@ -27,7 +27,7 @@ export const PreConfigurations = {
|
||||||
}
|
}
|
||||||
|
|
||||||
const keysToSplit = [Providers.key, LanguageOptions.key, QualityFilter.key, SizeFilter.key, DebridOptions.key];
|
const keysToSplit = [Providers.key, LanguageOptions.key, QualityFilter.key, SizeFilter.key, DebridOptions.key];
|
||||||
const keyToUppercase = [SizeFilter.key];
|
const keysToUppercase = [SizeFilter.key];
|
||||||
|
|
||||||
export function parseConfiguration(configuration) {
|
export function parseConfiguration(configuration) {
|
||||||
if (PreConfigurations[configuration]) {
|
if (PreConfigurations[configuration]) {
|
||||||
|
|
@ -44,7 +44,7 @@ export function parseConfiguration(configuration) {
|
||||||
keysToSplit
|
keysToSplit
|
||||||
.filter(key => configValues[key])
|
.filter(key => configValues[key])
|
||||||
.forEach(key => configValues[key] = configValues[key].split(',')
|
.forEach(key => configValues[key] = configValues[key].split(',')
|
||||||
.map(value => keyToUppercase.includes(key) ? value.toUpperCase() : value.toLowerCase()))
|
.map(value => keysToUppercase.includes(key) ? value.toUpperCase() : value.toLowerCase()))
|
||||||
return configValues;
|
return configValues;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ const CatalogMochs = Object.values(MochOptions).filter(moch => moch.catalog);
|
||||||
export function manifest(config = {}) {
|
export function manifest(config = {}) {
|
||||||
const defaultManifest = {
|
const defaultManifest = {
|
||||||
id: 'com.stremio.torrentio.addon',
|
id: 'com.stremio.torrentio.addon',
|
||||||
version: '0.0.13',
|
version: '0.0.14',
|
||||||
name: 'Torrentio',
|
name: 'Torrentio',
|
||||||
description: getDescription(config),
|
description: getDescription(config),
|
||||||
catalogs: getCatalogs(config),
|
catalogs: getCatalogs(config),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue