From 5d668627377664b7d0e5edb1fdef186ee659b5ae Mon Sep 17 00:00:00 2001 From: Raicuparta Date: Mon, 26 Dec 2022 13:32:36 +0000 Subject: [PATCH] Upload mod thumbnails to database (#559) * cleanup * upload thumbnails * it was all broken, better now * ignore svgs * ignore shields.io images * update main database workflow with thumbnails --- .github/workflows/update-releases.yml | 23 +- .github/workflows/upload-pr-artifact.yml | 4 +- .gitignore | 2 + fetch-mods/action.yml | 6 +- fetch-mods/fetch-mods.ts | 11 +- fetch-mods/generate-mod-thumbnail.ts | 125 + fetch-mods/index.ts | 28 +- fetch-mods/package.json | 8 +- fetch-mods/pnpm-lock.yaml | 298 +- fetch-mods/test/mods.json | 2081 ++++++-- fetch-mods/test/previous-database.json | 5583 ++++++++++++++++++---- 11 files changed, 6756 insertions(+), 1413 deletions(-) create mode 100644 fetch-mods/generate-mod-thumbnail.ts diff --git a/.github/workflows/update-releases.yml b/.github/workflows/update-releases.yml index 42c72fdcf3..5559813664 100644 --- a/.github/workflows/update-releases.yml +++ b/.github/workflows/update-releases.yml @@ -17,9 +17,11 @@ jobs: with: fetch-depth: 0 token: ${{ secrets.GH_TOKEN }} + - uses: actions/setup-node@v3 with: node-version: "16" + - name: Cache pnpm modules uses: actions/cache@v3 with: @@ -27,17 +29,28 @@ jobs: key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: | ${{ runner.os }}- + - uses: pnpm/action-setup@v2 with: version: 6.23.6 run_install: true + - name: Build run: | cd fetch-mods pnpm run build + - name: Get local Mod Database file id: local-mods run: echo "mods_output=$(< ./mods.json sed ':a;N;$!ba;s/\n/ /g')" >> $GITHUB_ENV + + - name: Checkout database repo + uses: actions/checkout@v3 + with: + ref: master + fetch-depth: 0 + path: database + - name: Fetch mod releases and manifests id: fetch-mods uses: ./fetch-mods @@ -45,22 +58,16 @@ jobs: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} discord-mod-hook-urls: ${{ secrets.DISCORD_MOD_HOOK_URLS }} mods: "${{ env.mods_output }}" - out-file: "database.json" + out-directory: database discord-hook-url: "${{ secrets.DISCORD_HOOK_URL }}" discord-mod-update-role-id: "${{ secrets.DISCORD_MOD_UPDATE_ROLE_ID }}" discord-new-mod-role-id: "${{ secrets.DISCORD_NEW_MOD_ROLE_ID }}" google-service-account: "${{ secrets.GOOGLE_SERVICE_ACCOUNT }}" - - run: mv database.json .. - - uses: actions/checkout@v3 - with: - ref: "master" - fetch-depth: 0 - - run: cp ../database.json . + - name: Commit changes uses: stefanzweifel/git-auto-commit-action@v4 with: branch: "master" - file_pattern: "database.json" commit_message: Update mod database commit_user_name: Outer Wilds Mod Database commit_user_email: database@outerwildsmods.com diff --git a/.github/workflows/upload-pr-artifact.yml b/.github/workflows/upload-pr-artifact.yml index 7a4470aba5..0bc3185225 100644 --- a/.github/workflows/upload-pr-artifact.yml +++ b/.github/workflows/upload-pr-artifact.yml @@ -42,7 +42,7 @@ jobs: id: fetch-mods uses: ./fetch-mods with: - out-file: database.json + out-directory: output GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} mods: "${{ env.mods_output }}" google-service-account: "${{ secrets.GOOGLE_SERVICE_ACCOUNT }}" @@ -50,4 +50,4 @@ jobs: - uses: actions/upload-artifact@v3 with: name: database-preview - path: database.json + path: output diff --git a/.gitignore b/.gitignore index b3204ffac2..3c4d1be079 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ **/node_modules **/build +output +tmp diff --git a/fetch-mods/action.yml b/fetch-mods/action.yml index f6f53180c1..dbae5e259d 100644 --- a/fetch-mods/action.yml +++ b/fetch-mods/action.yml @@ -1,9 +1,9 @@ name: "Get mods" description: "Gets mod releases" inputs: - out-file: - description: "Optional JSON file path to write to" - required: false + out-directory: + description: "Directory where database files will be written to" + required: true mods: description: "Initial JSON mod database to modify" required: true diff --git a/fetch-mods/fetch-mods.ts b/fetch-mods/fetch-mods.ts index 9ab3a64394..eda39b7f3a 100644 --- a/fetch-mods/fetch-mods.ts +++ b/fetch-mods/fetch-mods.ts @@ -1,3 +1,4 @@ +import { generateModThumbnail } from "./generate-mod-thumbnail"; import { getOctokit } from "./get-octokit"; import { filterFulfilledPromiseSettleResults } from "./promises"; @@ -9,7 +10,7 @@ const downloadCountOffsets: { [key: string]: number } = { "Jammer.jammerlore": 373, }; -export async function fetchMods(modsJson: string) { +export async function fetchMods(modsJson: string, outputDirectory: string) { const modDb: ModDB = JSON.parse(modsJson); const modInfos = modDb.mods; const octokit = getOctokit(); @@ -43,6 +44,14 @@ export async function fetchMods(modsJson: string) { const readme = await getReadme(); + if (readme && readme.downloadUrl) { + generateModThumbnail( + modInfo.uniqueName, + readme.downloadUrl, + outputDirectory + ); + } + const fullReleaseList = ( await octokit.paginate(octokit.rest.repos.listReleases, { owner, diff --git a/fetch-mods/generate-mod-thumbnail.ts b/fetch-mods/generate-mod-thumbnail.ts new file mode 100644 index 0000000000..72530d3d29 --- /dev/null +++ b/fetch-mods/generate-mod-thumbnail.ts @@ -0,0 +1,125 @@ +import { Parser } from "commonmark"; +import sharp from "sharp"; +import fs, { promises as fsp } from "fs"; +import path from "path"; +import fetch from "node-fetch"; + +export const thumbnailSize = { + width: 300, + height: 100, +} as const; + +export const generateModThumbnail = async ( + modUniqueName: string, + readmeUrl: string, + outputDirectory: string +) => { + const readme = await getModReadme(readmeUrl); + + if (!readme) { + return; + } + + const firstImageUrl = getFirstImageUrl(readme, getRawContentUrl(readmeUrl)); + + if (firstImageUrl == null) return; + + const rawImageFilePath = await downloadImage(firstImageUrl, modUniqueName); + + if (rawImageFilePath == null) { + console.log( + `Failed to download image ${firstImageUrl} for mod ${modUniqueName}` + ); + return; + } + + const sharpImage = sharp(rawImageFilePath, { + animated: true, + limitInputPixels: false, + }); + + const fileOutputDir = getPath(path.join(outputDirectory, "thumbnails")); + + if (!fs.existsSync(fileOutputDir)) { + await fsp.mkdir(fileOutputDir, { recursive: true }); + } + + const resizedSharpImage = sharpImage + .resize({ ...thumbnailSize, fit: "cover" }) + .webp({ smartSubsample: true }); + + const optimizedImagePath = path.join(fileOutputDir, `${modUniqueName}.webp`); + const resizedImage = await resizedSharpImage.toFile(optimizedImagePath); +}; + +export const getModReadme = async (url: string): Promise => { + const response = await fetch(url); + return response.status === 200 ? response.text() : null; +}; + +const getPath = (relativePath: string) => + path.join(process.cwd(), relativePath); + +export const getRawContentUrl = (readmeUrl: string) => + readmeUrl.replace(/\/(?!.*\/).+/, ""); + +export const getFirstImageUrl = ( + markdown: string, + baseUrl: string +): string | null => { + if (!markdown) return null; + + const parsed = new Parser().parse(markdown); + const walker = parsed.walker(); + let event; + while ((event = walker.next())) { + const node = event.node; + if ( + node.type === "image" && + node.destination && + !node.destination.endsWith(".svg") && + !node.destination.startsWith("https://img.shields.io/") && + !node.destination.startsWith("http://img.shields.io/") + ) { + const imageUrl = node.destination; + + const fullUrl = imageUrl.startsWith("http") + ? // GitHub allows embedding images that actually point to webpages on github.com, so we have to replace the URLs here + imageUrl.replace( + /^https?:\/\/github.com\/(.+)\/(.+)\/blob\/(.+)\//gm, + "https://raw.githubusercontent.com/$1/$2/$3/" + ) + : // For relative URLs we also have to resolve them + `${baseUrl}/${imageUrl}`; + + return fullUrl; + } + } + + return null; +}; + +export const downloadImage = async ( + imageUrl: string, + fileName: string +): Promise => { + const response = await fetch(imageUrl); + + if (!response.ok) { + return null; + } + + const temporaryDirectory = "tmp/raw-thumbnails"; + + if (!fs.existsSync(temporaryDirectory)) { + await fsp.mkdir(temporaryDirectory, { recursive: true }); + } + + const relativeImagePath = `${temporaryDirectory}/${fileName}`; + const fullImagePath = getPath(relativeImagePath); + + const image = await response.arrayBuffer(); + await fsp.writeFile(fullImagePath, Buffer.from(image)); + + return fullImagePath; +}; diff --git a/fetch-mods/index.ts b/fetch-mods/index.ts index 66f0171855..a79d7d423a 100644 --- a/fetch-mods/index.ts +++ b/fetch-mods/index.ts @@ -1,4 +1,7 @@ import * as core from "@actions/core"; +import fs, { promises as fsp, writeFile } from "fs"; +import path from "path"; + import { sendDiscordNotifications } from "./send-discord-notifications"; import { fetchMods } from "./fetch-mods"; import { getDiff } from "./get-diff"; @@ -7,13 +10,11 @@ import { fetchModManager } from "./fetch-mod-manager"; import { toJsonString } from "./to-json-string"; import { getViewCounts } from "./get-view-counts"; import { getInstallCounts } from "./get-install-counts"; - -import { writeFile } from "fs"; import { getSettledResult } from "./promises"; import { rateLimitReached } from "./get-octokit"; enum Input { - outFile = "out-file", + outDirectory = "out-directory", mods = "mods", discordHookUrl = "discord-hook-url", discordModUpdateRoleId = "discord-mod-update-role-id", @@ -47,7 +48,10 @@ const measureTime = (promise: Promise, name: string) => { async function getAsyncStuff() { const promises = [ measureTime(fetchModManager(), "fetchModManager"), - measureTime(fetchMods(core.getInput(Input.mods)), "fetchMods"), + measureTime( + fetchMods(core.getInput(Input.mods), core.getInput(Input.outDirectory)), + "fetchMods" + ), measureTime( getViewCounts(core.getInput(Input.googleServiceAccount)), "getViewCounts" @@ -107,14 +111,20 @@ async function run() { core.setOutput(Output.releases, databaseJson); } - const outputFilePath = core.getInput(Input.outFile); + const outputDirectoryPath = core.getInput(Input.outDirectory); - if (outputFilePath) { - writeFile(outputFilePath, databaseJson, (error) => { - if (error) console.log("Error Saving To File:", error); - }); + if (!fs.existsSync(outputDirectoryPath)) { + await fsp.mkdir(outputDirectoryPath, { recursive: true }); } + writeFile( + path.join(outputDirectoryPath, "database.json"), + databaseJson, + (error) => { + if (error) console.log("Error Saving To File:", error); + } + ); + const discordHookUrl = core.getInput(Input.discordHookUrl); if (discordHookUrl) { diff --git a/fetch-mods/package.json b/fetch-mods/package.json index 7f5e2642d5..0a33c25649 100644 --- a/fetch-mods/package.json +++ b/fetch-mods/package.json @@ -19,8 +19,14 @@ "@octokit/action": "^3.18.1", "@octokit/plugin-retry": "^3.0.9", "@octokit/plugin-throttling": "^3.7.0", + "@types/commonmark": "^0.27.5", "@types/node": "16", + "@types/node-fetch": "v2", + "@types/sharp": "^0.31.0", "axios": "^0.26.1", + "commonmark": "^0.30.0", + "node-fetch": "v2", + "sharp": "^0.31.3", "typescript": "^4.8.4" } -} \ No newline at end of file +} diff --git a/fetch-mods/pnpm-lock.yaml b/fetch-mods/pnpm-lock.yaml index 3778961a23..fdb4928c1e 100644 --- a/fetch-mods/pnpm-lock.yaml +++ b/fetch-mods/pnpm-lock.yaml @@ -8,8 +8,14 @@ specifiers: '@octokit/action': ^3.18.1 '@octokit/plugin-retry': ^3.0.9 '@octokit/plugin-throttling': ^3.7.0 + '@types/commonmark': ^0.27.5 '@types/node': '16' + '@types/node-fetch': v2 + '@types/sharp': ^0.31.0 axios: ^0.26.1 + commonmark: ^0.30.0 + node-fetch: v2 + sharp: ^0.31.3 typescript: ^4.8.4 dependencies: @@ -20,8 +26,14 @@ dependencies: '@octokit/action': 3.18.1 '@octokit/plugin-retry': 3.0.9 '@octokit/plugin-throttling': 3.7.0 + '@types/commonmark': 0.27.5 '@types/node': 16.11.17 + '@types/node-fetch': 2.6.2 + '@types/sharp': 0.31.0 axios: 0.26.1 + commonmark: 0.30.0 + node-fetch: 2.6.7 + sharp: 0.31.3 typescript: 4.8.4 packages: @@ -289,6 +301,10 @@ packages: engines: {node: '>= 6'} dev: false + /@types/commonmark/0.27.5: + resolution: {integrity: sha512-vIqgmHyLsc8Or3EWLz6QkhI8/v61FNeH0yxRupA7VqSbA2eFMoHHJAhZSHudplAV89wqg1CKSmShE016ziRXuw==} + dev: false + /@types/linkify-it/3.0.2: resolution: {integrity: sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA==} dev: false @@ -308,10 +324,23 @@ packages: resolution: {integrity: sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==} dev: false + /@types/node-fetch/2.6.2: + resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==} + dependencies: + '@types/node': 16.11.17 + form-data: 3.0.1 + dev: false + /@types/node/16.11.17: resolution: {integrity: sha512-C1vTZME8cFo8uxY2ui41xcynEotVkczIVI5AjLmy5pkpBv/FtG+jhtOlfcPysI8VRVwoOMv6NJm44LGnoMSWkw==} dev: false + /@types/sharp/0.31.0: + resolution: {integrity: sha512-nwivOU101fYInCwdDcH/0/Ru6yIRXOpORx25ynEOc6/IakuCmjOAGpaO5VfUl4QkDtUC6hj+Z2eCQvgXOioknw==} + dependencies: + '@types/node': 16.11.17 + dev: false + /abort-controller/3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} engines: {node: '>=6.5'} @@ -375,6 +404,10 @@ packages: tslib: 2.3.1 dev: false + /asynckit/0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + dev: false + /axios/0.26.1: resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} dependencies: @@ -399,6 +432,14 @@ packages: resolution: {integrity: sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A==} dev: false + /bl/4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.0 + dev: false + /bluebird/3.7.2: resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} dev: false @@ -424,6 +465,13 @@ packages: resolution: {integrity: sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=} dev: false + /buffer/5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: false + /bytes/3.1.2: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} @@ -451,6 +499,10 @@ packages: supports-color: 7.2.0 dev: false + /chownr/1.1.4: + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + dev: false + /cliui/7.0.4: resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} dependencies: @@ -470,6 +522,38 @@ packages: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} dev: false + /color-string/1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + dev: false + + /color/4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + dependencies: + color-convert: 2.0.1 + color-string: 1.9.1 + dev: false + + /combined-stream/1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + dependencies: + delayed-stream: 1.0.0 + dev: false + + /commonmark/0.30.0: + resolution: {integrity: sha512-j1yoUo4gxPND1JWV9xj5ELih0yMv1iCWDG6eEQIPLSWLxzCXiFoyS7kvB+WwU+tZMf4snwJMMtaubV0laFpiBA==} + hasBin: true + dependencies: + entities: 2.0.3 + mdurl: 1.0.1 + minimist: 1.2.6 + string.prototype.repeat: 0.2.0 + dev: false + /concat-map/0.0.1: resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} dev: false @@ -495,6 +579,18 @@ packages: ms: 2.1.2 dev: false + /decompress-response/6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} + dependencies: + mimic-response: 3.1.0 + dev: false + + /deep-extend/0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + dev: false + /deep-is/0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} dev: false @@ -509,6 +605,11 @@ packages: vm2: 3.9.9 dev: false + /delayed-stream/1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + dev: false + /depd/2.0.0: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} engines: {node: '>= 0.8'} @@ -518,6 +619,11 @@ packages: resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} dev: false + /detect-libc/2.0.1: + resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==} + engines: {node: '>=8'} + dev: false + /duplexify/4.1.2: resolution: {integrity: sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==} dependencies: @@ -543,6 +649,10 @@ packages: once: 1.4.0 dev: false + /entities/2.0.3: + resolution: {integrity: sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==} + dev: false + /entities/2.1.0: resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==} dev: false @@ -610,6 +720,11 @@ packages: engines: {node: '>=6'} dev: false + /expand-template/2.0.3: + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} + engines: {node: '>=6'} + dev: false + /extend/3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} dev: false @@ -637,6 +752,19 @@ packages: optional: true dev: false + /form-data/3.0.1: + resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} + engines: {node: '>= 6'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: false + + /fs-constants/1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + dev: false + /fs-extra/8.1.0: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} engines: {node: '>=6 <7 || >=8'} @@ -738,6 +866,10 @@ packages: - supports-color dev: false + /github-from-package/0.0.0: + resolution: {integrity: sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=} + dev: false + /glob/7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: @@ -935,6 +1067,10 @@ packages: safer-buffer: 2.1.2 dev: false + /ieee754/1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + dev: false + /inflight/1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: @@ -946,10 +1082,18 @@ packages: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} dev: false + /ini/1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: false + /ip/1.1.5: resolution: {integrity: sha512-rBtCAQAJm8A110nbwn6YdveUnuZH3WrC36IwkRXxDnq53JvXA2NVQvB7IHyKomxK1MJ4VDNw3UtFDdXQ+AvLYA==} dev: false + /is-arrayish/0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + dev: false + /is-fullwidth-code-point/3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} @@ -1108,6 +1252,23 @@ packages: resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} dev: false + /mime-db/1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + dev: false + + /mime-types/2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: false + + /mimic-response/3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + dev: false + /minimatch/3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: @@ -1125,6 +1286,10 @@ packages: resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} dev: false + /mkdirp-classic/0.5.3: + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + dev: false + /mkdirp/1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} @@ -1135,11 +1300,26 @@ packages: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} dev: false + /napi-build-utils/1.0.2: + resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} + dev: false + /netmask/2.0.2: resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} engines: {node: '>= 0.4.0'} dev: false + /node-abi/3.30.0: + resolution: {integrity: sha512-qWO5l3SCqbwQavymOmtTVuCWZE23++S+rxyoHjXqUmPyzRcaoI4lA2gO55/drddGnedAyjA7sk76SfQ5lfUMnw==} + engines: {node: '>=10'} + dependencies: + semver: 7.3.8 + dev: false + + /node-addon-api/5.0.0: + resolution: {integrity: sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==} + dev: false + /node-fetch/2.6.7: resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} engines: {node: 4.x || >=6.0.0} @@ -1215,6 +1395,25 @@ packages: engines: {node: '>=0.10.0'} dev: false + /prebuild-install/7.1.1: + resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==} + engines: {node: '>=10'} + hasBin: true + dependencies: + detect-libc: 2.0.1 + expand-template: 2.0.3 + github-from-package: 0.0.0 + minimist: 1.2.6 + mkdirp-classic: 0.5.3 + napi-build-utils: 1.0.2 + node-abi: 3.30.0 + pump: 3.0.0 + rc: 1.2.8 + simple-get: 4.0.1 + tar-fs: 2.1.1 + tunnel-agent: 0.6.0 + dev: false + /prelude-ls/1.1.2: resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} engines: {node: '>= 0.8.0'} @@ -1286,6 +1485,13 @@ packages: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} dev: false + /pump/3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: false + /qs/6.11.0: resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} engines: {node: '>=0.6'} @@ -1303,6 +1509,16 @@ packages: unpipe: 1.0.0 dev: false + /rc/1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.6 + strip-json-comments: 2.0.1 + dev: false + /readable-stream/1.1.14: resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} dependencies: @@ -1365,10 +1581,33 @@ packages: lru-cache: 6.0.0 dev: false + /semver/7.3.8: + resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: false + /setprototypeof/1.2.0: resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} dev: false + /sharp/0.31.3: + resolution: {integrity: sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==} + engines: {node: '>=14.15.0'} + requiresBuild: true + dependencies: + color: 4.2.3 + detect-libc: 2.0.1 + node-addon-api: 5.0.0 + prebuild-install: 7.1.1 + semver: 7.3.8 + simple-get: 4.0.1 + tar-fs: 2.1.1 + tunnel-agent: 0.6.0 + dev: false + /side-channel/1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: @@ -1377,6 +1616,24 @@ packages: object-inspect: 1.12.2 dev: false + /simple-concat/1.0.1: + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} + dev: false + + /simple-get/4.0.1: + resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} + dependencies: + decompress-response: 6.0.0 + once: 1.4.0 + simple-concat: 1.0.1 + dev: false + + /simple-swizzle/0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + dependencies: + is-arrayish: 0.3.2 + dev: false + /smart-buffer/4.2.0: resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} @@ -1426,6 +1683,10 @@ packages: strip-ansi: 6.0.1 dev: false + /string.prototype.repeat/0.2.0: + resolution: {integrity: sha512-1BH+X+1hSthZFW+X+JaUkjkkUPwIlLEMJBLANN3hOob3RhEk5snLWNECDnYbgn/m5c5JV7Ersu1Yubaf+05cIA==} + dev: false + /string_decoder/0.10.31: resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} dev: false @@ -1443,6 +1704,11 @@ packages: ansi-regex: 5.0.1 dev: false + /strip-json-comments/2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} + dev: false + /strip-json-comments/3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} @@ -1459,6 +1725,26 @@ packages: resolution: {integrity: sha512-y3JaeRSplks6NYQuCOj3ZFMO3j60rTwbuKCvZxsAraGYH2epusatvZ0baZYA01WsGqJBq/Dl6vOrMUJqyMj8kA==} dev: false + /tar-fs/2.1.1: + resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + dependencies: + chownr: 1.1.4 + mkdirp-classic: 0.5.3 + pump: 3.0.0 + tar-stream: 2.2.0 + dev: false + + /tar-stream/2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + dependencies: + bl: 4.1.0 + end-of-stream: 1.4.4 + fs-constants: 1.0.0 + inherits: 2.0.4 + readable-stream: 3.6.0 + dev: false + /tmp/0.2.1: resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} engines: {node: '>=8.17.0'} @@ -1477,13 +1763,19 @@ packages: dev: false /tr46/0.0.3: - resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=} + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} dev: false /tslib/2.3.1: resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} dev: false + /tunnel-agent/0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + dependencies: + safe-buffer: 5.2.1 + dev: false + /tunnel/0.0.6: resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} @@ -1553,11 +1845,11 @@ packages: dev: false /webidl-conversions/3.0.1: - resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=} + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} dev: false /whatwg-url/5.0.0: - resolution: {integrity: sha1-lmRU6HZUYuN2RNNib2dCzotwll0=} + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 diff --git a/fetch-mods/test/mods.json b/fetch-mods/test/mods.json index 37e380b315..f8aacce599 100644 --- a/fetch-mods/test/mods.json +++ b/fetch-mods/test/mods.json @@ -1,325 +1,1756 @@ -[ - { - "name": "OWML", - "uniqueName": "Alek.OWML", - "repo": "amazingalek/owml", - "required": true, - "utility": true - }, - { - "name": "NomaiVR", - "uniqueName": "Raicuparta.NomaiVR", - "repo": "Raicuparta/nomai-vr" - }, - { - "name": "Quantum Space Buddies", - "uniqueName": "Raicuparta.QuantumSpaceBuddies", - "repo": "misternebula/quantum-space-buddies" - }, - { - "name": "Light Bramble", - "uniqueName": "Alek.LightBramble", - "repo": "amazingalek/owml-light-bramble" - }, - { - "name": "MN-InputHandler", - "uniqueName": "misternebula.MN-InputHandler", - "repo": "misternebula/InputHandler", - "utility": true - }, - { - "name": "FreeCam", - "uniqueName": "misternebula.FreeCam", - "repo": "misternebula/FreeCam" - }, - { - "name": "Crouch Mod", - "uniqueName": "Alek.CrouchMod", - "repo": "amazingalek/owml-crouch-mod" - }, - { - "name": "Clock", - "uniqueName": "clubby789.OWClock", - "repo": "clubby789/OWClock" - }, - { - "name": "HD Screenshot", - "uniqueName": "Alek.Cammie", - "repo": "amazingalek/owml-cammie" - }, - { - "name": "Menu Framework", - "uniqueName": "_nebula.MenuFramework", - "repo": "misternebula/MenuFramework", - "utility": true - }, - { - "name": "ScoutStreaming", - "uniqueName": "Vesper.ScoutStreaming", - "repo": "Vesper-Works/Scout-Streaming" - }, - { - "name": "Vesper's Assorted OuterWilds Shaders", - "uniqueName": "Vesper.VespersAssortedOuterWildsShaders", - "repo": "Vesper-Works/Vesper-s-Assorted-OuterWilds-Shaders" - }, - { - "name": "Outer Wilds Online", - "uniqueName": "Vesper.OuterWildsMMO", - "repo": "Vesper-Works/OuterWildsOnline" - }, - { - "name": "Cheat and Debug Menu", - "uniqueName": "Glitch.AltDebugMenu", - "repo": "glitchewski/OWML.Glitch.CheatAndDebugMenu" - }, - { - "name": "Cheats Mod", - "uniqueName": "PacificEngine.CheatsMod", - "repo": "PacificEngine/OW_CheatsMod" - }, - { - "name": "Difficulty Mod", - "uniqueName": "PacificEngine.OW_HardMode", - "repo": "PacificEngine/OW_HardMode" - }, - { - "name": "Peaceful Ghosts", - "uniqueName": "Leadpogrommer.PeacefulGhosts", - "repo": "leadpogrommer/PeacefulGhosts" - }, - { - "name": "SlowTime", - "uniqueName": "dnlwtsn.SlowTime", - "repo": "dwatson251/ow-slowtime" - }, - { - "name": "OW Smooth Thrust", - "uniqueName": "TruAI.SmoothThrust", - "repo": "TAImatem/OW_SmoothThrust" - }, - { - "name": "Randomizer", - "uniqueName": "PacificEngine.OW_Randomizer", - "repo": "PacificEngine/OW_Randomizer" - }, - { - "name": "PacificEngine's Common Resources", - "uniqueName": "PacificEngine.OW_CommonResources", - "repo": "PacificEngine/OW_CommonResources", - "utility": true - }, - { - "name": "No Alt Tab Pause", - "uniqueName": "lStewieAl.RunInBackground", - "repo": "lStewieAl/OuterWilds-NoAltTabPause" - }, - { - "name": "Echoes of the Caribbean", - "uniqueName": "tealhelix.EotE-RideMusic", - "repo": "tealhelix/ow-mod-eote-ridemusic" - }, - { - "name": "Third Person Camera", - "uniqueName": "xen.ThirdPersonCamera", - "repo": "xen-42/outer-wilds-third-person-camera" - }, - { - "name": "NomaiVR Online Patches", - "uniqueName": "Artum.NomaiVROnlinePatches", - "repo": "artumino/NomaiVROnlinePatches", - "parent": "Raicuparta.NomaiVR" - }, - { - "name": "NomaiVR FFR", - "uniqueName": "Artum.NomaiVRFoveated", - "repo": "artumino/NomaiVR-FixedFoveatedRendering", - "parent": "Raicuparta.NomaiVR" - }, - { - "name": "Static Camera", - "uniqueName": "xen.StaticCamera", - "repo": "xen-42/outer-wilds-static-camera" - }, - { - "name": "Daydream", - "uniqueName": "xen.DayDream", - "repo": "xen-42/outer-wilds-day-dream" - }, - { - "name": "EotE Brighter Dreams", - "uniqueName": "Heelio.EotEBrighterDreams", - "repo": "Heelio/EotE-Brighter-Dreams" - }, - { - "name": "Unity Explorer", - "uniqueName": "Vesper.UnityExplorer", - "repo": "Vesper-Works/Unity-Explorer-For-Outer-Wilds" - }, - { - "name": "Half-Life Overhaul", - "uniqueName": "Vesper.HalfLifeOverhaul", - "repo": "Vesper-Works/OuterWildsHalf-Life" - }, - { - "name": "Auto Resume", - "uniqueName": "Vesper.AutoResume", - "repo": "Vesper-Works/AutoResume" - }, - { - "name": "Outer Thomas Echoes of the Tank Engine", - "uniqueName": "xen.TankEngine", - "repo": "xen-42/outer-wilds-tank-engine" - }, - { - "name": "Majora's Mask's Moon", - "uniqueName": "xen.MajorasMask", - "repo": "xen-42/outer-wilds-majoras-mask" - }, - { - "name": "New Horizons", - "uniqueName": "xen.NewHorizons", - "repo": "xen-42/outer-wilds-new-horizons" - }, - { - "name": "New Horizons Examples", - "uniqueName": "xen.NewHorizonsExamples", - "repo": "xen-42/ow-new-horizons-examples", - "parent": "xen.NewHorizons" - }, - { - "name": "Real Solar System", - "uniqueName": "xen.RealSolarSystem", - "repo": "xen-42/outer-wilds-real-solar-system", - "parent": "xen.NewHorizons" - }, - { - "name": "Atropos", - "uniqueName": "Titch.OWAtropos", - "repo": "TitchMW/OWAtropos", - "parent": "xen.NewHorizons" - }, - { - "name": "ElliePlanets!", - "uniqueName": "Ellie3.ElliePlanets", - "repo": "ellie3-OW/ElliePlanets", - "parent": "xen.NewHorizons" - }, - { - "name": "Teeny Hatchling", - "uniqueName": "Owen013.TeenyHatchling", - "repo": "Owen013/Teeny-Hatchling" - }, - { - "name": "Movement Mod", - "uniqueName": "Owen013.MovementMod", - "repo": "Owen013/Movement-Mod" - }, - { - "name": "Ship Log Slide Reel Player", - "uniqueName": "dgarro.ShipLogSlideReelPlayer", - "repo": "dgarroDC/ShipLogSlideReelPlayer" - }, - { - "name": "Outer Wilds Galaxy", - "uniqueName": "Jammer.OuterWildsGalaxy", - "repo": "Jammer232/Outer-Wilds-Galaxy", - "parent": "xen.NewHorizons" - }, - { - "name": "Signals+", - "uniqueName": "xen.SignalsPlus", - "repo": "xen-42/outer-wilds-signals-plus", - "parent": "xen.NewHorizons" - }, - { - "name": "Save Editor", - "uniqueName": "Bwc9876.SaveEditor", - "repo": "Bwc9876/OW-SaveEditor" - }, - { - "name": "Meteor Launching", - "uniqueName": "12090113.MeteorLaunching", - "repo": "12090113/outer-wilds-meteor-launching" - }, - { - "name": "Slate Simulator", - "uniqueName": "Bwc9876.SlatePOV", - "repo": "Bwc9876/OW-Slate-Simulator" - }, - { - "name": "TARDIS from Doctor Who", - "uniqueName": "TitchMW.tardisfromdoctorwho", - "repo": "TitchMW/tardisfromdoctorwho", - "parent": "xen.NewHorizons" - }, - { - "name": "Solar Neighbourhood", - "uniqueName": "ErroneousCreationist.solarneighbourhood", - "repo": "ErroneousCreationist/solarneighbourhood", - "parent": "xen.NewHorizons" - }, - { - "name": "Vanilla Main Menu", - "uniqueName": "artificial.VanillaMainMenu", - "repo": "artificialparanoia/VanillaMainMenu" - }, - { - "name": "Interstellar: Gargantua", - "uniqueName": "Tandicase.interstellargargantua", - "repo": "Tandicase/interstellargargantua", - "parent": "xen.NewHorizons" - }, - { - "name": "Outer Wilds Korean Translation", - "uniqueName": "milesand.OWKT", - "repo": "milesand/outer-wilds-korean-translation" - }, - { - "name": "Astroneer Solar System", - "uniqueName": "ErroneousCreationist.astroneersolarsystem", - "repo": "ErroneousCreationist/astroneersolarsystem", - "parent": "xen.NewHorizons" - }, - { - "name": "Black Hole Portal Gun", - "uniqueName": "Book.BlackHolePortalGun", - "repo": "Nageld/Outer-Wilds-Black-Hole-Portal-Gun" - }, - { - "name": "Outer Wario Echoes of the Waaaaaaaaaaah", - "uniqueName": "xen.OuterWario", - "repo": "xen-42/outer-wilds-wario" - }, - { - "name": "Suicide Mod", - "uniqueName": "Gurrenm3.SuicideMod", - "repo": "gurrenm3/OuterWilds_SuicideMod" - }, - { - "name": "Outer Wilds Music Player", - "uniqueName": "Titch.OWMusicPlayer", - "repo": "TitchMW/outerwildsmusicplayer" - }, - { - "name": "Collider Visualizer", - "uniqueName": "Locochoco.ColliderVisualizer", - "repo": "ShoosGun/ColliderVisualizer" - }, - { - "name": "Archaeologist Achievement Helper", - "uniqueName": "dgarro.ArchaeologistAchievementHelper", - "repo": "dgarroDC/ArchaeologistAchievementHelper" - }, - { - "name": "Enter the Warioverse", - "uniqueName": "Roggsy.enterthewarioverse", - "repo": "Roggsy/enterthewarioverse", - "parent": "xen.NewHorizons" - }, - { - "name": "21st Century Anglerfish", - "uniqueName": "mrmeep321.Angler", - "repo": "mrmeep321/21stCenturyAnglerfish" - } -] \ No newline at end of file +{ + "$schema": "./mods.schema.json", + "mods": [ + { + "authorDisplay": "Alek & friends", + "name": "OWML", + "repo": "amazingalek/owml", + "required": true, + "tags": [ + "library" + ], + "uniqueName": "Alek.OWML", + "utility": true + }, + { + "name": "NomaiVR", + "repo": "Raicuparta/nomai-vr", + "authorDisplay": "Raicuparta & Artum", + "tags": [ + "gameplay", + "integration" + ], + "uniqueName": "Raicuparta.NomaiVR" + }, + { + "name": "Quantum Space Buddies", + "repo": "misternebula/quantum-space-buddies", + "tags": [ + "gameplay", + "integration" + ], + "uniqueName": "Raicuparta.QuantumSpaceBuddies" + }, + { + "name": "Light Bramble", + "repo": "amazingalek/owml-light-bramble", + "tags": [ + "audiovisual" + ], + "uniqueName": "Alek.LightBramble" + }, + { + "name": "FreeCam", + "repo": "misternebula/FreeCam", + "tags": [ + "tool" + ], + "uniqueName": "misternebula.FreeCam" + }, + { + "name": "Crouch Mod", + "repo": "amazingalek/owml-crouch-mod", + "tags": [ + "gameplay" + ], + "uniqueName": "Alek.CrouchMod" + }, + { + "name": "Clock", + "repo": "clubby789/OWClock", + "tags": [ + "tool" + ], + "uniqueName": "clubby789.OWClock" + }, + { + "name": "HD Screenshot", + "repo": "amazingalek/owml-cammie", + "tags": [ + "tool" + ], + "uniqueName": "Alek.Cammie" + }, + { + "name": "Menu Framework", + "repo": "misternebula/MenuFramework", + "tags": [ + "library" + ], + "uniqueName": "_nebula.MenuFramework", + "utility": true + }, + { + "name": "ScoutStreaming", + "repo": "Vesper-Works/Scout-Streaming", + "tags": [ + "gameplay" + ], + "uniqueName": "Vesper.ScoutStreaming" + }, + { + "name": "Vesper's Assorted OuterWilds Shaders", + "repo": "Vesper-Works/Vesper-s-Assorted-OuterWilds-Shaders", + "tags": [ + "audiovisual" + ], + "uniqueName": "Vesper.VespersAssortedOuterWildsShaders" + }, + { + "name": "Outer Wilds Online", + "repo": "Vesper-Works/OuterWildsOnline", + "tags": [ + "gameplay" + ], + "uniqueName": "Vesper.OuterWildsMMO" + }, + { + "name": "Cheat and Debug Menu", + "repo": "glitchewski/OWML.Glitch.CheatAndDebugMenu", + "tags": [ + "tool" + ], + "uniqueName": "Glitch.AltDebugMenu" + }, + { + "name": "Cheats Mod", + "repo": "PacificEngine/OW_CheatsMod", + "tags": [ + "tool" + ], + "uniqueName": "PacificEngine.CheatsMod" + }, + { + "name": "Difficulty Mod", + "repo": "PacificEngine/OW_HardMode", + "tags": [ + "gameplay" + ], + "uniqueName": "PacificEngine.OW_HardMode" + }, + { + "name": "Peaceful Ghosts", + "repo": "leadpogrommer/PeacefulGhosts", + "tags": [ + "gameplay" + ], + "uniqueName": "Leadpogrommer.PeacefulGhosts" + }, + { + "name": "SlowTime", + "repo": "dwatson251/ow-slowtime", + "tags": [ + "gameplay" + ], + "uniqueName": "dnlwtsn.SlowTime" + }, + { + "name": "OW Smooth Thrust", + "repo": "TAImatem/OW_SmoothThrust", + "tags": [ + "gameplay" + ], + "uniqueName": "TruAI.SmoothThrust" + }, + { + "name": "Randomizer", + "repo": "PacificEngine/OW_Randomizer", + "tags": [ + "gameplay" + ], + "uniqueName": "PacificEngine.OW_Randomizer" + }, + { + "name": "PacificEngine's Common Resources", + "repo": "dgarroDC/OW_CommonResources", + "tags": [ + "library" + ], + "uniqueName": "PacificEngine.OW_CommonResources", + "utility": true, + "authorDisplay": "PacificEngine" + }, + { + "name": "No Alt Tab Pause", + "repo": "lStewieAl/OuterWilds-NoAltTabPause", + "tags": [ + "tweaks" + ], + "uniqueName": "lStewieAl.RunInBackground" + }, + { + "name": "Echoes of the Caribbean", + "repo": "tealhelix/ow-mod-eote-ridemusic", + "tags": [ + "audiovisual" + ], + "uniqueName": "tealhelix.EotE-RideMusic" + }, + { + "name": "Third Person Camera", + "repo": "xen-42/outer-wilds-third-person-camera", + "tags": [ + "gameplay" + ], + "uniqueName": "xen.ThirdPersonCamera" + }, + { + "name": "NomaiVR Online Patches", + "parent": "Raicuparta.NomaiVR", + "repo": "artumino/NomaiVROnlinePatches", + "tags": [ + "tweaks" + ], + "uniqueName": "Artum.NomaiVROnlinePatches" + }, + { + "name": "NomaiVR FFR", + "parent": "Raicuparta.NomaiVR", + "repo": "artumino/NomaiVR-FixedFoveatedRendering", + "tags": [ + "gameplay" + ], + "uniqueName": "Artum.NomaiVRFoveated" + }, + { + "name": "Static Camera", + "repo": "xen-42/outer-wilds-static-camera", + "tags": [ + "tool" + ], + "uniqueName": "xen.StaticCamera" + }, + { + "name": "Daydream", + "repo": "xen-42/outer-wilds-day-dream", + "tags": [ + "tool", + "audiovisual" + ], + "uniqueName": "xen.DayDream" + }, + { + "name": "EotE Brighter Dreams", + "repo": "Heelio/EotE-Brighter-Dreams", + "tags": [ + "audiovisual" + ], + "uniqueName": "Heelio.EotEBrighterDreams" + }, + { + "name": "Unity Explorer", + "repo": "Vesper-Works/Unity-Explorer-For-Outer-Wilds", + "tags": [ + "tool" + ], + "uniqueName": "Vesper.UnityExplorer" + }, + { + "name": "Half-Life Overhaul", + "repo": "Vesper-Works/OuterWildsHalf-Life", + "tags": [ + "audiovisual" + ], + "uniqueName": "Vesper.HalfLifeOverhaul" + }, + { + "name": "Auto Resume", + "repo": "Vesper-Works/AutoResume", + "tags": [ + "tweaks" + ], + "uniqueName": "Vesper.AutoResume" + }, + { + "name": "Outer Thomas Echoes of the Tank Engine", + "repo": "xen-42/outer-wilds-tank-engine", + "tags": [ + "audiovisual" + ], + "uniqueName": "xen.TankEngine" + }, + { + "name": "Majora's Mask's Moon", + "repo": "xen-42/outer-wilds-majoras-mask", + "tags": [ + "audiovisual" + ], + "uniqueName": "xen.MajorasMask" + }, + { + "authorDisplay": "xen, Bwc9876, clay, MegaPiggy, John, Hawkbar, Trifid, Book", + "name": "New Horizons", + "repo": "Outer-Wilds-New-Horizons/new-horizons", + "tags": [ + "tool", + "content", + "story" + ], + "uniqueName": "xen.NewHorizons" + }, + { + "authorDisplay": "xen", + "name": "New Horizons Examples", + "parent": "xen.NewHorizons", + "repo": "Outer-Wilds-New-Horizons/nh-examples", + "tags": [ + "content" + ], + "uniqueName": "xen.NewHorizonsExamples" + }, + { + "name": "Real Solar System", + "parent": "xen.NewHorizons", + "repo": "xen-42/outer-wilds-real-solar-system", + "tags": [ + "content" + ], + "uniqueName": "xen.RealSolarSystem" + }, + { + "name": "Atropos", + "parent": "xen.NewHorizons", + "repo": "TitchMW/OWAtropos", + "tags": [ + "content" + ], + "uniqueName": "Titch.OWAtropos" + }, + { + "name": "ElliePlanets!", + "parent": "xen.NewHorizons", + "repo": "ellie3-OW/ElliePlanets", + "tags": [ + "content" + ], + "uniqueName": "Ellie3.ElliePlanets" + }, + { + "name": "Smol Hatchling", + "repo": "Owen013/Smol-Hatchling", + "tags": [ + "gameplay" + ], + "uniqueName": "Owen013.TeenyHatchling" + }, + { + "name": "Hiker's Mod", + "repo": "Owen013/Hikers-Mod", + "tags": [ + "gameplay" + ], + "uniqueName": "Owen013.MovementMod" + }, + { + "authorDisplay": "Jammer", + "name": "Outer Wilds Galaxy", + "parent": "xen.NewHorizons", + "repo": "MegaPiggy/Outer-Wilds-Galaxy", + "tags": [ + "content" + ], + "uniqueName": "Jammer.OuterWildsGalaxy" + }, + { + "name": "Signals+", + "parent": "xen.NewHorizons", + "repo": "xen-42/outer-wilds-signals-plus", + "tags": [ + "content" + ], + "uniqueName": "xen.SignalsPlus" + }, + { + "name": "Save Editor", + "repo": "Bwc9876/OW-SaveEditor", + "tags": [ + "tool" + ], + "uniqueName": "Bwc9876.SaveEditor" + }, + { + "name": "Meteor Launching", + "repo": "12090113/outer-wilds-meteor-launching", + "tags": [ + "gameplay" + ], + "uniqueName": "12090113.MeteorLaunching" + }, + { + "name": "Slate Simulator", + "repo": "Bwc9876/OW-Slate-Simulator", + "tags": [ + "gameplay" + ], + "uniqueName": "Bwc9876.SlatePOV" + }, + { + "name": "TARDIS from Doctor Who", + "parent": "xen.NewHorizons", + "repo": "TitchMW/tardisfromdoctorwho", + "tags": [ + "content" + ], + "uniqueName": "TitchMW.tardisfromdoctorwho" + }, + { + "name": "Solar Neighbourhood", + "parent": "xen.NewHorizons", + "repo": "ErroneousCreationist/solarneighbourhood", + "tags": [ + "content" + ], + "uniqueName": "ErroneousCreationist.solarneighbourhood" + }, + { + "name": "Vanilla Main Menu", + "repo": "artificialparanoia/VanillaMainMenu", + "tags": [ + "audiovisual" + ], + "uniqueName": "artificial.VanillaMainMenu" + }, + { + "name": "Outer Wilds Korean Translation", + "repo": "milesand/outer-wilds-korean-translation", + "tags": [ + "localization" + ], + "uniqueName": "milesand.OWKT" + }, + { + "name": "Astroneer Solar System", + "parent": "xen.NewHorizons", + "repo": "ErroneousCreationist/astroneersolarsystem", + "tags": [ + "content" + ], + "uniqueName": "ErroneousCreationist.astroneersolarsystem" + }, + { + "name": "Black Hole Portal Gun", + "repo": "Nageld/Outer-Wilds-Black-Hole-Portal-Gun", + "tags": [ + "gameplay" + ], + "uniqueName": "Book.BlackHolePortalGun" + }, + { + "name": "Outer Wario Echoes of the Waaaaaaaaaaah", + "repo": "xen-42/outer-wilds-wario", + "tags": [ + "audiovisual" + ], + "uniqueName": "xen.OuterWario" + }, + { + "name": "Suicide Mod", + "repo": "gurrenm3/OuterWilds_SuicideMod", + "tags": [ + "tool" + ], + "uniqueName": "Gurrenm3.SuicideMod" + }, + { + "name": "Outer Wilds Music Player", + "repo": "TitchMW/outerwildsmusicplayer", + "tags": [ + "audiovisual" + ], + "uniqueName": "Titch.OWMusicPlayer" + }, + { + "name": "Collider Visualizer", + "repo": "ShoosGun/ColliderVisualizer", + "tags": [ + "tool" + ], + "uniqueName": "Locochoco.ColliderVisualizer" + }, + { + "name": "Archaeologist Achievement Helper", + "repo": "dgarroDC/ArchaeologistAchievementHelper", + "tags": [ + "tool" + ], + "uniqueName": "dgarro.ArchaeologistAchievementHelper", + "authorDisplay": "Damián Garro" + }, + { + "name": "Enter the Warioverse", + "parent": "xen.NewHorizons", + "repo": "Roggsy/enterthewarioverse", + "tags": [ + "content" + ], + "uniqueName": "Roggsy.enterthewarioverse" + }, + { + "name": "21st Century Anglerfish", + "repo": "mrmeep321/21stCenturyAnglerfish", + "tags": [ + "audiovisual" + ], + "uniqueName": "mrmeep321.Angler" + }, + { + "name": "Medley of Planets", + "parent": "xen.NewHorizons", + "repo": "Leopard501/PlanetMedley", + "tags": [ + "content" + ], + "uniqueName": "smallbug.MedleyOfPlanets" + }, + { + "name": "Outer Wilds Flyover", + "repo": "piggeywig2000/OuterWildsFlyover", + "tags": [ + "content", + "gameplay" + ], + "uniqueName": "piggeywig2000.OuterWildsFlyover" + }, + { + "name": "Incursion: Final Dawn", + "parent": "xen.NewHorizons", + "repo": "ErroneousCreationist/incursionfinaldawn", + "tags": [ + "content" + ], + "uniqueName": "ErroneousCreationist.incursionfinaldawn" + }, + { + "name": "TRAPPIST-1", + "parent": "xen.NewHorizons", + "repo": "Leopard501/TRAPPIST-1", + "tags": [ + "content" + ], + "uniqueName": "smallbug.trappist-1" + }, + { + "name": "Input Demo Recorder", + "repo": "ShoosGun/InputDemoRecorder", + "tags": [ + "tool" + ], + "uniqueName": "Locochoco.InputDemoRecorder" + }, + { + "name": "Celeste Wilds", + "repo": "ShoosGun/CelesteWilds", + "tags": [ + "gameplay" + ], + "uniqueName": "Locochoco.CelesteWilds" + }, + { + "name": "Grapefruit", + "parent": "xen.NewHorizons", + "repo": "Tllya/Grapefruit", + "tags": [ + "content" + ], + "uniqueName": "Tlya.Grapefruit" + }, + { + "name": "Visible Stranger", + "repo": "xen-42/ow-decloaked", + "tags": [ + "audiovisual" + ], + "uniqueName": "xen.Decloaked" + }, + { + "name": "Hollodjustment", + "repo": "Tllya/ow-mod-Hollodjustment", + "tags": [ + "gameplay" + ], + "uniqueName": "Tlya.Hollodjustment" + }, + { + "name": "Vanilla Fix", + "repo": "JohnCorby/ow-vanilla-fix", + "tags": [ + "tweaks" + ], + "uniqueName": "JohnCorby.VanillaFix" + }, + { + "name": "Only Timber Hearth", + "parent": "xen.NewHorizons", + "repo": "Tllya/ow-nh-only-timber-hearth", + "tags": [ + "content" + ], + "uniqueName": "Tlya.OnlyTH" + }, + { + "name": "Title Screen Bug Fix", + "repo": "xen-42/outer-wilds-cursed-title", + "tags": [ + "audiovisual" + ], + "uniqueName": "xen.CursedTitle" + }, + { + "name": "Ghost Translations", + "repo": "MegaPiggy/GhostTranslations", + "tags": [ + "content" + ], + "uniqueName": "MegaPiggy.GhostTranslations" + }, + { + "name": "Voice Acting Mod", + "repo": "Krevace/ow-voice-mod", + "tags": [ + "audiovisual" + ], + "uniqueName": "Krevace.VoiceMod", + "authorDisplay": "Krevace & JohnCorby" + }, + { + "name": "Their Homeworld", + "parent": "xen.NewHorizons", + "repo": "CreativeNameTxt/their-home-world", + "tags": [ + "content" + ], + "uniqueName": "CreativeNameTxt.theirhomeworld" + }, + { + "name": "Vengeful Cannon", + "repo": "misternebula/VengefulCannon", + "tags": [ + "gameplay" + ], + "uniqueName": "_nebula.VengefulCannon" + }, + { + "name": "Almond System", + "parent": "xen.NewHorizons", + "repo": "MellowSus/almondsystem", + "tags": [ + "content" + ], + "uniqueName": "MellowSus.almondsystem" + }, + { + "name": "Persistant Marshmallow", + "repo": "BUNN1E5/PersistantMarshmallow", + "tags": [ + "tweaks" + ], + "uniqueName": "BUNN1E5.PersistantMarshmallow" + }, + { + "name": "Empty Hollow", + "repo": "MegaPiggy/EmptyHollow", + "tags": [ + "content" + ], + "uniqueName": "MegaPiggy.EmptyHollow" + }, + { + "name": "Interstellar: Gargantua", + "parent": "xen.NewHorizons", + "repo": "Tllya/interstellargargantua", + "tags": [ + "content" + ], + "uniqueName": "Tandicase.interstellargargantua" + }, + { + "authorDisplay": "Jammer", + "name": "Jammer Lore", + "parent": "xen.NewHorizons", + "repo": "MegaPiggy/jammerlore", + "tags": [ + "content" + ], + "uniqueName": "Jammer.jammerlore" + }, + { + "name": "Ghostbuster", + "repo": "xen-42/ow-ghostbuster", + "tags": [ + "gameplay" + ], + "uniqueName": "xen.GhostBuster" + }, + { + "name": "Open Doors", + "repo": "YanWittmann/OpenDoors", + "tags": [ + "gameplay" + ], + "uniqueName": "Skyball.OpenDoors" + }, + { + "name": "Sleep Mod", + "repo": "LikeMauro/SleepMod", + "tags": [ + "tool" + ], + "uniqueName": "likemauro.sleepmod" + }, + { + "name": "Ghost Matter Nerf", + "repo": "QuentinGruber/ghostMatterNerf", + "tags": [ + "tweaks" + ], + "uniqueName": "Kentin.GhostMatterNerf" + }, + { + "name": "Add LIV Support", + "parent": "Raicuparta.NomaiVR", + "repo": "Raicuparta/ow-liv", + "tags": [ + "integration" + ], + "uniqueName": "Raicuparta.OwLiv" + }, + { + "name": "360 Camera", + "repo": "BUNN1E5/OW360Camera", + "tags": [ + "tool" + ], + "uniqueName": "BUNN1E5.OW360Camera" + }, + { + "name": "No End", + "repo": "LikeMauro/NoEnd-Mod", + "tags": [ + "tweaks" + ], + "uniqueName": "likemauro.noend" + }, + { + "name": "No Dam Break", + "repo": "LikeMauro/NoDamBreak-Mod", + "tags": [ + "tweaks" + ], + "uniqueName": "likemauro.nodambreak" + }, + { + "name": "Alter Time", + "repo": "spacepiano/Outer-Wilds---Speed-up-Time", + "tags": [ + "tool" + ], + "uniqueName": "Spacepiano.AlterTime" + }, + { + "name": "Survive the Supernova", + "repo": "joshua-smith98/OW-SurviveTheSupernova", + "tags": [ + "tweaks" + ], + "uniqueName": "Joooosh.SurviveTheSupernova" + }, + { + "name": "Achievements+", + "repo": "xen-42/outer-wilds-achievement-tracker", + "tags": [ + "gameplay", + "tweaks" + ], + "uniqueName": "xen.AchievementTracker" + }, + { + "name": "Supernova On Demand", + "repo": "QuentinGruber/SupernovaOnDemand", + "tags": [ + "tool" + ], + "uniqueName": "Kentin.SupernovaOnDemand" + }, + { + "name": "Big Heads", + "repo": "joshua-smith98/OW-BigHeads", + "tags": [ + "audiovisual" + ], + "uniqueName": "Joooosh.BigHeads" + }, + { + "name": "Bring Me My Ship", + "repo": "Switch-9867/BringMeMyShip", + "tags": [ + "tool" + ], + "uniqueName": "Switch.BringMeMyShip" + }, + { + "name": "Arkose bug fix", + "parent": "xen.NewHorizons", + "repo": "Tllya/arkosebugfix", + "tags": [ + "content" + ], + "uniqueName": "Tlya.arkosebugfix" + }, + { + "name": "Woah Watch Those Frames", + "repo": "Switch-9867/WoahWatchThoseFrames", + "tags": [ + "tweaks" + ], + "uniqueName": "Switch.WoahWatchThoseFrames" + }, + { + "name": "Timber Twin", + "parent": "xen.NewHorizons", + "repo": "ParagonOrang/ow-timber-twin", + "tags": [ + "content" + ], + "uniqueName": "paragon.TimberTwin" + }, + { + "name": "Toggle Velocity Matching", + "repo": "Vesper-Works/Toggle-Velocity-Matching", + "tags": [ + "tweaks" + ], + "uniqueName": "Vesper.ToggleVelocityMatching" + }, + { + "name": "Time Saver", + "repo": "Bwc9876/OW-TimeSaver", + "tags": [ + "tweaks" + ], + "uniqueName": "Bwc9876.TimeSaver" + }, + { + "name": "Changed Twins", + "parent": "xen.NewHorizons", + "repo": "ClassicalBro/changed.twins", + "tags": [ + "content" + ], + "uniqueName": "Classic.ChangedTwins" + }, + { + "name": "Power Failure", + "repo": "LivingFray/OW-PowerFailure", + "tags": [ + "audiovisual" + ], + "uniqueName": "LivingFray.PowerFailure" + }, + { + "name": "Outer Wilds Traditional Chinese Translation", + "repo": "puffbro/outer-wilds-traditional-chinese-translation", + "tags": [ + "localization" + ], + "uniqueName": "PuFF.OWCHT" + }, + { + "name": "Less Lonely Ship", + "parent": "xen.NewHorizons", + "repo": "ClassicalBro/Less-Lonely-Ship", + "tags": [ + "content" + ], + "uniqueName": "Classic.CozyShip" + }, + { + "name": "Cloudless Quantum Moons", + "parent": "xen.NewHorizons", + "repo": "TerrificTrifid/ow-nh-visible-qms", + "tags": [ + "content" + ], + "uniqueName": "TerrificTrifid.VisibleQMs" + }, + { + "name": "Backer's satellite signal", + "parent": "xen.NewHorizons", + "repo": "Tllya/backers-satellite-signal", + "tags": [ + "content" + ], + "uniqueName": "Tlya.Backerssignal" + }, + { + "name": "Suit Log", + "tags": [ + "gameplay" + ], + "uniqueName": "dgarro.SuitLog", + "repo": "dgarroDC/SuitLog", + "authorDisplay": "Damián Garro" + }, + { + "name": "Hatchling Outfitter", + "repo": "Owen013/Hatchling-Outfitter", + "tags": [ + "audiovisual" + ], + "uniqueName": "Owen013.HatchlingOutfit" + }, + { + "name": "Quality of Life Changes", + "repo": "Owen013/QOLFixes", + "tags": [ + "tweaks" + ], + "uniqueName": "Owen013.QOLFixes" + }, + { + "name": "Common Camera Utility", + "repo": "xen-42/ow-common-camera-util", + "tags": [ + "library" + ], + "uniqueName": "xen.CommonCameraUtility", + "utility": true + }, + { + "name": "Better Model Ship", + "repo": "xen-42/outer-wilds-better-model-ship", + "tags": [ + "gameplay" + ], + "uniqueName": "xen.BetterModelShip" + }, + { + "alpha": true, + "name": "BepInEx", + "repo": "MegaPiggy/BepInEx", + "required": true, + "tags": [ + "library" + ], + "uniqueName": "bbepis.BepInEx", + "utility": true + }, + { + "alpha": true, + "name": "OWAML", + "repo": "ShoosGun/OWAML", + "required": true, + "tags": [ + "library" + ], + "uniqueName": "Locochoco.OWAML", + "utility": true + }, + { + "alpha": true, + "name": "CAMOWA", + "repo": "ShoosGun/CAMOWA", + "tags": [ + "library" + ], + "uniqueName": "Locochoco.CAMOWA", + "utility": true + }, + { + "alpha": true, + "name": "Alpha Fixes", + "repo": "ShoosGun/AlphaFixes", + "tags": [ + "tweaks" + ], + "uniqueName": "Locochoco.AlphaFixes" + }, + { + "alpha": true, + "name": "Navinha", + "repo": "ShoosGun/navinha", + "tags": [ + "gameplay" + ], + "uniqueName": "Locochoco.NAVE" + }, + { + "alpha": true, + "name": "Free Cam Mod", + "repo": "ShoosGun/FreeCamMod", + "tags": [ + "tool" + ], + "uniqueName": "Locochoco.FreeCamMod" + }, + { + "alpha": true, + "name": "Probe Grapple", + "repo": "ShoosGun/ProbeGrappleMod", + "tags": [ + "gameplay" + ], + "uniqueName": "Locochoco.ProbeGrapple" + }, + { + "alpha": true, + "name": "Cooler Bottom Cams", + "repo": "ShoosGun/CBC", + "tags": [ + "tweaks" + ], + "uniqueName": "Locochoco.CoolerBottomCams" + }, + { + "alpha": true, + "name": "Enhanced Mallows", + "repo": "ShoosGun/EM", + "tags": [ + "tweaks" + ], + "uniqueName": "Locochoco.EnhancedMallows" + }, + { + "alpha": true, + "name": "Automatic Launch Codes", + "repo": "MegaPiggy/AutomaticLaunchCodes", + "tags": [ + "tweaks" + ], + "uniqueName": "MegaPiggy.AutomaticLaunchCodes" + }, + { + "alpha": true, + "name": "No Probe Launch Window", + "repo": "MegaPiggy/NoProbeLaunchWindow", + "tags": [ + "tweaks" + ], + "uniqueName": "MegaPiggy.NoProbeLaunchWindow" + }, + { + "alpha": true, + "name": "Runtime Unity Editor", + "repo": "ShoosGun/RuntimeUnityEditor", + "tags": [ + "tool" + ], + "uniqueName": "Locochoco.RuntimeUnityEditor" + }, + { + "name": "Cloudless Giant's Deep", + "parent": "xen.NewHorizons", + "repo": "gpixl/CloudlessGiantsDeep", + "tags": [ + "content" + ], + "uniqueName": "gpixl.NoMoreGDClouds" + }, + { + "name": "Involuntary Blink", + "repo": "MegaPiggy/InvoluntaryBlink", + "tags": [ + "gameplay" + ], + "uniqueName": "MegaPiggy.InvoluntaryBlink" + }, + { + "name": "Primitive Launching", + "parent": "12090113.MeteorLaunching", + "repo": "MegaPiggy/PrimitiveLaunching", + "tags": [ + "gameplay" + ], + "uniqueName": "MegaPiggy.PrimitiveLaunching" + }, + { + "name": "Alpha Title Screen", + "repo": "MegaPiggy/AlphaRegression", + "tags": [ + "audiovisual" + ], + "uniqueName": "MegaPiggy.AlphaRegression" + }, + { + "name": "Controllable Stranger", + "repo": "LikeMauro/Controllable-Stranger", + "tags": [ + "tool" + ], + "uniqueName": "likemauro.controllablestranger" + }, + { + "name": "Upsilon Andromedae", + "parent": "xen.NewHorizons", + "repo": "MegaPiggy/UpsilonAndromedae", + "tags": [ + "content" + ], + "uniqueName": "MegaPiggy.UpsilonAndromedae" + }, + { + "name": "Fact Log", + "repo": "Hawkbat/ow-mod-fact-log", + "tags": [ + "tool" + ], + "uniqueName": "Hawkbar.FactLog" + }, + { + "name": "BlackHole Sun", + "parent": "xen.NewHorizons", + "repo": "ShuitOnDiscord/BlackHoleSun", + "tags": [ + "content" + ], + "uniqueName": "Shuit.BlackHoleSun" + }, + { + "name": "No Sun", + "parent": "xen.NewHorizons", + "repo": "ShuitOnDiscord/NoSun", + "tags": [ + "content" + ], + "uniqueName": "Shuit.NoSun" + }, + { + "name": "Ordered Orbits", + "parent": "xen.NewHorizons", + "repo": "ShuitOnDiscord/MovedOrbits", + "tags": [ + "content" + ], + "uniqueName": "Shuit.MovedOrbits" + }, + { + "name": "Ship Remote Autopilot", + "repo": "TitchMW/remoteautopilot", + "tags": [ + "gameplay" + ], + "uniqueName": "Titch.ShipRemoteAutopilot" + }, + { + "name": "Block Placing", + "repo": "12090113/outer-wilds-cubes", + "tags": [ + "gameplay" + ], + "uniqueName": "12090113.Cubes" + }, + { + "name": "Czech Localization", + "repo": "shippy/outer-wilds-czech", + "tags": [ + "localization" + ], + "uniqueName": "shippy.czech" + }, + { + "name": "Carson System", + "parent": "xen.NewHorizons", + "repo": "mrwallace888/OWNH-Carson-System", + "tags": [ + "content" + ], + "uniqueName": "JackFoxtrot.CarsonSystem" + }, + { + "name": "Sound Test", + "repo": "Hawkbat/ow-mod-sound-test", + "tags": [ + "tool" + ], + "uniqueName": "Hawkbar.SoundTest" + }, + { + "name": "Interplanetary Polyglot", + "repo": "xen-42/outer-wilds-localization-utility", + "tags": [ + "library", + "localization" + ], + "uniqueName": "xen.LocalizationUtility", + "utility": true + }, + { + "name": "StopTime", + "repo": "misternebula/StopTime", + "tags": [ + "tool" + ], + "uniqueName": "_nebula.StopTime" + }, + { + "name": "Galaxy Skybox: NGC 1087", + "parent": "xen.NewHorizons", + "repo": "TerrificTrifid/ow-nh-ngc1087", + "tags": [ + "audiovisual" + ], + "uniqueName": "TerrificTrifid.NGC1087" + }, + { + "name": "Quantum Moon Orbit Line", + "repo": "MegaPiggy/QuantumMoonOrbitLine", + "tags": [ + "audiovisual" + ], + "uniqueName": "MegaPiggy.QuantumMoonOrbitLine", + "authorDisplay": "MegaPiggy" + }, + { + "name": "Permadeath Mode", + "repo": "piggeywig2000/OuterWildsPermadeath", + "tags": [ + "gameplay" + ], + "uniqueName": "piggeywig2000.Permadeath" + }, + { + "name": "Sun Station Ascension", + "parent": "xen.NewHorizons", + "repo": "TerrificTrifid/ow-nh-ss-ascension", + "tags": [ + "content" + ], + "uniqueName": "TerrificTrifid.SSAscension" + }, + { + "name": "Discord Rich Presence", + "repo": "MegaPiggy/OWRichPresence", + "tags": [ + "integration" + ], + "uniqueName": "MegaPiggy.OWRichPresence" + }, + { + "name": "Artifact Laser", + "repo": "coderCleric/artifact_laser", + "tags": [ + "gameplay" + ], + "uniqueName": "Cleric.ArtifactLaser" + }, + { + "name": "Speed Modifier/Walk Button on KBM", + "repo": "ilyabru/OWSpeedModifier", + "tags": [ + "gameplay" + ], + "uniqueName": "ilyabru.OWSpeedModifier" + }, + { + "name": "Cut Achievements", + "parent": "xen.AchievementTracker", + "repo": "misternebula/cut-achievements", + "tags": [ + "content" + ], + "uniqueName": "_nebula.CutAchievements" + }, + { + "name": "Chargeable Scout Launcher", + "repo": "coderCleric/chargeable-scout", + "tags": [ + "gameplay" + ], + "uniqueName": "Cleric.ChargeableScout" + }, + { + "name": "(Razer/SteelSeries) RGB Integration", + "repo": "LivingFray/OW-RGB-Integration", + "tags": [ + "integration" + ], + "uniqueName": "LivingFray.RGBIntegration" + }, + { + "name": "Europe Times", + "repo": "MegaPiggy/EuropeTimes", + "tags": [ + "audiovisual" + ], + "uniqueName": "MegaPiggy.EuropeTimes" + }, + { + "authorDisplay": "Laundryjx", + "name": "Hazy Dreams", + "parent": "xen.NewHorizons", + "repo": "Landriejx/HazyDreams", + "tags": [ + "audiovisual" + ], + "uniqueName": "Laundryjx.HazyDreams" + }, + { + "authorDisplay": "Locochoco", + "name": "Gizmos Library", + "repo": "ShoosGun/GizmosLibrary", + "tags": [ + "library" + ], + "uniqueName": "Locochoco.GizmosLibrary", + "utility": true + }, + { + "authorDisplay": "coderCleric", + "name": "Wacky Rotations", + "repo": "coderCleric/WackyRotations", + "tags": [ + "content" + ], + "uniqueName": "Cleric.WackyRotations" + }, + { + "authorDisplay": "hearth1an", + "name": "The Vision", + "parent": "xen.NewHorizons", + "repo": "hearth1an/hearthian.TheVision", + "tags": [ + "story", + "content" + ], + "uniqueName": "hearth1an.TheVision" + }, + { + "authorDisplay": "Fixxion's Lair", + "name": "Secret Words", + "parent": "xen.NewHorizons", + "repo": "FixxionsLair/Secret-Words", + "tags": [ + "content" + ], + "uniqueName": "Fixxion.SecretWords" + }, + { + "authorDisplay": "Locochoco", + "name": "Slate's Shipyard", + "repo": "ShoosGun/SlateShipyard", + "tags": [ + "library", + "gameplay", + "tool", + "content" + ], + "uniqueName": "Locochoco.SlateShipyard", + "utility": true + }, + { + "authorDisplay": "Locochoco", + "name": "Spaceshipinha", + "parent": "Locochoco.SlateShipyard", + "repo": "ShoosGun/Spaceshipinha", + "tags": [ + "gameplay" + ], + "uniqueName": "Locochoco.Spaceshipinha" + }, + { + "authorDisplay": "Hawkbar", + "name": "DOOM", + "repo": "Hawkbat/ow-mod-doom", + "tags": [ + "gameplay" + ], + "uniqueName": "Hawkbar.Doom" + }, + { + "authorDisplay": "Locochoco", + "name": "Car Example", + "parent": "Locochoco.SlateShipyard", + "repo": "ShoosGun/CarExample", + "tags": [ + "gameplay" + ], + "uniqueName": "Locochoco.CarExample" + }, + { + "authorDisplay": "clay", + "name": "Clear Glass", + "repo": "FreezeDriedMangos/ow-clear-glass", + "tags": [ + "audiovisual" + ], + "uniqueName": "clay.ClearGlass" + }, + { + "authorDisplay": "Astien75", + "name": "Bhaptics Outer Wilds", + "repo": "Astienth/ow-bhaptics", + "tags": [ + "integration" + ], + "uniqueName": "Astien.OWBhaptics" + }, + { + "name": "Espied Serenity", + "parent": "xen.NewHorizons", + "repo": "Ciborgm9/Rogue-Planet", + "tags": [ + "content" + ], + "uniqueName": "Ciborgm9.Espied_Serenity" + }, + { + "name": "Green Jetpack", + "repo": "TheLoreExplorer/GreenJetpack3", + "tags": [ + "gameplay", + "audiovisual" + ], + "uniqueName": "TheLoreExplorer.GreenJetpack" + }, + { + "authorDisplay": "xen", + "name": "Secret Settings", + "repo": "xen-42/outer-wilds-secret-settings", + "tags": [ + "tool" + ], + "uniqueName": "xen.SecretSettings" + }, + { + "authorDisplay": "Samster68", + "name": "Fret's Quest", + "parent": "xen.NewHorizons", + "repo": "Samster68OW/fretsquest", + "tags": [ + "content", + "story" + ], + "uniqueName": "Samster68.FretsQuest" + }, + { + "authorDisplay": "Smaed", + "name": "Heavy Sleeper", + "repo": "Smaedd/OW_HeavySleeper", + "tags": [ + "gameplay" + ], + "uniqueName": "Smaed.HeavySleeper" + }, + { + "authorDisplay": "Orbital 32 (a.k.a. cigtu)", + "name": "The Funniest System", + "parent": "xen.NewHorizons", + "repo": "RealOrbital32/funny-system", + "tags": [ + "content" + ], + "uniqueName": "O32.FunnySystem" + }, + { + "authorDisplay": "hearth1an", + "name": "Scout Teleporter", + "repo": "hearth1an/hearth1an.ScoutTeleporter", + "tags": [ + "gameplay" + ], + "uniqueName": "hearth1an.ProbeTeleporter" + }, + { + "authorDisplay": "Damián Garro", + "name": "Custom Ship Log Modes", + "repo": "dgarroDC/CustomShipLogModes", + "tags": [ + "library" + ], + "uniqueName": "dgarro.CustomShipLogModes", + "utility": true + }, + { + "authorDisplay": "Damián Garro", + "name": "Ship Log Slide Reel Player Plus", + "repo": "dgarroDC/ShipLogSlideReelPlayer", + "tags": [ + "gameplay", + "tweaks" + ], + "uniqueName": "dgarro.ShipLogSlideReelPlayer" + }, + { + "authorDisplay": "Orbital 32 (a.k.a. cigtu)", + "name": "Smallest System in the Galaxy", + "parent": "xen.NewHorizons", + "repo": "RealOrbital32/smallest", + "tags": [ + "content" + ], + "uniqueName": "O32.Smallest" + }, + { + "authorDisplay": "Smaed", + "name": "Developer Console", + "repo": "Smaedd/OW_DeveloperConsole", + "tags": [ + "library", + "tool" + ], + "uniqueName": "Smaed.DeveloperConsole", + "utility": true + }, + { + "authorDisplay": "Smaed", + "name": "Console Cheats", + "repo": "Smaedd/OW_ConsoleCheats", + "tags": [ + "tool" + ], + "uniqueName": "Smaed.ConsoleCheats" + }, + { + "name": "Mo' Voices", + "uniqueName": "Krevace.MoVoicesMod", + "repo": "Krevace/ow-mo-voices-mod", + "tags": [ + "audiovisual" + ], + "parent": "Krevace.VoiceMod" + }, + { + "name": "The Wilds: Extended", + "uniqueName": "FunkyShoeMan.TheWildsExtended", + "repo": "FunkyShoeMan/TheWildsExtended", + "tags": [ + "content" + ], + "parent": "xen.NewHorizons", + "authorDisplay": "FunkyShoeMan" + }, + { + "name": "Escape the Dreamstalker", + "uniqueName": "xen.Dreamstalker", + "repo": "xen-42/ow-dreamstalker", + "tags": [ + "gameplay", + "content", + "story" + ], + "parent": "xen.NewHorizons", + "authorDisplay": "xen & JohnCorby" + }, + { + "name": "Ship Self Destruct Button", + "uniqueName": "TheLoreExplorer.SelfDestructButton", + "repo": "TheLoreExplorer/SelfDestructButton", + "tags": [ + "tweaks" + ] + }, + { + "name": "Ernesto Takeover", + "uniqueName": "FunkyShoeMan.ErnestoTakeover", + "repo": "FunkyShoeMan/Ernesto-Takeover", + "tags": [ + "content" + ], + "parent": "xen.NewHorizons", + "authorDisplay": "FunkyShoeMan" + }, + { + "name": "Dancin' Wilds Ventures", + "uniqueName": "CantAffordaName.DancinWildsVentures", + "repo": "CantAffordaName/CantAffordaName.DancinWildsVentures", + "tags": [ + "content", + "audiovisual" + ], + "parent": "xen.NewHorizons", + "authorDisplay": "Can't Afford a Name" + }, + { + "name": "Stranger Spin Gravity", + "uniqueName": "Komodo.StrangerSpinGravity", + "repo": "Komodo5197/StrangerSpinGravity", + "tags": [ + "gameplay" + ] + }, + { + "name": "Discord Proximity Chat", + "uniqueName": "BUNN1E5.DiscordProximityChat", + "repo": "BUNN1E5/DiscordProximityChat", + "tags": [ + "integration" + ], + "parent": "Raicuparta.QuantumSpaceBuddies", + "authorDisplay": "BUNN1E5" + }, + { + "name": "Slate's Shipyard for Outer Wilds Online", + "uniqueName": "Locochoco.ShipyardOWOAddon", + "repo": "ShoosGun/ShipyardOWOCompat", + "tags": [ + "library" + ], + "parent": "Vesper.OuterWildsMMO", + "utility": true, + "authorDisplay": "Locochoco" + }, + { + "name": "i let the voices on the discord server make bad ideas for planets", + "uniqueName": "O32.Discord", + "repo": "RealOrbital32/discord", + "tags": [ + "content" + ], + "parent": "xen.NewHorizons", + "authorDisplay": "Orbital 32 (a.k.a. cigtu) and members from the discord modding server" + }, + { + "name": "Super Wild Galaxy", + "uniqueName": "CantAffordaName.SuperWildGalaxy", + "repo": "CantAffordaName/CantAffordaName.SuperWildGalaxy", + "tags": [ + "gameplay", + "content" + ], + "parent": "xen.NewHorizons", + "authorDisplay": "Can't Afford a Name" + }, + { + "name": "Trajectory Prediction", + "uniqueName": "OlegSkutte.TrajectoryPrediction", + "repo": "SkutteOleg/TrajectoryPrediction", + "tags": [ + "gameplay", + "tweaks" + ], + "authorDisplay": "Oleg Skutte" + }, + { + "name": "N Body Chaos", + "uniqueName": "TacoTechnica.NBodyChaos", + "repo": "adrisj7/OW_NBodyChaos", + "tags": [ + "gameplay", + "tweaks" + ], + "authorDisplay": "TacoTechnica" + }, + { + "name": "Shared Ship Log", + "uniqueName": "Tephirax.OuterWildsSharedShipLog", + "repo": "Tephirax/SharedShipLog", + "tags": [ + "integration", + "tool" + ] + }, + { + "name": "Kerbal Space Ventures", + "uniqueName": "Locochoco.KSPShips", + "repo": "ShoosGun/Kerbal-Space-Ventures", + "tags": [ + "gameplay", + "tool" + ], + "parent": "Locochoco.SlateShipyard", + "authorDisplay": "Locochoco & FunkyShoeMan" + }, + { + "name": "Solar Systems I Made as a Kid", + "uniqueName": "O32.ssimaak", + "repo": "RealOrbital32/Solar-Systems-I-Made-as-a-Kid", + "tags": [ + "content" + ], + "parent": "xen.NewHorizons", + "authorDisplay": "Orbital 32 (a.k.a. cigtu)" + }, + { + "name": "Owlystem", + "uniqueName": "O32.Owlystem", + "repo": "RealOrbital32/Owlystem", + "tags": [ + "content" + ], + "parent": "xen.NewHorizons", + "authorDisplay": "Orbital 32 (a.k.a. cigtu), classic by Classic" + }, + { + "name": "Nomai Text Printer", + "uniqueName": "Cleric.NomaiTextPrinter", + "repo": "coderCleric/NomaiTextPrinter", + "tags": [ + "tool" + ], + "utility": true, + "authorDisplay": "coderCleric" + }, + { + "name": "The Final Shortcut", + "uniqueName": "Acamaeda.Shortcut", + "repo": "Acamaeda/OuterWildsShortcut", + "tags": [ + "tweaks" + ], + "parent": "xen.NewHorizons" + }, + { + "name": "How Did This Happen?", + "uniqueName": "Acamaeda.Happen", + "repo": "Acamaeda/OuterWildsExperiment", + "tags": [ + "content" + ], + "parent": "xen.NewHorizons" + }, + { + "name": "I Don't Like Sand", + "uniqueName": "Acamaeda.Sand", + "repo": "Acamaeda/OuterWildsSand", + "tags": [ + "content" + ], + "parent": "xen.NewHorizons" + }, + { + "name": "Outer Wilds en Andalûh", + "uniqueName": "VholyIQ.OuterWildsAndaluh", + "repo": "andergd/OuterWildsAndaluh", + "tags": [ + "localization" + ], + "authorDisplay": "Vholy IQ" + }, + { + "name": "Outer Pictures", + "uniqueName": "Pau318.OuterPictures", + "repo": "Pau318/OuterPictures", + "tags": [ + "gameplay" + ], + "authorDisplay": "Pau318" + }, + { + "name": "SpeedTools", + "uniqueName": "GrimLala.SpeedTools", + "repo": "GrimLala/SpeedTools", + "tags": [ + "gameplay", + "tool" + ], + "authorDisplay": "grimsalad & LordLala" + }, + { + "name": "Break On Demand", + "uniqueName": "Raoul1808.BreakOnDemand", + "repo": "Raoul1808/BreakOnDemand", + "tags": [ + "gameplay" + ] + }, + { + "name": "Funny Christmas", + "uniqueName": "O32.FunnyChristmas", + "repo": "RealOrbital32/funny-christmas", + "tags": [ + "story" + ], + "parent": "O32.FunnySystem", + "authorDisplay": "Orbital 32 (a.k.a. cigtu)" + } + ] +} diff --git a/fetch-mods/test/previous-database.json b/fetch-mods/test/previous-database.json index 38878aec58..527071e07c 100644 --- a/fetch-mods/test/previous-database.json +++ b/fetch-mods/test/previous-database.json @@ -1,1122 +1,4583 @@ -[ - { - "name": "OWML", - "uniqueName": "Alek.OWML", - "description": "The mod loader and mod framework for Outer Wilds", - "author": "amazingalek", - "required": true, - "utility": true, - "downloadUrl": "https://github.com/amazingalek/owml/releases/download/2.3.2/OWML.zip", - "downloadCount": 41142, - "latestReleaseDate": "2022-02-03T21:49:34Z", - "firstReleaseDate": "2019-12-18T16:07:26Z", - "repo": "https://github.com/amazingalek/owml", - "version": "2.3.2", - "readme": { - "htmlUrl": "https://github.com/amazingalek/owml/blob/master/Readme.md", - "downloadUrl": "https://raw.githubusercontent.com/amazingalek/owml/master/Readme.md" - }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" +{ + "modManager": { + "version": "v1.17.0", + "downloadUrl": "https://github.com/ow-mods/ow-mod-manager/releases/download/v1.17.0/OuterWildsModManager-Portable.zip", + "zipDownloadUrl": "https://github.com/ow-mods/ow-mod-manager/releases/download/v1.17.0/OuterWildsModManager-Portable.zip", + "installerDownloadUrl": "https://github.com/ow-mods/ow-mod-manager/releases/download/v1.17.0/OuterWildsModManager-Installer.exe", + "downloadCount": 98529 }, - { - "name": "NomaiVR", - "uniqueName": "Raicuparta.NomaiVR", - "description": "Outer Wilds VR Mod", - "author": "Raicuparta", - "downloadUrl": "https://github.com/Raicuparta/nomai-vr/releases/download/2.6.0/Raicuparta.NomaiVR.zip", - "downloadCount": 32105, - "latestReleaseDate": "2022-01-06T20:33:09Z", - "firstReleaseDate": "2020-01-06T20:41:19Z", - "repo": "https://github.com/Raicuparta/nomai-vr", - "version": "2.6.0", - "readme": { - "htmlUrl": "https://github.com/Raicuparta/nomai-vr/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Raicuparta/nomai-vr/master/README.md" + "releases": [ + { + "name": "OWML", + "uniqueName": "Alek.OWML", + "description": "The mod loader and mod framework for Outer Wilds", + "author": "ow-mods", + "required": true, + "utility": true, + "downloadUrl": "https://github.com/ow-mods/owml/releases/download/2.8.0/OWML.zip", + "downloadCount": 80005, + "latestReleaseDate": "2022-12-01T15:31:25Z", + "firstReleaseDate": "2019-12-18T16:07:26Z", + "repo": "https://github.com/amazingalek/owml", + "version": "2.8.0", + "readme": { + "htmlUrl": "https://github.com/ow-mods/owml/blob/master/Readme.md", + "downloadUrl": "https://raw.githubusercontent.com/ow-mods/owml/master/Readme.md" + }, + "authorDisplay": "Alek & friends", + "tags": [ + "library" + ], + "slug": "owml", + "viewCount": 722, + "installCount": 0 }, - "latestReleaseDescription": "Add support for the Xbox app / Gamepass version of Outer Wilds", - "latestPrereleaseDescription": "" - }, - { - "name": "Quantum Space Buddies", - "uniqueName": "Raicuparta.QuantumSpaceBuddies", - "description": "Outer Wilds online multiplayer mod, using Mirror and OWML.", - "author": "misternebula", - "downloadUrl": "https://github.com/misternebula/quantum-space-buddies/releases/download/0.17.1/QSB.zip", - "downloadCount": 10198, - "latestReleaseDate": "2022-02-26T10:04:41Z", - "firstReleaseDate": "2020-03-01T18:04:22Z", - "repo": "https://github.com/misternebula/quantum-space-buddies", - "version": "0.17.1", - "readme": { - "htmlUrl": "https://github.com/misternebula/quantum-space-buddies/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/misternebula/quantum-space-buddies/master/README.md" + { + "name": "NomaiVR", + "uniqueName": "Raicuparta.NomaiVR", + "description": "Outer Wilds VR Mod with 6DOF tracking and full motion control support", + "author": "Raicuparta", + "downloadUrl": "https://github.com/Raicuparta/nomai-vr/releases/download/2.9.0/Raicuparta.NomaiVR.zip", + "downloadCount": 47804, + "latestReleaseDate": "2022-10-28T20:32:05Z", + "firstReleaseDate": "2020-01-06T20:41:19Z", + "repo": "https://github.com/Raicuparta/nomai-vr", + "version": "2.9.0", + "readme": { + "htmlUrl": "https://github.com/Raicuparta/nomai-vr/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Raicuparta/nomai-vr/master/README.md" + }, + "authorDisplay": "Raicuparta & Artum", + "prerelease": { + "version": "2.9.1-pre", + "downloadUrl": "https://github.com/Raicuparta/nomai-vr/releases/download/2.9.1-pre/Raicuparta.NomaiVR.zip", + "date": "2022-10-28T20:34:42Z" + }, + "tags": [ + "gameplay", + "integration" + ], + "slug": "nomaivr", + "viewCount": 1790, + "installCount": 1000 }, - "latestReleaseDescription": "- fix issue where the multiplayer buttons wouldn't show up because of a ReflectionTypeLoadException in QSBCore.InitializeAssemblies", - "prerelease": { - "version": "0.12.0-pr4", - "downloadUrl": "https://github.com/misternebula/quantum-space-buddies/releases/download/0.12.0-pr4/QSB.zip" + { + "name": "Quantum Space Buddies", + "uniqueName": "Raicuparta.QuantumSpaceBuddies", + "description": "Outer Wilds online multiplayer mod, using Mirror and OWML.", + "author": "misternebula", + "downloadUrl": "https://github.com/misternebula/quantum-space-buddies/releases/download/0.23.0/QSB.zip", + "downloadCount": 21557, + "latestReleaseDate": "2022-12-03T11:26:54Z", + "firstReleaseDate": "2020-03-01T18:04:22Z", + "repo": "https://github.com/misternebula/quantum-space-buddies", + "version": "0.23.0", + "readme": { + "htmlUrl": "https://github.com/misternebula/quantum-space-buddies/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/misternebula/quantum-space-buddies/master/README.md" + }, + "prerelease": { + "version": "0.19.0-pr1", + "downloadUrl": "https://github.com/misternebula/quantum-space-buddies/releases/download/0.19.0-pr1/QSB.zip", + "date": "2022-05-09T15:02:52Z" + }, + "tags": [ + "gameplay", + "integration" + ], + "slug": "quantumspacebuddies", + "viewCount": 1879, + "installCount": 761 }, - "latestPrereleaseDescription": "" - }, - { - "name": "Light Bramble", - "uniqueName": "Alek.LightBramble", - "description": "Dark Bramble without fish or fog.", - "author": "amazingalek", - "downloadUrl": "https://github.com/amazingalek/owml-light-bramble/releases/download/v0.7/OWML.LightBramble.zip", - "downloadCount": 6334, - "latestReleaseDate": "2021-10-14T20:13:05Z", - "firstReleaseDate": "2020-04-10T13:16:22Z", - "repo": "https://github.com/amazingalek/owml-light-bramble", - "version": "v0.7", - "readme": { - "htmlUrl": "https://github.com/amazingalek/owml-light-bramble/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/amazingalek/owml-light-bramble/master/README.md" + { + "name": "Light Bramble", + "uniqueName": "Alek.LightBramble", + "description": "Dark Bramble without fish or fog.", + "author": "amazingalek", + "downloadUrl": "https://github.com/amazingalek/owml-light-bramble/releases/download/v1.0.1/LightBramble.zip", + "downloadCount": 9081, + "latestReleaseDate": "2022-12-18T09:11:54Z", + "firstReleaseDate": "2020-04-10T13:16:22Z", + "repo": "https://github.com/amazingalek/owml-light-bramble", + "version": "v1.0.1", + "readme": { + "htmlUrl": "https://github.com/amazingalek/owml-light-bramble/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/amazingalek/owml-light-bramble/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "lightbramble", + "viewCount": 1004, + "installCount": 222 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "MN-InputHandler", - "uniqueName": "misternebula.MN-InputHandler", - "description": "An input handler for Outer Wilds mods.", - "author": "misternebula", - "utility": true, - "downloadUrl": "https://github.com/misternebula/InputHandler/releases/download/v2.0.0/MN-InputHandler.zip", - "downloadCount": 3037, - "latestReleaseDate": "2021-10-12T13:47:33Z", - "firstReleaseDate": "2020-04-10T13:20:20Z", - "repo": "https://github.com/misternebula/InputHandler", - "version": "v2.0.0", - "readme": { - "htmlUrl": "https://github.com/misternebula/InputHandler/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/misternebula/InputHandler/master/README.md" + { + "name": "FreeCam", + "uniqueName": "misternebula.FreeCam", + "description": "A free-camera mod for Outer Wilds", + "author": "misternebula", + "downloadUrl": "https://github.com/misternebula/FreeCam/releases/download/v2.6.0/misternebula.FreeCam.zip", + "downloadCount": 4596, + "latestReleaseDate": "2022-10-04T20:27:56Z", + "firstReleaseDate": "2020-04-10T13:12:27Z", + "repo": "https://github.com/misternebula/FreeCam", + "version": "v2.6.0", + "readme": { + "htmlUrl": "https://github.com/misternebula/FreeCam/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/misternebula/FreeCam/master/README.md" + }, + "tags": [ + "tool" + ], + "slug": "freecam", + "viewCount": 99, + "installCount": 98 }, - "latestReleaseDescription": "Added support for owml 2.0.0 (and Outer Wilds 1.1.10)", - "latestPrereleaseDescription": "" - }, - { - "name": "FreeCam", - "uniqueName": "misternebula.FreeCam", - "description": "", - "author": "misternebula", - "downloadUrl": "https://github.com/misternebula/FreeCam/releases/download/v2.3.0/misternebula.FreeCam.zip", - "downloadCount": 2712, - "latestReleaseDate": "2022-03-05T15:34:03Z", - "firstReleaseDate": "2020-04-10T13:12:27Z", - "repo": "https://github.com/misternebula/FreeCam", - "version": "v2.3.0", - "readme": { - "htmlUrl": "https://github.com/misternebula/FreeCam/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/misternebula/FreeCam/master/README.md" + { + "name": "Crouch Mod", + "uniqueName": "Alek.CrouchMod", + "description": "Enables crouching in Outer Wilds.", + "author": "amazingalek", + "downloadUrl": "https://github.com/amazingalek/owml-crouch-mod/releases/download/0.4/OWML.CrouchMod.zip", + "downloadCount": 1920, + "latestReleaseDate": "2021-10-14T20:14:27Z", + "firstReleaseDate": "2020-07-28T08:43:13Z", + "repo": "https://github.com/amazingalek/owml-crouch-mod", + "version": "0.4", + "readme": { + "htmlUrl": "https://github.com/amazingalek/owml-crouch-mod/blob/master/Readme.md", + "downloadUrl": "https://raw.githubusercontent.com/amazingalek/owml-crouch-mod/master/Readme.md" + }, + "tags": [ + "gameplay" + ], + "slug": "crouchmod", + "viewCount": 8, + "installCount": 39 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Crouch Mod", - "uniqueName": "Alek.CrouchMod", - "description": "Enables crouching in Outer Wilds.", - "author": "amazingalek", - "downloadUrl": "https://github.com/amazingalek/owml-crouch-mod/releases/download/0.4/OWML.CrouchMod.zip", - "downloadCount": 1437, - "latestReleaseDate": "2021-10-14T20:14:27Z", - "firstReleaseDate": "2020-07-28T08:43:13Z", - "repo": "https://github.com/amazingalek/owml-crouch-mod", - "version": "0.4", - "readme": { - "htmlUrl": "https://github.com/amazingalek/owml-crouch-mod/blob/master/Readme.md", - "downloadUrl": "https://raw.githubusercontent.com/amazingalek/owml-crouch-mod/master/Readme.md" + { + "name": "Clock", + "uniqueName": "clubby789.OWClock", + "description": "A clock overlay mod for Outer Wilds, including events", + "author": "clubby789", + "downloadUrl": "https://github.com/clubby789/OWClock/releases/download/0.7.0/release.zip", + "downloadCount": 8393, + "latestReleaseDate": "2022-03-23T11:03:42Z", + "firstReleaseDate": "2020-09-20T09:43:23Z", + "repo": "https://github.com/clubby789/OWClock", + "version": "0.7.0", + "readme": { + "htmlUrl": "https://github.com/clubby789/OWClock/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/clubby789/OWClock/master/README.md" + }, + "prerelease": { + "version": "0.6.1", + "downloadUrl": "https://github.com/clubby789/OWClock/releases/download/0.6.1/Release.zip", + "date": "2021-12-14T10:05:19Z" + }, + "tags": [ + "tool" + ], + "slug": "clock", + "viewCount": 111, + "installCount": 222 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Clock", - "uniqueName": "clubby789.OWClock", - "description": "A clock overlay mod for Outer Wilds, including events", - "author": "clubby789", - "downloadUrl": "https://github.com/clubby789/OWClock/releases/download/0.7.0/release.zip", - "downloadCount": 5271, - "latestReleaseDate": "2022-03-23T11:03:42Z", - "firstReleaseDate": "2020-09-20T09:43:23Z", - "repo": "https://github.com/clubby789/OWClock", - "version": "0.7.0", - "readme": { - "htmlUrl": "https://github.com/clubby789/OWClock/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/clubby789/OWClock/master/README.md" + { + "name": "HD Screenshot", + "uniqueName": "Alek.Cammie", + "description": "Screenshot mod for Outer Wilds.", + "author": "amazingalek", + "downloadUrl": "https://github.com/amazingalek/owml-cammie/releases/download/v0.3/HDScreenshot.zip", + "downloadCount": 1550, + "latestReleaseDate": "2021-10-14T20:15:08Z", + "firstReleaseDate": "2020-11-23T19:47:25Z", + "repo": "https://github.com/amazingalek/owml-cammie", + "version": "v0.3", + "readme": { + "htmlUrl": "https://github.com/amazingalek/owml-cammie/blob/master/Readme.md", + "downloadUrl": "https://raw.githubusercontent.com/amazingalek/owml-cammie/master/Readme.md" + }, + "tags": [ + "tool" + ], + "slug": "hdscreenshot", + "viewCount": 8, + "installCount": 18 }, - "latestReleaseDescription": "## What's Changed\r\n* Version 0.7.0 EotE events by @Tllya in https://github.com/clubby789/OWClock/pull/15\r\n", - "prerelease": { - "version": "0.6.1", - "downloadUrl": "https://github.com/clubby789/OWClock/releases/download/0.6.1/Release.zip" + { + "name": "Menu Framework", + "uniqueName": "_nebula.MenuFramework", + "description": "", + "author": "misternebula", + "utility": true, + "downloadUrl": "https://github.com/misternebula/MenuFramework/releases/download/3.0.0/MenuFramework.zip", + "downloadCount": 13576, + "latestReleaseDate": "2022-05-04T09:32:40Z", + "firstReleaseDate": "2021-08-27T12:37:18Z", + "repo": "https://github.com/misternebula/MenuFramework", + "version": "3.0.0", + "readme": { + "htmlUrl": "https://github.com/misternebula/MenuFramework/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/misternebula/MenuFramework/main/README.md" + }, + "tags": [ + "library" + ], + "slug": "menuframework", + "viewCount": 138, + "installCount": 185 }, - "latestPrereleaseDescription": "" - }, - { - "name": "HD Screenshot", - "uniqueName": "Alek.Cammie", - "description": "Screenshot mod for Outer Wilds.", - "author": "amazingalek", - "downloadUrl": "https://github.com/amazingalek/owml-cammie/releases/download/v0.3/HDScreenshot.zip", - "downloadCount": 1192, - "latestReleaseDate": "2021-10-14T20:15:08Z", - "firstReleaseDate": "2020-11-23T19:47:25Z", - "repo": "https://github.com/amazingalek/owml-cammie", - "version": "v0.3", - "readme": { - "htmlUrl": "https://github.com/amazingalek/owml-cammie/blob/master/Readme.md", - "downloadUrl": "https://raw.githubusercontent.com/amazingalek/owml-cammie/master/Readme.md" - }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Menu Framework", - "uniqueName": "_nebula.MenuFramework", - "description": "", - "author": "misternebula", - "utility": true, - "downloadUrl": "https://github.com/misternebula/MenuFramework/releases/download/v2.1.1/MenuFramework.zip", - "downloadCount": 3704, - "latestReleaseDate": "2021-12-20T14:22:15Z", - "firstReleaseDate": "2021-08-27T12:37:18Z", - "repo": "https://github.com/misternebula/MenuFramework", - "version": "v2.1.1", - "latestReleaseDescription": "Added arguments for specifying the order index of elements. ", - "latestPrereleaseDescription": "" - }, - { - "name": "ScoutStreaming", - "uniqueName": "Vesper.ScoutStreaming", - "description": "Turns the scout's screenshot feature into a live video!", - "author": "Vesper-Works", - "downloadUrl": "https://github.com/Vesper-Works/Scout-Streaming/releases/download/1.1.0/Release.zip", - "downloadCount": 1835, - "latestReleaseDate": "2021-10-20T11:24:44Z", - "firstReleaseDate": "2021-10-12T18:29:14Z", - "repo": "https://github.com/Vesper-Works/Scout-Streaming", - "version": "1.1.0", - "readme": { - "htmlUrl": "https://github.com/Vesper-Works/Scout-Streaming/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/Scout-Streaming/master/README.md" - }, - "latestReleaseDescription": "", - "prerelease": { + { + "name": "ScoutStreaming", + "uniqueName": "Vesper.ScoutStreaming", + "description": "Turns the scout's screenshot feature into a live video!", + "author": "Vesper-Works", + "downloadUrl": "https://github.com/Vesper-Works/Scout-Streaming/releases/download/1.2.0/Release.1.2.0.zip", + "downloadCount": 3792, + "latestReleaseDate": "2022-05-21T20:57:41Z", + "firstReleaseDate": "2021-10-12T18:29:14Z", + "repo": "https://github.com/Vesper-Works/Scout-Streaming", "version": "1.2.0", - "downloadUrl": "https://github.com/Vesper-Works/Scout-Streaming/releases/download/1.2.0/Release.1.2.0.zip" + "readme": { + "htmlUrl": "https://github.com/Vesper-Works/Scout-Streaming/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/Scout-Streaming/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "scoutstreaming", + "viewCount": 47, + "installCount": 137 }, - "latestPrereleaseDescription": "" - }, - { - "name": "Vesper's Assorted OuterWilds Shaders", - "uniqueName": "Vesper.VespersAssortedOuterWildsShaders", - "description": "A mod containing all of the shaders I've created for Outer Wilds! ", - "author": "Vesper-Works", - "downloadUrl": "https://github.com/Vesper-Works/Vesper-s-Assorted-OuterWilds-Shaders/releases/download/1.1.0/Release.1.1.0.zip", - "downloadCount": 605, - "latestReleaseDate": "2021-11-22T15:48:10Z", - "firstReleaseDate": "2021-10-25T15:52:23Z", - "repo": "https://github.com/Vesper-Works/Vesper-s-Assorted-OuterWilds-Shaders", - "version": "1.1.0", - "readme": { - "htmlUrl": "https://github.com/Vesper-Works/Vesper-s-Assorted-OuterWilds-Shaders/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/Vesper-s-Assorted-OuterWilds-Shaders/master/README.md" + { + "name": "Vesper's Assorted OuterWilds Shaders", + "uniqueName": "Vesper.VespersAssortedOuterWildsShaders", + "description": "A mod containing all of the shaders I've created for Outer Wilds! ", + "author": "Vesper-Works", + "downloadUrl": "https://github.com/Vesper-Works/Vesper-s-Assorted-OuterWilds-Shaders/releases/download/1.1.0/Release.1.1.0.zip", + "downloadCount": 1086, + "latestReleaseDate": "2021-11-22T15:48:10Z", + "firstReleaseDate": "2021-10-25T15:52:23Z", + "repo": "https://github.com/Vesper-Works/Vesper-s-Assorted-OuterWilds-Shaders", + "version": "1.1.0", + "readme": { + "htmlUrl": "https://github.com/Vesper-Works/Vesper-s-Assorted-OuterWilds-Shaders/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/Vesper-s-Assorted-OuterWilds-Shaders/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "vespersassortedouterwildsshaders", + "viewCount": 29, + "installCount": 28 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Outer Wilds Online", - "uniqueName": "Vesper.OuterWildsMMO", - "description": "An Outer Wilds MMO experience, just connect and play! Server is online", - "author": "Vesper-Works", - "downloadUrl": "https://github.com/Vesper-Works/OuterWildsOnline/releases/download/0.4.3/Release.0.4.3.zip", - "downloadCount": 2882, - "latestReleaseDate": "2022-03-11T13:05:27Z", - "firstReleaseDate": "2021-11-18T23:08:53Z", - "repo": "https://github.com/Vesper-Works/OuterWildsOnline", - "version": "0.4.3", - "readme": { - "htmlUrl": "https://github.com/Vesper-Works/OuterWildsOnline/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/OuterWildsOnline/master/README.md" + { + "name": "Outer Wilds Online", + "uniqueName": "Vesper.OuterWildsMMO", + "description": "An Outer Wilds MMO experience, just connect and play! Server is offline.", + "author": "Vesper-Works", + "downloadUrl": "https://github.com/Vesper-Works/OuterWildsOnline/releases/download/0.6.1/0.6.1.zip", + "downloadCount": 7054, + "latestReleaseDate": "2022-10-07T10:54:11Z", + "firstReleaseDate": "2021-11-18T23:08:53Z", + "repo": "https://github.com/Vesper-Works/OuterWildsOnline", + "version": "0.6.1", + "readme": { + "htmlUrl": "https://github.com/Vesper-Works/OuterWildsOnline/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/OuterWildsOnline/master/README.md" + }, + "prerelease": { + "version": "0.6.2", + "downloadUrl": "https://github.com/Vesper-Works/OuterWildsOnline/releases/download/0.6.2/Prerelease0.6.2.zip", + "date": "2022-11-17T00:54:44Z" + }, + "tags": [ + "gameplay" + ], + "slug": "outerwildsonline", + "viewCount": 209, + "installCount": 162 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Cheat and Debug Menu", - "uniqueName": "Glitch.AltDebugMenu", - "description": "Allows using some commands from Debug Mode and adds other functions as well.", - "author": "glitchewski", - "downloadUrl": "https://github.com/glitchewski/OWML.Glitch.CheatAndDebugMenu/releases/download/0.5.3/Glitch.CheatAndDebugMenu.zip", - "downloadCount": 1575, - "latestReleaseDate": "2021-10-25T06:38:12Z", - "firstReleaseDate": "2021-10-12T21:02:20Z", - "repo": "https://github.com/glitchewski/OWML.Glitch.CheatAndDebugMenu", - "version": "0.5.3", - "readme": { - "htmlUrl": "https://github.com/glitchewski/OWML.Glitch.CheatAndDebugMenu/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/glitchewski/OWML.Glitch.CheatAndDebugMenu/main/README.md" + { + "name": "Cheat and Debug Menu", + "uniqueName": "Glitch.AltDebugMenu", + "description": "Allows using some commands from Debug Mode and adds other functions as well.", + "author": "glitchewski", + "downloadUrl": "https://github.com/glitchewski/OWML.Glitch.CheatAndDebugMenu/releases/download/0.5.3/Glitch.CheatAndDebugMenu.zip", + "downloadCount": 2836, + "latestReleaseDate": "2021-10-25T06:38:12Z", + "firstReleaseDate": "2021-10-12T21:02:20Z", + "repo": "https://github.com/glitchewski/OWML.Glitch.CheatAndDebugMenu", + "version": "0.5.3", + "readme": { + "htmlUrl": "https://github.com/glitchewski/OWML.Glitch.CheatAndDebugMenu/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/glitchewski/OWML.Glitch.CheatAndDebugMenu/main/README.md" + }, + "tags": [ + "tool" + ], + "slug": "cheatanddebugmenu", + "viewCount": 151, + "installCount": 85 }, - "latestReleaseDescription": "## [0.5.3]\r\n\r\n### Other\r\n- renamed mod to Cheat and Debug Menu from Alt Debug Menu\r\n\r\n## [0.5.2]\r\n\r\n### Other\r\n- version number omitted", - "latestPrereleaseDescription": "" - }, - { - "name": "Cheats Mod", - "uniqueName": "PacificEngine.CheatsMod", - "description": "Togglable features and teleportation", - "author": "PacificEngine", - "downloadUrl": "https://github.com/PacificEngine/OW_CheatsMod/releases/download/0.7.4/PacificEngine.OW_CheatsMod.zip", - "downloadCount": 3838, - "latestReleaseDate": "2022-01-25T00:19:05Z", - "firstReleaseDate": "2021-10-21T06:56:51Z", - "repo": "https://github.com/PacificEngine/OW_CheatsMod", - "version": "0.7.4", - "readme": { - "htmlUrl": "https://github.com/PacificEngine/OW_CheatsMod/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/PacificEngine/OW_CheatsMod/main/README.md" + { + "name": "Cheats Mod", + "uniqueName": "PacificEngine.CheatsMod", + "description": "Togglable features and teleportation", + "author": "PacificEngine", + "downloadUrl": "https://github.com/PacificEngine/OW_CheatsMod/releases/download/0.7.4/PacificEngine.OW_CheatsMod.zip", + "downloadCount": 7320, + "latestReleaseDate": "2022-01-25T00:19:05Z", + "firstReleaseDate": "2021-10-21T06:56:51Z", + "repo": "https://github.com/PacificEngine/OW_CheatsMod", + "version": "0.7.4", + "readme": { + "htmlUrl": "https://github.com/PacificEngine/OW_CheatsMod/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/PacificEngine/OW_CheatsMod/main/README.md" + }, + "tags": [ + "tool" + ], + "slug": "cheatsmod", + "viewCount": 310, + "installCount": 296 }, - "latestReleaseDescription": "## What's Changed\r\n- Added ability to log the current state of Player Position, Bramble Portals, and Warp Pads\r\n\r\n**Full Changelog**: https://github.com/PacificEngine/OW_CheatsMod/compare/0.7.3...0.7.4", - "latestPrereleaseDescription": "" - }, - { - "name": "Difficulty Mod", - "uniqueName": "PacificEngine.OW_HardMode", - "description": "Allow players to change game difficulty settings", - "author": "PacificEngine", - "downloadUrl": "https://github.com/PacificEngine/OW_HardMode/releases/download/0.5.2/PacificEngine.OW_HardMode.zip", - "downloadCount": 703, - "latestReleaseDate": "2022-01-25T00:24:13Z", - "firstReleaseDate": "2021-10-25T09:07:23Z", - "repo": "https://github.com/PacificEngine/OW_HardMode", - "version": "0.5.2", - "readme": { - "htmlUrl": "https://github.com/PacificEngine/OW_HardMode/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/PacificEngine/OW_HardMode/main/README.md" + { + "name": "Difficulty Mod", + "uniqueName": "PacificEngine.OW_HardMode", + "description": "Allow players to change game difficulty settings", + "author": "PacificEngine", + "downloadUrl": "https://github.com/PacificEngine/OW_HardMode/releases/download/0.5.2/PacificEngine.OW_HardMode.zip", + "downloadCount": 991, + "latestReleaseDate": "2022-01-25T00:24:13Z", + "firstReleaseDate": "2021-10-25T09:07:23Z", + "repo": "https://github.com/PacificEngine/OW_HardMode", + "version": "0.5.2", + "readme": { + "htmlUrl": "https://github.com/PacificEngine/OW_HardMode/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/PacificEngine/OW_HardMode/main/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "difficultymod", + "viewCount": 20, + "installCount": 18 }, - "latestReleaseDescription": "## What's Changed\r\n- Some build updates\r\n\r\n**Full Changelog**: https://github.com/PacificEngine/OW_HardMode/compare/0.5.1...0.5.2", - "latestPrereleaseDescription": "" - }, - { - "name": "Peaceful Ghosts", - "uniqueName": "Leadpogrommer.PeacefulGhosts", - "description": "", - "author": "leadpogrommer", - "downloadUrl": "https://github.com/leadpogrommer/PeacefulGhosts/releases/download/v0.1.0/Leadpogrommer.PeacefulGhosts.zip", - "downloadCount": 1049, - "latestReleaseDate": "2021-10-25T10:17:21Z", - "firstReleaseDate": "2021-10-25T10:17:21Z", - "repo": "https://github.com/leadpogrommer/PeacefulGhosts", - "version": "v0.1.0", - "readme": { - "htmlUrl": "https://github.com/leadpogrommer/PeacefulGhosts/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/leadpogrommer/PeacefulGhosts/master/README.md" + { + "name": "Peaceful Ghosts", + "uniqueName": "Leadpogrommer.PeacefulGhosts", + "description": "", + "author": "leadpogrommer", + "downloadUrl": "https://github.com/leadpogrommer/PeacefulGhosts/releases/download/v0.1.1/Leadpogrommer.PeacefulGhosts.zip", + "downloadCount": 2284, + "latestReleaseDate": "2022-06-30T16:59:01Z", + "firstReleaseDate": "2021-10-25T10:17:21Z", + "repo": "https://github.com/leadpogrommer/PeacefulGhosts", + "version": "v0.1.1", + "readme": { + "htmlUrl": "https://github.com/leadpogrommer/PeacefulGhosts/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/leadpogrommer/PeacefulGhosts/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "peacefulghosts", + "viewCount": 39, + "installCount": 62 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "SlowTime", - "uniqueName": "dnlwtsn.SlowTime", - "description": "Slows time-based events over 1 hour in the game to give you more time to explore!", - "author": "dwatson251", - "downloadUrl": "https://github.com/dwatson251/ow-slowtime/releases/download/v0.1.0/dnlwtsn.SlowTime.zip", - "downloadCount": 1070, - "latestReleaseDate": "2021-10-27T19:40:41Z", - "firstReleaseDate": "2021-10-27T19:40:41Z", - "repo": "https://github.com/dwatson251/ow-slowtime", - "version": "v0.1.0", - "readme": { - "htmlUrl": "https://github.com/dwatson251/ow-slowtime/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/dwatson251/ow-slowtime/master/README.md" + { + "name": "SlowTime", + "uniqueName": "dnlwtsn.SlowTime", + "description": "Slows time-based events over 1 hour in the game to give you more time to explore!", + "author": "dwatson251", + "downloadUrl": "https://github.com/dwatson251/ow-slowtime/releases/download/v0.1.0/dnlwtsn.SlowTime.zip", + "downloadCount": 2020, + "latestReleaseDate": "2021-10-27T19:40:41Z", + "firstReleaseDate": "2021-10-27T19:40:41Z", + "repo": "https://github.com/dwatson251/ow-slowtime", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/dwatson251/ow-slowtime/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/dwatson251/ow-slowtime/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "slowtime", + "viewCount": 41, + "installCount": 73 }, - "latestReleaseDescription": "Initial release. Sets the loop time to 1 hour.", - "latestPrereleaseDescription": "" - }, - { - "name": "OW Smooth Thrust", - "uniqueName": "TruAI.SmoothThrust", - "description": "Outer Wilds Keyboard Smooth Thrust", - "author": "TAImatem", - "downloadUrl": "https://github.com/TAImatem/OW_SmoothThrust/releases/download/v2.0.1/OW_SmoothThrust.zip", - "downloadCount": 3979, - "latestReleaseDate": "2021-11-02T18:03:27Z", - "firstReleaseDate": "2020-04-14T11:33:05Z", - "repo": "https://github.com/TAImatem/OW_SmoothThrust", - "version": "v2.0.1", - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Randomizer", - "uniqueName": "PacificEngine.OW_Randomizer", - "description": "Randomizes stuff in outer wilds", - "author": "PacificEngine", - "downloadUrl": "https://github.com/PacificEngine/OW_Randomizer/releases/download/0.7.7/PacificEngine.OW_Randomizer.zip", - "downloadCount": 1258, - "latestReleaseDate": "2022-01-25T00:23:20Z", - "firstReleaseDate": "2021-11-04T03:36:23Z", - "repo": "https://github.com/PacificEngine/OW_Randomizer", - "version": "0.7.7", - "readme": { - "htmlUrl": "https://github.com/PacificEngine/OW_Randomizer/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/PacificEngine/OW_Randomizer/main/README.md" + { + "name": "OW Smooth Thrust", + "uniqueName": "TruAI.SmoothThrust", + "description": "Outer Wilds Keyboard Smooth Thrust", + "author": "TAImatem", + "downloadUrl": "https://github.com/TAImatem/OW_SmoothThrust/releases/download/v2.0.1/OW_SmoothThrust.zip", + "downloadCount": 4555, + "latestReleaseDate": "2021-11-02T18:03:27Z", + "firstReleaseDate": "2020-04-14T11:33:05Z", + "repo": "https://github.com/TAImatem/OW_SmoothThrust", + "version": "v2.0.1", + "readme": { + "htmlUrl": "https://github.com/TAImatem/OW_SmoothThrust/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/TAImatem/OW_SmoothThrust/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "owsmooththrust", + "viewCount": 18, + "installCount": 38 }, - "latestReleaseDescription": "## What's Changed\r\n- Some build updates\r\n\r\n**Full Changelog**: https://github.com/PacificEngine/OW_Randomizer/compare/0.7.6...0.7.7", - "latestPrereleaseDescription": "" - }, - { - "name": "PacificEngine's Common Resources", - "uniqueName": "PacificEngine.OW_CommonResources", - "description": "A Collection of Common Resource to use throughout downstream mods", - "author": "PacificEngine", - "utility": true, - "downloadUrl": "https://github.com/PacificEngine/OW_CommonResources/releases/download/0.5.14/PacificEngine.OW_CommonResources.zip", - "downloadCount": 5408, - "latestReleaseDate": "2022-02-11T05:14:53Z", - "firstReleaseDate": "2021-11-04T17:05:42Z", - "repo": "https://github.com/PacificEngine/OW_CommonResources", - "version": "0.5.14", - "readme": { - "htmlUrl": "https://github.com/PacificEngine/OW_CommonResources/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/PacificEngine/OW_CommonResources/main/README.md" + { + "name": "Randomizer", + "uniqueName": "PacificEngine.OW_Randomizer", + "description": "Randomizes stuff in outer wilds", + "author": "PacificEngine", + "downloadUrl": "https://github.com/PacificEngine/OW_Randomizer/releases/download/0.7.7/PacificEngine.OW_Randomizer.zip", + "downloadCount": 2058, + "latestReleaseDate": "2022-01-25T00:23:20Z", + "firstReleaseDate": "2021-11-04T03:36:23Z", + "repo": "https://github.com/PacificEngine/OW_Randomizer", + "version": "0.7.7", + "readme": { + "htmlUrl": "https://github.com/PacificEngine/OW_Randomizer/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/PacificEngine/OW_Randomizer/main/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "randomizer", + "viewCount": 83, + "installCount": 70 }, - "latestReleaseDescription": "## What's Changed\r\n* Fixed orientation issues with orbits, surface, and objects with \"Align with Body\"\r\n* Fixed issue with Probe Cannon Debris Orbit\r\n* Fixed White Hole Station default location\r\n* Fixed Orbital cannon to be randomized once more\r\n* Fixed a bug where the player would start to auto-pilot make to the solar system while in a Dark Bramble pocket dimension.\r\n\r\n## New Contributors\r\n* @xen-42 made their first contribution in https://github.com/PacificEngine/OW_CommonResources/pull/11\r\n\r\n**Full Changelog**: https://github.com/PacificEngine/OW_CommonResources/compare/0.5.13...0.5.14", - "latestPrereleaseDescription": "" - }, - { - "name": "No Alt Tab Pause", - "uniqueName": "lStewieAl.RunInBackground", - "description": "Mod for Outer Wilds allowing the game to continue while in background", - "author": "lStewieAl", - "downloadUrl": "https://github.com/lStewieAl/OuterWilds-NoAltTabPause/releases/download/0.1.0/lStewieAl.RunInBackground.zip", - "downloadCount": 447, - "latestReleaseDate": "2021-11-11T21:29:26Z", - "firstReleaseDate": "2021-11-11T21:29:26Z", - "repo": "https://github.com/lStewieAl/OuterWilds-NoAltTabPause", - "version": "0.1.0", - "readme": { - "htmlUrl": "https://github.com/lStewieAl/OuterWilds-NoAltTabPause/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/lStewieAl/OuterWilds-NoAltTabPause/master/README.md" + { + "name": "PacificEngine's Common Resources", + "uniqueName": "PacificEngine.OW_CommonResources", + "description": "A Collection of Common Resource to use throughout downstream mods", + "author": "dgarroDC", + "utility": true, + "downloadUrl": "https://github.com/dgarroDC/OW_CommonResources/releases/download/0.5.15/PacificEngine.OW_CommonResources.zip", + "downloadCount": 1864, + "latestReleaseDate": "2022-09-29T17:14:07Z", + "firstReleaseDate": "2022-09-29T17:14:07Z", + "repo": "https://github.com/dgarroDC/OW_CommonResources", + "version": "0.5.15", + "readme": { + "htmlUrl": "https://github.com/dgarroDC/OW_CommonResources/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/dgarroDC/OW_CommonResources/main/README.md" + }, + "authorDisplay": "PacificEngine", + "tags": [ + "library" + ], + "slug": "pacificenginescommonresources", + "viewCount": 24, + "installCount": 34 }, - "latestReleaseDescription": "Allow the game to continue in background, allowing autopilot while the game isn't focused.", - "latestPrereleaseDescription": "" - }, - { - "name": "Echoes of the Caribbean", - "uniqueName": "tealhelix.EotE-RideMusic", - "description": "NEW Daft Punk light show mode! Replaces a key bit of music in EotE with something more zesty.", - "author": "tealhelix", - "downloadUrl": "https://github.com/tealhelix/ow-mod-eote-ridemusic/releases/download/1.1.3/tealhelix.EotE-RideMusic.zip", - "downloadCount": 431, - "latestReleaseDate": "2021-11-30T21:59:11Z", - "firstReleaseDate": "2021-11-19T04:07:39Z", - "repo": "https://github.com/tealhelix/ow-mod-eote-ridemusic", - "version": "1.1.3", - "readme": { - "htmlUrl": "https://github.com/tealhelix/ow-mod-eote-ridemusic/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/tealhelix/ow-mod-eote-ridemusic/master/README.md" + { + "name": "No Alt Tab Pause", + "uniqueName": "lStewieAl.RunInBackground", + "description": "Mod for Outer Wilds allowing the game to continue while in background", + "author": "lStewieAl", + "downloadUrl": "https://github.com/lStewieAl/OuterWilds-NoAltTabPause/releases/download/0.1.0/lStewieAl.RunInBackground.zip", + "downloadCount": 891, + "latestReleaseDate": "2021-11-11T21:29:26Z", + "firstReleaseDate": "2021-11-11T21:29:26Z", + "repo": "https://github.com/lStewieAl/OuterWilds-NoAltTabPause", + "version": "0.1.0", + "readme": { + "htmlUrl": "https://github.com/lStewieAl/OuterWilds-NoAltTabPause/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/lStewieAl/OuterWilds-NoAltTabPause/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "noalttabpause", + "viewCount": 7, + "installCount": 35 }, - "latestReleaseDescription": "Correct release number in payload manifest", - "latestPrereleaseDescription": "" - }, - { - "name": "Third Person Camera", - "uniqueName": "xen.ThirdPersonCamera", - "description": "A third-person camera for Outer Wilds.", - "author": "xen-42", - "downloadUrl": "https://github.com/xen-42/outer-wilds-third-person-camera/releases/download/v1.2.4/xen.ThirdPersonCamera.zip", - "downloadCount": 1059, - "latestReleaseDate": "2022-01-14T16:43:01Z", - "firstReleaseDate": "2021-11-16T19:46:51Z", - "repo": "https://github.com/xen-42/outer-wilds-third-person-camera", - "version": "v1.2.4", - "readme": { - "htmlUrl": "https://github.com/xen-42/outer-wilds-third-person-camera/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-third-person-camera/master/README.md" + { + "name": "Echoes of the Caribbean", + "uniqueName": "tealhelix.EotE-RideMusic", + "description": "Replaces a key bit of music in EotE with something more zesty. Includes Daft Punk light show mode!", + "author": "tealhelix", + "downloadUrl": "https://github.com/tealhelix/ow-mod-eote-ridemusic/releases/download/1.1.3/tealhelix.EotE-RideMusic.zip", + "downloadCount": 640, + "latestReleaseDate": "2021-11-30T21:59:11Z", + "firstReleaseDate": "2021-11-19T04:07:39Z", + "repo": "https://github.com/tealhelix/ow-mod-eote-ridemusic", + "version": "1.1.3", + "readme": { + "htmlUrl": "https://github.com/tealhelix/ow-mod-eote-ridemusic/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/tealhelix/ow-mod-eote-ridemusic/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "echoesofthecaribbean", + "viewCount": 14, + "installCount": 7 }, - "latestReleaseDescription": "Removed unneeded option", - "latestPrereleaseDescription": "" - }, - { - "name": "NomaiVR Online Patches", - "uniqueName": "Artum.NomaiVROnlinePatches", - "description": "Patches to adapt some Outer Wilds Online features to NomaiVR", - "author": "artumino", - "parent": "Raicuparta.NomaiVR", - "downloadUrl": "https://github.com/artumino/NomaiVROnlinePatches/releases/download/0.0.7/Artum.NomaiVROnlinePatches.zip", - "downloadCount": 1535, - "latestReleaseDate": "2022-01-08T21:25:51Z", - "firstReleaseDate": "2021-11-25T21:06:32Z", - "repo": "https://github.com/artumino/NomaiVROnlinePatches", - "version": "0.0.7", - "readme": { - "htmlUrl": "https://github.com/artumino/NomaiVROnlinePatches/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/artumino/NomaiVROnlinePatches/master/README.md" + { + "name": "Third Person Camera", + "uniqueName": "xen.ThirdPersonCamera", + "description": "A third-person camera for Outer Wilds.", + "author": "xen-42", + "downloadUrl": "https://github.com/xen-42/outer-wilds-third-person-camera/releases/download/v2.0.3/xen.ThirdPersonCamera.zip", + "downloadCount": 2123, + "latestReleaseDate": "2022-09-17T06:24:14Z", + "firstReleaseDate": "2021-11-16T19:46:51Z", + "repo": "https://github.com/xen-42/outer-wilds-third-person-camera", + "version": "v2.0.3", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-third-person-camera/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-third-person-camera/main/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "thirdpersoncamera", + "viewCount": 142, + "installCount": 72 }, - "latestReleaseDescription": "- Updated for NomaiVR 2.6", - "latestPrereleaseDescription": "" - }, - { - "name": "NomaiVR FFR", - "uniqueName": "Artum.NomaiVRFoveated", - "description": "Uses HTC's FFR plugin to improve performance in NomaiVR on NVIDIA RTX cards", - "author": "artumino", - "parent": "Raicuparta.NomaiVR", - "downloadUrl": "https://github.com/artumino/NomaiVR-FixedFoveatedRendering/releases/download/1.0.3/Artum.NomaiVRFoveated.zip", - "downloadCount": 2530, - "latestReleaseDate": "2022-01-12T14:40:22Z", - "firstReleaseDate": "2021-11-25T22:50:49Z", - "repo": "https://github.com/artumino/NomaiVR-FixedFoveatedRendering", - "version": "1.0.3", - "latestReleaseDescription": "- Fixed settings being ignored", - "latestPrereleaseDescription": "" - }, - { - "name": "Static Camera", - "uniqueName": "xen.StaticCamera", - "description": "Place a camera where you're standing then walk around in front of it.", - "author": "xen-42", - "downloadUrl": "https://github.com/xen-42/outer-wilds-static-camera/releases/download/v0.1.3/xen.StaticCamera.zip", - "downloadCount": 323, - "latestReleaseDate": "2021-12-05T20:13:36Z", - "firstReleaseDate": "2021-11-26T06:37:49Z", - "repo": "https://github.com/xen-42/outer-wilds-static-camera", - "version": "v0.1.3", - "readme": { - "htmlUrl": "https://github.com/xen-42/outer-wilds-static-camera/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-static-camera/master/README.md" + { + "name": "NomaiVR Online Patches", + "uniqueName": "Artum.NomaiVROnlinePatches", + "description": "Patches to adapt some Outer Wilds Online features to NomaiVR", + "author": "artumino", + "parent": "Raicuparta.NomaiVR", + "downloadUrl": "https://github.com/artumino/NomaiVROnlinePatches/releases/download/0.0.11/Artum.NomaiVROnlinePatches.zip", + "downloadCount": 4063, + "latestReleaseDate": "2022-09-01T20:33:05Z", + "firstReleaseDate": "2021-11-25T21:06:32Z", + "repo": "https://github.com/artumino/NomaiVROnlinePatches", + "version": "0.0.11", + "readme": { + "htmlUrl": "https://github.com/artumino/NomaiVROnlinePatches/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/artumino/NomaiVROnlinePatches/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "nomaivronlinepatches", + "viewCount": 17, + "installCount": 188 }, - "latestReleaseDescription": "Improved controls and added in better 3rd person compatibility", - "latestPrereleaseDescription": "" - }, - { - "name": "Daydream", - "uniqueName": "xen.DayDream", - "description": "Makes it daytime in the DLC dream world and lets you enter from any campfire.", - "author": "xen-42", - "downloadUrl": "https://github.com/xen-42/outer-wilds-day-dream/releases/download/v1.0.0/xen.DayDream.zip", - "downloadCount": 686, - "latestReleaseDate": "2021-12-14T05:34:34Z", - "firstReleaseDate": "2021-11-28T16:50:14Z", - "repo": "https://github.com/xen-42/outer-wilds-day-dream", - "version": "v1.0.0", - "readme": { - "htmlUrl": "https://github.com/xen-42/outer-wilds-day-dream/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-day-dream/master/README.md" + { + "name": "NomaiVR FFR", + "uniqueName": "Artum.NomaiVRFoveated", + "description": "Uses HTC's FFR plugin to improve performance in NomaiVR on NVIDIA RTX cards", + "author": "artumino", + "parent": "Raicuparta.NomaiVR", + "downloadUrl": "https://github.com/artumino/NomaiVR-FixedFoveatedRendering/releases/download/1.0.4/Artum.NomaiVRFoveated.zip", + "downloadCount": 7402, + "latestReleaseDate": "2022-04-21T21:50:28Z", + "firstReleaseDate": "2021-11-25T22:50:49Z", + "repo": "https://github.com/artumino/NomaiVR-FixedFoveatedRendering", + "version": "1.0.4", + "tags": [ + "gameplay" + ], + "slug": "nomaivrffr", + "viewCount": 120, + "installCount": 398 }, - "latestReleaseDescription": "Made dreaming at any campfire make you wake up at that same campfire.", - "latestPrereleaseDescription": "" - }, - { - "name": "EotE Brighter Dreams", - "uniqueName": "Heelio.EotEBrighterDreams", - "description": "Outer Wilds mod: gives the player night vision on Echoes of the Eye's dream world.", - "author": "Heelio", - "downloadUrl": "https://github.com/Heelio/EotE-Brighter-Dreams/releases/download/0.1.1/Heelio.EotEBrighterDreams.zip", - "downloadCount": 1089, - "latestReleaseDate": "2021-11-28T22:52:25Z", - "firstReleaseDate": "2021-11-28T20:52:42Z", - "repo": "https://github.com/Heelio/EotE-Brighter-Dreams", - "version": "0.1.1", - "readme": { - "htmlUrl": "https://github.com/Heelio/EotE-Brighter-Dreams/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Heelio/EotE-Brighter-Dreams/master/README.md" + { + "name": "Static Camera", + "uniqueName": "xen.StaticCamera", + "description": "Place a camera where you're standing then walk around in front of it.", + "author": "xen-42", + "downloadUrl": "https://github.com/xen-42/outer-wilds-static-camera/releases/download/v1.0.3/xen.StaticCamera.zip", + "downloadCount": 671, + "latestReleaseDate": "2022-09-17T06:26:06Z", + "firstReleaseDate": "2021-11-26T06:37:49Z", + "repo": "https://github.com/xen-42/outer-wilds-static-camera", + "version": "v1.0.3", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-static-camera/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-static-camera/main/README.md" + }, + "tags": [ + "tool" + ], + "slug": "staticcamera", + "viewCount": 11, + "installCount": 16 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Unity Explorer", - "uniqueName": "Vesper.UnityExplorer", - "description": "Allows you to look at a recreation of the Unity editor during runtime", - "author": "Vesper-Works", - "downloadUrl": "https://github.com/Vesper-Works/Unity-Explorer-For-Outer-Wilds/releases/download/4.6.1/Vesper.UnityExplorer.zip", - "downloadCount": 355, - "latestReleaseDate": "2022-03-23T21:58:36Z", - "firstReleaseDate": "2022-01-05T12:14:10Z", - "repo": "https://github.com/Vesper-Works/Unity-Explorer-For-Outer-Wilds", - "version": "4.6.1", - "readme": { - "htmlUrl": "https://github.com/Vesper-Works/Unity-Explorer-For-Outer-Wilds/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/Unity-Explorer-For-Outer-Wilds/main/README.md" + { + "name": "Daydream", + "uniqueName": "xen.DayDream", + "description": "Makes it daytime in the DLC dream world and lets you enter from any campfire.", + "author": "xen-42", + "downloadUrl": "https://github.com/xen-42/outer-wilds-day-dream/releases/download/v1.2.0/xen.DayDream.zip", + "downloadCount": 1865, + "latestReleaseDate": "2022-10-22T15:26:37Z", + "firstReleaseDate": "2021-11-28T16:50:14Z", + "repo": "https://github.com/xen-42/outer-wilds-day-dream", + "version": "v1.2.0", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-day-dream/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-day-dream/master/README.md" + }, + "tags": [ + "tool", + "audiovisual" + ], + "slug": "daydream", + "viewCount": 46, + "installCount": 58 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Half-Life Overhaul", - "uniqueName": "Vesper.HalfLifeOverhaul", - "description": "Replaces visuals and sound to that of Half-life 1! Why? It's cool!", - "author": "Vesper-Works", - "downloadUrl": "https://github.com/Vesper-Works/OuterWildsHalf-Life/releases/download/0.7.0/Release.0.7.0.zip", - "downloadCount": 561, - "latestReleaseDate": "2021-12-13T17:37:40Z", - "firstReleaseDate": "2021-12-08T13:56:26Z", - "repo": "https://github.com/Vesper-Works/OuterWildsHalf-Life", - "version": "0.7.0", - "readme": { - "htmlUrl": "https://github.com/Vesper-Works/OuterWildsHalf-Life/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/OuterWildsHalf-Life/main/README.md" + { + "name": "EotE Brighter Dreams", + "uniqueName": "Heelio.EotEBrighterDreams", + "description": "Outer Wilds mod: gives the player night vision on Echoes of the Eye's dream world.", + "author": "Heelio", + "downloadUrl": "https://github.com/Heelio/EotE-Brighter-Dreams/releases/download/0.1.1/Heelio.EotEBrighterDreams.zip", + "downloadCount": 3177, + "latestReleaseDate": "2021-11-28T22:52:25Z", + "firstReleaseDate": "2021-11-28T20:52:42Z", + "repo": "https://github.com/Heelio/EotE-Brighter-Dreams", + "version": "0.1.1", + "readme": { + "htmlUrl": "https://github.com/Heelio/EotE-Brighter-Dreams/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Heelio/EotE-Brighter-Dreams/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "eotebrighterdreams", + "viewCount": 274, + "installCount": 167 }, - "latestReleaseDescription": "0.7.0\r\n\r\nBunch of new skeleton models and tools", - "latestPrereleaseDescription": "" - }, - { - "name": "Auto Resume", - "uniqueName": "Vesper.AutoResume", - "description": "On start-up the game automatically resumes and wakes the player up (Reupload of Rai's mod)", - "author": "Vesper-Works", - "downloadUrl": "https://github.com/Vesper-Works/AutoResume/releases/download/1.0.0/Release.zip", - "downloadCount": 388, - "latestReleaseDate": "2021-10-31T12:29:56Z", - "firstReleaseDate": "2021-10-31T12:29:56Z", - "repo": "https://github.com/Vesper-Works/AutoResume", - "version": "1.0.0", - "readme": { - "htmlUrl": "https://github.com/Vesper-Works/AutoResume/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/AutoResume/master/README.md" + { + "name": "Unity Explorer", + "uniqueName": "Vesper.UnityExplorer", + "description": "Allows you to look at a recreation of the Unity editor during runtime", + "author": "Vesper-Works", + "downloadUrl": "https://github.com/Vesper-Works/Unity-Explorer-For-Outer-Wilds/releases/download/4.9.0/Vesper.UnityExplorer.zip", + "downloadCount": 1304, + "latestReleaseDate": "2022-06-26T23:49:28Z", + "firstReleaseDate": "2022-01-05T12:14:10Z", + "repo": "https://github.com/Vesper-Works/Unity-Explorer-For-Outer-Wilds", + "version": "4.9.0", + "readme": { + "htmlUrl": "https://github.com/Vesper-Works/Unity-Explorer-For-Outer-Wilds/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/Unity-Explorer-For-Outer-Wilds/main/README.md" + }, + "prerelease": { + "version": "5.0.0", + "downloadUrl": "https://github.com/Vesper-Works/Unity-Explorer-For-Outer-Wilds/releases/download/5.0.0/Vesper.UnityExplorer.zip", + "date": "2022-11-07T21:42:48Z" + }, + "tags": [ + "tool" + ], + "slug": "unityexplorer", + "viewCount": 137, + "installCount": 39 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Outer Thomas Echoes of the Tank Engine", - "uniqueName": "xen.TankEngine", - "description": "Replaces the ship with Thomas the Tank Engine for some reason", - "author": "xen-42", - "downloadUrl": "https://github.com/xen-42/outer-wilds-tank-engine/releases/download/v1.0.0/xen.TankEngine.zip", - "downloadCount": 455, - "latestReleaseDate": "2021-12-11T21:55:11Z", - "firstReleaseDate": "2021-12-11T21:55:11Z", - "repo": "https://github.com/xen-42/outer-wilds-tank-engine", - "version": "v1.0.0", - "readme": { - "htmlUrl": "https://github.com/xen-42/outer-wilds-tank-engine/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-tank-engine/master/README.md" + { + "name": "Half-Life Overhaul", + "uniqueName": "Vesper.HalfLifeOverhaul", + "description": "Replaces visuals and sound to that of Half-life 1! Why? It's cool!", + "author": "Vesper-Works", + "downloadUrl": "https://github.com/Vesper-Works/OuterWildsHalf-Life/releases/download/0.7.0/Release.0.7.0.zip", + "downloadCount": 992, + "latestReleaseDate": "2021-12-13T17:37:40Z", + "firstReleaseDate": "2021-12-08T13:56:26Z", + "repo": "https://github.com/Vesper-Works/OuterWildsHalf-Life", + "version": "0.7.0", + "readme": { + "htmlUrl": "https://github.com/Vesper-Works/OuterWildsHalf-Life/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/OuterWildsHalf-Life/main/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "halflifeoverhaul", + "viewCount": 21, + "installCount": 18 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Majora's Mask's Moon", - "uniqueName": "xen.MajorasMask", - "description": "Replaces the sun with the moon from The Legend of Zelda: Majora's Mask", - "author": "xen-42", - "downloadUrl": "https://github.com/xen-42/outer-wilds-majoras-mask/releases/download/v1.0.0/xen.MajorasMask.zip", - "downloadCount": 439, - "latestReleaseDate": "2021-12-13T19:13:06Z", - "firstReleaseDate": "2021-12-13T19:13:06Z", - "repo": "https://github.com/xen-42/outer-wilds-majoras-mask", - "version": "v1.0.0", - "readme": { - "htmlUrl": "https://github.com/xen-42/outer-wilds-majoras-mask/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-majoras-mask/master/README.md" + { + "name": "Auto Resume", + "uniqueName": "Vesper.AutoResume", + "description": "On start-up the game automatically resumes and wakes the player up (Reupload of Rai's mod)", + "author": "Vesper-Works", + "downloadUrl": "https://github.com/Vesper-Works/AutoResume/releases/download/1.1.0/Release.1.1.0.zip", + "downloadCount": 829, + "latestReleaseDate": "2022-07-09T10:53:47Z", + "firstReleaseDate": "2021-10-31T12:29:56Z", + "repo": "https://github.com/Vesper-Works/AutoResume", + "version": "1.1.0", + "readme": { + "htmlUrl": "https://github.com/Vesper-Works/AutoResume/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/AutoResume/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "autoresume", + "viewCount": 16, + "installCount": 18 }, - "latestReleaseDescription": "Initial commit.", - "latestPrereleaseDescription": "" - }, - { - "name": "New Horizons", - "uniqueName": "xen.NewHorizons", - "description": "A custom world creation tool for Outer Wilds.", - "author": "xen-42", - "downloadUrl": "https://github.com/xen-42/outer-wilds-new-horizons/releases/download/v0.10.0/xen.NewHorizons.zip", - "downloadCount": 4339, - "latestReleaseDate": "2022-03-23T03:53:18Z", - "firstReleaseDate": "2021-12-19T01:29:02Z", - "repo": "https://github.com/xen-42/outer-wilds-new-horizons", - "version": "v0.10.0", - "readme": { - "htmlUrl": "https://github.com/xen-42/outer-wilds-new-horizons/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-new-horizons/master/README.md" + { + "name": "Outer Thomas Echoes of the Tank Engine", + "uniqueName": "xen.TankEngine", + "description": "Replaces the ship with Thomas the Tank Engine for some reason. Supports Achievements+!", + "author": "xen-42", + "downloadUrl": "https://github.com/xen-42/outer-wilds-tank-engine/releases/download/v1.1.3/xen.TankEngine.zip", + "downloadCount": 948, + "latestReleaseDate": "2022-05-03T14:21:02Z", + "firstReleaseDate": "2021-12-11T21:55:11Z", + "repo": "https://github.com/xen-42/outer-wilds-tank-engine", + "version": "v1.1.3", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-tank-engine/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-tank-engine/main/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "outerthomasechoesofthetankengine", + "viewCount": 22, + "installCount": 25 }, - "latestReleaseDescription": "- Add `ChangeStarSystemEvent` and `OnStarSystemLoaded` events to the API\r\n- Give NH sectors a unique `Name` enum to differentiate them from base game ones (its 24).\r\n- Add `CloakRadius` field to base module so you can put DLC-style cloaking fields on any planet.\r\n- Make it so planets will be destroyed if they enter a star. You can disable this for certain planets by setting `\"InvulnerableToSun\": true` in base.\r\n- Make no map marker = no display name (relevant for asteroids).\r\n- Fix funnel anchors.\r\n- Add geysers.\r\n- Add `pathsToPreserve` to `manifest.json`, so that peoples `planets`, `systems`, and `translations` folders won't be deleted during updates.", - "latestPrereleaseDescription": "" - }, - { - "name": "New Horizons Examples", - "uniqueName": "xen.NewHorizonsExamples", - "description": "An example project showing what planets can be made with New Horizons. (Warning: spoilers inside)", - "author": "xen-42", - "parent": "xen.NewHorizons", - "downloadUrl": "https://github.com/xen-42/ow-new-horizons-examples/releases/download/v0.6.0/xen.NewHorizonsExamples.zip", - "downloadCount": 1490, - "latestReleaseDate": "2022-03-23T20:21:57Z", - "firstReleaseDate": "2021-12-19T01:28:05Z", - "repo": "https://github.com/xen-42/ow-new-horizons-examples", - "version": "v0.6.0", - "readme": { - "htmlUrl": "https://github.com/xen-42/ow-new-horizons-examples/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/xen-42/ow-new-horizons-examples/main/README.md" + { + "name": "Majora's Mask's Moon", + "uniqueName": "xen.MajorasMask", + "description": "Replaces the sun with the moon from The Legend of Zelda: Majora's Mask", + "author": "xen-42", + "downloadUrl": "https://github.com/xen-42/outer-wilds-majoras-mask/releases/download/v1.0.0/xen.MajorasMask.zip", + "downloadCount": 819, + "latestReleaseDate": "2021-12-13T19:13:06Z", + "firstReleaseDate": "2021-12-13T19:13:06Z", + "repo": "https://github.com/xen-42/outer-wilds-majoras-mask", + "version": "v1.0.0", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-majoras-mask/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-majoras-mask/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "majorasmasksmoon", + "viewCount": 15, + "installCount": 24 }, - "latestReleaseDescription": "Cloaked Brittle Hollow.", - "latestPrereleaseDescription": "" - }, - { - "name": "Real Solar System", - "uniqueName": "xen.RealSolarSystem", - "description": "Adds our solar system to Outer Wilds (check the ship's log)", - "author": "xen-42", - "parent": "xen.NewHorizons", - "downloadUrl": "https://github.com/xen-42/outer-wilds-real-solar-system/releases/download/v0.6.2/xen.RealSolarSystem.zip", - "downloadCount": 2134, - "latestReleaseDate": "2022-03-12T15:37:54Z", - "firstReleaseDate": "2021-12-19T01:26:21Z", - "repo": "https://github.com/xen-42/outer-wilds-real-solar-system", - "version": "v0.6.2", - "readme": { - "htmlUrl": "https://github.com/xen-42/outer-wilds-real-solar-system/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-real-solar-system/main/README.md" + { + "name": "New Horizons", + "uniqueName": "xen.NewHorizons", + "description": "A custom world creation tool for Outer Wilds.", + "author": "Outer-Wilds-New-Horizons", + "downloadUrl": "https://github.com/Outer-Wilds-New-Horizons/new-horizons/releases/download/v1.8.0/xen.NewHorizons.Release.zip", + "downloadCount": 16958, + "latestReleaseDate": "2022-12-12T23:15:56Z", + "firstReleaseDate": "2021-12-19T01:29:02Z", + "repo": "https://github.com/Outer-Wilds-New-Horizons/new-horizons", + "version": "v1.8.0", + "readme": { + "htmlUrl": "https://github.com/Outer-Wilds-New-Horizons/new-horizons/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Outer-Wilds-New-Horizons/new-horizons/main/README.md" + }, + "authorDisplay": "xen, Bwc9876, clay, MegaPiggy, John, Hawkbar, Trifid, Book", + "tags": [ + "tool", + "content", + "story" + ], + "slug": "newhorizons", + "viewCount": 855, + "installCount": 336 }, - "latestReleaseDescription": "Fix typo", - "latestPrereleaseDescription": "" - }, - { - "name": "Atropos", - "uniqueName": "Titch.OWAtropos", - "description": "Newest Planet in the Outer Wilds Solar System!", - "author": "TitchMW", - "parent": "xen.NewHorizons", - "downloadUrl": "https://github.com/TitchMW/OWAtropos/releases/download/0.3.0/Titch.OWAtropos.zip", - "downloadCount": 1161, - "latestReleaseDate": "2021-12-21T11:55:35Z", - "firstReleaseDate": "2021-12-19T17:25:41Z", - "repo": "https://github.com/TitchMW/OWAtropos", - "version": "0.3.0", - "readme": { - "htmlUrl": "https://github.com/TitchMW/OWAtropos/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/TitchMW/OWAtropos/main/README.md" + { + "name": "New Horizons Examples", + "uniqueName": "xen.NewHorizonsExamples", + "description": "An example project showing what planets can be made with New Horizons. (Warning: spoilers inside)", + "author": "Outer-Wilds-New-Horizons", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Outer-Wilds-New-Horizons/nh-examples/releases/download/v0.16.0/nh-examples.zip", + "downloadCount": 3525, + "latestReleaseDate": "2022-10-22T15:23:46Z", + "firstReleaseDate": "2021-12-19T01:28:05Z", + "repo": "https://github.com/Outer-Wilds-New-Horizons/nh-examples", + "version": "v0.16.0", + "readme": { + "htmlUrl": "https://github.com/Outer-Wilds-New-Horizons/nh-examples/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Outer-Wilds-New-Horizons/nh-examples/main/README.md" + }, + "authorDisplay": "xen", + "tags": [ + "content" + ], + "slug": "newhorizonsexamples", + "viewCount": 88, + "installCount": 77 }, - "latestReleaseDescription": "- Added better cap cloud for the top of the planet Atropos\r\n- Changed the color of the planet Atropos\r\n- Reduced the strength of Atropos Gravity field", - "latestPrereleaseDescription": "" - }, - { - "name": "ElliePlanets!", - "uniqueName": "Ellie3.ElliePlanets", - "description": "A few silly planets", - "author": "ellie3-OW", - "parent": "xen.NewHorizons", - "downloadUrl": "https://github.com/ellie3-OW/ElliePlanets/releases/download/1.2.0/ElliePlanets-1.2.0.zip", - "downloadCount": 765, - "latestReleaseDate": "2021-12-20T01:39:29Z", - "firstReleaseDate": "2021-12-19T22:01:01Z", - "repo": "https://github.com/ellie3-OW/ElliePlanets", - "version": "1.2.0", - "readme": { - "htmlUrl": "https://github.com/ellie3-OW/ElliePlanets/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/ellie3-OW/ElliePlanets/main/README.md" + { + "name": "Real Solar System", + "uniqueName": "xen.RealSolarSystem", + "description": "Adds our solar system to Outer Wilds (check the ship's log)", + "author": "xen-42", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/xen-42/outer-wilds-real-solar-system/releases/download/v0.6.6/outer-wilds-real-solar-system.zip", + "downloadCount": 5597, + "latestReleaseDate": "2022-09-20T04:59:20Z", + "firstReleaseDate": "2021-12-19T01:26:21Z", + "repo": "https://github.com/xen-42/outer-wilds-real-solar-system", + "version": "v0.6.6", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-real-solar-system/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-real-solar-system/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "realsolarsystem", + "viewCount": 359, + "installCount": 190 }, - "latestReleaseDescription": "A new spiky moon and a gas giant!", - "latestPrereleaseDescription": "" - }, - { - "name": "Teeny Hatchling", - "uniqueName": "Owen013.TeenyHatchling", - "description": "Makes the hatchling smol! Or beeg!", - "author": "Owen013", - "downloadUrl": "https://github.com/Owen013/Smol-Hatchling/releases/download/v1.0.0/Owen013.TeenyHatchling.zip", - "downloadCount": 364, - "latestReleaseDate": "2022-03-26T15:12:55Z", - "firstReleaseDate": "2021-12-22T22:19:44Z", - "repo": "https://github.com/Owen013/Teeny-Hatchling", - "version": "v1.0.0", - "readme": { - "htmlUrl": "https://github.com/Owen013/Smol-Hatchling/blob/master/readme.md", - "downloadUrl": "https://raw.githubusercontent.com/Owen013/Smol-Hatchling/master/readme.md" + { + "name": "Atropos", + "uniqueName": "Titch.OWAtropos", + "description": "Newest Planet in the Outer Wilds Solar System!", + "author": "TitchMW", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/TitchMW/OWAtropos/releases/download/0.3.1/Titch.OWAtropos.zip", + "downloadCount": 2618, + "latestReleaseDate": "2022-04-16T18:32:27Z", + "firstReleaseDate": "2021-12-19T17:25:41Z", + "repo": "https://github.com/TitchMW/OWAtropos", + "version": "0.3.1", + "readme": { + "htmlUrl": "https://github.com/TitchMW/OWAtropos/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/TitchMW/OWAtropos/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "atropos", + "viewCount": 115, + "installCount": 94 }, - "latestReleaseDescription": "You can now squeeze into smaller spaces with Smol Hatchling! The player's collision capsule will now be resized accordingly along with the player model.", - "latestPrereleaseDescription": "" - }, - { - "name": "Movement Mod", - "uniqueName": "Owen013.MovementMod", - "description": "A mod to make the character more fun to control!", - "author": "Owen013", - "downloadUrl": "https://github.com/Owen013/Hikers-Mod/releases/download/v1.0.1/Owen013.MovementMod.zip", - "downloadCount": 733, - "latestReleaseDate": "2022-03-26T15:09:12Z", - "firstReleaseDate": "2021-12-23T22:23:22Z", - "repo": "https://github.com/Owen013/Movement-Mod", - "version": "v1.0.1", - "readme": { - "htmlUrl": "https://github.com/Owen013/Hikers-Mod/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Owen013/Hikers-Mod/master/README.md" + { + "name": "ElliePlanets!", + "uniqueName": "Ellie3.ElliePlanets", + "description": "A few silly planets", + "author": "ellie3-OW", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/ellie3-OW/ElliePlanets/releases/download/1.2.0/ElliePlanets-1.2.0.zip", + "downloadCount": 1321, + "latestReleaseDate": "2021-12-20T01:39:29Z", + "firstReleaseDate": "2021-12-19T22:01:01Z", + "repo": "https://github.com/ellie3-OW/ElliePlanets", + "version": "1.2.0", + "readme": { + "htmlUrl": "https://github.com/ellie3-OW/ElliePlanets/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ellie3-OW/ElliePlanets/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "ellieplanets", + "viewCount": 17, + "installCount": 31 }, - "latestReleaseDescription": "Animation fixes for a certain location", - "latestPrereleaseDescription": "" - }, - { - "name": "Ship Log Slide Reel Player", - "uniqueName": "dgarro.ShipLogSlideReelPlayer", - "description": "Play Echoes of the Eye slide reels in your ship log computer!", - "author": "dgarroDC", - "downloadUrl": "https://github.com/dgarroDC/ShipLogSlideReelPlayer/releases/download/1.0.7/dgarro.ShipLogSlideReelPlayer.zip", - "downloadCount": 1154, - "latestReleaseDate": "2022-03-24T05:25:18Z", - "firstReleaseDate": "2021-12-30T22:37:20Z", - "repo": "https://github.com/dgarroDC/ShipLogSlideReelPlayer", - "version": "1.0.7", - "readme": { - "htmlUrl": "https://github.com/dgarroDC/ShipLogSlideReelPlayer/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/dgarroDC/ShipLogSlideReelPlayer/main/README.md" + { + "name": "Smol Hatchling", + "uniqueName": "Owen013.TeenyHatchling", + "description": "Makes the hatchling smol! Or beeg!", + "author": "Owen013", + "downloadUrl": "https://github.com/Owen013/Smol-Hatchling/releases/download/v1.2.3/Owen013.TeenyHatchling.zip", + "downloadCount": 889, + "latestReleaseDate": "2022-10-13T19:19:51Z", + "firstReleaseDate": "2021-12-22T22:19:44Z", + "repo": "https://github.com/Owen013/Smol-Hatchling", + "version": "v1.2.3", + "readme": { + "htmlUrl": "https://github.com/Owen013/Smol-Hatchling/blob/master/readme.md", + "downloadUrl": "https://raw.githubusercontent.com/Owen013/Smol-Hatchling/master/readme.md" + }, + "tags": [ + "gameplay" + ], + "slug": "smolhatchling", + "viewCount": 29, + "installCount": 34 }, - "latestReleaseDescription": "Fix textures not unloading on closing shiplog, causing game to freeze when restarting loop (#3)", - "latestPrereleaseDescription": "" - }, - { - "name": "Outer Wilds Galaxy", - "uniqueName": "Jammer.OuterWildsGalaxy", - "description": "USE SHIPLOG AND AUTOPILOT TO WARP TO MOD! A mod that adds a galactic core that many different star systems orbit around. Go and explore!", - "author": "Jammer232", - "parent": "xen.NewHorizons", - "downloadUrl": "https://github.com/Jammer232/Outer-Wilds-Galaxy/releases/download/v1.14.0/Outer-Wilds-Galaxy.zip", - "downloadCount": 2008, - "latestReleaseDate": "2022-01-15T18:45:01Z", - "firstReleaseDate": "2021-12-31T22:48:47Z", - "repo": "https://github.com/Jammer232/Outer-Wilds-Galaxy", - "version": "v1.14.0", - "readme": { - "htmlUrl": "https://github.com/Jammer232/Outer-Wilds-Galaxy/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Jammer232/Outer-Wilds-Galaxy/main/README.md" + { + "name": "Hiker's Mod", + "uniqueName": "Owen013.MovementMod", + "description": "Customizable movement speed and jump height, instant jump, sprinting, climbing, and more.", + "author": "Owen013", + "downloadUrl": "https://github.com/Owen013/Hikers-Mod/releases/download/v1.5.1/Owen013.MovementMod.zip", + "downloadCount": 2263, + "latestReleaseDate": "2022-10-18T00:20:28Z", + "firstReleaseDate": "2021-12-23T22:23:22Z", + "repo": "https://github.com/Owen013/Hikers-Mod", + "version": "v1.5.1", + "readme": { + "htmlUrl": "https://github.com/Owen013/Hikers-Mod/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Owen013/Hikers-Mod/master/README.md" + }, + "prerelease": { + "version": "v1.5.0-pr3", + "downloadUrl": "https://github.com/Owen013/Hikers-Mod/releases/download/v1.5.0-pr3/Owen013.MovementMod.zip", + "date": "2022-10-16T18:32:57Z" + }, + "tags": [ + "gameplay" + ], + "slug": "hikersmod", + "viewCount": 36, + "installCount": 62 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Signals+", - "uniqueName": "xen.SignalsPlus", - "description": "Implements unused/removed signals and Signalscope frequencies.", - "author": "xen-42", - "parent": "xen.NewHorizons", - "downloadUrl": "https://github.com/xen-42/outer-wilds-signals-plus/releases/download/v1.1.0/xen.SignalsPlus.zip", - "downloadCount": 826, - "latestReleaseDate": "2022-02-22T05:55:26Z", - "firstReleaseDate": "2022-01-02T06:46:26Z", - "repo": "https://github.com/xen-42/outer-wilds-signals-plus", - "version": "v1.1.0", - "readme": { - "htmlUrl": "https://github.com/xen-42/outer-wilds-signals-plus/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-signals-plus/main/README.md" + { + "name": "Outer Wilds Galaxy", + "uniqueName": "Jammer.OuterWildsGalaxy", + "description": "USE SHIPLOG AND AUTOPILOT TO WARP TO MOD! A mod that adds a galactic core that many different star systems orbit around. Go and explore! (Reupload of Jammer's mod)", + "author": "MegaPiggy", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/MegaPiggy/Outer-Wilds-Galaxy/releases/download/v1.14.0/Outer-Wilds-Galaxy.zip", + "downloadCount": 3932, + "latestReleaseDate": "2022-11-03T05:48:23Z", + "firstReleaseDate": "2022-11-03T05:48:23Z", + "repo": "https://github.com/MegaPiggy/Outer-Wilds-Galaxy", + "version": "v1.14.0", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/Outer-Wilds-Galaxy/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/Outer-Wilds-Galaxy/main/README.md" + }, + "authorDisplay": "Jammer", + "tags": [ + "content" + ], + "slug": "outerwildsgalaxy", + "viewCount": 101, + "installCount": 84 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Save Editor", - "uniqueName": "Bwc9876.SaveEditor", - "description": "A mod that allows you to edit your save file in Outer Wilds (spoilers for the base game)", - "author": "Bwc9876", - "downloadUrl": "https://github.com/Bwc9876/OW-SaveEditor/releases/download/0.5.0/Bwc9876.SaveEditor.zip", - "downloadCount": 432, - "latestReleaseDate": "2022-03-27T06:19:39Z", - "firstReleaseDate": "2022-01-02T20:21:24Z", - "repo": "https://github.com/Bwc9876/OW-SaveEditor", - "version": "0.5.0", - "readme": { - "htmlUrl": "https://github.com/Bwc9876/OW-SaveEditor/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Bwc9876/OW-SaveEditor/master/README.md" + { + "name": "Signals+", + "uniqueName": "xen.SignalsPlus", + "description": "Implements unused/removed signals and Signalscope frequencies.", + "author": "xen-42", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/xen-42/outer-wilds-signals-plus/releases/download/v1.2.0/outer-wilds-signals-plus.zip", + "downloadCount": 1867, + "latestReleaseDate": "2022-07-02T03:30:03Z", + "firstReleaseDate": "2022-01-02T06:46:26Z", + "repo": "https://github.com/xen-42/outer-wilds-signals-plus", + "version": "v1.2.0", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-signals-plus/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-signals-plus/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "signals", + "viewCount": 49, + "installCount": 61 }, - "latestReleaseDescription": "- Added Earning All Achievements\r\n- Added options to ward off slate, the unholy", - "latestPrereleaseDescription": "" - }, - { - "name": "Meteor Launching", - "uniqueName": "12090113.MeteorLaunching", - "description": "Allows you to shoot meteors or marshmallows with middle mouse click (or the back button if enabled in the mod settings)", - "author": "12090113", - "downloadUrl": "https://github.com/12090113/outer-wilds-meteor-launching/releases/download/v0.2.0/MeteorLaunching.zip", - "downloadCount": 680, - "latestReleaseDate": "2022-01-16T20:22:02Z", - "firstReleaseDate": "2022-01-03T02:43:01Z", - "repo": "https://github.com/12090113/outer-wilds-meteor-launching", - "version": "v0.2.0", - "readme": { - "htmlUrl": "https://github.com/12090113/outer-wilds-meteor-launching/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/12090113/outer-wilds-meteor-launching/master/README.md" + { + "name": "Save Editor", + "uniqueName": "Bwc9876.SaveEditor", + "description": "A mod that allows you to edit your save file in Outer Wilds (spoilers for the base game)", + "author": "Bwc9876", + "downloadUrl": "https://github.com/Bwc9876/OW-SaveEditor/releases/download/0.7.0/Bwc9876.SaveEditor.zip", + "downloadCount": 1296, + "latestReleaseDate": "2022-09-22T20:22:09Z", + "firstReleaseDate": "2022-01-02T20:21:24Z", + "repo": "https://github.com/Bwc9876/OW-SaveEditor", + "version": "0.7.0", + "readme": { + "htmlUrl": "https://github.com/Bwc9876/OW-SaveEditor/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Bwc9876/OW-SaveEditor/master/README.md" + }, + "tags": [ + "tool" + ], + "slug": "saveeditor", + "viewCount": 104, + "installCount": 36 }, - "latestReleaseDescription": "Added a list of projectiles to cycle through and text in the suit HUD to show the selected projectile.\r\nThe list currently only consists of meteors and marshmallows.", - "latestPrereleaseDescription": "" - }, - { - "name": "Slate Simulator", - "uniqueName": "Bwc9876.SlatePOV", - "description": "Play as everyone's favorite character!", - "author": "Bwc9876", - "downloadUrl": "https://github.com/Bwc9876/OW-Slate-Simulator/releases/download/0.1.0/Bwc9876.SlatePOV.zip", - "downloadCount": 289, - "latestReleaseDate": "2022-01-03T22:06:13Z", - "firstReleaseDate": "2022-01-03T22:06:13Z", - "repo": "https://github.com/Bwc9876/OW-Slate-Simulator", - "version": "0.1.0", - "readme": { - "htmlUrl": "https://github.com/Bwc9876/OW-Slate-Simulator/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Bwc9876/OW-Slate-Simulator/master/README.md" + { + "name": "Meteor Launching", + "uniqueName": "12090113.MeteorLaunching", + "description": "Allows you to shoot meteors or marshmallows with middle mouse click (or the back button if enabled in the mod settings)", + "author": "12090113", + "downloadUrl": "https://github.com/12090113/outer-wilds-meteor-launching/releases/download/v0.2.2/MeteorLaunching.zip", + "downloadCount": 1570, + "latestReleaseDate": "2022-05-28T00:34:22Z", + "firstReleaseDate": "2022-01-03T02:43:01Z", + "repo": "https://github.com/12090113/outer-wilds-meteor-launching", + "version": "v0.2.2", + "readme": { + "htmlUrl": "https://github.com/12090113/outer-wilds-meteor-launching/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/12090113/outer-wilds-meteor-launching/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "meteorlaunching", + "viewCount": 43, + "installCount": 43 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "TARDIS from Doctor Who", - "uniqueName": "TitchMW.tardisfromdoctorwho", - "description": "The Doctor and their TARDIS visit the Outer Wilds Solar System!", - "author": "TitchMW", - "parent": "xen.NewHorizons", - "downloadUrl": "https://github.com/TitchMW/tardisfromdoctorwho/releases/download/v0.2.0/tardisfromdoctorwho.zip", - "downloadCount": 628, - "latestReleaseDate": "2022-01-07T23:55:37Z", - "firstReleaseDate": "2022-01-04T21:06:52Z", - "repo": "https://github.com/TitchMW/tardisfromdoctorwho", - "version": "v0.2.0", - "readme": { - "htmlUrl": "https://github.com/TitchMW/tardisfromdoctorwho/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/TitchMW/tardisfromdoctorwho/main/README.md" + { + "name": "Slate Simulator", + "uniqueName": "Bwc9876.SlatePOV", + "description": "Play as everyone's favorite character!", + "author": "Bwc9876", + "downloadUrl": "https://github.com/Bwc9876/OW-Slate-Simulator/releases/download/0.2.0/Bwc9876.SlatePOV.zip", + "downloadCount": 540, + "latestReleaseDate": "2022-06-16T19:43:47Z", + "firstReleaseDate": "2022-01-03T22:06:13Z", + "repo": "https://github.com/Bwc9876/OW-Slate-Simulator", + "version": "0.2.0", + "readme": { + "htmlUrl": "https://github.com/Bwc9876/OW-Slate-Simulator/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Bwc9876/OW-Slate-Simulator/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "slatesimulator", + "viewCount": 29, + "installCount": 12 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Solar Neighbourhood", - "uniqueName": "ErroneousCreationist.solarneighbourhood", - "description": "Adds in the local group of star systems as seen in the Echoes Of The Eye ending", - "author": "ErroneousCreationist", - "parent": "xen.NewHorizons", - "downloadUrl": "https://github.com/ErroneousCreationist/solarneighbourhood/releases/download/v1.5.1/solarneighbourhood.zip", - "downloadCount": 1415, - "latestReleaseDate": "2022-02-05T05:38:08Z", - "firstReleaseDate": "2022-01-06T08:28:59Z", - "repo": "https://github.com/ErroneousCreationist/solarneighbourhood", - "version": "v1.5.1", - "readme": { - "htmlUrl": "https://github.com/ErroneousCreationist/solarneighbourhood/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/ErroneousCreationist/solarneighbourhood/main/README.md" + { + "name": "TARDIS from Doctor Who", + "uniqueName": "TitchMW.tardisfromdoctorwho", + "description": "The Doctor and their TARDIS visit the Outer Wilds Solar System!", + "author": "TitchMW", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/TitchMW/tardisfromdoctorwho/releases/download/v0.2.0/tardisfromdoctorwho.zip", + "downloadCount": 1255, + "latestReleaseDate": "2022-01-07T23:55:37Z", + "firstReleaseDate": "2022-01-07T23:51:27Z", + "repo": "https://github.com/TitchMW/tardisfromdoctorwho", + "version": "v0.2.0", + "readme": { + "htmlUrl": "https://github.com/TitchMW/tardisfromdoctorwho/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/TitchMW/tardisfromdoctorwho/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "tardisfromdoctorwho", + "viewCount": 54, + "installCount": 36 }, - "latestReleaseDescription": "", - "prerelease": { - "version": "v0.0.0", - "downloadUrl": "https://github.com/ErroneousCreationist/solarneighbourhood/releases/download/v0.0.0/solarneighbourhood.zip" + { + "name": "Solar Neighbourhood", + "uniqueName": "ErroneousCreationist.solarneighbourhood", + "description": "Adds in the local group of star systems as seen in the Echoes Of The Eye ending", + "author": "ErroneousCreationist", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/ErroneousCreationist/solarneighbourhood/releases/download/v1.5.1/solarneighbourhood.zip", + "downloadCount": 2990, + "latestReleaseDate": "2022-02-05T05:38:08Z", + "firstReleaseDate": "2022-01-06T08:28:59Z", + "repo": "https://github.com/ErroneousCreationist/solarneighbourhood", + "version": "v1.5.1", + "readme": { + "htmlUrl": "https://github.com/ErroneousCreationist/solarneighbourhood/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ErroneousCreationist/solarneighbourhood/main/README.md" + }, + "prerelease": { + "version": "v0.0.0", + "downloadUrl": "https://github.com/ErroneousCreationist/solarneighbourhood/releases/download/v0.0.0/solarneighbourhood.zip", + "date": "2022-01-06T01:57:59Z" + }, + "tags": [ + "content" + ], + "slug": "solarneighbourhood", + "viewCount": 146, + "installCount": 103 }, - "latestPrereleaseDescription": "" - }, - { - "name": "Vanilla Main Menu", - "uniqueName": "artificial.VanillaMainMenu", - "description": "Removes the Echoes of the Eye subtitle and restores the main menu to its pre-1.0.8 glory.", - "author": "artificialparanoia", - "downloadUrl": "https://github.com/artificialparanoia/VanillaMainMenu/releases/download/v0.2.0/artificial.VanillaMainMenu.zip", - "downloadCount": 203, - "latestReleaseDate": "2022-01-07T11:30:28Z", - "firstReleaseDate": "2022-01-07T09:14:10Z", - "repo": "https://github.com/artificialparanoia/VanillaMainMenu", - "version": "v0.2.0", - "readme": { - "htmlUrl": "https://github.com/artificialparanoia/VanillaMainMenu/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/artificialparanoia/VanillaMainMenu/main/README.md" + { + "name": "Vanilla Main Menu", + "uniqueName": "artificial.VanillaMainMenu", + "description": "Removes the Echoes of the Eye subtitle and restores the main menu to its pre-1.0.8 glory.", + "author": "artificialparanoia", + "downloadUrl": "https://github.com/artificialparanoia/VanillaMainMenu/releases/download/v0.2.0/artificial.VanillaMainMenu.zip", + "downloadCount": 315, + "latestReleaseDate": "2022-01-07T11:30:28Z", + "firstReleaseDate": "2022-01-07T09:14:10Z", + "repo": "https://github.com/artificialparanoia/VanillaMainMenu", + "version": "v0.2.0", + "readme": { + "htmlUrl": "https://github.com/artificialparanoia/VanillaMainMenu/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/artificialparanoia/VanillaMainMenu/main/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "vanillamainmenu", + "viewCount": 6, + "installCount": 10 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Interstellar: Gargantua", - "uniqueName": "Tandicase.interstellargargantua", - "description": "Explore the Gargantua system from Interstellar", - "author": "Tandicase", - "parent": "xen.NewHorizons", - "downloadUrl": "https://github.com/Tandicase/interstellargargantua/releases/download/v1.3.0/interstellargargantua.zip", - "downloadCount": 850, - "latestReleaseDate": "2022-01-13T22:53:36Z", - "firstReleaseDate": "2022-01-08T21:56:17Z", - "repo": "https://github.com/Tandicase/interstellargargantua", - "version": "v1.3.0", - "readme": { - "htmlUrl": "https://github.com/Tandicase/interstellargargantua/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Tandicase/interstellargargantua/main/README.md" + { + "name": "Outer Wilds Korean Translation", + "uniqueName": "milesand.OWKT", + "description": "Korean re-translation for Outer Wilds", + "author": "milesand", + "downloadUrl": "https://github.com/milesand/outer-wilds-korean-translation/releases/download/v1.1.1/OWKT.zip", + "downloadCount": 5943, + "latestReleaseDate": "2022-09-24T05:28:30Z", + "firstReleaseDate": "2022-01-09T06:54:55Z", + "repo": "https://github.com/milesand/outer-wilds-korean-translation", + "version": "v1.1.1", + "readme": { + "htmlUrl": "https://github.com/milesand/outer-wilds-korean-translation/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/milesand/outer-wilds-korean-translation/main/README.md" + }, + "tags": [ + "localization" + ], + "slug": "outerwildskoreantranslation", + "viewCount": 265, + "installCount": 284 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Outer Wilds Korean Translation", - "uniqueName": "milesand.OWKT", - "description": "Korean re-translation for Outer Wilds", - "author": "milesand", - "downloadUrl": "https://github.com/milesand/outer-wilds-korean-translation/releases/download/v1.0.0/OWKT.zip", - "downloadCount": 1350, - "latestReleaseDate": "2022-01-09T06:54:55Z", - "firstReleaseDate": "2022-01-09T06:54:55Z", - "repo": "https://github.com/milesand/outer-wilds-korean-translation", - "version": "v1.0.0", - "readme": { - "htmlUrl": "https://github.com/milesand/outer-wilds-korean-translation/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/milesand/outer-wilds-korean-translation/main/README.md" + { + "name": "Astroneer Solar System", + "uniqueName": "ErroneousCreationist.astroneersolarsystem", + "description": "Adds the solar system from Astroneer (check SHIP LOG)", + "author": "ErroneousCreationist", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/ErroneousCreationist/astroneersolarsystem/releases/download/v0.1.2/astroneersolarsystem.zip", + "downloadCount": 1526, + "latestReleaseDate": "2022-02-13T01:42:41Z", + "firstReleaseDate": "2022-01-10T08:33:14Z", + "repo": "https://github.com/ErroneousCreationist/astroneersolarsystem", + "version": "v0.1.2", + "readme": { + "htmlUrl": "https://github.com/ErroneousCreationist/astroneersolarsystem/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ErroneousCreationist/astroneersolarsystem/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "astroneersolarsystem", + "viewCount": 36, + "installCount": 53 }, - "latestReleaseDescription": "Outer Wilds 1.1.12, OWML 2.3.0과 호환", - "latestPrereleaseDescription": "" - }, - { - "name": "Astroneer Solar System", - "uniqueName": "ErroneousCreationist.astroneersolarsystem", - "description": "Adds the solar system from Astroneer (check SHIP LOG)", - "author": "ErroneousCreationist", - "parent": "xen.NewHorizons", - "downloadUrl": "https://github.com/ErroneousCreationist/astroneersolarsystem/releases/download/v0.1.2/astroneersolarsystem.zip", - "downloadCount": 787, - "latestReleaseDate": "2022-02-13T01:42:41Z", - "firstReleaseDate": "2022-01-10T08:33:14Z", - "repo": "https://github.com/ErroneousCreationist/astroneersolarsystem", - "version": "v0.1.2", - "readme": { - "htmlUrl": "https://github.com/ErroneousCreationist/astroneersolarsystem/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/ErroneousCreationist/astroneersolarsystem/main/README.md" + { + "name": "Black Hole Portal Gun", + "uniqueName": "Book.BlackHolePortalGun", + "description": "B for Black hole, G for White hole. Only supports keyboard at the moment.", + "author": "Nageld", + "downloadUrl": "https://github.com/Nageld/Outer-Wilds-Black-Hole-Portal-Gun/releases/download/v0.2.0/Book.BlackHolePortalGun.zip", + "downloadCount": 1423, + "latestReleaseDate": "2022-01-14T02:22:31Z", + "firstReleaseDate": "2022-01-12T02:05:23Z", + "repo": "https://github.com/Nageld/Outer-Wilds-Black-Hole-Portal-Gun", + "version": "v0.2.0", + "readme": { + "htmlUrl": "https://github.com/Nageld/Outer-Wilds-Black-Hole-Portal-Gun/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Nageld/Outer-Wilds-Black-Hole-Portal-Gun/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "blackholeportalgun", + "viewCount": 37, + "installCount": 59 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Black Hole Portal Gun", - "uniqueName": "Book.BlackHolePortalGun", - "description": "B for Black hole, G for White hole. Only supports keyboard at the moment.", - "author": "Nageld", - "downloadUrl": "https://github.com/Nageld/Outer-Wilds-Black-Hole-Portal-Gun/releases/download/v0.2.0/Book.BlackHolePortalGun.zip", - "downloadCount": 588, - "latestReleaseDate": "2022-01-14T02:22:31Z", - "firstReleaseDate": "2022-01-12T02:05:23Z", - "repo": "https://github.com/Nageld/Outer-Wilds-Black-Hole-Portal-Gun", - "version": "v0.2.0", - "readme": { - "htmlUrl": "https://github.com/Nageld/Outer-Wilds-Black-Hole-Portal-Gun/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Nageld/Outer-Wilds-Black-Hole-Portal-Gun/master/README.md" + { + "name": "Outer Wario Echoes of the Waaaaaaaaaaah", + "uniqueName": "xen.OuterWario", + "description": "Oh my god! Waaaaaaaaaaaaaaaaaaaaaaaaaaaaaaah! (Lets you play as Wario)", + "author": "xen-42", + "downloadUrl": "https://github.com/xen-42/outer-wilds-wario/releases/download/v0.1.0/xen.OuterWario.zip", + "downloadCount": 647, + "latestReleaseDate": "2022-01-12T19:05:08Z", + "firstReleaseDate": "2022-01-12T19:05:08Z", + "repo": "https://github.com/xen-42/outer-wilds-wario", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-wario/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-wario/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "outerwarioechoesofthewaaaaaaaaaaah", + "viewCount": 15, + "installCount": 24 }, - "latestReleaseDescription": "Configurable range and slightly less log spew", - "latestPrereleaseDescription": "" - }, - { - "name": "Outer Wario Echoes of the Waaaaaaaaaaah", - "uniqueName": "xen.OuterWario", - "description": "Oh my god! Waaaaaaaaaaaaaaaaaaaaaaaaaaaaaaah! (Lets you play as Wario)", - "author": "xen-42", - "downloadUrl": "https://github.com/xen-42/outer-wilds-wario/releases/download/v0.1.0/xen.OuterWario.zip", - "downloadCount": 318, - "latestReleaseDate": "2022-01-12T19:05:08Z", - "firstReleaseDate": "2022-01-12T19:05:08Z", - "repo": "https://github.com/xen-42/outer-wilds-wario", - "version": "v0.1.0", - "readme": { - "htmlUrl": "https://github.com/xen-42/outer-wilds-wario/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-wario/master/README.md" + { + "name": "Suicide Mod", + "uniqueName": "Gurrenm3.SuicideMod", + "description": "Press 'K' on your Keyboard to meet Jesus early. Very helpful for when you get stuck.", + "author": "gurrenm3", + "downloadUrl": "https://github.com/gurrenm3/OuterWilds_SuicideMod/releases/download/1.0.1/Gurrenm3.SuicideMod.zip", + "downloadCount": 1266, + "latestReleaseDate": "2022-01-21T21:56:20Z", + "firstReleaseDate": "2022-01-12T21:22:13Z", + "repo": "https://github.com/gurrenm3/OuterWilds_SuicideMod", + "version": "1.0.1", + "readme": { + "htmlUrl": "https://github.com/gurrenm3/OuterWilds_SuicideMod/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/gurrenm3/OuterWilds_SuicideMod/master/README.md" + }, + "tags": [ + "tool" + ], + "slug": "suicidemod", + "viewCount": 23, + "installCount": 45 }, - "latestReleaseDescription": "Yeah idk", - "latestPrereleaseDescription": "" - }, - { - "name": "Suicide Mod", - "uniqueName": "Gurrenm3.SuicideMod", - "description": "Press 'K' on your Keyboard to meet Jesus early. Very helpful for when you get stuck.", - "author": "gurrenm3", - "downloadUrl": "https://github.com/gurrenm3/OuterWilds_SuicideMod/releases/download/1.0.1/Gurrenm3.SuicideMod.zip", - "downloadCount": 526, - "latestReleaseDate": "2022-01-21T21:56:20Z", - "firstReleaseDate": "2022-01-12T21:22:13Z", - "repo": "https://github.com/gurrenm3/OuterWilds_SuicideMod", - "version": "1.0.1", - "readme": { - "htmlUrl": "https://github.com/gurrenm3/OuterWilds_SuicideMod/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/gurrenm3/OuterWilds_SuicideMod/master/README.md" + { + "name": "Outer Wilds Music Player", + "uniqueName": "Titch.OWMusicPlayer", + "description": "Jam to MP3 files in your ship and suit while exploring the Solar System!", + "author": "TitchMW", + "downloadUrl": "https://github.com/TitchMW/outerwildsmusicplayer/releases/download/0.2.0/Titch.OWMusicPlayer.zip", + "downloadCount": 1862, + "latestReleaseDate": "2022-06-28T18:42:38Z", + "firstReleaseDate": "2022-01-16T00:53:13Z", + "repo": "https://github.com/TitchMW/outerwildsmusicplayer", + "version": "0.2.0", + "readme": { + "htmlUrl": "https://github.com/TitchMW/outerwildsmusicplayer/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/TitchMW/outerwildsmusicplayer/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "outerwildsmusicplayer", + "viewCount": 23, + "installCount": 41 }, - "latestReleaseDescription": "This issue fixes the issue where you can't download the mod", - "latestPrereleaseDescription": "" - }, - { - "name": "Outer Wilds Music Player", - "uniqueName": "Titch.OWMusicPlayer", - "description": "Jam to MP3 files in your ship and suit while exploring the Solar System!", - "author": "TitchMW", - "downloadUrl": "https://github.com/TitchMW/outerwildsmusicplayer/releases/download/0.1.0/Titch.OWMusicPlayer.zip", - "downloadCount": 314, - "latestReleaseDate": "2022-01-16T00:53:13Z", - "firstReleaseDate": "2022-01-16T00:53:13Z", - "repo": "https://github.com/TitchMW/outerwildsmusicplayer", - "version": "0.1.0", - "readme": { - "htmlUrl": "https://github.com/TitchMW/outerwildsmusicplayer/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/TitchMW/outerwildsmusicplayer/master/README.md" + { + "name": "Collider Visualizer", + "uniqueName": "Locochoco.ColliderVisualizer", + "description": "Allows the visualization of diferent colliders and shapes", + "author": "ShoosGun", + "downloadUrl": "https://github.com/ShoosGun/ColliderVisualizer/releases/download/0.1.2/Locochoco.ColliderVisualizer.zip", + "downloadCount": 342, + "latestReleaseDate": "2022-08-30T15:56:02Z", + "firstReleaseDate": "2022-01-16T18:25:28Z", + "repo": "https://github.com/ShoosGun/ColliderVisualizer", + "version": "0.1.2", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/ColliderVisualizer/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/ColliderVisualizer/master/README.md" + }, + "tags": [ + "tool" + ], + "slug": "collidervisualizer", + "viewCount": 4, + "installCount": 9 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "Collider Visualizer", - "uniqueName": "Locochoco.ColliderVisualizer", - "description": "", - "author": "ShoosGun", - "downloadUrl": "https://github.com/ShoosGun/ColliderVisualizer/releases/download/0.1.0/Locochoco.ColliderVisualizer.zip", - "downloadCount": 163, - "latestReleaseDate": "2022-01-16T18:25:28Z", - "firstReleaseDate": "2022-01-16T18:25:28Z", - "repo": "https://github.com/ShoosGun/ColliderVisualizer", - "version": "0.1.0", - "readme": { - "htmlUrl": "https://github.com/ShoosGun/ColliderVisualizer/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/ColliderVisualizer/master/README.md" + { + "name": "Archaeologist Achievement Helper", + "uniqueName": "dgarro.ArchaeologistAchievementHelper", + "description": "Marks ship log entries that have missing facts required for the Archaeologist achievement as \"There's more to explore here.\". It also lets you view which facts you haven't revealed!", + "author": "dgarroDC", + "downloadUrl": "https://github.com/dgarroDC/ArchaeologistAchievementHelper/releases/download/1.3.1/dgarro.ArchaeologistAchievementHelper.zip", + "downloadCount": 2391, + "latestReleaseDate": "2022-10-23T04:39:10Z", + "firstReleaseDate": "2022-01-16T23:16:49Z", + "repo": "https://github.com/dgarroDC/ArchaeologistAchievementHelper", + "version": "1.3.1", + "readme": { + "htmlUrl": "https://github.com/dgarroDC/ArchaeologistAchievementHelper/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/dgarroDC/ArchaeologistAchievementHelper/main/README.md" + }, + "authorDisplay": "Damián Garro", + "tags": [ + "tool" + ], + "slug": "archaeologistachievementhelper", + "viewCount": 96, + "installCount": 123 }, - "latestReleaseDescription": "### First Release!\r\n\r\nSome known issues:\r\n\r\n* The visualization of capsule colliders are quite broken, with the capsule being rotated compared to the actual capsule\r\n* Some colliders don't seem to appear (like the ones from the geysers in TH) but this issue might be related to the first one", - "latestPrereleaseDescription": "" - }, - { - "name": "Archaeologist Achievement Helper", - "uniqueName": "dgarro.ArchaeologistAchievementHelper", - "description": "Marks ship log entries that have missing facts required for the Archaeologist achievement as \"There's more to explore here.\". It also lets you view which facts you haven't revealed!", - "author": "dgarroDC", - "downloadUrl": "https://github.com/dgarroDC/ArchaeologistAchievementHelper/releases/download/1.1.0/dgarro.ArchaeologistAchievementHelper.zip", - "downloadCount": 558, - "latestReleaseDate": "2022-01-23T00:22:30Z", - "firstReleaseDate": "2022-01-16T23:16:49Z", - "repo": "https://github.com/dgarroDC/ArchaeologistAchievementHelper", - "version": "1.1.0", - "readme": { - "htmlUrl": "https://github.com/dgarroDC/ArchaeologistAchievementHelper/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/dgarroDC/ArchaeologistAchievementHelper/main/README.md" + { + "name": "Enter the Warioverse", + "uniqueName": "Roggsy.enterthewarioverse", + "description": "A whole system of Wario to explore! Can you solve the mystery of the Warioverse? WAH!", + "author": "Roggsy", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Roggsy/enterthewarioverse/releases/download/v0.1.1/enterthewarioverse.zip", + "downloadCount": 1350, + "latestReleaseDate": "2022-03-22T01:24:01Z", + "firstReleaseDate": "2022-01-18T03:36:33Z", + "repo": "https://github.com/Roggsy/enterthewarioverse", + "version": "v0.1.1", + "readme": { + "htmlUrl": "https://github.com/Roggsy/enterthewarioverse/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Roggsy/enterthewarioverse/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "enterthewarioverse", + "viewCount": 34, + "installCount": 47 }, - "latestReleaseDescription": "The mod now works with missing subentries!", - "latestPrereleaseDescription": "" - }, - { - "name": "Enter the Warioverse", - "uniqueName": "Roggsy.enterthewarioverse", - "description": "A whole system of Wario to explore! Can you solve the mystery of the Warioverse? WAH!", - "author": "Roggsy", - "parent": "xen.NewHorizons", - "downloadUrl": "https://github.com/Roggsy/enterthewarioverse/releases/download/v0.1.1/enterthewarioverse.zip", - "downloadCount": 578, - "latestReleaseDate": "2022-03-22T01:24:01Z", - "firstReleaseDate": "2022-01-18T03:36:33Z", - "repo": "https://github.com/Roggsy/enterthewarioverse", - "version": "v0.1.1", - "readme": { - "htmlUrl": "https://github.com/Roggsy/enterthewarioverse/blob/main/README.md", - "downloadUrl": "https://raw.githubusercontent.com/Roggsy/enterthewarioverse/main/README.md" + { + "name": "21st Century Anglerfish", + "uniqueName": "mrmeep321.Angler", + "description": "", + "author": "mrmeep321", + "downloadUrl": "https://github.com/mrmeep321/21stCenturyAnglerfish/releases/download/v1.1.0/21stCenturyAnglerfish.zip", + "downloadCount": 1030, + "latestReleaseDate": "2022-01-21T19:10:18Z", + "firstReleaseDate": "2022-01-21T17:29:54Z", + "repo": "https://github.com/mrmeep321/21stCenturyAnglerfish", + "version": "v1.1.0", + "readme": { + "htmlUrl": "https://github.com/mrmeep321/21stCenturyAnglerfish/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/mrmeep321/21stCenturyAnglerfish/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "21stcenturyanglerfish", + "viewCount": 75, + "installCount": 45 }, - "latestReleaseDescription": "", - "latestPrereleaseDescription": "" - }, - { - "name": "21st Century Anglerfish", - "uniqueName": "mrmeep321.Angler", - "description": "", - "author": "mrmeep321", - "downloadUrl": "https://github.com/mrmeep321/21stCenturyAnglerfish/releases/download/v1.1.0/21stCenturyAnglerfish.zip", - "downloadCount": 356, - "latestReleaseDate": "2022-01-21T19:10:18Z", - "firstReleaseDate": "2022-01-21T17:29:54Z", - "repo": "https://github.com/mrmeep321/21stCenturyAnglerfish", - "version": "v1.1.0", - "readme": { - "htmlUrl": "https://github.com/mrmeep321/21stCenturyAnglerfish/blob/master/README.md", - "downloadUrl": "https://raw.githubusercontent.com/mrmeep321/21stCenturyAnglerfish/master/README.md" + { + "name": "Medley of Planets", + "uniqueName": "smallbug.MedleyOfPlanets", + "description": "Adds a medley of planets and moons to explore.", + "author": "Leopard501", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Leopard501/PlanetMedley/releases/download/v1.1.1/PlanetMedley.zip", + "downloadCount": 1322, + "latestReleaseDate": "2022-02-10T04:29:45Z", + "firstReleaseDate": "2022-02-02T04:39:15Z", + "repo": "https://github.com/Leopard501/PlanetMedley", + "version": "v1.1.1", + "readme": { + "htmlUrl": "https://github.com/Leopard501/PlanetMedley/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Leopard501/PlanetMedley/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "medleyofplanets", + "viewCount": 42, + "installCount": 50 }, - "latestReleaseDescription": "Fixed an issue where the Mod Loader was pulling 2 audio files, one that exists, and one that is in the wrong directory.", - "latestPrereleaseDescription": "Fixed an issue where the Mod Loader was pulling 2 audio files, one that exists, and one that is in the wrong directory." - } -] + { + "name": "Outer Wilds Flyover", + "uniqueName": "piggeywig2000.OuterWildsFlyover", + "description": "Recreation of the Island Flyover game from Wii Sports Resort in Outer Wilds", + "author": "piggeywig2000", + "downloadUrl": "https://github.com/piggeywig2000/OuterWildsFlyover/releases/download/1.0.0/OuterWildsFlyover.1.0.0.zip", + "downloadCount": 485, + "latestReleaseDate": "2022-02-03T19:08:59Z", + "firstReleaseDate": "2022-02-03T19:08:59Z", + "repo": "https://github.com/piggeywig2000/OuterWildsFlyover", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/piggeywig2000/OuterWildsFlyover/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/piggeywig2000/OuterWildsFlyover/main/README.md" + }, + "tags": [ + "content", + "gameplay" + ], + "slug": "outerwildsflyover", + "viewCount": 16, + "installCount": 20 + }, + { + "name": "Incursion: Final Dawn", + "uniqueName": "ErroneousCreationist.incursionfinaldawn", + "description": "The Incursion Is Upon Us by Erroneous", + "author": "ErroneousCreationist", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/ErroneousCreationist/incursionfinaldawn/releases/download/v1.2.0/incursionfinaldawn.zip", + "downloadCount": 1323, + "latestReleaseDate": "2022-05-30T21:12:42Z", + "firstReleaseDate": "2022-02-06T02:20:48Z", + "repo": "https://github.com/ErroneousCreationist/incursionfinaldawn", + "version": "v1.2.0", + "readme": { + "htmlUrl": "https://github.com/ErroneousCreationist/incursionfinaldawn/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ErroneousCreationist/incursionfinaldawn/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "incursionfinaldawn", + "viewCount": 53, + "installCount": 57 + }, + { + "name": "TRAPPIST-1", + "uniqueName": "smallbug.trappist-1", + "description": "A depiction of the TRAPPIST-1 system, a collection of seven terrestrial planets hugging close to a small ultracool red dwarf star.", + "author": "Leopard501", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Leopard501/TRAPPIST-1/releases/download/v1.1.1/TRAPPIST-1.zip", + "downloadCount": 999, + "latestReleaseDate": "2022-02-23T05:24:14Z", + "firstReleaseDate": "2022-02-16T02:04:26Z", + "repo": "https://github.com/Leopard501/TRAPPIST-1", + "version": "v1.1.1", + "readme": { + "htmlUrl": "https://github.com/Leopard501/TRAPPIST-1/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Leopard501/TRAPPIST-1/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "trappist1", + "viewCount": 14, + "installCount": 32 + }, + { + "name": "Input Demo Recorder", + "uniqueName": "Locochoco.InputDemoRecorder", + "description": "", + "author": "ShoosGun", + "downloadUrl": "https://github.com/ShoosGun/InputDemoRecorder/releases/download/v0.2.0/Locochoco.InputDemoRecorder.zip", + "downloadCount": 64, + "latestReleaseDate": "2022-10-23T02:13:15Z", + "firstReleaseDate": "2021-10-12T21:24:04Z", + "repo": "https://github.com/ShoosGun/InputDemoRecorder", + "version": "v0.2.0", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/InputDemoRecorder/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/InputDemoRecorder/main/README.md" + }, + "prerelease": { + "version": "0.0.2", + "downloadUrl": "https://github.com/ShoosGun/InputDemoRecorder/releases/download/0.0.2/InputDemoRecorder-v1.0.2.zip", + "date": "2021-10-21T16:36:55Z" + }, + "tags": [ + "tool" + ], + "slug": "inputdemorecorder", + "viewCount": 8, + "installCount": 1 + }, + { + "name": "Celeste Wilds", + "uniqueName": "Locochoco.CelesteWilds", + "description": "A mod which adds Celeste movement features to Outer Wilds", + "author": "ShoosGun", + "downloadUrl": "https://github.com/ShoosGun/CelesteWilds/releases/download/0.1.2/Locochoco.CelesteWilds.zip", + "downloadCount": 478, + "latestReleaseDate": "2022-02-23T22:27:50Z", + "firstReleaseDate": "2022-02-23T16:43:25Z", + "repo": "https://github.com/ShoosGun/CelesteWilds", + "version": "0.1.2", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/CelesteWilds/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/CelesteWilds/main/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "celestewilds", + "viewCount": 26, + "installCount": 32 + }, + { + "name": "Grapefruit", + "uniqueName": "Tlya.Grapefruit", + "description": "A mod that adds a new star system. Warning! Lots of food!", + "author": "Tllya", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Tllya/Grapefruit/releases/download/v0.5.2/Grapefruit-main.zip", + "downloadCount": 1168, + "latestReleaseDate": "2022-09-27T17:15:33Z", + "firstReleaseDate": "2022-03-13T17:09:54Z", + "repo": "https://github.com/Tllya/Grapefruit", + "version": "v0.5.2", + "readme": { + "htmlUrl": "https://github.com/Tllya/Grapefruit/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Tllya/Grapefruit/main/README.md" + }, + "prerelease": { + "version": "v0.4.001", + "downloadUrl": "https://github.com/Tllya/Grapefruit/releases/download/v0.4.001/release.2.zip", + "date": "2022-05-06T14:11:50Z" + }, + "tags": [ + "content" + ], + "slug": "grapefruit", + "viewCount": 18, + "installCount": 33 + }, + { + "name": "Visible Stranger", + "uniqueName": "xen.Decloaked", + "description": "Decloaks the Stranger in Echoes of the Eye.", + "author": "xen-42", + "downloadUrl": "https://github.com/xen-42/ow-decloaked/releases/download/v1.0.1/xen.Decloaked.zip", + "downloadCount": 1462, + "latestReleaseDate": "2022-04-20T04:52:51Z", + "firstReleaseDate": "2022-03-20T15:06:51Z", + "repo": "https://github.com/xen-42/ow-decloaked", + "version": "v1.0.1", + "readme": { + "htmlUrl": "https://github.com/xen-42/ow-decloaked/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/ow-decloaked/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "visiblestranger", + "viewCount": 60, + "installCount": 86 + }, + { + "name": "Hollodjustment", + "uniqueName": "Tlya.Hollodjustment", + "description": "An Outer Wilds mod that adjusts Hollow's Lantern's meteors. (Reupload of Trainzack's mod)", + "author": "Tllya", + "downloadUrl": "https://github.com/Tllya/ow-mod-Hollodjustment/releases/download/1.0.1/release.zip", + "downloadCount": 168, + "latestReleaseDate": "2022-03-21T11:32:37Z", + "firstReleaseDate": "2022-03-21T09:50:49Z", + "repo": "https://github.com/Tllya/ow-mod-Hollodjustment", + "version": "1.0.1", + "readme": { + "htmlUrl": "https://github.com/Tllya/ow-mod-Hollodjustment/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Tllya/ow-mod-Hollodjustment/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "hollodjustment", + "viewCount": 5, + "installCount": 6 + }, + { + "name": "Vanilla Fix", + "uniqueName": "JohnCorby.VanillaFix", + "description": "Fixes some vanilla bugs in Outer Wilds", + "author": "JohnCorby", + "downloadUrl": "https://github.com/JohnCorby/ow-vanilla-fix/releases/download/0.10.2/JohnCorby.VanillaFix.zip", + "downloadCount": 12071, + "latestReleaseDate": "2022-10-01T04:44:36Z", + "firstReleaseDate": "2022-03-25T17:42:01Z", + "repo": "https://github.com/JohnCorby/ow-vanilla-fix", + "version": "0.10.2", + "readme": { + "htmlUrl": "https://github.com/JohnCorby/ow-vanilla-fix/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/JohnCorby/ow-vanilla-fix/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "vanillafix", + "viewCount": 239, + "installCount": 307 + }, + { + "name": "Only Timber Hearth", + "uniqueName": "Tlya.OnlyTH", + "description": "A mod that removes all planets except Timber Heath. Yay, no Dark Bramble!", + "author": "Tllya", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Tllya/ow-nh-only-timber-hearth/releases/download/v0.1.3/ow-nh-only-timber-hearth.zip", + "downloadCount": 386, + "latestReleaseDate": "2022-09-10T14:58:22Z", + "firstReleaseDate": "2022-03-27T16:59:00Z", + "repo": "https://github.com/Tllya/ow-nh-only-timber-hearth", + "version": "v0.1.3", + "readme": { + "htmlUrl": "https://github.com/Tllya/ow-nh-only-timber-hearth/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Tllya/ow-nh-only-timber-hearth/main/README.md" + }, + "prerelease": { + "version": "v1.4.2022", + "downloadUrl": "https://github.com/Tllya/ow-nh-only-timber-hearth/releases/download/v1.4.2022/mogomogus.zip", + "date": "2022-04-01T15:53:01Z" + }, + "tags": [ + "content" + ], + "slug": "onlytimberhearth", + "viewCount": 7, + "installCount": 8 + }, + { + "name": "Title Screen Bug Fix", + "uniqueName": "xen.CursedTitle", + "description": "Fixes a bug on the title screen which caused the game's logo to be displayed incorrectly.", + "author": "xen-42", + "downloadUrl": "https://github.com/xen-42/outer-wilds-cursed-title/releases/download/v1.0.0/xen.CursedTitle.zip", + "downloadCount": 139, + "latestReleaseDate": "2022-04-01T07:10:33Z", + "firstReleaseDate": "2022-04-01T07:10:33Z", + "repo": "https://github.com/xen-42/outer-wilds-cursed-title", + "version": "v1.0.0", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-cursed-title/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-cursed-title/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "titlescreenbugfix", + "viewCount": 18, + "installCount": 1 + }, + { + "name": "Ghost Translations", + "uniqueName": "MegaPiggy.GhostTranslations", + "description": "Adds the ability to translate the unknown language.", + "author": "MegaPiggy", + "downloadUrl": "https://github.com/MegaPiggy/GhostTranslations/releases/download/1.0.2/MegaPiggy.GhostTranslations.zip", + "downloadCount": 1282, + "latestReleaseDate": "2022-09-18T02:24:25Z", + "firstReleaseDate": "2022-04-03T00:22:57Z", + "repo": "https://github.com/MegaPiggy/GhostTranslations", + "version": "1.0.2", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/GhostTranslations/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/GhostTranslations/master/README.md" + }, + "tags": [ + "content" + ], + "slug": "ghosttranslations", + "viewCount": 167, + "installCount": 69 + }, + { + "name": "Voice Acting Mod", + "uniqueName": "Krevace.VoiceMod", + "description": "The mod's not yet finished. All characters are fully voiced, but the files are currently being mixed to improve their quality and add environmental effects.", + "author": "Krevace", + "downloadUrl": "https://github.com/Krevace/ow-voice-mod/releases/download/0.4.2/Krevace.VoiceMod.zip", + "downloadCount": 2490, + "latestReleaseDate": "2022-12-08T20:58:57Z", + "firstReleaseDate": "2022-04-08T00:40:29Z", + "repo": "https://github.com/Krevace/ow-voice-mod", + "version": "0.4.2", + "readme": { + "htmlUrl": "https://github.com/Krevace/ow-voice-mod/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Krevace/ow-voice-mod/master/README.md" + }, + "authorDisplay": "Krevace & JohnCorby", + "tags": [ + "audiovisual" + ], + "slug": "voiceactingmod", + "viewCount": 253, + "installCount": 140 + }, + { + "name": "Their Homeworld", + "uniqueName": "CreativeNameTxt.theirhomeworld", + "description": "a solar system made with new horizons, will probably be updated", + "author": "CreativeNameTxt", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/CreativeNameTxt/their-home-world/releases/download/v0.0.71/CreativeNameTxt.theirhomeworld.zip", + "downloadCount": 675, + "latestReleaseDate": "2022-04-25T18:13:50Z", + "firstReleaseDate": "2022-04-25T18:13:50Z", + "repo": "https://github.com/CreativeNameTxt/their-home-world", + "version": "v0.0.71", + "readme": { + "htmlUrl": "https://github.com/CreativeNameTxt/their-home-world/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/CreativeNameTxt/their-home-world/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "theirhomeworld", + "viewCount": 20, + "installCount": 37 + }, + { + "name": "Vengeful Cannon", + "uniqueName": "_nebula.VengefulCannon", + "description": "You shouldn't have angered that cannon...", + "author": "misternebula", + "downloadUrl": "https://github.com/misternebula/VengefulCannon/releases/download/1.0.0/VengefulCannon.zip", + "downloadCount": 256, + "latestReleaseDate": "2022-04-11T10:21:33Z", + "firstReleaseDate": "2022-04-11T10:21:33Z", + "repo": "https://github.com/misternebula/VengefulCannon", + "version": "1.0.0", + "tags": [ + "gameplay" + ], + "slug": "vengefulcannon", + "viewCount": 14, + "installCount": 11 + }, + { + "name": "Almond System", + "uniqueName": "MellowSus.almondsystem", + "description": "Adds a almond system to the game", + "author": "Zincinder", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Zincinder/almondsystem/releases/download/v0.1.5/almondsystem.zip", + "downloadCount": 542, + "latestReleaseDate": "2022-05-11T14:10:09Z", + "firstReleaseDate": "2022-04-12T00:32:21Z", + "repo": "https://github.com/MellowSus/almondsystem", + "version": "v0.1.5", + "readme": { + "htmlUrl": "https://github.com/Zincinder/almondsystem/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Zincinder/almondsystem/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "almondsystem", + "viewCount": 14, + "installCount": 32 + }, + { + "name": "Persistant Marshmallow", + "uniqueName": "BUNN1E5.PersistantMarshmallow", + "description": "Makes the Marshmallow's in Outer Wilds never despawn", + "author": "BUNN1E5", + "downloadUrl": "https://github.com/BUNN1E5/PersistantMarshmallow/releases/download/1.0.0/BUNN1E5.PersistantMarhmallow.zip", + "downloadCount": 204, + "latestReleaseDate": "2022-04-12T07:53:41Z", + "firstReleaseDate": "2022-04-12T07:53:41Z", + "repo": "https://github.com/BUNN1E5/PersistantMarshmallow", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/BUNN1E5/PersistantMarshmallow/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/BUNN1E5/PersistantMarshmallow/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "persistantmarshmallow", + "viewCount": 4, + "installCount": 9 + }, + { + "name": "Empty Hollow", + "uniqueName": "MegaPiggy.EmptyHollow", + "description": "Moves all of Brittle Hollow's crust to the white hole.", + "author": "MegaPiggy", + "downloadUrl": "https://github.com/MegaPiggy/EmptyHollow/releases/download/1.0.1/EmptyHollow.zip", + "downloadCount": 209, + "latestReleaseDate": "2022-04-24T06:26:11Z", + "firstReleaseDate": "2022-04-14T10:12:35Z", + "repo": "https://github.com/MegaPiggy/EmptyHollow", + "version": "1.0.1", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/EmptyHollow/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/EmptyHollow/master/README.md" + }, + "tags": [ + "content" + ], + "slug": "emptyhollow", + "viewCount": 14, + "installCount": 11 + }, + { + "name": "Interstellar: Gargantua", + "uniqueName": "Tandicase.interstellargargantua", + "description": "Explore the Gargantua system from Interstellar (reupload of Tandicase's mod)", + "author": "Tllya", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Tllya/interstellargargantua/releases/download/v1.3.1/release.zip", + "downloadCount": 978, + "latestReleaseDate": "2022-04-16T13:14:34Z", + "firstReleaseDate": "2022-04-16T13:14:34Z", + "repo": "https://github.com/Tllya/interstellargargantua", + "version": "v1.3.1", + "readme": { + "htmlUrl": "https://github.com/Tllya/interstellargargantua/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Tllya/interstellargargantua/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "interstellargargantua", + "viewCount": 86, + "installCount": 67 + }, + { + "name": "Jammer Lore", + "uniqueName": "Jammer.jammerlore", + "description": "Jammer lore mod plonets (Reupload of Jammer's mod)", + "author": "MegaPiggy", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/MegaPiggy/jammerlore/releases/download/v0.2.4/jammerlore.zip", + "downloadCount": 431, + "latestReleaseDate": "2022-11-03T05:58:05Z", + "firstReleaseDate": "2022-11-03T05:58:05Z", + "repo": "https://github.com/MegaPiggy/jammerlore", + "version": "v0.2.4", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/jammerlore/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/jammerlore/main/README.md" + }, + "authorDisplay": "Jammer", + "tags": [ + "content" + ], + "slug": "jammerlore", + "viewCount": 22, + "installCount": 23 + }, + { + "name": "Ghostbuster", + "uniqueName": "xen.GhostBuster", + "description": "I ain't afraid of no ghosts (let's you blow out certain candles in EOTE).", + "author": "xen-42", + "downloadUrl": "https://github.com/xen-42/ow-ghostbuster/releases/download/0.1.1/xen.GhostBuster.zip", + "downloadCount": 239, + "latestReleaseDate": "2022-04-19T03:37:09Z", + "firstReleaseDate": "2022-04-19T02:50:26Z", + "repo": "https://github.com/xen-42/ow-ghostbuster", + "version": "0.1.1", + "readme": { + "htmlUrl": "https://github.com/xen-42/ow-ghostbuster/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/ow-ghostbuster/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "ghostbuster", + "viewCount": 22, + "installCount": 13 + }, + { + "name": "Open Doors", + "uniqueName": "Skyball.OpenDoors", + "description": "Open any closed door or pathway in the Outer Wilds using this Mod!", + "author": "YanWittmann", + "downloadUrl": "https://github.com/YanWittmann/OpenDoors/releases/download/1.0.0/OpenDoors.zip", + "downloadCount": 367, + "latestReleaseDate": "2022-04-19T14:19:32Z", + "firstReleaseDate": "2022-04-19T14:19:32Z", + "repo": "https://github.com/YanWittmann/OpenDoors", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/YanWittmann/OpenDoors/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/YanWittmann/OpenDoors/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "opendoors", + "viewCount": 22, + "installCount": 19 + }, + { + "name": "Sleep Mod", + "uniqueName": "likemauro.sleepmod", + "description": "A mod that allows you to press \"U\" to meditate without needing to talk to Gabbro twice", + "author": "LikeMauro", + "downloadUrl": "https://github.com/LikeMauro/SleepMod/releases/download/0.1.1/likemauro.sleepmod.zip", + "downloadCount": 168, + "latestReleaseDate": "2022-04-21T22:16:06Z", + "firstReleaseDate": "2022-04-21T00:01:13Z", + "repo": "https://github.com/LikeMauro/SleepMod", + "version": "0.1.1", + "readme": { + "htmlUrl": "https://github.com/LikeMauro/SleepMod/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/LikeMauro/SleepMod/master/README.md" + }, + "tags": [ + "tool" + ], + "slug": "sleepmod", + "viewCount": 5, + "installCount": 9 + }, + { + "name": "Ghost Matter Nerf", + "uniqueName": "Kentin.GhostMatterNerf", + "description": "A mod that makes you invulnerable to Ghost Matter.", + "author": "QuentinGruber", + "downloadUrl": "https://github.com/QuentinGruber/ghostMatterNerf/releases/download/0.1.1/Kentin.GhostMatterNerf.zip", + "downloadCount": 233, + "latestReleaseDate": "2022-04-21T18:28:19Z", + "firstReleaseDate": "2022-04-21T14:45:45Z", + "repo": "https://github.com/QuentinGruber/ghostMatterNerf", + "version": "0.1.1", + "readme": { + "htmlUrl": "https://github.com/QuentinGruber/ghostMatterNerf/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/QuentinGruber/ghostMatterNerf/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "ghostmatternerf", + "viewCount": 29, + "installCount": 17 + }, + { + "name": "Add LIV Support", + "uniqueName": "Raicuparta.OwLiv", + "description": "Adds LIV to Outer Wilds, allowing for mixed reality capture or avatars in third person. Check the readme for instructions.", + "author": "LIV", + "parent": "Raicuparta.NomaiVR", + "downloadUrl": "https://github.com/LIV/ow-liv/releases/download/v0.1.0/Raicuparta.OwLiv.zip", + "downloadCount": 894, + "latestReleaseDate": "2022-04-22T13:08:01Z", + "firstReleaseDate": "2022-04-22T13:08:01Z", + "repo": "https://github.com/Raicuparta/ow-liv", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/LIV/ow-liv/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/LIV/ow-liv/master/README.md" + }, + "tags": [ + "integration" + ], + "slug": "addlivsupport", + "viewCount": 26, + "installCount": 87 + }, + { + "name": "360 Camera", + "uniqueName": "BUNN1E5.OW360Camera", + "description": "Allows the user to take 360 degree screenshots and videos", + "author": "BUNN1E5", + "downloadUrl": "https://github.com/BUNN1E5/OW360Camera/releases/download/1.0.3/BUNN1E5.OW360Camera.zip", + "downloadCount": 144, + "latestReleaseDate": "2022-04-23T09:22:25Z", + "firstReleaseDate": "2022-04-22T09:50:49Z", + "repo": "https://github.com/BUNN1E5/OW360Camera", + "version": "1.0.3", + "readme": { + "htmlUrl": "https://github.com/BUNN1E5/OW360Camera/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/BUNN1E5/OW360Camera/master/README.md" + }, + "tags": [ + "tool" + ], + "slug": "360camera", + "viewCount": 3, + "installCount": 8 + }, + { + "name": "No End", + "uniqueName": "likemauro.noend", + "description": "A mod that allows you to play after supernova. See Readme.md for more info", + "author": "LikeMauro", + "downloadUrl": "https://github.com/LikeMauro/NoEnd-Mod/releases/download/0.2.0/likemauro.noend.zip", + "downloadCount": 372, + "latestReleaseDate": "2022-04-22T23:39:25Z", + "firstReleaseDate": "2022-04-22T23:39:25Z", + "repo": "https://github.com/LikeMauro/NoEnd-Mod", + "version": "0.2.0", + "readme": { + "htmlUrl": "https://github.com/LikeMauro/NoEnd-Mod/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/LikeMauro/NoEnd-Mod/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "noend", + "viewCount": 21, + "installCount": 27 + }, + { + "name": "No Dam Break", + "uniqueName": "likemauro.nodambreak", + "description": "The dam on the stranger will no longer break!!", + "author": "LikeMauro", + "downloadUrl": "https://github.com/LikeMauro/NoDamBreak-Mod/releases/download/0.1.1/likemauro.nodambreak.zip", + "downloadCount": 279, + "latestReleaseDate": "2022-04-28T14:36:09Z", + "firstReleaseDate": "2022-04-23T15:01:04Z", + "repo": "https://github.com/LikeMauro/NoDamBreak-Mod", + "version": "0.1.1", + "readme": { + "htmlUrl": "https://github.com/LikeMauro/NoDamBreak-Mod/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/LikeMauro/NoDamBreak-Mod/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "nodambreak", + "viewCount": 9, + "installCount": 21 + }, + { + "name": "Alter Time", + "uniqueName": "Spacepiano.AlterTime", + "description": "Speed up time in outer wilds!", + "author": "spacepiano", + "downloadUrl": "https://github.com/spacepiano/Outer-Wilds---Speed-up-Time/releases/download/0.1.0/release.zip", + "downloadCount": 322, + "latestReleaseDate": "2022-04-25T14:50:35Z", + "firstReleaseDate": "2022-04-25T14:50:35Z", + "repo": "https://github.com/spacepiano/Outer-Wilds---Speed-up-Time", + "version": "0.1.0", + "readme": { + "htmlUrl": "https://github.com/spacepiano/Outer-Wilds---Speed-up-Time/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/spacepiano/Outer-Wilds---Speed-up-Time/main/README.md" + }, + "tags": [ + "tool" + ], + "slug": "altertime", + "viewCount": 19, + "installCount": 23 + }, + { + "name": "Survive the Supernova", + "uniqueName": "Joooosh.SurviveTheSupernova", + "description": "Fly around the post-Supernova Solar System.", + "author": "joshua-smith98", + "downloadUrl": "https://github.com/joshua-smith98/OW-SurviveTheSupernova/releases/download/1.1.0/Joooosh.SurviveTheSupernova.zip", + "downloadCount": 563, + "latestReleaseDate": "2022-04-26T22:59:59Z", + "firstReleaseDate": "2022-04-26T01:39:13Z", + "repo": "https://github.com/joshua-smith98/OW-SurviveTheSupernova", + "version": "1.1.0", + "readme": { + "htmlUrl": "https://github.com/joshua-smith98/OW-SurviveTheSupernova/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/joshua-smith98/OW-SurviveTheSupernova/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "survivethesupernova", + "viewCount": 38, + "installCount": 35 + }, + { + "name": "Achievements+", + "uniqueName": "xen.AchievementTracker", + "description": "Displays stock, DLC, and custom mod achievements on a menu screen and shows a popup when you earn one.", + "author": "xen-42", + "downloadUrl": "https://github.com/xen-42/outer-wilds-achievement-tracker/releases/download/v0.4.0/xen.AchievementTracker.zip", + "downloadCount": 1112, + "latestReleaseDate": "2022-08-23T22:13:51Z", + "firstReleaseDate": "2022-04-27T06:22:23Z", + "repo": "https://github.com/xen-42/outer-wilds-achievement-tracker", + "version": "v0.4.0", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-achievement-tracker/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-achievement-tracker/main/README.md" + }, + "tags": [ + "gameplay", + "tweaks" + ], + "slug": "achievements", + "viewCount": 40, + "installCount": 82 + }, + { + "name": "Supernova On Demand", + "uniqueName": "Kentin.SupernovaOnDemand", + "description": "Triggers a supernova when you press \"N\".", + "author": "QuentinGruber", + "downloadUrl": "https://github.com/QuentinGruber/SupernovaOnDemand/releases/download/1.0.0/Kentin.SupernovaOnDemand.zip", + "downloadCount": 505, + "latestReleaseDate": "2022-04-29T13:06:53Z", + "firstReleaseDate": "2022-04-29T13:06:53Z", + "repo": "https://github.com/QuentinGruber/SupernovaOnDemand", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/QuentinGruber/SupernovaOnDemand/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/QuentinGruber/SupernovaOnDemand/master/README.md" + }, + "tags": [ + "tool" + ], + "slug": "supernovaondemand", + "viewCount": 26, + "installCount": 30 + }, + { + "name": "Big Heads", + "uniqueName": "Joooosh.BigHeads", + "description": "Gives everyone big heads.", + "author": "joshua-smith98", + "downloadUrl": "https://github.com/joshua-smith98/OW-BigHeads/releases/download/1.0.0/Joooosh.BigHeads.zip", + "downloadCount": 164, + "latestReleaseDate": "2022-05-01T03:30:25Z", + "firstReleaseDate": "2022-05-01T03:30:25Z", + "repo": "https://github.com/joshua-smith98/OW-BigHeads", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/joshua-smith98/OW-BigHeads/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/joshua-smith98/OW-BigHeads/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "bigheads", + "viewCount": 14, + "installCount": 3 + }, + { + "name": "Bring Me My Ship", + "uniqueName": "Switch.BringMeMyShip", + "description": "Gently places your ship above your head when you press P", + "author": "Switch-9867", + "downloadUrl": "https://github.com/Switch-9867/BringMeMyShip/releases/download/v0.1.0/Switch.BringMeMyShip.zip", + "downloadCount": 602, + "latestReleaseDate": "2022-05-02T03:05:30Z", + "firstReleaseDate": "2022-05-02T03:05:30Z", + "repo": "https://github.com/Switch-9867/BringMeMyShip", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/Switch-9867/BringMeMyShip/blob/master/readme.md", + "downloadUrl": "https://raw.githubusercontent.com/Switch-9867/BringMeMyShip/master/readme.md" + }, + "tags": [ + "tool" + ], + "slug": "bringmemyship", + "viewCount": 12, + "installCount": 52 + }, + { + "name": "Arkose bug fix", + "uniqueName": "Tlya.arkosebugfix", + "description": "A mod that fix the bug that allows Arkose to exist", + "author": "Tllya", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Tllya/arkosebugfix/releases/download/v1.0.0/AB100.zip", + "downloadCount": 303, + "latestReleaseDate": "2022-05-18T09:32:20Z", + "firstReleaseDate": "2022-05-05T12:09:29Z", + "repo": "https://github.com/Tllya/arkosebugfix", + "version": "v1.0.0", + "readme": { + "htmlUrl": "https://github.com/Tllya/arkosebugfix/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Tllya/arkosebugfix/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "arkosebugfix", + "viewCount": 11, + "installCount": 15 + }, + { + "name": "Woah Watch Those Frames", + "uniqueName": "Switch.WoahWatchThoseFrames", + "description": "Limits game FPS to 30 when in pause menu", + "author": "Switch-9867", + "downloadUrl": "https://github.com/Switch-9867/WoahWatchThoseFrames/releases/download/1.0.0/Switch.WoahWatchThoseFrames.zip", + "downloadCount": 143, + "latestReleaseDate": "2022-05-06T01:11:54Z", + "firstReleaseDate": "2022-05-06T01:11:54Z", + "repo": "https://github.com/Switch-9867/WoahWatchThoseFrames", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/Switch-9867/WoahWatchThoseFrames/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Switch-9867/WoahWatchThoseFrames/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "woahwatchthoseframes", + "viewCount": 7, + "installCount": 9 + }, + { + "name": "Timber Twin", + "uniqueName": "paragon.TimberTwin", + "description": "global warming is real and i caused it", + "author": "ParagonOrang", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/ParagonOrang/ow-timber-twin/releases/download/0.2.4/paragon.TimberTwin.zip", + "downloadCount": 452, + "latestReleaseDate": "2022-06-21T14:46:36Z", + "firstReleaseDate": "2022-05-08T00:31:39Z", + "repo": "https://github.com/ParagonOrang/ow-timber-twin", + "version": "0.2.4", + "readme": { + "htmlUrl": "https://github.com/ParagonOrang/ow-timber-twin/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ParagonOrang/ow-timber-twin/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "timbertwin", + "viewCount": 34, + "installCount": 17 + }, + { + "name": "Toggle Velocity Matching", + "uniqueName": "Vesper.ToggleVelocityMatching", + "description": "Allows you to constantly stay at the same relative velocity to an object", + "author": "Vesper-Works", + "downloadUrl": "https://github.com/Vesper-Works/Toggle-Velocity-Matching/releases/download/1.0.0/Release.1.0.0.zip", + "downloadCount": 387, + "latestReleaseDate": "2022-05-08T12:00:44Z", + "firstReleaseDate": "2022-05-08T12:00:44Z", + "repo": "https://github.com/Vesper-Works/Toggle-Velocity-Matching", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/Vesper-Works/Toggle-Velocity-Matching/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Vesper-Works/Toggle-Velocity-Matching/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "togglevelocitymatching", + "viewCount": 9, + "installCount": 42 + }, + { + "name": "Time Saver", + "uniqueName": "Bwc9876.TimeSaver", + "description": "A mod that skips various lengthy and repetetive sequences in Outer Wilds", + "author": "Bwc9876", + "downloadUrl": "https://github.com/Bwc9876/OW-TimeSaver/releases/download/1.1.1/Bwc9876.TimeSaver.zip", + "downloadCount": 636, + "latestReleaseDate": "2022-09-07T00:43:22Z", + "firstReleaseDate": "2022-05-09T00:38:00Z", + "repo": "https://github.com/Bwc9876/OW-TimeSaver", + "version": "1.1.1", + "readme": { + "htmlUrl": "https://github.com/Bwc9876/OW-TimeSaver/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Bwc9876/OW-TimeSaver/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "timesaver", + "viewCount": 34, + "installCount": 52 + }, + { + "name": "Changed Twins", + "uniqueName": "Classic.ChangedTwins", + "description": "The sand goes to ember twin and back! (Idea from Inkey boi AKA InkI", + "author": "ClassicalBro", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/ClassicalBro/changed.twins/releases/download/v0.1.1/changed.twins.zip", + "downloadCount": 350, + "latestReleaseDate": "2022-05-13T19:22:24Z", + "firstReleaseDate": "2022-05-13T18:15:34Z", + "repo": "https://github.com/ClassicalBro/changed.twins", + "version": "v0.1.1", + "readme": { + "htmlUrl": "https://github.com/ClassicalBro/changed.twins/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ClassicalBro/changed.twins/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "changedtwins", + "viewCount": 27, + "installCount": 25 + }, + { + "name": "Power Failure", + "uniqueName": "LivingFray.PowerFailure", + "description": "With no more solar energy to be harvested the stranger must start powering down some of the less critical systems to extend its operational lifespan...", + "author": "LivingFray", + "downloadUrl": "https://github.com/LivingFray/OW-PowerFailure/releases/download/1.0.0/release.zip", + "downloadCount": 494, + "latestReleaseDate": "2022-05-14T00:58:56Z", + "firstReleaseDate": "2022-05-14T00:58:56Z", + "repo": "https://github.com/LivingFray/OW-PowerFailure", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/LivingFray/OW-PowerFailure/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/LivingFray/OW-PowerFailure/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "powerfailure", + "viewCount": 40, + "installCount": 29 + }, + { + "name": "Outer Wilds Traditional Chinese Translation", + "uniqueName": "PuFF.OWCHT", + "description": "", + "author": "puffbro", + "downloadUrl": "https://github.com/puffbro/outer-wilds-traditional-chinese-translation/releases/download/1.1.1/PuFF.OWCHT.zip", + "downloadCount": 185, + "latestReleaseDate": "2022-06-06T19:31:50Z", + "firstReleaseDate": "2022-05-14T17:21:38Z", + "repo": "https://github.com/puffbro/outer-wilds-traditional-chinese-translation", + "version": "1.1.1", + "readme": { + "htmlUrl": "https://github.com/puffbro/outer-wilds-traditional-chinese-translation/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/puffbro/outer-wilds-traditional-chinese-translation/master/README.md" + }, + "tags": [ + "localization" + ], + "slug": "outerwildstraditionalchinesetranslation", + "viewCount": 10, + "installCount": 17 + }, + { + "name": "Less Lonely Ship", + "uniqueName": "Classic.CozyShip", + "description": "", + "author": "ClassicalBro", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/ClassicalBro/Less-Lonely-Ship/releases/download/v0.1.1/Less-Lonely-Ship.zip", + "downloadCount": 607, + "latestReleaseDate": "2022-05-14T23:57:48Z", + "firstReleaseDate": "2022-05-14T23:57:48Z", + "repo": "https://github.com/ClassicalBro/Less-Lonely-Ship", + "version": "v0.1.1", + "readme": { + "htmlUrl": "https://github.com/ClassicalBro/Less-Lonely-Ship/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ClassicalBro/Less-Lonely-Ship/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "lesslonelyship", + "viewCount": 78, + "installCount": 35 + }, + { + "name": "Cloudless Quantum Moons", + "uniqueName": "TerrificTrifid.VisibleQMs", + "description": "Adds the 6 quantum moon states without any clouds.", + "author": "TerrificTrifid", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/TerrificTrifid/ow-nh-visible-qms/releases/download/v0.2.3/ow-nh-visible-qms.zip", + "downloadCount": 768, + "latestReleaseDate": "2022-10-01T04:43:03Z", + "firstReleaseDate": "2022-05-16T02:36:30Z", + "repo": "https://github.com/TerrificTrifid/ow-nh-visible-qms", + "version": "v0.2.3", + "readme": { + "htmlUrl": "https://github.com/TerrificTrifid/ow-nh-visible-qms/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/TerrificTrifid/ow-nh-visible-qms/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "cloudlessquantummoons", + "viewCount": 23, + "installCount": 32 + }, + { + "name": "Backer's satellite signal", + "uniqueName": "Tlya.Backerssignal", + "description": "A mod that adds signal to the backer's satellite", + "author": "Tllya", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Tllya/backers-satellite-signal/releases/download/v1.0.2/BSS102.zip", + "downloadCount": 383, + "latestReleaseDate": "2022-05-17T12:59:18Z", + "firstReleaseDate": "2022-05-17T12:21:27Z", + "repo": "https://github.com/Tllya/backers-satellite-signal", + "version": "v1.0.2", + "readme": { + "htmlUrl": "https://github.com/Tllya/backers-satellite-signal/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Tllya/backers-satellite-signal/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "backerssatellitesignal", + "viewCount": 9, + "installCount": 23 + }, + { + "name": "Suit Log", + "uniqueName": "dgarro.SuitLog", + "description": "Suit up and view your Ship Log anywhere!", + "author": "dgarroDC", + "downloadUrl": "https://github.com/dgarroDC/SuitLog/releases/download/1.2.5/dgarro.SuitLog.zip", + "downloadCount": 1449, + "latestReleaseDate": "2022-10-07T13:24:11Z", + "firstReleaseDate": "2022-05-21T21:47:27Z", + "repo": "https://github.com/dgarroDC/SuitLog", + "version": "1.2.5", + "readme": { + "htmlUrl": "https://github.com/dgarroDC/SuitLog/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/dgarroDC/SuitLog/master/README.md" + }, + "authorDisplay": "Damián Garro", + "tags": [ + "gameplay" + ], + "slug": "suitlog", + "viewCount": 47, + "installCount": 81 + }, + { + "name": "Hatchling Outfitter", + "uniqueName": "Owen013.HatchlingOutfit", + "description": "Customize which parts of the suit Hatchling wears", + "author": "Owen013", + "downloadUrl": "https://github.com/Owen013/Hatchling-Outfitter/releases/download/v1.2.0/Owen013.HatchlingOutfit.zip", + "downloadCount": 212, + "latestReleaseDate": "2022-10-01T22:27:26Z", + "firstReleaseDate": "2022-05-22T16:48:09Z", + "repo": "https://github.com/Owen013/Hatchling-Outfitter", + "version": "v1.2.0", + "readme": { + "htmlUrl": "https://github.com/Owen013/Hatchling-Outfitter/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Owen013/Hatchling-Outfitter/main/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "hatchlingoutfitter", + "viewCount": 19, + "installCount": 12 + }, + { + "name": "Quality of Life Changes", + "uniqueName": "Owen013.QOLFixes", + "description": "All features are disabled by default. Enable the ones you want in the config menu.", + "author": "Owen013", + "downloadUrl": "https://github.com/Owen013/QOLFixes/releases/download/v1.3.1/Owen013.QOLFixes.zip", + "downloadCount": 324, + "latestReleaseDate": "2022-10-19T21:38:05Z", + "firstReleaseDate": "2022-05-23T15:52:47Z", + "repo": "https://github.com/Owen013/QOLFixes", + "version": "v1.3.1", + "readme": { + "htmlUrl": "https://github.com/Owen013/QOLFixes/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Owen013/QOLFixes/main/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "qualityoflifechanges", + "viewCount": 30, + "installCount": 27 + }, + { + "name": "Common Camera Utility", + "uniqueName": "xen.CommonCameraUtility", + "description": "Common utilities for Outer Wilds camera mods", + "author": "xen-42", + "utility": true, + "downloadUrl": "https://github.com/xen-42/ow-common-camera-util/releases/download/v1.2.2/xen.CommonCameraUtility.zip", + "downloadCount": 5771, + "latestReleaseDate": "2022-10-22T15:26:44Z", + "firstReleaseDate": "2022-05-25T04:30:54Z", + "repo": "https://github.com/xen-42/ow-common-camera-util", + "version": "v1.2.2", + "readme": { + "htmlUrl": "https://github.com/xen-42/ow-common-camera-util/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/ow-common-camera-util/main/README.md" + }, + "tags": [ + "library" + ], + "slug": "commoncamerautility", + "viewCount": 36, + "installCount": 55 + }, + { + "name": "Better Model Ship", + "uniqueName": "xen.BetterModelShip", + "description": "Adds a remote camera to the model ship", + "author": "xen-42", + "downloadUrl": "https://github.com/xen-42/outer-wilds-better-model-ship/releases/download/v0.1.1/xen.BetterModelShip.zip", + "downloadCount": 703, + "latestReleaseDate": "2022-09-17T06:26:52Z", + "firstReleaseDate": "2022-05-25T21:51:16Z", + "repo": "https://github.com/xen-42/outer-wilds-better-model-ship", + "version": "v0.1.1", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-better-model-ship/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-better-model-ship/main/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "bettermodelship", + "viewCount": 34, + "installCount": 58 + }, + { + "name": "Cloudless Giant's Deep", + "uniqueName": "gpixl.NoMoreGDClouds", + "description": "Removes the clouds from Giant's Deep", + "author": "gpixl", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/gpixl/CloudlessGiantsDeep/releases/download/v0.1.0/CloudlessGiantsDeep.zip", + "downloadCount": 417, + "latestReleaseDate": "2022-05-26T03:32:58Z", + "firstReleaseDate": "2022-05-26T03:14:33Z", + "repo": "https://github.com/gpixl/CloudlessGiantsDeep", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/gpixl/CloudlessGiantsDeep/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/gpixl/CloudlessGiantsDeep/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "cloudlessgiantsdeep", + "viewCount": 15, + "installCount": 29 + }, + { + "name": "Involuntary Blink", + "uniqueName": "MegaPiggy.InvoluntaryBlink", + "description": "Blink randomly every 2-7 seconds. Quantum Moon is now impossible to get into.", + "author": "MegaPiggy", + "downloadUrl": "https://github.com/MegaPiggy/InvoluntaryBlink/releases/download/0.1.0/MegaPiggy.InvoluntaryBlink.zip", + "downloadCount": 124, + "latestReleaseDate": "2022-05-26T19:41:40Z", + "firstReleaseDate": "2022-05-26T19:41:40Z", + "repo": "https://github.com/MegaPiggy/InvoluntaryBlink", + "version": "0.1.0", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/InvoluntaryBlink/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/InvoluntaryBlink/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "involuntaryblink", + "viewCount": 7, + "installCount": 7 + }, + { + "name": "Primitive Launching", + "uniqueName": "MegaPiggy.PrimitiveLaunching", + "description": "An example outer wilds mods that was made to show what you can do with the meteor launching mod API. Launch spheres, cubes, and more.", + "author": "MegaPiggy", + "parent": "12090113.MeteorLaunching", + "downloadUrl": "https://github.com/MegaPiggy/PrimitiveLaunching/releases/download/1.0.0/MegaPiggy.PrimitiveLaunching.zip", + "downloadCount": 182, + "latestReleaseDate": "2022-05-28T01:51:29Z", + "firstReleaseDate": "2022-05-28T01:51:29Z", + "repo": "https://github.com/MegaPiggy/PrimitiveLaunching", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/PrimitiveLaunching/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/PrimitiveLaunching/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "primitivelaunching", + "viewCount": 5, + "installCount": 15 + }, + { + "name": "Alpha Title Screen", + "uniqueName": "MegaPiggy.AlphaRegression", + "description": "Changes the title logo to the alpha logo, and replaces the planet on the title screen with the one from the alpha version of Outer Wilds.", + "author": "MegaPiggy", + "downloadUrl": "https://github.com/MegaPiggy/AlphaRegression/releases/download/1.0.0/MegaPiggy.AlphaRegression.zip", + "downloadCount": 88, + "latestReleaseDate": "2022-05-31T10:44:23Z", + "firstReleaseDate": "2022-05-31T10:44:23Z", + "repo": "https://github.com/MegaPiggy/AlphaRegression", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/AlphaRegression/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/AlphaRegression/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "alphatitlescreen", + "viewCount": 8, + "installCount": 3 + }, + { + "name": "Controllable Stranger", + "uniqueName": "likemauro.controllablestranger", + "description": "A mod that allows you to trigger the events of certain spaceship", + "author": "LikeMauro", + "downloadUrl": "https://github.com/LikeMauro/Controllable-Stranger/releases/download/0.1.1/likemauro.controllablestranger.zip", + "downloadCount": 220, + "latestReleaseDate": "2022-06-14T16:40:18Z", + "firstReleaseDate": "2022-06-12T05:38:01Z", + "repo": "https://github.com/LikeMauro/Controllable-Stranger", + "version": "0.1.1", + "readme": { + "htmlUrl": "https://github.com/LikeMauro/Controllable-Stranger/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/LikeMauro/Controllable-Stranger/master/README.md" + }, + "tags": [ + "tool" + ], + "slug": "controllablestranger", + "viewCount": 13, + "installCount": 16 + }, + { + "name": "Upsilon Andromedae", + "uniqueName": "MegaPiggy.UpsilonAndromedae", + "description": "An exaggerated recreation of the Upsilon Andromedae star system.", + "author": "MegaPiggy", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/MegaPiggy/UpsilonAndromedae/releases/download/1.0.1/MegaPiggy.UpsilonAndromedae.zip", + "downloadCount": 366, + "latestReleaseDate": "2022-06-29T04:30:25Z", + "firstReleaseDate": "2022-06-25T21:08:14Z", + "repo": "https://github.com/MegaPiggy/UpsilonAndromedae", + "version": "1.0.1", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/UpsilonAndromedae/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/UpsilonAndromedae/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "upsilonandromedae", + "viewCount": 30, + "installCount": 17 + }, + { + "name": "Fact Log", + "uniqueName": "Hawkbar.FactLog", + "description": "Displays a list of all facts (exploration information and rumors) that you have encountered in your current playthrough, and in the order you encountered them.", + "author": "Hawkbat", + "downloadUrl": "https://github.com/Hawkbat/ow-mod-fact-log/releases/download/0.1.1/Hawkbar.FactLog.zip", + "downloadCount": 135, + "latestReleaseDate": "2022-07-18T04:18:31Z", + "firstReleaseDate": "2022-07-05T22:20:45Z", + "repo": "https://github.com/Hawkbat/ow-mod-fact-log", + "version": "0.1.1", + "readme": { + "htmlUrl": "https://github.com/Hawkbat/ow-mod-fact-log/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Hawkbat/ow-mod-fact-log/master/README.md" + }, + "tags": [ + "tool" + ], + "slug": "factlog", + "viewCount": 5, + "installCount": 7 + }, + { + "name": "BlackHole Sun", + "uniqueName": "Shuit.BlackHoleSun", + "description": "Makes the sun a blackhole", + "author": "ShuitOnDiscord", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/ShuitOnDiscord/BlackHoleSun/releases/download/v0.0.2/BlackHoleSun.zip", + "downloadCount": 332, + "latestReleaseDate": "2022-07-26T21:57:28Z", + "firstReleaseDate": "2022-07-06T18:20:48Z", + "repo": "https://github.com/ShuitOnDiscord/BlackHoleSun", + "version": "v0.0.2", + "readme": { + "htmlUrl": "https://github.com/ShuitOnDiscord/BlackHoleSun/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShuitOnDiscord/BlackHoleSun/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "blackholesun", + "viewCount": 21, + "installCount": 28 + }, + { + "name": "No Sun", + "uniqueName": "Shuit.NoSun", + "description": "Removes the sun. No longer messes up the orbits with the removeChildren:[\"\"] patch", + "author": "ShuitOnDiscord", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/ShuitOnDiscord/NoSun/releases/download/v0.0.2/NoSun.zip", + "downloadCount": 263, + "latestReleaseDate": "2022-09-19T23:44:50Z", + "firstReleaseDate": "2022-07-06T18:35:31Z", + "repo": "https://github.com/ShuitOnDiscord/NoSun", + "version": "v0.0.2", + "readme": { + "htmlUrl": "https://github.com/ShuitOnDiscord/NoSun/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShuitOnDiscord/NoSun/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "nosun", + "viewCount": 7, + "installCount": 13 + }, + { + "name": "Ordered Orbits", + "uniqueName": "Shuit.MovedOrbits", + "description": "Orders most orbits by size, excluding a few bodies", + "author": "ShuitOnDiscord", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/ShuitOnDiscord/MovedOrbits/releases/download/v0.0.1/MovedOrbits.zip", + "downloadCount": 210, + "latestReleaseDate": "2022-07-06T18:44:10Z", + "firstReleaseDate": "2022-07-06T18:44:10Z", + "repo": "https://github.com/ShuitOnDiscord/MovedOrbits", + "version": "v0.0.1", + "readme": { + "htmlUrl": "https://github.com/ShuitOnDiscord/MovedOrbits/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShuitOnDiscord/MovedOrbits/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "orderedorbits", + "viewCount": 13, + "installCount": 11 + }, + { + "name": "Ship Remote Autopilot", + "uniqueName": "Titch.ShipRemoteAutopilot", + "description": "Allows the player to remotely activate the ships autopilot to select destinations.", + "author": "TitchMW", + "downloadUrl": "https://github.com/TitchMW/remoteautopilot/releases/download/v0.1.0/Titch.ShipRemoteAutopilot.zip", + "downloadCount": 270, + "latestReleaseDate": "2022-07-09T22:31:48Z", + "firstReleaseDate": "2022-07-09T22:31:48Z", + "repo": "https://github.com/TitchMW/remoteautopilot", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/TitchMW/remoteautopilot/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/TitchMW/remoteautopilot/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "shipremoteautopilot", + "viewCount": 10, + "installCount": 23 + }, + { + "name": "Block Placing", + "uniqueName": "12090113.Cubes", + "description": "Place Minecraft blocks with left click, destroy them with alt-click, and switch blocks with T (See README for VR controls)", + "author": "12090113", + "downloadUrl": "https://github.com/12090113/outer-wilds-cubes/releases/download/v0.1.1/Cubes.zip", + "downloadCount": 238, + "latestReleaseDate": "2022-07-17T17:45:36Z", + "firstReleaseDate": "2022-07-10T21:49:54Z", + "repo": "https://github.com/12090113/outer-wilds-cubes", + "version": "v0.1.1", + "readme": { + "htmlUrl": "https://github.com/12090113/outer-wilds-cubes/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/12090113/outer-wilds-cubes/main/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "blockplacing", + "viewCount": 21, + "installCount": 29 + }, + { + "name": "Czech Localization", + "uniqueName": "shippy.czech", + "description": "A Czech localization of Outer Wilds", + "author": "shippy", + "downloadUrl": "https://github.com/shippy/outer-wilds-czech/releases/download/0.4.0/shippy.czech_0.4.0.zip", + "downloadCount": 53, + "latestReleaseDate": "2022-07-25T15:19:59Z", + "firstReleaseDate": "2022-07-11T07:57:55Z", + "repo": "https://github.com/shippy/outer-wilds-czech", + "version": "0.4.0", + "readme": { + "htmlUrl": "https://github.com/shippy/outer-wilds-czech/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/shippy/outer-wilds-czech/master/README.md" + }, + "tags": [ + "localization" + ], + "slug": "czechlocalization", + "viewCount": 3, + "installCount": 1 + }, + { + "name": "Carson System", + "uniqueName": "JackFoxtrot.CarsonSystem", + "description": "A low-mass star nicknamed \"Carson\", 2.4 light-years away from the Sun.", + "author": "mrwallace888", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/mrwallace888/OWNH-Carson-System/releases/download/v2.0.0/OWNH-Carson-System.zip", + "downloadCount": 555, + "latestReleaseDate": "2022-09-20T00:39:41Z", + "firstReleaseDate": "2022-07-12T02:37:03Z", + "repo": "https://github.com/mrwallace888/OWNH-Carson-System", + "version": "v2.0.0", + "readme": { + "htmlUrl": "https://github.com/mrwallace888/OWNH-Carson-System/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/mrwallace888/OWNH-Carson-System/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "carsonsystem", + "viewCount": 25, + "installCount": 25 + }, + { + "name": "Sound Test", + "uniqueName": "Hawkbar.SoundTest", + "description": "Lets you play any sound in the game from the menu", + "author": "Hawkbat", + "downloadUrl": "https://github.com/Hawkbat/ow-mod-sound-test/releases/download/0.1.1/Hawkbar.SoundTest.zip", + "downloadCount": 103, + "latestReleaseDate": "2022-07-17T20:59:55Z", + "firstReleaseDate": "2022-07-17T20:23:48Z", + "repo": "https://github.com/Hawkbat/ow-mod-sound-test", + "version": "0.1.1", + "readme": { + "htmlUrl": "https://github.com/Hawkbat/ow-mod-sound-test/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Hawkbat/ow-mod-sound-test/master/README.md" + }, + "tags": [ + "tool" + ], + "slug": "soundtest", + "viewCount": 5, + "installCount": 9 + }, + { + "name": "Interplanetary Polyglot", + "uniqueName": "xen.LocalizationUtility", + "description": "A utility for creating translation mods for Outer Wilds with minimal code", + "author": "xen-42", + "utility": true, + "downloadUrl": "https://github.com/xen-42/outer-wilds-localization-utility/releases/download/v0.2.1/xen.LocalizationUtility.zip", + "downloadCount": 84, + "latestReleaseDate": "2022-11-11T22:50:57Z", + "firstReleaseDate": "2022-07-22T16:51:31Z", + "repo": "https://github.com/xen-42/outer-wilds-localization-utility", + "version": "v0.2.1", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-localization-utility/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-localization-utility/main/README.md" + }, + "tags": [ + "library", + "localization" + ], + "slug": "interplanetarypolyglot", + "viewCount": 10, + "installCount": 1 + }, + { + "name": "StopTime", + "uniqueName": "_nebula.StopTime", + "description": "A mod for Outer Wilds that stops the end of the loop from happening.", + "author": "misternebula", + "downloadUrl": "https://github.com/misternebula/StopTime/releases/download/1.0.0/StopTime.zip", + "downloadCount": 2448, + "latestReleaseDate": "2022-07-25T22:47:06Z", + "firstReleaseDate": "2020-04-12T19:16:40Z", + "repo": "https://github.com/misternebula/StopTime", + "version": "1.0.0", + "tags": [ + "tool" + ], + "slug": "stoptime", + "viewCount": 59, + "installCount": 82 + }, + { + "name": "Galaxy Skybox: NGC 1087", + "uniqueName": "TerrificTrifid.NGC1087", + "description": "Places the Hearthian system in a peaceful galaxy.", + "author": "TerrificTrifid", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/TerrificTrifid/ow-nh-ngc1087/releases/download/v0.1.0/ow-nh-ngc1087.zip", + "downloadCount": 323, + "latestReleaseDate": "2022-07-26T04:13:21Z", + "firstReleaseDate": "2022-07-26T04:13:21Z", + "repo": "https://github.com/TerrificTrifid/ow-nh-ngc1087", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/TerrificTrifid/ow-nh-ngc1087/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/TerrificTrifid/ow-nh-ngc1087/main/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "galaxyskyboxngc1087", + "viewCount": 20, + "installCount": 22 + }, + { + "name": "Quantum Moon Orbit Line", + "uniqueName": "MegaPiggy.QuantumMoonOrbitLine", + "description": "Adds an orbit line to the Quantum Moon on the map.", + "author": "MegaPiggy", + "downloadUrl": "https://github.com/MegaPiggy/QuantumMoonOrbitLine/releases/download/1.0.1/MegaPiggy.QuantumMoonOrbitLine.zip", + "downloadCount": 225, + "latestReleaseDate": "2022-07-27T11:34:00Z", + "firstReleaseDate": "2022-07-27T07:19:01Z", + "repo": "https://github.com/MegaPiggy/QuantumMoonOrbitLine", + "version": "1.0.1", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/QuantumMoonOrbitLine/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/QuantumMoonOrbitLine/master/README.md" + }, + "authorDisplay": "MegaPiggy", + "tags": [ + "audiovisual" + ], + "slug": "quantummoonorbitline", + "viewCount": 8, + "installCount": 10 + }, + { + "name": "Permadeath Mode", + "uniqueName": "piggeywig2000.Permadeath", + "description": "The ship log is reset if you die to something other than the supernova. Try to completely fill the ship log without dying!", + "author": "piggeywig2000", + "downloadUrl": "https://github.com/piggeywig2000/OuterWildsPermadeath/releases/download/1.1.2/OuterWildsPermadeath.1.1.2.zip", + "downloadCount": 142, + "latestReleaseDate": "2022-09-16T21:20:56Z", + "firstReleaseDate": "2022-08-01T00:13:25Z", + "repo": "https://github.com/piggeywig2000/OuterWildsPermadeath", + "version": "1.1.2", + "readme": { + "htmlUrl": "https://github.com/piggeywig2000/OuterWildsPermadeath/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/piggeywig2000/OuterWildsPermadeath/main/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "permadeathmode", + "viewCount": 18, + "installCount": 5 + }, + { + "name": "Sun Station Ascension", + "uniqueName": "TerrificTrifid.SSAscension", + "description": "Raises the Sun Station to a higher orbit to survive the red giant phase.", + "author": "TerrificTrifid", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/TerrificTrifid/ow-nh-ss-ascension/releases/download/v0.1.1/ow-nh-ss-ascension.zip", + "downloadCount": 259, + "latestReleaseDate": "2022-08-18T19:01:07Z", + "firstReleaseDate": "2022-08-17T04:00:28Z", + "repo": "https://github.com/TerrificTrifid/ow-nh-ss-ascension", + "version": "v0.1.1", + "readme": { + "htmlUrl": "https://github.com/TerrificTrifid/ow-nh-ss-ascension/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/TerrificTrifid/ow-nh-ss-ascension/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "sunstationascension", + "viewCount": 21, + "installCount": 25 + }, + { + "name": "Discord Rich Presence", + "uniqueName": "MegaPiggy.OWRichPresence", + "description": "Adds discord rich presence to Outer Wilds", + "author": "MegaPiggy", + "downloadUrl": "https://github.com/MegaPiggy/OWRichPresence/releases/download/1.3.0/MegaPiggy.OWRichPresence.zip", + "downloadCount": 601, + "latestReleaseDate": "2022-10-03T00:54:36Z", + "firstReleaseDate": "2022-08-21T06:44:58Z", + "repo": "https://github.com/MegaPiggy/OWRichPresence", + "version": "1.3.0", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/OWRichPresence/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/OWRichPresence/master/README.md" + }, + "tags": [ + "integration" + ], + "slug": "discordrichpresence", + "viewCount": 37, + "installCount": 63 + }, + { + "name": "Artifact Laser", + "uniqueName": "Cleric.ArtifactLaser", + "description": "Allows you to get revenge by making a certain item into a deadly laser.", + "author": "coderCleric", + "downloadUrl": "https://github.com/coderCleric/artifact_laser/releases/download/v1.1.0/Cleric.ArtifactLaser.zip", + "downloadCount": 246, + "latestReleaseDate": "2022-08-29T22:05:50Z", + "firstReleaseDate": "2022-08-22T03:33:15Z", + "repo": "https://github.com/coderCleric/artifact_laser", + "version": "v1.1.0", + "readme": { + "htmlUrl": "https://github.com/coderCleric/artifact_laser/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/coderCleric/artifact_laser/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "artifactlaser", + "viewCount": 21, + "installCount": 28 + }, + { + "name": "Speed Modifier/Walk Button on KBM", + "uniqueName": "ilyabru.OWSpeedModifier", + "description": "Change the movement speed of your Hearthian using the keyboard+mouse input. Works when walking and flying. To use, press the default key: V", + "author": "ilyabru", + "downloadUrl": "https://github.com/ilyabru/OWSpeedModifier/releases/download/1.1.0/ilyabru.OWSpeedModifier.zip", + "downloadCount": 73, + "latestReleaseDate": "2022-11-06T23:02:45Z", + "firstReleaseDate": "2022-08-23T04:43:39Z", + "repo": "https://github.com/ilyabru/OWSpeedModifier", + "version": "1.1.0", + "readme": { + "htmlUrl": "https://github.com/ilyabru/OWSpeedModifier/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ilyabru/OWSpeedModifier/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "speedmodifierwalkbuttononkbm", + "viewCount": 6, + "installCount": 3 + }, + { + "name": "Cut Achievements", + "uniqueName": "_nebula.CutAchievements", + "description": "Adds some cut achievements back into Outer Wilds.", + "author": "misternebula", + "parent": "xen.AchievementTracker", + "downloadUrl": "https://github.com/misternebula/cut-achievements/releases/download/1.0.0/CutAchievements.zip", + "downloadCount": 317, + "latestReleaseDate": "2022-08-23T22:28:07Z", + "firstReleaseDate": "2022-08-23T22:28:07Z", + "repo": "https://github.com/misternebula/cut-achievements", + "version": "1.0.0", + "tags": [ + "content" + ], + "slug": "cutachievements", + "viewCount": 23, + "installCount": 52 + }, + { + "name": "Chargeable Scout Launcher", + "uniqueName": "Cleric.ChargeableScout", + "description": "Makes it so that the scout launcher can be charged for a farther launch.", + "author": "coderCleric", + "downloadUrl": "https://github.com/coderCleric/chargeable-scout/releases/download/v1.0.2/Cleric.ChargeableScout.zip", + "downloadCount": 238, + "latestReleaseDate": "2022-10-22T03:01:53Z", + "firstReleaseDate": "2022-08-25T19:43:08Z", + "repo": "https://github.com/coderCleric/chargeable-scout", + "version": "v1.0.2", + "readme": { + "htmlUrl": "https://github.com/coderCleric/chargeable-scout/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/coderCleric/chargeable-scout/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "chargeablescoutlauncher", + "viewCount": 5, + "installCount": 12 + }, + { + "name": "(Razer/SteelSeries) RGB Integration", + "uniqueName": "LivingFray.RGBIntegration", + "description": "Adds effects to supported SteelSeries keyboards + mice", + "author": "LivingFray", + "downloadUrl": "https://github.com/LivingFray/OW-RGB-Integration/releases/download/0.2.1/LivingFray.RGBIntegration.zip", + "downloadCount": 83, + "latestReleaseDate": "2022-09-10T16:18:20Z", + "firstReleaseDate": "2022-08-27T22:09:59Z", + "repo": "https://github.com/LivingFray/OW-RGB-Integration", + "version": "0.2.1", + "readme": { + "htmlUrl": "https://github.com/LivingFray/OW-RGB-Integration/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/LivingFray/OW-RGB-Integration/master/README.md" + }, + "tags": [ + "integration" + ], + "slug": "razersteelseriesrgbintegration", + "viewCount": 7, + "installCount": 11 + }, + { + "name": "Europe Times", + "uniqueName": "MegaPiggy.EuropeTimes", + "description": "Replaces end times with The Final Countdown by Europe", + "author": "MegaPiggy", + "downloadUrl": "https://github.com/MegaPiggy/EuropeTimes/releases/download/0.1.0/EuropeTimes.zip", + "downloadCount": 156, + "latestReleaseDate": "2022-08-28T22:26:38Z", + "firstReleaseDate": "2022-08-28T22:26:38Z", + "repo": "https://github.com/MegaPiggy/EuropeTimes", + "version": "0.1.0", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/EuropeTimes/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/EuropeTimes/master/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "europetimes", + "viewCount": 2, + "installCount": 18 + }, + { + "name": "Hazy Dreams", + "uniqueName": "Laundryjx.HazyDreams", + "description": "A mod that adds fog to the dreamworld.", + "author": "Landriejx", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Landriejx/HazyDreams/releases/download/v0.1.0/Laundryjx.HazyDreams.zip", + "downloadCount": 204, + "latestReleaseDate": "2022-08-28T18:45:35Z", + "firstReleaseDate": "2022-08-28T18:45:35Z", + "repo": "https://github.com/Landriejx/HazyDreams", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/Landriejx/HazyDreams/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Landriejx/HazyDreams/main/README.md" + }, + "authorDisplay": "Laundryjx", + "tags": [ + "audiovisual" + ], + "slug": "hazydreams", + "viewCount": 10, + "installCount": 25 + }, + { + "name": "Gizmos Library", + "uniqueName": "Locochoco.GizmosLibrary", + "description": "A library to help drawing gizmos on Outer Wilds", + "author": "ShoosGun", + "utility": true, + "downloadUrl": "https://github.com/ShoosGun/GizmosLibrary/releases/download/0.1.0/Locochoco.GizmosLibrary.zip", + "downloadCount": 29, + "latestReleaseDate": "2022-09-02T00:44:11Z", + "firstReleaseDate": "2022-09-02T00:44:11Z", + "repo": "https://github.com/ShoosGun/GizmosLibrary", + "version": "0.1.0", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/GizmosLibrary/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/GizmosLibrary/main/README.md" + }, + "authorDisplay": "Locochoco", + "tags": [ + "library" + ], + "slug": "gizmoslibrary", + "viewCount": 4, + "installCount": 1 + }, + { + "name": "Wacky Rotations", + "uniqueName": "Cleric.WackyRotations", + "description": "Allows the player to mess with the rotation settings on planets. Inspired by the randomizer mod.", + "author": "coderCleric", + "downloadUrl": "https://github.com/coderCleric/WackyRotations/releases/download/v0.1.0/Cleric.WackyRotations.zip", + "downloadCount": 142, + "latestReleaseDate": "2022-09-03T01:09:59Z", + "firstReleaseDate": "2022-09-03T01:09:59Z", + "repo": "https://github.com/coderCleric/WackyRotations", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/coderCleric/WackyRotations/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/coderCleric/WackyRotations/master/README.md" + }, + "authorDisplay": "coderCleric", + "tags": [ + "content" + ], + "slug": "wackyrotations", + "viewCount": 16, + "installCount": 15 + }, + { + "name": "The Vision", + "uniqueName": "hearth1an.TheVision", + "description": "This mod continues the story from both base game and Echoes of the Eye DLC. Translations: EN, RU, PT, FR, ZH, JA, DE, ES", + "author": "hearth1an", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/hearth1an/hearthian.TheVision/releases/download/v1.1.2/hearth1an.TheVision.zip", + "downloadCount": 5010, + "latestReleaseDate": "2022-12-14T14:19:21Z", + "firstReleaseDate": "2022-09-04T17:24:56Z", + "repo": "https://github.com/hearth1an/hearthian.TheVision", + "version": "v1.1.2", + "readme": { + "htmlUrl": "https://github.com/hearth1an/hearthian.TheVision/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/hearth1an/hearthian.TheVision/main/README.md" + }, + "authorDisplay": "hearth1an", + "tags": [ + "story", + "content" + ], + "slug": "thevision", + "viewCount": 1191, + "installCount": 350 + }, + { + "name": "Secret Words", + "uniqueName": "Fixxion.SecretWords", + "description": "A mod that creates 5 custom planets on Outer Wilds. Each of them hides a secret code. Gather them and make your name appear on the mod!", + "author": "FixxionsLair", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/FixxionsLair/Secret-Words/releases/download/0.1.3/Fixxion.SecretWords.zip", + "downloadCount": 510, + "latestReleaseDate": "2022-09-09T10:05:13Z", + "firstReleaseDate": "2022-09-08T15:20:09Z", + "repo": "https://github.com/FixxionsLair/Secret-Words", + "version": "0.1.3", + "readme": { + "htmlUrl": "https://github.com/FixxionsLair/Secret-Words/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/FixxionsLair/Secret-Words/main/README.md" + }, + "authorDisplay": "Fixxion's Lair", + "tags": [ + "content" + ], + "slug": "secretwords", + "viewCount": 60, + "installCount": 56 + }, + { + "name": "Slate's Shipyard", + "uniqueName": "Locochoco.SlateShipyard", + "description": "Allows creation and spawing of custom ships.", + "author": "ShoosGun", + "utility": true, + "downloadUrl": "https://github.com/ShoosGun/SlateShipyard/releases/download/v0.2.0/Locochoco.SlateShipyard.zip", + "downloadCount": 582, + "latestReleaseDate": "2022-11-23T01:40:01Z", + "firstReleaseDate": "2022-09-08T19:44:51Z", + "repo": "https://github.com/ShoosGun/SlateShipyard", + "version": "v0.2.0", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/SlateShipyard/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/SlateShipyard/main/README.md" + }, + "authorDisplay": "Locochoco", + "prerelease": { + "version": "v0.1.9", + "downloadUrl": "https://github.com/ShoosGun/SlateShipyard/releases/download/v0.1.9/Locochoco.SlateShipyard.zip", + "date": "2022-11-21T10:02:13Z" + }, + "tags": [ + "library", + "gameplay", + "tool", + "content" + ], + "slug": "slatesshipyard", + "viewCount": 55, + "installCount": 63 + }, + { + "name": "Spaceshipinha", + "uniqueName": "Locochoco.Spaceshipinha", + "description": "Adds a ship simmilar to the one on the alpha mod Navinha", + "author": "ShoosGun", + "parent": "Locochoco.SlateShipyard", + "downloadUrl": "https://github.com/ShoosGun/Spaceshipinha/releases/download/v0.1.8/Locochoco.Spaceshipinha.zip", + "downloadCount": 336, + "latestReleaseDate": "2022-11-23T01:39:54Z", + "firstReleaseDate": "2022-09-08T20:00:48Z", + "repo": "https://github.com/ShoosGun/Spaceshipinha", + "version": "v0.1.8", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/Spaceshipinha/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/Spaceshipinha/main/README.md" + }, + "authorDisplay": "Locochoco", + "prerelease": { + "version": "v0.1.7", + "downloadUrl": "https://github.com/ShoosGun/Spaceshipinha/releases/download/v0.1.7/Locochoco.Spaceshipinha.zip", + "date": "2022-11-15T01:27:13Z" + }, + "tags": [ + "gameplay" + ], + "slug": "spaceshipinha", + "viewCount": 32, + "installCount": 53 + }, + { + "name": "DOOM", + "uniqueName": "Hawkbar.Doom", + "description": "But can your ship run DOOM? Yes, yes it can.", + "author": "Hawkbat", + "downloadUrl": "https://github.com/Hawkbat/ow-mod-doom/releases/download/0.1.2/Hawkbar.Doom.zip", + "downloadCount": 530, + "latestReleaseDate": "2022-12-03T18:10:17Z", + "firstReleaseDate": "2022-09-09T21:02:46Z", + "repo": "https://github.com/Hawkbat/ow-mod-doom", + "version": "0.1.2", + "readme": { + "htmlUrl": "https://github.com/Hawkbat/ow-mod-doom/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Hawkbat/ow-mod-doom/master/README.md" + }, + "authorDisplay": "Hawkbar", + "tags": [ + "gameplay" + ], + "slug": "doom", + "viewCount": 133, + "installCount": 87 + }, + { + "name": "Car Example", + "uniqueName": "Locochoco.CarExample", + "description": "An example mod of creating vehicles with wheels with Slate's Shipyard", + "author": "ShoosGun", + "parent": "Locochoco.SlateShipyard", + "downloadUrl": "https://github.com/ShoosGun/CarExample/releases/download/v0.1.4/Locochoco.CarExample.zip", + "downloadCount": 274, + "latestReleaseDate": "2022-11-23T01:39:36Z", + "firstReleaseDate": "2022-09-15T02:08:13Z", + "repo": "https://github.com/ShoosGun/CarExample", + "version": "v0.1.4", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/CarExample/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/CarExample/main/README.md" + }, + "authorDisplay": "Locochoco", + "prerelease": { + "version": "v0.1.3", + "downloadUrl": "https://github.com/ShoosGun/CarExample/releases/download/v0.1.3/Locochoco.CarExample.zip", + "date": "2022-11-15T01:30:20Z" + }, + "tags": [ + "gameplay" + ], + "slug": "carexample", + "viewCount": 14, + "installCount": 47 + }, + { + "name": "Clear Glass", + "uniqueName": "clay.ClearGlass", + "description": "Makes some glass in the game clear", + "author": "FreezeDriedMangos", + "downloadUrl": "https://github.com/FreezeDriedMangos/ow-clear-glass/releases/download/1.0.0/clay.ClearGlass.zip", + "downloadCount": 193, + "latestReleaseDate": "2022-09-17T23:44:57Z", + "firstReleaseDate": "2022-09-17T23:44:57Z", + "repo": "https://github.com/FreezeDriedMangos/ow-clear-glass", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/FreezeDriedMangos/ow-clear-glass/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/FreezeDriedMangos/ow-clear-glass/master/README.md" + }, + "authorDisplay": "clay", + "tags": [ + "audiovisual" + ], + "slug": "clearglass", + "viewCount": 22, + "installCount": 28 + }, + { + "name": "Bhaptics Outer Wilds", + "uniqueName": "Astien.OWBhaptics", + "description": "Bhaptics integration for outer wilds", + "author": "Astienth", + "downloadUrl": "https://github.com/Astienth/ow-bhaptics/releases/download/0.1.0/Astien.OWBhaptics.zip", + "downloadCount": 39, + "latestReleaseDate": "2022-09-18T10:58:25Z", + "firstReleaseDate": "2022-09-18T10:58:25Z", + "repo": "https://github.com/Astienth/ow-bhaptics", + "version": "0.1.0", + "readme": { + "htmlUrl": "https://github.com/Astienth/ow-bhaptics/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Astienth/ow-bhaptics/master/README.md" + }, + "authorDisplay": "Astien75", + "tags": [ + "integration" + ], + "slug": "bhapticsouterwilds", + "viewCount": 5, + "installCount": 7 + }, + { + "name": "Espied Serenity", + "uniqueName": "Ciborgm9.Espied_Serenity", + "description": "", + "author": "Ciborgm9", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Ciborgm9/Rogue-Planet/releases/download/v0.1.1/Rogue-Planet.zip", + "downloadCount": 203, + "latestReleaseDate": "2022-09-23T14:41:31Z", + "firstReleaseDate": "2022-09-14T14:41:37Z", + "repo": "https://github.com/Ciborgm9/Rogue-Planet", + "version": "v0.1.1", + "readme": { + "htmlUrl": "https://github.com/Ciborgm9/Rogue-Planet/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Ciborgm9/Rogue-Planet/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "espiedserenity", + "viewCount": 26, + "installCount": 28 + }, + { + "name": "Green Jetpack", + "uniqueName": "TheLoreExplorer.GreenJetpack", + "description": "", + "author": "TheLoreExplorer", + "downloadUrl": "https://github.com/TheLoreExplorer/GreenJetpack3/releases/download/0.2.0/TheLoreExplorer.GreenJetpack.zip", + "downloadCount": 119, + "latestReleaseDate": "2022-10-21T04:55:04Z", + "firstReleaseDate": "2022-10-21T04:55:04Z", + "repo": "https://github.com/TheLoreExplorer/GreenJetpack3", + "version": "0.2.0", + "readme": { + "htmlUrl": "https://github.com/TheLoreExplorer/GreenJetpack3/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/TheLoreExplorer/GreenJetpack3/master/README.md" + }, + "tags": [ + "gameplay", + "audiovisual" + ], + "slug": "greenjetpack", + "viewCount": 11, + "installCount": 22 + }, + { + "name": "Secret Settings", + "uniqueName": "xen.SecretSettings", + "description": "Allows setting the games \"secret settings\" (ex, showing breath fog on your visor) from the mod options menu.", + "author": "xen-42", + "downloadUrl": "https://github.com/xen-42/outer-wilds-secret-settings/releases/download/v0.1.0/xen.SecretSettings.zip", + "downloadCount": 408, + "latestReleaseDate": "2022-09-27T18:03:04Z", + "firstReleaseDate": "2022-09-27T18:03:04Z", + "repo": "https://github.com/xen-42/outer-wilds-secret-settings", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/xen-42/outer-wilds-secret-settings/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/outer-wilds-secret-settings/master/README.md" + }, + "authorDisplay": "xen", + "tags": [ + "tool" + ], + "slug": "secretsettings", + "viewCount": 51, + "installCount": 80 + }, + { + "name": "Fret's Quest", + "uniqueName": "Samster68.FretsQuest", + "description": "A short story addon where you help a friend recover something that was stolen from him.", + "author": "Samster68OW", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Samster68OW/fretsquest/releases/download/v0.5.0/fretsquest.zip", + "downloadCount": 1237, + "latestReleaseDate": "2022-10-27T12:33:03Z", + "firstReleaseDate": "2022-10-01T23:01:22Z", + "repo": "https://github.com/Samster68OW/fretsquest", + "version": "v0.5.0", + "readme": { + "htmlUrl": "https://github.com/Samster68OW/fretsquest/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Samster68OW/fretsquest/main/README.md" + }, + "authorDisplay": "Samster68", + "tags": [ + "content", + "story" + ], + "slug": "fretsquest", + "viewCount": 354, + "installCount": 87 + }, + { + "name": "Heavy Sleeper", + "uniqueName": "Smaed.HeavySleeper", + "description": "", + "author": "Smaedd", + "downloadUrl": "https://github.com/Smaedd/OW_HeavySleeper/releases/download/v0.2.0/Smaed.HeavySleeper.zip", + "downloadCount": 47, + "latestReleaseDate": "2022-10-03T04:45:37Z", + "firstReleaseDate": "2022-10-02T14:37:41Z", + "repo": "https://github.com/Smaedd/OW_HeavySleeper", + "version": "v0.2.0", + "readme": { + "htmlUrl": "https://github.com/Smaedd/OW_HeavySleeper/blob/master/readme.md", + "downloadUrl": "https://raw.githubusercontent.com/Smaedd/OW_HeavySleeper/master/readme.md" + }, + "authorDisplay": "Smaed", + "tags": [ + "gameplay" + ], + "slug": "heavysleeper", + "viewCount": 13, + "installCount": 7 + }, + { + "name": "The Funniest System", + "uniqueName": "O32.FunnySystem", + "description": "Mix of exploration and story. May be funny. Need I say more?", + "author": "RealOrbital32", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/RealOrbital32/funny-system/releases/download/1.5.1/O32.FunnySystem.zip", + "downloadCount": 603, + "latestReleaseDate": "2022-12-26T06:14:06Z", + "firstReleaseDate": "2022-10-02T21:32:53Z", + "repo": "https://github.com/RealOrbital32/funny-system", + "version": "1.5.1", + "readme": { + "htmlUrl": "https://github.com/RealOrbital32/funny-system/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/RealOrbital32/funny-system/main/README.md" + }, + "authorDisplay": "Orbital 32 (a.k.a. cigtu)", + "tags": [ + "content" + ], + "slug": "thefunniestsystem", + "viewCount": 112, + "installCount": 54 + }, + { + "name": "Scout Teleporter", + "uniqueName": "hearth1an.ProbeTeleporter", + "description": "Pure Hearthian technology! Now you can use scout to teleport yourself or climb anywhere with tiny gravity crystall. Press \"T\" when scout is launched or landed to inverse the warp core power for teleporting yourself.", + "author": "hearth1an", + "downloadUrl": "https://github.com/hearth1an/hearth1an.ScoutTeleporter/releases/download/v.1.0.4/hearth1an.ScoutTeleporter.zip", + "downloadCount": 310, + "latestReleaseDate": "2022-10-28T14:09:32Z", + "firstReleaseDate": "2022-10-02T21:24:39Z", + "repo": "https://github.com/hearth1an/hearth1an.ScoutTeleporter", + "version": "v.1.0.4", + "readme": { + "htmlUrl": "https://github.com/hearth1an/hearth1an.ScoutTeleporter/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/hearth1an/hearth1an.ScoutTeleporter/main/README.md" + }, + "authorDisplay": "hearth1an", + "tags": [ + "gameplay" + ], + "slug": "scoutteleporter", + "viewCount": 29, + "installCount": 56 + }, + { + "name": "Custom Ship Log Modes", + "uniqueName": "dgarro.CustomShipLogModes", + "description": "Allows other mods to add their custom Ship Log modes", + "author": "dgarroDC", + "utility": true, + "downloadUrl": "https://github.com/dgarroDC/CustomShipLogModes/releases/download/1.0.1/dgarro.CustomShipLogModes.zip", + "downloadCount": 3098, + "latestReleaseDate": "2022-10-26T04:07:09Z", + "firstReleaseDate": "2022-10-05T04:54:06Z", + "repo": "https://github.com/dgarroDC/CustomShipLogModes", + "version": "1.0.1", + "readme": { + "htmlUrl": "https://github.com/dgarroDC/CustomShipLogModes/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/dgarroDC/CustomShipLogModes/master/README.md" + }, + "authorDisplay": "Damián Garro", + "tags": [ + "library" + ], + "slug": "customshiplogmodes", + "viewCount": 24, + "installCount": 36 + }, + { + "name": "Ship Log Slide Reel Player Plus", + "uniqueName": "dgarro.ShipLogSlideReelPlayer", + "description": "Play Echoes of the Eye slide reels in your Ship Log computer with an enhanced player!", + "author": "dgarroDC", + "downloadUrl": "https://github.com/dgarroDC/ShipLogSlideReelPlayer/releases/download/2.0.1/dgarro.ShipLogSlideReelPlayer.zip", + "downloadCount": 3387, + "latestReleaseDate": "2022-10-14T06:09:06Z", + "firstReleaseDate": "2021-12-30T22:37:20Z", + "repo": "https://github.com/dgarroDC/ShipLogSlideReelPlayer", + "version": "2.0.1", + "readme": { + "htmlUrl": "https://github.com/dgarroDC/ShipLogSlideReelPlayer/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/dgarroDC/ShipLogSlideReelPlayer/main/README.md" + }, + "authorDisplay": "Damián Garro", + "tags": [ + "gameplay", + "tweaks" + ], + "slug": "shiplogslidereelplayerplus", + "viewCount": 19, + "installCount": 57 + }, + { + "name": "Smallest System in the Galaxy", + "uniqueName": "O32.Smallest", + "description": "The smallest system in the galaxy!", + "author": "RealOrbital32", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/RealOrbital32/smallest/releases/download/1.1.0/O32.Smallest.zip", + "downloadCount": 187, + "latestReleaseDate": "2022-10-08T16:11:59Z", + "firstReleaseDate": "2022-10-03T10:07:49Z", + "repo": "https://github.com/RealOrbital32/smallest", + "version": "1.1.0", + "readme": { + "htmlUrl": "https://github.com/RealOrbital32/smallest/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/RealOrbital32/smallest/main/README.md" + }, + "authorDisplay": "Orbital 32 (a.k.a. cigtu)", + "tags": [ + "content" + ], + "slug": "smallestsysteminthegalaxy", + "viewCount": 29, + "installCount": 36 + }, + { + "name": "Developer Console", + "uniqueName": "Smaed.DeveloperConsole", + "description": "A general purpose developer console", + "author": "Smaedd", + "utility": true, + "downloadUrl": "https://github.com/Smaedd/OW_DeveloperConsole/releases/download/v0.2.4/Smaed.DeveloperConsole.zip", + "downloadCount": 144, + "latestReleaseDate": "2022-11-07T03:51:52Z", + "firstReleaseDate": "2022-10-10T02:19:57Z", + "repo": "https://github.com/Smaedd/OW_DeveloperConsole", + "version": "v0.2.4", + "readme": { + "htmlUrl": "https://github.com/Smaedd/OW_DeveloperConsole/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Smaedd/OW_DeveloperConsole/main/README.md" + }, + "authorDisplay": "Smaed", + "tags": [ + "library", + "tool" + ], + "slug": "developerconsole", + "viewCount": 12, + "installCount": 13 + }, + { + "name": "Console Cheats", + "uniqueName": "Smaed.ConsoleCheats", + "description": "A port of PacificEngine's Cheats Mod to work with the Developer Console", + "author": "Smaedd", + "downloadUrl": "https://github.com/Smaedd/OW_ConsoleCheats/releases/download/v0.2.2/Smaed.ConsoleCheats.zip", + "downloadCount": 115, + "latestReleaseDate": "2022-10-16T05:22:52Z", + "firstReleaseDate": "2022-10-09T12:31:52Z", + "repo": "https://github.com/Smaedd/OW_ConsoleCheats", + "version": "v0.2.2", + "readme": { + "htmlUrl": "https://github.com/Smaedd/OW_ConsoleCheats/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Smaedd/OW_ConsoleCheats/main/README.md" + }, + "authorDisplay": "Smaed", + "tags": [ + "tool" + ], + "slug": "consolecheats", + "viewCount": 15, + "installCount": 20 + }, + { + "name": "Mo' Voices", + "uniqueName": "Krevace.MoVoicesMod", + "description": "An unofficial addon to the Voice Acting mod that revoices 11 characters. The files are unmixed. ", + "author": "Krevace", + "parent": "Krevace.VoiceMod", + "downloadUrl": "https://github.com/Krevace/ow-mo-voices-mod/releases/download/0.1.1/Krevace.MoVoicesMod.zip", + "downloadCount": 420, + "latestReleaseDate": "2022-12-08T22:43:58Z", + "firstReleaseDate": "2022-10-14T03:20:25Z", + "repo": "https://github.com/Krevace/ow-mo-voices-mod", + "version": "0.1.1", + "readme": { + "htmlUrl": "https://github.com/Krevace/ow-mo-voices-mod/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Krevace/ow-mo-voices-mod/main/README.md" + }, + "tags": [ + "audiovisual" + ], + "slug": "movoices", + "viewCount": 61, + "installCount": 124 + }, + { + "name": "The Wilds: Extended", + "uniqueName": "FunkyShoeMan.TheWildsExtended", + "description": "Silly NH Addon to add content to the current base game (made with love and care by me and #nh-addon-discussion) (xen carried)", + "author": "FunkyShoeMan", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/FunkyShoeMan/TheWildsExtended/releases/download/v0.2.1/TheWildsExtended.zip", + "downloadCount": 268, + "latestReleaseDate": "2022-10-15T22:54:09Z", + "firstReleaseDate": "2022-10-15T04:01:29Z", + "repo": "https://github.com/FunkyShoeMan/TheWildsExtended", + "version": "v0.2.1", + "readme": { + "htmlUrl": "https://github.com/FunkyShoeMan/TheWildsExtended/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/FunkyShoeMan/TheWildsExtended/main/README.md" + }, + "authorDisplay": "FunkyShoeMan", + "tags": [ + "content" + ], + "slug": "thewildsextended", + "viewCount": 45, + "installCount": 47 + }, + { + "name": "Escape the Dreamstalker", + "uniqueName": "xen.Dreamstalker", + "description": "A short spooky mod for Outer Wilds.", + "author": "xen-42", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/xen-42/ow-dreamstalker/releases/download/v0.1.3/xen.Dreamstalker.zip", + "downloadCount": 501, + "latestReleaseDate": "2022-11-21T02:28:58Z", + "firstReleaseDate": "2022-10-27T01:52:29Z", + "repo": "https://github.com/xen-42/ow-dreamstalker", + "version": "v0.1.3", + "readme": { + "htmlUrl": "https://github.com/xen-42/ow-dreamstalker/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/xen-42/ow-dreamstalker/main/README.md" + }, + "authorDisplay": "xen & JohnCorby", + "tags": [ + "gameplay", + "content", + "story" + ], + "slug": "escapethedreamstalker", + "viewCount": 194, + "installCount": 68 + }, + { + "name": "Ship Self Destruct Button", + "uniqueName": "TheLoreExplorer.SelfDestructButton", + "description": "", + "author": "TheLoreExplorer", + "downloadUrl": "https://github.com/TheLoreExplorer/SelfDestructButton/releases/download/1.2.0/TheLoreExplorer.SelfDestructButton.zip", + "downloadCount": 91, + "latestReleaseDate": "2022-11-02T00:07:03Z", + "firstReleaseDate": "2022-10-27T22:02:27Z", + "repo": "https://github.com/TheLoreExplorer/SelfDestructButton", + "version": "1.2.0", + "readme": { + "htmlUrl": "https://github.com/TheLoreExplorer/SelfDestructButton/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/TheLoreExplorer/SelfDestructButton/master/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "shipselfdestructbutton", + "viewCount": 12, + "installCount": 18 + }, + { + "name": "Ernesto Takeover", + "uniqueName": "FunkyShoeMan.ErnestoTakeover", + "description": "Ernesto is Everywhere (Do NOT use with any mods that modify base game planets)", + "author": "FunkyShoeMan", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/FunkyShoeMan/Ernesto-Takeover/releases/download/1.0.1/Ernesto-Takeover-main.zip", + "downloadCount": 92, + "latestReleaseDate": "2022-11-03T23:48:31Z", + "firstReleaseDate": "2022-11-03T23:41:23Z", + "repo": "https://github.com/FunkyShoeMan/Ernesto-Takeover", + "version": "1.0.1", + "readme": { + "htmlUrl": "https://github.com/FunkyShoeMan/Ernesto-Takeover/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/FunkyShoeMan/Ernesto-Takeover/main/README.md" + }, + "authorDisplay": "FunkyShoeMan", + "tags": [ + "content" + ], + "slug": "ernestotakeover", + "viewCount": 55, + "installCount": 30 + }, + { + "name": "Dancin' Wilds Ventures", + "uniqueName": "CantAffordaName.DancinWildsVentures", + "description": "Adds a mysterious groovy signal to the Deep Space Radio frequency.", + "author": "CantAffordaName", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/CantAffordaName/CantAffordaName.DancinWildsVentures/releases/download/v0.1.1/CantAffordaName.DancinWildsVentures.zip", + "downloadCount": 163, + "latestReleaseDate": "2022-11-17T03:35:25Z", + "firstReleaseDate": "2022-11-05T04:04:47Z", + "repo": "https://github.com/CantAffordaName/CantAffordaName.DancinWildsVentures", + "version": "v0.1.1", + "readme": { + "htmlUrl": "https://github.com/CantAffordaName/CantAffordaName.DancinWildsVentures/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/CantAffordaName/CantAffordaName.DancinWildsVentures/main/README.md" + }, + "authorDisplay": "Can't Afford a Name", + "tags": [ + "content", + "audiovisual" + ], + "slug": "dancinwildsventures", + "viewCount": 31, + "installCount": 48 + }, + { + "name": "Stranger Spin Gravity", + "uniqueName": "Komodo.StrangerSpinGravity", + "description": "Replaces the Stranger's gravity fields with spin gravity.", + "author": "Komodo5197", + "downloadUrl": "https://github.com/Komodo5197/StrangerSpinGravity/releases/download/v1.1.0/Komodo.StrangerSpinGravity.zip", + "downloadCount": 79, + "latestReleaseDate": "2022-11-09T06:55:02Z", + "firstReleaseDate": "2022-11-08T08:00:21Z", + "repo": "https://github.com/Komodo5197/StrangerSpinGravity", + "version": "v1.1.0", + "readme": { + "htmlUrl": "https://github.com/Komodo5197/StrangerSpinGravity/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Komodo5197/StrangerSpinGravity/main/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "strangerspingravity", + "viewCount": 37, + "installCount": 27 + }, + { + "name": "Discord Proximity Chat", + "uniqueName": "BUNN1E5.DiscordProximityChat", + "description": "", + "author": "BUNN1E5", + "parent": "Raicuparta.QuantumSpaceBuddies", + "downloadUrl": "https://github.com/BUNN1E5/DiscordProximityChat/releases/download/0.0.1/BUNN1E5.DiscordProximityChat.zip", + "downloadCount": 484, + "latestReleaseDate": "2022-11-11T07:12:33Z", + "firstReleaseDate": "2022-11-11T07:12:33Z", + "repo": "https://github.com/BUNN1E5/DiscordProximityChat", + "version": "0.0.1", + "readme": { + "htmlUrl": "https://github.com/BUNN1E5/DiscordProximityChat/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/BUNN1E5/DiscordProximityChat/master/README.md" + }, + "authorDisplay": "BUNN1E5", + "prerelease": { + "version": "Test", + "downloadUrl": "https://github.com/BUNN1E5/DiscordProximityChat/releases/download/Test/BUNN1E5.DiscordProximityChat.zip", + "date": "2022-11-20T08:46:21Z" + }, + "tags": [ + "integration" + ], + "slug": "discordproximitychat", + "viewCount": 148, + "installCount": 296 + }, + { + "name": "Slate's Shipyard for Outer Wilds Online", + "uniqueName": "Locochoco.ShipyardOWOAddon", + "description": "This is a Shipyard and OWO addon which makes both compatible", + "author": "ShoosGun", + "utility": true, + "parent": "Vesper.OuterWildsMMO", + "downloadUrl": "https://github.com/ShoosGun/ShipyardOWOCompat/releases/download/v0.1.2/Locochoco.ShipyardOWOAddon.zip", + "downloadCount": 146, + "latestReleaseDate": "2022-11-23T01:39:48Z", + "firstReleaseDate": "2022-11-13T00:05:19Z", + "repo": "https://github.com/ShoosGun/ShipyardOWOCompat", + "version": "v0.1.2", + "authorDisplay": "Locochoco", + "tags": [ + "library" + ], + "slug": "slatesshipyardforouterwildsonline", + "viewCount": 24, + "installCount": 75 + }, + { + "name": "i let the voices on the discord server make bad ideas for planets", + "uniqueName": "O32.Discord", + "description": "A solar system made with love, from the heads of the folks over on the Modding Discord server.", + "author": "RealOrbital32", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/RealOrbital32/discord/releases/download/1.0.0/O32.Discord.zip", + "downloadCount": 106, + "latestReleaseDate": "2022-11-14T00:48:55Z", + "firstReleaseDate": "2022-11-14T00:48:55Z", + "repo": "https://github.com/RealOrbital32/discord", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/RealOrbital32/discord/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/RealOrbital32/discord/main/README.md" + }, + "authorDisplay": "Orbital 32 (a.k.a. cigtu) and members from the discord modding server", + "tags": [ + "content" + ], + "slug": "iletthevoicesonthediscordservermakebadideasforplanets", + "viewCount": 35, + "installCount": 46 + }, + { + "name": "Super Wild Galaxy", + "uniqueName": "CantAffordaName.SuperWildGalaxy", + "description": "Adds the Comet Observatory from Super Mario Galaxy.", + "author": "CantAffordaName", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/CantAffordaName/CantAffordaName.SuperWildGalaxy/releases/download/v0.1.0/CantAffordaName.SuperWildGalaxy.zip", + "downloadCount": 116, + "latestReleaseDate": "2022-11-17T03:22:27Z", + "firstReleaseDate": "2022-11-17T03:22:27Z", + "repo": "https://github.com/CantAffordaName/CantAffordaName.SuperWildGalaxy", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/CantAffordaName/CantAffordaName.SuperWildGalaxy/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/CantAffordaName/CantAffordaName.SuperWildGalaxy/main/README.md" + }, + "authorDisplay": "Can't Afford a Name", + "tags": [ + "gameplay", + "content" + ], + "slug": "superwildgalaxy", + "viewCount": 83, + "installCount": 53 + }, + { + "name": "Trajectory Prediction", + "uniqueName": "OlegSkutte.TrajectoryPrediction", + "description": "Outer Wilds mod that predicts and visualizes your future trajectory", + "author": "SkutteOleg", + "downloadUrl": "https://github.com/SkutteOleg/TrajectoryPrediction/releases/download/v0.6.4/OlegSkutte.TrajectoryPrediction.zip", + "downloadCount": 184, + "latestReleaseDate": "2022-11-21T05:11:45Z", + "firstReleaseDate": "2022-11-16T12:54:19Z", + "repo": "https://github.com/SkutteOleg/TrajectoryPrediction", + "version": "v0.6.4", + "readme": { + "htmlUrl": "https://github.com/SkutteOleg/TrajectoryPrediction/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/SkutteOleg/TrajectoryPrediction/master/README.md" + }, + "authorDisplay": "Oleg Skutte", + "tags": [ + "gameplay", + "tweaks" + ], + "slug": "trajectoryprediction", + "viewCount": 198, + "installCount": 75 + }, + { + "name": "N Body Chaos", + "uniqueName": "TacoTechnica.NBodyChaos", + "description": "Outer Wilds with chaotic N Body Physics and extra planet interactions. Mix with randomizer for extra chaos.", + "author": "adrisj7", + "downloadUrl": "https://github.com/adrisj7/OW_NBodyChaos/releases/download/v1.0.1/TacoTechnica.NBodyChaos.zip", + "downloadCount": 124, + "latestReleaseDate": "2022-11-18T02:46:05Z", + "firstReleaseDate": "2022-11-18T00:40:15Z", + "repo": "https://github.com/adrisj7/OW_NBodyChaos", + "version": "v1.0.1", + "readme": { + "htmlUrl": "https://github.com/adrisj7/OW_NBodyChaos/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/adrisj7/OW_NBodyChaos/main/README.md" + }, + "authorDisplay": "TacoTechnica", + "tags": [ + "gameplay", + "tweaks" + ], + "slug": "nbodychaos", + "viewCount": 64, + "installCount": 50 + }, + { + "name": "Shared Ship Log", + "uniqueName": "Tephirax.OuterWildsSharedShipLog", + "description": "Mod to automatically export your Outer Wilds ship log for online viewing", + "author": "Tephirax", + "downloadUrl": "https://github.com/Tephirax/SharedShipLog/releases/download/v0.1.1/OuterWildsSharedShipLog.zip", + "downloadCount": 26, + "latestReleaseDate": "2022-11-18T16:15:16Z", + "firstReleaseDate": "2022-11-18T16:15:16Z", + "repo": "https://github.com/Tephirax/SharedShipLog", + "version": "v0.1.1", + "readme": { + "htmlUrl": "https://github.com/Tephirax/SharedShipLog/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Tephirax/SharedShipLog/main/README.md" + }, + "tags": [ + "integration", + "tool" + ], + "slug": "sharedshiplog", + "viewCount": 98, + "installCount": 18 + }, + { + "name": "Kerbal Space Ventures", + "uniqueName": "Locochoco.KSPShips", + "description": "Addon for shipyard which reads .craft KSP files into the game Outer Wilds", + "author": "ShoosGun", + "parent": "Locochoco.SlateShipyard", + "downloadUrl": "https://github.com/ShoosGun/Kerbal-Space-Ventures/releases/download/v0.1.0/Locochoco.KSPShips.zip", + "downloadCount": 88, + "latestReleaseDate": "2022-11-23T01:42:18Z", + "firstReleaseDate": "2022-11-23T01:42:18Z", + "repo": "https://github.com/ShoosGun/Kerbal-Space-Ventures", + "version": "v0.1.0", + "authorDisplay": "Locochoco & FunkyShoeMan", + "tags": [ + "gameplay", + "tool" + ], + "slug": "kerbalspaceventures", + "viewCount": 37, + "installCount": 66 + }, + { + "name": "Solar Systems I Made as a Kid", + "uniqueName": "O32.ssimaak", + "description": "This is just a bundle of, well, look at the title.", + "author": "RealOrbital32", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/RealOrbital32/Solar-Systems-I-Made-as-a-Kid/releases/download/1.0.0/O32.ssimaak.zip", + "downloadCount": 43, + "latestReleaseDate": "2022-11-23T18:34:49Z", + "firstReleaseDate": "2022-11-23T18:34:49Z", + "repo": "https://github.com/RealOrbital32/Solar-Systems-I-Made-as-a-Kid", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/RealOrbital32/Solar-Systems-I-Made-as-a-Kid/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/RealOrbital32/Solar-Systems-I-Made-as-a-Kid/main/README.md" + }, + "authorDisplay": "Orbital 32 (a.k.a. cigtu)", + "tags": [ + "content" + ], + "slug": "solarsystemsimadeasakid", + "viewCount": 41, + "installCount": 31 + }, + { + "name": "Owlystem", + "uniqueName": "O32.Owlystem", + "description": "\"a dream of home\" but I remade it really, really badly", + "author": "RealOrbital32", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/RealOrbital32/Owlystem/releases/download/1.0.0/O32.Owlystem.zip", + "downloadCount": 63, + "latestReleaseDate": "2022-11-26T03:29:38Z", + "firstReleaseDate": "2022-11-26T03:29:38Z", + "repo": "https://github.com/RealOrbital32/Owlystem", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/RealOrbital32/Owlystem/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/RealOrbital32/Owlystem/main/README.md" + }, + "authorDisplay": "Orbital 32 (a.k.a. cigtu), classic by Classic", + "tags": [ + "content" + ], + "slug": "owlystem", + "viewCount": 127, + "installCount": 62 + }, + { + "name": "Nomai Text Printer", + "uniqueName": "Cleric.NomaiTextPrinter", + "description": "Utility mod that prints info about Nomai wall text.", + "author": "coderCleric", + "utility": true, + "downloadUrl": "https://github.com/coderCleric/NomaiTextPrinter/releases/download/v1.0.0/coderCleric.NomaiTextPrinter.zip", + "downloadCount": 14, + "latestReleaseDate": "2022-12-05T04:07:04Z", + "firstReleaseDate": "2022-12-05T04:07:04Z", + "repo": "https://github.com/coderCleric/NomaiTextPrinter", + "version": "v1.0.0", + "readme": { + "htmlUrl": "https://github.com/coderCleric/NomaiTextPrinter/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/coderCleric/NomaiTextPrinter/master/README.md" + }, + "authorDisplay": "coderCleric", + "tags": [ + "tool" + ], + "slug": "nomaitextprinter", + "viewCount": 20, + "installCount": 9 + }, + { + "name": "The Final Shortcut", + "uniqueName": "Acamaeda.Shortcut", + "description": "Adds a shortcut to an important location which many mods use, hidden somewhere in the village.", + "author": "Acamaeda", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Acamaeda/OuterWildsShortcut/releases/download/v0.1.0/OuterWildsShortcut.zip", + "downloadCount": 70, + "latestReleaseDate": "2022-12-06T21:46:35Z", + "firstReleaseDate": "2022-12-06T21:46:35Z", + "repo": "https://github.com/Acamaeda/OuterWildsShortcut", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/Acamaeda/OuterWildsShortcut/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Acamaeda/OuterWildsShortcut/main/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "thefinalshortcut", + "viewCount": 140, + "installCount": 65 + }, + { + "name": "How Did This Happen?", + "uniqueName": "Acamaeda.Happen", + "description": "There appears to be a new problem in the solar system. What is even going on? Either a very small story mod, or a small, weird mod with a bit of story added.", + "author": "Acamaeda", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Acamaeda/OuterWildsExperiment/releases/download/v0.3.3/OuterWildsExperiment.zip", + "downloadCount": 90, + "latestReleaseDate": "2022-12-12T21:33:45Z", + "firstReleaseDate": "2022-11-22T18:36:33Z", + "repo": "https://github.com/Acamaeda/OuterWildsExperiment", + "version": "v0.3.3", + "readme": { + "htmlUrl": "https://github.com/Acamaeda/OuterWildsExperiment/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Acamaeda/OuterWildsExperiment/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "howdidthishappen", + "viewCount": 188, + "installCount": 72 + }, + { + "name": "I Don't Like Sand", + "uniqueName": "Acamaeda.Sand", + "description": "Removes the sand from Ash Twin and Ember Twin.", + "author": "Acamaeda", + "parent": "xen.NewHorizons", + "downloadUrl": "https://github.com/Acamaeda/OuterWildsSand/releases/download/v0.1.0/OuterWildsSand.zip", + "downloadCount": 28, + "latestReleaseDate": "2022-12-14T19:50:30Z", + "firstReleaseDate": "2022-12-14T19:50:30Z", + "repo": "https://github.com/Acamaeda/OuterWildsSand", + "version": "v0.1.0", + "readme": { + "htmlUrl": "https://github.com/Acamaeda/OuterWildsSand/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Acamaeda/OuterWildsSand/main/README.md" + }, + "tags": [ + "content" + ], + "slug": "idontlikesand", + "viewCount": 77, + "installCount": 23 + }, + { + "name": "Outer Wilds en Andalûh", + "uniqueName": "VholyIQ.OuterWildsAndaluh", + "description": "Tradûççión de Outer Wilds en andalûh", + "author": "andergd", + "downloadUrl": "https://github.com/andergd/OuterWildsAndaluh/releases/download/v0.1.2/VholyIQ.OuterWildsAndaluh.zip", + "downloadCount": 15, + "latestReleaseDate": "2022-12-22T14:01:06Z", + "firstReleaseDate": "2022-12-15T18:55:47Z", + "repo": "https://github.com/andergd/OuterWildsAndaluh", + "version": "v0.1.2", + "readme": { + "htmlUrl": "https://github.com/andergd/OuterWildsAndaluh/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/andergd/OuterWildsAndaluh/master/README.md" + }, + "authorDisplay": "Vholy IQ", + "tags": [ + "localization" + ], + "slug": "outerwildsenandalh", + "viewCount": 23, + "installCount": 11 + }, + { + "name": "Outer Pictures", + "uniqueName": "Pau318.OuterPictures", + "description": "An Outer Wilds mod to print your pictures from the probe camera to your computer", + "author": "Pau318", + "downloadUrl": "https://github.com/Pau318/OuterPictures/releases/download/v0.1.1/Pau318.OuterPictures.zip", + "downloadCount": 16, + "latestReleaseDate": "2022-12-23T12:56:42Z", + "firstReleaseDate": "2022-12-19T21:01:39Z", + "repo": "https://github.com/Pau318/OuterPictures", + "version": "v0.1.1", + "readme": { + "htmlUrl": "https://github.com/Pau318/OuterPictures/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Pau318/OuterPictures/main/README.md" + }, + "authorDisplay": "Pau318", + "tags": [ + "gameplay" + ], + "slug": "outerpictures", + "viewCount": 51, + "installCount": 10 + }, + { + "name": "SpeedTools", + "uniqueName": "GrimLala.SpeedTools", + "description": "a mod to assist with learning Outer Wilds speedruns", + "author": "GrimLala", + "downloadUrl": "https://github.com/GrimLala/SpeedTools/releases/download/v1.0.0/GrimLala.SpeedTools.zip", + "downloadCount": 13, + "latestReleaseDate": "2022-12-20T20:51:54Z", + "firstReleaseDate": "2022-12-20T20:51:54Z", + "repo": "https://github.com/GrimLala/SpeedTools", + "version": "v1.0.0", + "readme": { + "htmlUrl": "https://github.com/GrimLala/SpeedTools/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/GrimLala/SpeedTools/master/README.md" + }, + "authorDisplay": "grimsalad & LordLala", + "tags": [ + "gameplay", + "tool" + ], + "slug": "speedtools", + "viewCount": 61, + "installCount": 8 + }, + { + "name": "Break On Demand", + "uniqueName": "Raoul1808.BreakOnDemand", + "description": "Meet your terrible fate with the simple press of 2 buttons", + "author": "Raoul1808", + "downloadUrl": "https://github.com/Raoul1808/BreakOnDemand/releases/download/v1.0.0/Raoul1808.BreakOnDemand.zip", + "downloadCount": 5, + "latestReleaseDate": "2022-12-23T14:05:19Z", + "firstReleaseDate": "2022-12-23T14:05:19Z", + "repo": "https://github.com/Raoul1808/BreakOnDemand", + "version": "v1.0.0", + "readme": { + "htmlUrl": "https://github.com/Raoul1808/BreakOnDemand/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/Raoul1808/BreakOnDemand/master/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "breakondemand", + "viewCount": 11, + "installCount": 5 + }, + { + "name": "Funny Christmas", + "uniqueName": "O32.FunnyChristmas", + "description": "What exactly is Christmas, and where did Snata Claus go? (note: takes place in the TT Twins system)", + "author": "RealOrbital32", + "parent": "O32.FunnySystem", + "downloadUrl": "https://github.com/RealOrbital32/funny-christmas/releases/download/1.0.0/O32.FunnyChristmas.zip", + "downloadCount": 3, + "latestReleaseDate": "2022-12-25T23:10:05Z", + "firstReleaseDate": "2022-12-25T23:10:05Z", + "repo": "https://github.com/RealOrbital32/funny-christmas", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/RealOrbital32/funny-christmas/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/RealOrbital32/funny-christmas/main/README.md" + }, + "authorDisplay": "Orbital 32 (a.k.a. cigtu)", + "tags": [ + "story" + ], + "slug": "funnychristmas", + "viewCount": 0, + "installCount": 0 + } + ], + "alphaReleases": [ + { + "name": "BepInEx", + "uniqueName": "bbepis.BepInEx", + "description": "Unity game patcher and plugin framework modified for Outer Wilds Alpha", + "author": "MegaPiggy", + "alpha": true, + "required": true, + "utility": true, + "downloadUrl": "https://github.com/MegaPiggy/BepInEx/releases/download/v5.4.21/BepInEx_x86_5.4.21.0.zip", + "downloadCount": 204, + "latestReleaseDate": "2022-06-19T06:57:11Z", + "firstReleaseDate": "2022-05-22T03:11:13Z", + "repo": "https://github.com/MegaPiggy/BepInEx", + "version": "v5.4.21", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/BepInEx/blob/v5-lts/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/BepInEx/v5-lts/README.md" + }, + "tags": [ + "library" + ], + "slug": "bepinex", + "viewCount": 16, + "installCount": 0 + }, + { + "name": "OWAML", + "uniqueName": "Locochoco.OWAML", + "description": "BepinEx helper for OWMM", + "author": "ow-mods", + "alpha": true, + "required": true, + "utility": true, + "downloadUrl": "https://github.com/ow-mods/owaml/releases/download/v1.0.2/OWAML-v1.0.2.zip", + "downloadCount": 126, + "latestReleaseDate": "2022-05-29T00:33:22Z", + "firstReleaseDate": "2022-05-12T12:20:30Z", + "repo": "https://github.com/ShoosGun/OWAML", + "version": "v1.0.2", + "tags": [ + "library" + ], + "slug": "owaml", + "viewCount": 1, + "installCount": 0 + }, + { + "name": "CAMOWA", + "uniqueName": "Locochoco.CAMOWA", + "description": "BepInEx plugin that helps creating mods for the game Outer Wilds Alpha (1.2)", + "author": "ShoosGun", + "alpha": true, + "utility": true, + "downloadUrl": "https://github.com/ShoosGun/CAMOWA/releases/download/v1.0.1/Locochoco.CAMOWA.zip", + "downloadCount": 93, + "latestReleaseDate": "2022-05-21T23:47:53Z", + "firstReleaseDate": "2021-09-26T19:07:30Z", + "repo": "https://github.com/ShoosGun/CAMOWA", + "version": "v1.0.1", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/CAMOWA/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/CAMOWA/main/README.md" + }, + "tags": [ + "library" + ], + "slug": "camowa", + "viewCount": 1, + "installCount": 0 + }, + { + "name": "Alpha Fixes", + "uniqueName": "Locochoco.AlphaFixes", + "description": "Fixes for the alpha of Outer Wilds", + "author": "ShoosGun", + "alpha": true, + "downloadUrl": "https://github.com/ShoosGun/AlphaFixes/releases/download/v.1.1.1/Locochoco.AlphaFixes.zip", + "downloadCount": 78, + "latestReleaseDate": "2022-05-31T00:53:59Z", + "firstReleaseDate": "2022-05-13T01:08:15Z", + "repo": "https://github.com/ShoosGun/AlphaFixes", + "version": "v.1.1.1", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/AlphaFixes/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/AlphaFixes/main/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "alphafixes", + "viewCount": 8, + "installCount": 1 + }, + { + "name": "Navinha", + "uniqueName": "Locochoco.NAVE", + "description": "Adds a small ship into the game Outer Wilds Alpha", + "author": "ShoosGun", + "alpha": true, + "downloadUrl": "https://github.com/ShoosGun/Navinha/releases/download/v0.2.4/Locochoco.NAVE.zip", + "downloadCount": 58, + "latestReleaseDate": "2022-06-01T00:18:46Z", + "firstReleaseDate": "2021-08-11T17:03:00Z", + "repo": "https://github.com/ShoosGun/navinha", + "version": "v0.2.4", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/Navinha/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/Navinha/main/README.md" + }, + "tags": [ + "gameplay" + ], + "slug": "navinha", + "viewCount": 6, + "installCount": 1 + }, + { + "name": "Free Cam Mod", + "uniqueName": "Locochoco.FreeCamMod", + "description": "A mod for Outer Wilds Alpha that adds a free cam to it", + "author": "ShoosGun", + "alpha": true, + "downloadUrl": "https://github.com/ShoosGun/FreeCamMod/releases/download/v1.1.3/Locochoco.FreeCamMod.zip", + "downloadCount": 71, + "latestReleaseDate": "2022-06-01T00:35:05Z", + "firstReleaseDate": "2021-04-15T16:49:59Z", + "repo": "https://github.com/ShoosGun/FreeCamMod", + "version": "v1.1.3", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/FreeCamMod/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/FreeCamMod/main/README.md" + }, + "tags": [ + "tool" + ], + "slug": "freecammod", + "viewCount": 9, + "installCount": 3 + }, + { + "name": "Probe Grapple", + "uniqueName": "Locochoco.ProbeGrapple", + "description": "Mod for the Alpha Outer Wilds version 1.2 that adds a grapple rope to the game", + "author": "ShoosGun", + "alpha": true, + "downloadUrl": "https://github.com/ShoosGun/ProbeGrappleMod/releases/download/v1.1.2/Locochoco.ProbeGrapple.zip", + "downloadCount": 70, + "latestReleaseDate": "2022-05-21T22:15:51Z", + "firstReleaseDate": "2020-12-09T21:36:56Z", + "repo": "https://github.com/ShoosGun/ProbeGrappleMod", + "version": "v1.1.2", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/ProbeGrappleMod/blob/master/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/ProbeGrappleMod/master/README.md" + }, + "prerelease": { + "version": "v.1.1-minecraft", + "downloadUrl": "https://github.com/ShoosGun/ProbeGrappleMod/releases/download/v.1.1-minecraft/CAMOWA.dll", + "date": "2020-11-18T11:15:41Z" + }, + "tags": [ + "gameplay" + ], + "slug": "probegrapple", + "viewCount": 1, + "installCount": 1 + }, + { + "name": "Cooler Bottom Cams", + "uniqueName": "Locochoco.CoolerBottomCams", + "description": "A mod that adds a screen for the landing camera for Outer Wilds Alpha", + "author": "ShoosGun", + "alpha": true, + "downloadUrl": "https://github.com/ShoosGun/CBC/releases/download/v.1.0.0/CBC-v1.0.0.zip", + "downloadCount": 29, + "latestReleaseDate": "2022-05-21T21:14:05Z", + "firstReleaseDate": "2022-05-21T21:14:05Z", + "repo": "https://github.com/ShoosGun/CBC", + "version": "v.1.0.0", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/CBC/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/CBC/main/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "coolerbottomcams", + "viewCount": 0, + "installCount": 0 + }, + { + "name": "Enhanced Mallows", + "uniqueName": "Locochoco.EnhancedMallows", + "description": "A mod that makes the marshmallow shrink when on fire", + "author": "ShoosGun", + "alpha": true, + "downloadUrl": "https://github.com/ShoosGun/EM/releases/download/v1.0.0/Locochoco.EM.v1.0.0.zip", + "downloadCount": 21, + "latestReleaseDate": "2022-05-22T18:12:48Z", + "firstReleaseDate": "2022-05-22T18:12:48Z", + "repo": "https://github.com/ShoosGun/EM", + "version": "v1.0.0", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/EM/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/EM/main/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "enhancedmallows", + "viewCount": 1, + "installCount": 2 + }, + { + "name": "Automatic Launch Codes", + "uniqueName": "MegaPiggy.AutomaticLaunchCodes", + "description": "Makes it don't have to go to the observatory to get the launch codes, and activates the launch terminal for you.", + "author": "MegaPiggy", + "alpha": true, + "downloadUrl": "https://github.com/MegaPiggy/AutomaticLaunchCodes/releases/download/1.0.0/MegaPiggy.AutomaticLaunchCodes.zip", + "downloadCount": 28, + "latestReleaseDate": "2022-05-22T04:35:54Z", + "firstReleaseDate": "2022-05-22T04:35:54Z", + "repo": "https://github.com/MegaPiggy/AutomaticLaunchCodes", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/AutomaticLaunchCodes/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/AutomaticLaunchCodes/main/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "automaticlaunchcodes", + "viewCount": 6, + "installCount": 1 + }, + { + "name": "No Probe Launch Window", + "uniqueName": "MegaPiggy.NoProbeLaunchWindow", + "description": "Allows the probe to launch even when you are near something.", + "author": "MegaPiggy", + "alpha": true, + "downloadUrl": "https://github.com/MegaPiggy/NoProbeLaunchWindow/releases/download/1.0.0/MegaPiggy.NoProbeLaunchWindow.zip", + "downloadCount": 21, + "latestReleaseDate": "2022-05-22T18:22:30Z", + "firstReleaseDate": "2022-05-22T18:22:30Z", + "repo": "https://github.com/MegaPiggy/NoProbeLaunchWindow", + "version": "1.0.0", + "readme": { + "htmlUrl": "https://github.com/MegaPiggy/NoProbeLaunchWindow/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/MegaPiggy/NoProbeLaunchWindow/main/README.md" + }, + "tags": [ + "tweaks" + ], + "slug": "noprobelaunchwindow", + "viewCount": 1, + "installCount": 0 + }, + { + "name": "Runtime Unity Editor", + "uniqueName": "Locochoco.RuntimeUnityEditor", + "description": "A fork from RuntimeUnityEditor which makes it compatible with Unity 4.1", + "author": "ShoosGun", + "alpha": true, + "downloadUrl": "https://github.com/ShoosGun/RuntimeUnityEditor/releases/download/v2.6.1/Locochoco.RuntimeUnityEditor.v2.6.1.zip", + "downloadCount": 28, + "latestReleaseDate": "2022-05-22T18:45:38Z", + "firstReleaseDate": "2022-05-22T18:45:38Z", + "repo": "https://github.com/ShoosGun/RuntimeUnityEditor", + "version": "v2.6.1", + "readme": { + "htmlUrl": "https://github.com/ShoosGun/RuntimeUnityEditor/blob/main/README.md", + "downloadUrl": "https://raw.githubusercontent.com/ShoosGun/RuntimeUnityEditor/main/README.md" + }, + "tags": [ + "tool" + ], + "slug": "runtimeunityeditor", + "viewCount": 5, + "installCount": 0 + } + ] +}