#24: Filter out Telltale Games unless the episode subfolder is specified
This commit is contained in:
parent
02a93a797c
commit
8084bfa7ee
2 changed files with 5 additions and 10 deletions
|
@ -428793,16 +428793,6 @@ Sam & Max Save the World:
|
||||||
- config
|
- config
|
||||||
when:
|
when:
|
||||||
- os: windows
|
- os: windows
|
||||||
<winDocuments>/Telltale Games/*/*.save:
|
|
||||||
tags:
|
|
||||||
- save
|
|
||||||
when:
|
|
||||||
- os: windows
|
|
||||||
<winDocuments>/Telltale Games/*/prefs.prop:
|
|
||||||
tags:
|
|
||||||
- config
|
|
||||||
when:
|
|
||||||
- os: windows
|
|
||||||
gog:
|
gog:
|
||||||
id: 1207659065
|
id: 1207659065
|
||||||
steam:
|
steam:
|
||||||
|
|
|
@ -364,6 +364,11 @@ export function pathIsTooBroad(path: string): boolean {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Several games/episodes are grouped together here.
|
||||||
|
if (path.startsWith("<winDocuments>/Telltale Games/*/")) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
// Drive letters:
|
// Drive letters:
|
||||||
if (path.match(/^[a-zA-Z]:$/)) {
|
if (path.match(/^[a-zA-Z]:$/)) {
|
||||||
return true;
|
return true;
|
||||||
|
|
Reference in a new issue