#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
|
||||
when:
|
||||
- os: windows
|
||||
<winDocuments>/Telltale Games/*/*.save:
|
||||
tags:
|
||||
- save
|
||||
when:
|
||||
- os: windows
|
||||
<winDocuments>/Telltale Games/*/prefs.prop:
|
||||
tags:
|
||||
- config
|
||||
when:
|
||||
- os: windows
|
||||
gog:
|
||||
id: 1207659065
|
||||
steam:
|
||||
|
|
|
@ -364,6 +364,11 @@ export function pathIsTooBroad(path: string): boolean {
|
|||
return true;
|
||||
}
|
||||
|
||||
// Several games/episodes are grouped together here.
|
||||
if (path.startsWith("<winDocuments>/Telltale Games/*/")) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Drive letters:
|
||||
if (path.match(/^[a-zA-Z]:$/)) {
|
||||
return true;
|
||||
|
|
Reference in a new issue