diff --git a/data/manifest.yaml b/data/manifest.yaml index f7c71c6a..895e1fde 100644 --- a/data/manifest.yaml +++ b/data/manifest.yaml @@ -166425,12 +166425,6 @@ ObserVRtarium: id: 634060 Observation: files: - /AppData/Local/Packages: - tags: - - save - when: - - os: windows - store: microsoft /AppData/LocalLow/No Code Studio/Observation/SaveGames: tags: - save diff --git a/data/wiki-game-cache.yaml b/data/wiki-game-cache.yaml index 5b932be8..e8d7afa7 100644 --- a/data/wiki-game-cache.yaml +++ b/data/wiki-game-cache.yaml @@ -77466,6 +77466,7 @@ ObserVRtarium: Observation: pageId: 122734 revId: 1012820 + tooBroad: true 'Observatory: A VR Variety Pack': pageId: 43075 revId: 863550 diff --git a/src/wiki.ts b/src/wiki.ts index 497e0a9c..ca17d674 100644 --- a/src/wiki.ts +++ b/src/wiki.ts @@ -315,13 +315,18 @@ export function pathIsTooBroad(path: string): boolean { return true; } - // TODO: These paths are present whether or not the game is installed. + // These paths are present whether or not the game is installed. // If possible, they should be narrowed down on the wiki. if ([ "/Documents", "/Saved Games", "/config", "/win.ini", + "/AppData", + "/AppData/Local", + "/AppData/Local/Packages", + "/AppData/LocalLow", + "/AppData/Roaming", ].includes(path)) { return true; }