remove useless broken mods
This commit is contained in:
parent
f37eb7c9a9
commit
51bea31198
10
index.toml
10
index.toml
@ -134,11 +134,6 @@ file = "mods/cit-resewn.pw.toml"
|
|||||||
hash = "44e2cc695c040b7bbca462165099fa3c56a98aa8f01104bb067dc850b65f6d02"
|
hash = "44e2cc695c040b7bbca462165099fa3c56a98aa8f01104bb067dc850b65f6d02"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/clickthrough.pw.toml"
|
|
||||||
hash = "7703705832bac583d57f9c7c4abf04a669273f3bbf047fb8b333b52e9f5bb3ed"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/cloth-config.pw.toml"
|
file = "mods/cloth-config.pw.toml"
|
||||||
hash = "b6348f94ec939f563285dc96683e61da8fc17ab2f2897be2751fa24789513691"
|
hash = "b6348f94ec939f563285dc96683e61da8fc17ab2f2897be2751fa24789513691"
|
||||||
@ -384,11 +379,6 @@ file = "mods/inventory-profiles-next.pw.toml"
|
|||||||
hash = "33c89073f71a972da05cfee8c8b00eec1549e406222b0abab659e38b42797820"
|
hash = "33c89073f71a972da05cfee8c8b00eec1549e406222b0abab659e38b42797820"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/invmove.pw.toml"
|
|
||||||
hash = "881ad6ef91c24ce547c8062685cf361b1937b4162c8a238196c8106ef62ab15d"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/iris.pw.toml"
|
file = "mods/iris.pw.toml"
|
||||||
hash = "f2170f677cce023da0b7506a0445352d99690603d70046ec5c90231016b4d3b9"
|
hash = "f2170f677cce023da0b7506a0445352d99690603d70046ec5c90231016b4d3b9"
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
name = "ClickThrough"
|
|
||||||
filename = "clickthrough-1.20-fabric0.83.0-0.4.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/Z5b0cAlD/versions/bwQT3Pqa/clickthrough-1.20-fabric0.83.0-0.4.1.jar"
|
|
||||||
hash-format = "sha1"
|
|
||||||
hash = "af4fab0a71ef09870c724a22036437070fb54952"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "Z5b0cAlD"
|
|
||||||
version = "bwQT3Pqa"
|
|
@ -1,13 +0,0 @@
|
|||||||
name = "InvMove"
|
|
||||||
filename = "InvMove-1.20-0.8.4-Fabric.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/REfW2AEX/versions/W5h8ZaUy/InvMove-1.20-0.8.4-Fabric.jar"
|
|
||||||
hash-format = "sha1"
|
|
||||||
hash = "8151113885920d2d67609dfa8e2fc7ac70a807d8"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "REfW2AEX"
|
|
||||||
version = "W5h8ZaUy"
|
|
@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
|
|||||||
[index]
|
[index]
|
||||||
file = "index.toml"
|
file = "index.toml"
|
||||||
hash-format = "sha256"
|
hash-format = "sha256"
|
||||||
hash = "70b72e3664c228509e30e4cac78692f358eef1d0773f30a57781227899bb0133"
|
hash = "a77cc56b708fa6c9f102af73efd904abd951ffc3b3e7e21c57bf992f4ed06ac2"
|
||||||
|
|
||||||
[versions]
|
[versions]
|
||||||
fabric = "0.14.22"
|
fabric = "0.14.22"
|
||||||
|
1104
review/all.json
1104
review/all.json
File diff suppressed because one or more lines are too long
@ -28,11 +28,20 @@ export def "showMods" [...slugs: string] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export def "diffInstalled" [] {
|
export def "diffInstalled" [] {
|
||||||
|
let tracked = open all.json | where not review | get slug
|
||||||
let installed = ls ../mods | get name | parse ../mods/{slug}.pw.toml | get slug
|
let installed = ls ../mods | get name | parse ../mods/{slug}.pw.toml | get slug
|
||||||
open all.json | insert installed { |row| $row.slug in $installed } | where not installed | select slug kind review installed
|
(
|
||||||
|
($tracked | append $installed) |
|
||||||
|
uniq |
|
||||||
|
each {{
|
||||||
|
slug: $in,
|
||||||
|
tracked: ($in in $tracked),
|
||||||
|
installed: ($in in $installed)
|
||||||
|
}} |
|
||||||
|
where { $in.tracked != $in.installed }
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export def "addMods" [...slugs: string, --review: bool = false] {
|
export def "addMods" [...slugs: string, --review: bool = false] {
|
||||||
let newMods = (
|
let newMods = (
|
||||||
$slugs |
|
$slugs |
|
||||||
|
Loading…
Reference in New Issue
Block a user