aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/utils/thunderstore
diff options
context:
space:
mode:
authorRemy Raes <raes.remy@gmail.com>2022-12-02 01:17:25 +0100
committerGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2022-12-02 01:48:27 +0100
commit88230f2c79ed5713994b0817b64b956cf07b60ad (patch)
tree6e140d6f77a22474764ad04539d5d7bcbeb59281 /src-vue/src/utils/thunderstore
parent32c5f61f434fc7572d0382e6f67cb8d4232186e2 (diff)
downloadFlightCore-88230f2c79ed5713994b0817b64b956cf07b60ad.tar.gz
FlightCore-88230f2c79ed5713994b0817b64b956cf07b60ad.zip
fix: do not display deprecated mods in thunderstore view
Diffstat (limited to 'src-vue/src/utils/thunderstore')
-rw-r--r--src-vue/src/utils/thunderstore/ThunderstoreMod.d.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-vue/src/utils/thunderstore/ThunderstoreMod.d.ts b/src-vue/src/utils/thunderstore/ThunderstoreMod.d.ts
index c14a83a0..6fddd06f 100644
--- a/src-vue/src/utils/thunderstore/ThunderstoreMod.d.ts
+++ b/src-vue/src/utils/thunderstore/ThunderstoreMod.d.ts
@@ -5,5 +5,6 @@ export interface ThunderstoreMod {
owner: string;
rating_score: number;
package_url: string;
+ is_deprecated: boolean;
versions: ThunderstoreModVersion[];
}