Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
cbartondock committed Apr 17, 2023
1 parent 5d98a01 commit 2d82910
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
* New highly simplified EmuDeck theme (only recommended for EmuDeck users as it hides parser config). Credit to @dragoonDorise.
* Everyone who has made a feature contribution is now in the about page.
* Legacy banner images now sym-linked instead of copied (reduces storage usage by 17%)
* Steam images become sources immediately after hitting save apps to steam. This means that if you have some (or many) SGDB requests time out you can just wait a few seconds and hit "save apps to steam" again and it will get only those images.

### Changed
* Major re-factor of parsers service, parsers component, and preview component. Preparation for new and more powerful preview.
Expand Down
6 changes: 5 additions & 1 deletion src/lib/vdf-screenshots-file.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { VDF_ScreenshotsData, VDF_ScreenshotItem, xRequestOptions } from "../models";
import { artworkTypes, artworkIdDict } from "./artwork-types";
import { xRequest } from './x-request';
import { VDF_Error } from './vdf-error';
import { APP } from '../variables';
Expand Down Expand Up @@ -51,7 +52,10 @@ export class VDF_ScreenshotsFile {

set extraneous(value: string[]) {
this.extraneousAppIds = value.reduce((r, e)=>{
r.push(e, ids.shortenAppId(e), ids.shortenAppId(e).concat('p'),ids.shortenAppId(e).concat('_hero'),ids.shortenAppId(e).concat('_logo'),ids.shortenAppId(e).concat('_icon'));
r.push(e);
for(const artworkType of artworkTypes) {
r.push(ids.shortenAppId(e).concat(artworkIdDict[artworkType]));
}
return r;
}, []);
}
Expand Down

0 comments on commit 2d82910

Please sign in to comment.