├── LICENSE.md ├── README.md ├── game-7daystodie ├── Settings.js ├── Settings.tsx ├── actions.js ├── actions.ts ├── common.js ├── common.ts ├── gameart.jpg ├── index.js ├── index.tsx ├── info.json ├── loadOrder.js ├── loadOrder.ts ├── migrations.js ├── migrations.ts ├── reducers.js ├── reducers.ts ├── types.js ├── types.ts ├── util.js └── util.ts ├── game-ahatintime ├── HatinTimeEditor.png ├── gameart.jpg ├── index.js └── info.json ├── game-baldursgate3 ├── CHANGELOG.md ├── InfoPanel.js ├── InfoPanel.tsx ├── README.md ├── Settings.js ├── Settings.tsx ├── actions.js ├── actions.ts ├── cache.js ├── cache.ts ├── common.js ├── common.ts ├── divineWrapper.js ├── divineWrapper.ts ├── gameart.jpg ├── githubDownloader.js ├── githubDownloader.ts ├── index.js ├── index.tsx ├── info.json ├── installers.js ├── installers.ts ├── loadOrder.js ├── loadOrder.ts ├── migrations.js ├── migrations.tsx ├── modTypes.js ├── modTypes.ts ├── reducers.js ├── reducers.ts ├── tools │ ├── AlphaFS.dll │ ├── CommandLineArgumentsParser.dll │ ├── LSLib.dll │ ├── LSLibNative.dll │ ├── LZ4.dll │ ├── Newtonsoft.Json.dll │ ├── OpenTK.dll │ ├── divine.exe │ ├── divine.exe.config │ └── zlib.net.dll ├── types.js ├── types.tsx ├── util.js └── util.ts ├── game-battletech ├── gameart.jpg ├── index.js └── info.json ├── game-bladeandsorcery ├── common.js ├── gameart.jpg ├── index.js ├── info.json ├── installers.js ├── migrations.js ├── oculus.png ├── steam.png └── util.js ├── game-bloodstainedritualofthenight ├── common.js ├── common.ts ├── gameart.jpg ├── index.js ├── index.ts ├── info.json ├── loadOrder.js ├── loadOrder.ts ├── migrations.js ├── migrations.ts ├── types.js ├── types.ts ├── util.js └── util.ts ├── game-breakingwheel ├── gameart.jpg ├── index.js ├── info.json └── logo.png ├── game-codevein ├── _index.js ├── common.js ├── common.ts ├── gameart.jpg ├── index.js ├── index.ts ├── info.json ├── loadOrder.js ├── loadOrder.ts ├── migrations.js ├── migrations.ts ├── types.js ├── types.ts ├── util.js └── util.ts ├── game-conanexiles ├── gameart.jpg ├── index.js └── info.json ├── game-cyberpunk2077 ├── gameart.jpg ├── index.js └── info.json ├── game-daggerfallunity ├── gameart.jpg ├── index.js └── info.json ├── game-darkestdungeon ├── gameart.jpg ├── index.js └── info.json ├── game-darksouls ├── gameart.jpg ├── index.js └── info.json ├── game-darksouls2 ├── gameart.jpg ├── index.js └── info.json ├── game-dawnofman ├── gameart.jpg ├── index.js ├── info.json └── umm.png ├── game-divinityoriginalsin2 ├── gameart.jpg ├── gameartDE.png ├── index.js └── info.json ├── game-dmc5 ├── gameart.jpg ├── index.js └── info.json ├── game-dragonage ├── gameart.jpg ├── index.js └── info.json ├── game-dragonage2 ├── gameart.jpg ├── index.js └── info.json ├── game-dragons-dogma ├── gameart.jpg ├── index.js └── info.json ├── game-elex ├── gameart.jpg ├── index.js └── info.json ├── game-enderal ├── fnis.png ├── gameart.jpg ├── index.js ├── info.json ├── tes5edit.png └── wrye.png ├── game-factorio ├── gameart.jpg ├── index.js └── info.json ├── game-fallout3 ├── fo3edit.png ├── gameart.jpg ├── index.js ├── info.json └── wrye.png ├── game-fallout4 ├── fo3edit.png ├── gameart.jpg ├── index.js ├── info.json └── wrye.png ├── game-fallout4vr ├── fo3edit.png ├── gameart.jpg ├── index.js └── info.json ├── game-falloutnv ├── fo3edit.png ├── gameart.jpg ├── index.js ├── index.ts ├── info.json ├── nvse.png └── wrye.png ├── game-galciv3 ├── gameart.jpg ├── index.js └── info.json ├── game-gardenpaws ├── gameart.jpg ├── index.js ├── info.json └── umm.png ├── game-greedfall ├── gameart.jpg ├── index.js └── info.json ├── game-grimdawn ├── gameart.jpg ├── index.js └── info.json ├── game-grimrock ├── gameart.jpg ├── index.js └── info.json ├── game-kenshi ├── Nvidia logo.png ├── OCS logo.png ├── gameart.jpg ├── index.js └── info.json ├── game-kerbalspaceprogram ├── gameart.jpg ├── index.js └── info.json ├── game-kingdomcome-deliverance ├── collections │ ├── CollectionsDataView.js │ ├── CollectionsDataView.tsx │ ├── collections.js │ ├── collections.ts │ ├── loadOrder.js │ ├── loadOrder.ts │ ├── types.js │ ├── types.ts │ ├── util.js │ └── util.ts ├── gameart.jpg ├── index.js ├── index.ts ├── info.json ├── statics.js ├── statics.ts ├── util.js └── util.ts ├── game-masterchiefcollection ├── assemblytool.png ├── common.js ├── common.ts ├── gameart.jpg ├── halo1.png ├── halo2.png ├── halo3.png ├── halo4.png ├── haloreach.png ├── index.js ├── index.ts ├── info.json ├── installers.js ├── installers.ts ├── masterchief.scss ├── modTypes.js ├── modTypes.ts ├── odst.png ├── tests.js ├── tests.ts ├── types.js ├── types.ts ├── util.js └── util.ts ├── game-microsoftflightsimulator ├── gameart.jpg ├── index.js └── info.json ├── game-monster-hunter-world ├── HunterPie.png ├── MHWTransmog.png ├── SmartHunter.png ├── gameart.jpg ├── index.js └── info.json ├── game-morrowind ├── collections.js ├── constants.js ├── constructionset.png ├── gameart.jpg ├── index.js ├── index.ts ├── info.json ├── loadorder.js ├── migrations.js ├── types │ ├── types.js │ └── types.ts └── views │ ├── MorrowindCollectionsDataView.js │ └── MorrowindCollectionsDataView.tsx ├── game-mount-and-blade ├── gameart.jpg ├── gameartfire.png ├── gameartviking.png ├── gameartwarband.png ├── index.js └── info.json ├── game-mount-and-blade2 ├── gameart.jpg ├── index.js └── info.json ├── game-nehrim ├── gameart.jpg ├── index.js ├── info.json └── nehrim.png ├── game-neverwinter-nights ├── gameart.jpg ├── gameartee.png ├── index.js └── info.json ├── game-neverwinter-nights2 ├── gameart.jpg ├── index.js └── info.json ├── game-nomanssky ├── gameart.jpg ├── index.js ├── index.ts └── info.json ├── game-oblivion ├── gameart.jpg ├── index.js ├── info.json ├── tes5edit.png └── wrye.png ├── game-oni ├── gameart.jpg ├── index.js ├── info.json └── umm.png ├── game-palworld ├── gameart.jpg ├── index.js └── info.json ├── game-pathfinderkingmaker ├── gameart.jpg ├── index.js ├── info.json └── umm.png ├── game-pathfinderwrathoftherighteous ├── gameart.jpg ├── index.js ├── index.ts ├── info.json └── umm.png ├── game-prisonarchitect ├── gameart.jpg ├── index.js └── info.json ├── game-re2remake ├── gameart.jpg ├── index.js └── info.json ├── game-re3remake ├── gameart.jpg ├── index.js └── info.json ├── game-rimworld ├── gameart.jpg ├── index.js └── info.json ├── game-sekiro ├── gameart.jpg ├── index.js └── info.json ├── game-shadowrunreturns ├── gameart.jpg ├── index.js └── info.json ├── game-sims3 ├── gameart.jpg ├── index.js └── info.json ├── game-sims4 ├── gameart.jpg ├── icon.png ├── index.js └── info.json ├── game-skyrim ├── fnis.png ├── gameart.jpg ├── index.js ├── info.json ├── tes5edit.png └── wrye.png ├── game-skyrimse ├── CK.png ├── SKSE.png ├── fnis.png ├── gameart.jpg ├── index.js ├── info.json ├── tes5edit.png └── wrye.png ├── game-skyrimvr ├── fnis.png ├── gameart.jpg ├── index.js ├── info.json └── tes5edit.png ├── game-spyroreignitedtrilogy ├── LICENSE ├── common.js ├── common.ts ├── gameart.jpg ├── index.js ├── index.ts ├── info.json ├── loadOrder.js ├── loadOrder.ts ├── migrations.js ├── migrations.ts ├── types.js ├── types.ts ├── util.js └── util.ts ├── game-starbound ├── gameart.jpg ├── index.js └── info.json ├── game-stardewvalley ├── CHANGELOG.md ├── CompatibilityIcon.js ├── CompatibilityIcon.tsx ├── DependencyManager.js ├── DependencyManager.ts ├── SMAPI.js ├── SMAPI.ts ├── Settings.js ├── Settings.tsx ├── actions.js ├── actions.ts ├── common.js ├── common.ts ├── configMod.js ├── configMod.ts ├── constants.js ├── constants.ts ├── gameart.jpg ├── index.js ├── index.ts ├── info.json ├── reducers.js ├── reducers.ts ├── sdvstyle.scss ├── smapi.png ├── smapiProxy.js ├── smapiProxy.ts ├── tests.js ├── tests.ts ├── types.js ├── types.ts ├── util.js └── util.ts ├── game-starfield ├── gameart.jpg ├── index.js └── info.json ├── game-stateofdecay ├── gameart.jpg ├── index.js └── info.json ├── game-subnautica ├── gameart.jpg ├── index.js └── info.json ├── game-subnauticabelowzero ├── gameart.jpg ├── index.js └── info.json ├── game-survivingmars ├── Mars.png ├── gameart.jpg ├── index.js └── info.json ├── game-sw-kotor ├── gameart.jpg ├── gameartkotor2.jpg ├── index.js └── info.json ├── game-teamfortress2 ├── gameart.jpg ├── hammer.png ├── index.js └── info.json ├── game-teso ├── gameart.jpg ├── index.js └── info.json ├── game-torchlight2 ├── gameart.jpg ├── index.js └── info.json ├── game-totalwarthreekingdoms ├── gameart.jpg ├── index.js └── info.json ├── game-untitledgoose ├── BepInEx.cfg ├── gameart.jpg ├── index.js ├── index.ts ├── info.json ├── migrations.js ├── migrations.ts ├── statics.js ├── statics.ts ├── types.js ├── types.ts ├── util.js ├── util.ts ├── vortexui └── vortexui.manifest ├── game-vtmbloodlines ├── exec.png ├── gameart.jpg ├── index.js └── info.json ├── game-warthunder ├── gameart.jpg ├── index.js └── info.json ├── game-witcher ├── gameart.jpg ├── index.js └── info.json ├── game-witcher2 ├── gameart.jpg ├── index.js └── info.json ├── game-witcher3 ├── CHANGELOG.md ├── MD5Cache.json ├── README.md ├── WitcherScriptMerger.jpg ├── actions.js ├── actions.ts ├── collections │ ├── collections.js │ ├── collections.ts │ ├── loadOrder.js │ ├── loadOrder.ts │ ├── types.js │ ├── types.ts │ ├── util.js │ └── util.ts ├── common.js ├── common.ts ├── deprecated.js ├── deprecated.ts ├── eventHandlers.js ├── eventHandlers.ts ├── gameart.jpg ├── iconbarActions.js ├── iconbarActions.ts ├── index.js ├── index.ts ├── info.json ├── iniParser.js ├── iniParser.ts ├── installers.js ├── installers.ts ├── loadOrder.js ├── loadOrder.tsx ├── menumod.js ├── menumod.ts ├── mergeBackup.js ├── mergeBackup.ts ├── mergeInventoryParsing.js ├── mergeInventoryParsing.ts ├── mergers.js ├── mergers.ts ├── migrations.js ├── migrations.ts ├── modLimitPatch.js ├── modLimitPatch.ts ├── modTypes.js ├── modTypes.ts ├── priorityManager.js ├── priorityManager.ts ├── reducers.js ├── reducers.ts ├── scriptmerger.js ├── scriptmerger.ts ├── tests.js ├── tests.ts ├── types.js ├── types.ts ├── util.js ├── util.ts └── views │ ├── CollectionsDataView.js │ ├── CollectionsDataView.tsx │ ├── InfoComponent.js │ ├── InfoComponent.tsx │ ├── ItemRenderer.js │ └── ItemRenderer.tsx ├── game-wolcen ├── gameart.jpg ├── index.js └── info.json ├── game-worldoftanks ├── gameart.jpg ├── index.js └── info.json ├── game-x4foundations ├── gameart.jpg ├── index.js └── info.json ├── game-xcom2 ├── gameart-wotc.jpg ├── gameart-xcom2.jpg ├── icons │ ├── modbuddy.png │ ├── wotc-icon.png │ └── xcom-icon.png ├── index.js └── info.json ├── game-xrebirth ├── gameart.jpg ├── index.js └── info.json └── tsconfig.json /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/README.md -------------------------------------------------------------------------------- /game-7daystodie/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/Settings.js -------------------------------------------------------------------------------- /game-7daystodie/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/Settings.tsx -------------------------------------------------------------------------------- /game-7daystodie/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/actions.js -------------------------------------------------------------------------------- /game-7daystodie/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/actions.ts -------------------------------------------------------------------------------- /game-7daystodie/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/common.js -------------------------------------------------------------------------------- /game-7daystodie/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/common.ts -------------------------------------------------------------------------------- /game-7daystodie/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/gameart.jpg -------------------------------------------------------------------------------- /game-7daystodie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/index.js -------------------------------------------------------------------------------- /game-7daystodie/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/index.tsx -------------------------------------------------------------------------------- /game-7daystodie/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/info.json -------------------------------------------------------------------------------- /game-7daystodie/loadOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/loadOrder.js -------------------------------------------------------------------------------- /game-7daystodie/loadOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/loadOrder.ts -------------------------------------------------------------------------------- /game-7daystodie/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/migrations.js -------------------------------------------------------------------------------- /game-7daystodie/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/migrations.ts -------------------------------------------------------------------------------- /game-7daystodie/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/reducers.js -------------------------------------------------------------------------------- /game-7daystodie/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/reducers.ts -------------------------------------------------------------------------------- /game-7daystodie/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/types.js -------------------------------------------------------------------------------- /game-7daystodie/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/types.ts -------------------------------------------------------------------------------- /game-7daystodie/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/util.js -------------------------------------------------------------------------------- /game-7daystodie/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-7daystodie/util.ts -------------------------------------------------------------------------------- /game-ahatintime/HatinTimeEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-ahatintime/HatinTimeEditor.png -------------------------------------------------------------------------------- /game-ahatintime/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-ahatintime/gameart.jpg -------------------------------------------------------------------------------- /game-ahatintime/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-ahatintime/index.js -------------------------------------------------------------------------------- /game-ahatintime/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-ahatintime/info.json -------------------------------------------------------------------------------- /game-baldursgate3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/CHANGELOG.md -------------------------------------------------------------------------------- /game-baldursgate3/InfoPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/InfoPanel.js -------------------------------------------------------------------------------- /game-baldursgate3/InfoPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/InfoPanel.tsx -------------------------------------------------------------------------------- /game-baldursgate3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/README.md -------------------------------------------------------------------------------- /game-baldursgate3/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/Settings.js -------------------------------------------------------------------------------- /game-baldursgate3/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/Settings.tsx -------------------------------------------------------------------------------- /game-baldursgate3/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/actions.js -------------------------------------------------------------------------------- /game-baldursgate3/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/actions.ts -------------------------------------------------------------------------------- /game-baldursgate3/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/cache.js -------------------------------------------------------------------------------- /game-baldursgate3/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/cache.ts -------------------------------------------------------------------------------- /game-baldursgate3/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/common.js -------------------------------------------------------------------------------- /game-baldursgate3/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/common.ts -------------------------------------------------------------------------------- /game-baldursgate3/divineWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/divineWrapper.js -------------------------------------------------------------------------------- /game-baldursgate3/divineWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/divineWrapper.ts -------------------------------------------------------------------------------- /game-baldursgate3/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/gameart.jpg -------------------------------------------------------------------------------- /game-baldursgate3/githubDownloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/githubDownloader.js -------------------------------------------------------------------------------- /game-baldursgate3/githubDownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/githubDownloader.ts -------------------------------------------------------------------------------- /game-baldursgate3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/index.js -------------------------------------------------------------------------------- /game-baldursgate3/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/index.tsx -------------------------------------------------------------------------------- /game-baldursgate3/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/info.json -------------------------------------------------------------------------------- /game-baldursgate3/installers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/installers.js -------------------------------------------------------------------------------- /game-baldursgate3/installers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/installers.ts -------------------------------------------------------------------------------- /game-baldursgate3/loadOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/loadOrder.js -------------------------------------------------------------------------------- /game-baldursgate3/loadOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/loadOrder.ts -------------------------------------------------------------------------------- /game-baldursgate3/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/migrations.js -------------------------------------------------------------------------------- /game-baldursgate3/migrations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/migrations.tsx -------------------------------------------------------------------------------- /game-baldursgate3/modTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/modTypes.js -------------------------------------------------------------------------------- /game-baldursgate3/modTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/modTypes.ts -------------------------------------------------------------------------------- /game-baldursgate3/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/reducers.js -------------------------------------------------------------------------------- /game-baldursgate3/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/reducers.ts -------------------------------------------------------------------------------- /game-baldursgate3/tools/AlphaFS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/tools/AlphaFS.dll -------------------------------------------------------------------------------- /game-baldursgate3/tools/CommandLineArgumentsParser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/tools/CommandLineArgumentsParser.dll -------------------------------------------------------------------------------- /game-baldursgate3/tools/LSLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/tools/LSLib.dll -------------------------------------------------------------------------------- /game-baldursgate3/tools/LSLibNative.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/tools/LSLibNative.dll -------------------------------------------------------------------------------- /game-baldursgate3/tools/LZ4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/tools/LZ4.dll -------------------------------------------------------------------------------- /game-baldursgate3/tools/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/tools/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /game-baldursgate3/tools/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/tools/OpenTK.dll -------------------------------------------------------------------------------- /game-baldursgate3/tools/divine.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/tools/divine.exe -------------------------------------------------------------------------------- /game-baldursgate3/tools/divine.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/tools/divine.exe.config -------------------------------------------------------------------------------- /game-baldursgate3/tools/zlib.net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/tools/zlib.net.dll -------------------------------------------------------------------------------- /game-baldursgate3/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/types.js -------------------------------------------------------------------------------- /game-baldursgate3/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/types.tsx -------------------------------------------------------------------------------- /game-baldursgate3/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/util.js -------------------------------------------------------------------------------- /game-baldursgate3/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-baldursgate3/util.ts -------------------------------------------------------------------------------- /game-battletech/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-battletech/gameart.jpg -------------------------------------------------------------------------------- /game-battletech/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-battletech/index.js -------------------------------------------------------------------------------- /game-battletech/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-battletech/info.json -------------------------------------------------------------------------------- /game-bladeandsorcery/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bladeandsorcery/common.js -------------------------------------------------------------------------------- /game-bladeandsorcery/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bladeandsorcery/gameart.jpg -------------------------------------------------------------------------------- /game-bladeandsorcery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bladeandsorcery/index.js -------------------------------------------------------------------------------- /game-bladeandsorcery/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bladeandsorcery/info.json -------------------------------------------------------------------------------- /game-bladeandsorcery/installers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bladeandsorcery/installers.js -------------------------------------------------------------------------------- /game-bladeandsorcery/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bladeandsorcery/migrations.js -------------------------------------------------------------------------------- /game-bladeandsorcery/oculus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bladeandsorcery/oculus.png -------------------------------------------------------------------------------- /game-bladeandsorcery/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bladeandsorcery/steam.png -------------------------------------------------------------------------------- /game-bladeandsorcery/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bladeandsorcery/util.js -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/common.js -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/common.ts -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/gameart.jpg -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/index.js -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/index.ts -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/info.json -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/loadOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/loadOrder.js -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/loadOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/loadOrder.ts -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/migrations.js -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/migrations.ts -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/types.js -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/types.ts -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/util.js -------------------------------------------------------------------------------- /game-bloodstainedritualofthenight/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-bloodstainedritualofthenight/util.ts -------------------------------------------------------------------------------- /game-breakingwheel/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-breakingwheel/gameart.jpg -------------------------------------------------------------------------------- /game-breakingwheel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-breakingwheel/index.js -------------------------------------------------------------------------------- /game-breakingwheel/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-breakingwheel/info.json -------------------------------------------------------------------------------- /game-breakingwheel/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-breakingwheel/logo.png -------------------------------------------------------------------------------- /game-codevein/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/_index.js -------------------------------------------------------------------------------- /game-codevein/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/common.js -------------------------------------------------------------------------------- /game-codevein/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/common.ts -------------------------------------------------------------------------------- /game-codevein/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/gameart.jpg -------------------------------------------------------------------------------- /game-codevein/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/index.js -------------------------------------------------------------------------------- /game-codevein/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/index.ts -------------------------------------------------------------------------------- /game-codevein/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/info.json -------------------------------------------------------------------------------- /game-codevein/loadOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/loadOrder.js -------------------------------------------------------------------------------- /game-codevein/loadOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/loadOrder.ts -------------------------------------------------------------------------------- /game-codevein/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/migrations.js -------------------------------------------------------------------------------- /game-codevein/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/migrations.ts -------------------------------------------------------------------------------- /game-codevein/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/types.js -------------------------------------------------------------------------------- /game-codevein/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/types.ts -------------------------------------------------------------------------------- /game-codevein/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/util.js -------------------------------------------------------------------------------- /game-codevein/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-codevein/util.ts -------------------------------------------------------------------------------- /game-conanexiles/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-conanexiles/gameart.jpg -------------------------------------------------------------------------------- /game-conanexiles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-conanexiles/index.js -------------------------------------------------------------------------------- /game-conanexiles/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-conanexiles/info.json -------------------------------------------------------------------------------- /game-cyberpunk2077/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-cyberpunk2077/gameart.jpg -------------------------------------------------------------------------------- /game-cyberpunk2077/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-cyberpunk2077/index.js -------------------------------------------------------------------------------- /game-cyberpunk2077/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-cyberpunk2077/info.json -------------------------------------------------------------------------------- /game-daggerfallunity/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-daggerfallunity/gameart.jpg -------------------------------------------------------------------------------- /game-daggerfallunity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-daggerfallunity/index.js -------------------------------------------------------------------------------- /game-daggerfallunity/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-daggerfallunity/info.json -------------------------------------------------------------------------------- /game-darkestdungeon/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-darkestdungeon/gameart.jpg -------------------------------------------------------------------------------- /game-darkestdungeon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-darkestdungeon/index.js -------------------------------------------------------------------------------- /game-darkestdungeon/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-darkestdungeon/info.json -------------------------------------------------------------------------------- /game-darksouls/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-darksouls/gameart.jpg -------------------------------------------------------------------------------- /game-darksouls/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-darksouls/index.js -------------------------------------------------------------------------------- /game-darksouls/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-darksouls/info.json -------------------------------------------------------------------------------- /game-darksouls2/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-darksouls2/gameart.jpg -------------------------------------------------------------------------------- /game-darksouls2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-darksouls2/index.js -------------------------------------------------------------------------------- /game-darksouls2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-darksouls2/info.json -------------------------------------------------------------------------------- /game-dawnofman/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dawnofman/gameart.jpg -------------------------------------------------------------------------------- /game-dawnofman/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dawnofman/index.js -------------------------------------------------------------------------------- /game-dawnofman/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dawnofman/info.json -------------------------------------------------------------------------------- /game-dawnofman/umm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dawnofman/umm.png -------------------------------------------------------------------------------- /game-divinityoriginalsin2/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-divinityoriginalsin2/gameart.jpg -------------------------------------------------------------------------------- /game-divinityoriginalsin2/gameartDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-divinityoriginalsin2/gameartDE.png -------------------------------------------------------------------------------- /game-divinityoriginalsin2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-divinityoriginalsin2/index.js -------------------------------------------------------------------------------- /game-divinityoriginalsin2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-divinityoriginalsin2/info.json -------------------------------------------------------------------------------- /game-dmc5/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dmc5/gameart.jpg -------------------------------------------------------------------------------- /game-dmc5/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dmc5/index.js -------------------------------------------------------------------------------- /game-dmc5/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dmc5/info.json -------------------------------------------------------------------------------- /game-dragonage/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dragonage/gameart.jpg -------------------------------------------------------------------------------- /game-dragonage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dragonage/index.js -------------------------------------------------------------------------------- /game-dragonage/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dragonage/info.json -------------------------------------------------------------------------------- /game-dragonage2/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dragonage2/gameart.jpg -------------------------------------------------------------------------------- /game-dragonage2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dragonage2/index.js -------------------------------------------------------------------------------- /game-dragonage2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dragonage2/info.json -------------------------------------------------------------------------------- /game-dragons-dogma/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dragons-dogma/gameart.jpg -------------------------------------------------------------------------------- /game-dragons-dogma/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dragons-dogma/index.js -------------------------------------------------------------------------------- /game-dragons-dogma/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-dragons-dogma/info.json -------------------------------------------------------------------------------- /game-elex/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-elex/gameart.jpg -------------------------------------------------------------------------------- /game-elex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-elex/index.js -------------------------------------------------------------------------------- /game-elex/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-elex/info.json -------------------------------------------------------------------------------- /game-enderal/fnis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-enderal/fnis.png -------------------------------------------------------------------------------- /game-enderal/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-enderal/gameart.jpg -------------------------------------------------------------------------------- /game-enderal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-enderal/index.js -------------------------------------------------------------------------------- /game-enderal/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-enderal/info.json -------------------------------------------------------------------------------- /game-enderal/tes5edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-enderal/tes5edit.png -------------------------------------------------------------------------------- /game-enderal/wrye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-enderal/wrye.png -------------------------------------------------------------------------------- /game-factorio/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-factorio/gameart.jpg -------------------------------------------------------------------------------- /game-factorio/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-factorio/index.js -------------------------------------------------------------------------------- /game-factorio/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-factorio/info.json -------------------------------------------------------------------------------- /game-fallout3/fo3edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout3/fo3edit.png -------------------------------------------------------------------------------- /game-fallout3/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout3/gameart.jpg -------------------------------------------------------------------------------- /game-fallout3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout3/index.js -------------------------------------------------------------------------------- /game-fallout3/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout3/info.json -------------------------------------------------------------------------------- /game-fallout3/wrye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout3/wrye.png -------------------------------------------------------------------------------- /game-fallout4/fo3edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout4/fo3edit.png -------------------------------------------------------------------------------- /game-fallout4/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout4/gameart.jpg -------------------------------------------------------------------------------- /game-fallout4/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout4/index.js -------------------------------------------------------------------------------- /game-fallout4/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout4/info.json -------------------------------------------------------------------------------- /game-fallout4/wrye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout4/wrye.png -------------------------------------------------------------------------------- /game-fallout4vr/fo3edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout4vr/fo3edit.png -------------------------------------------------------------------------------- /game-fallout4vr/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout4vr/gameart.jpg -------------------------------------------------------------------------------- /game-fallout4vr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout4vr/index.js -------------------------------------------------------------------------------- /game-fallout4vr/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-fallout4vr/info.json -------------------------------------------------------------------------------- /game-falloutnv/fo3edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-falloutnv/fo3edit.png -------------------------------------------------------------------------------- /game-falloutnv/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-falloutnv/gameart.jpg -------------------------------------------------------------------------------- /game-falloutnv/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-falloutnv/index.js -------------------------------------------------------------------------------- /game-falloutnv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-falloutnv/index.ts -------------------------------------------------------------------------------- /game-falloutnv/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-falloutnv/info.json -------------------------------------------------------------------------------- /game-falloutnv/nvse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-falloutnv/nvse.png -------------------------------------------------------------------------------- /game-falloutnv/wrye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-falloutnv/wrye.png -------------------------------------------------------------------------------- /game-galciv3/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-galciv3/gameart.jpg -------------------------------------------------------------------------------- /game-galciv3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-galciv3/index.js -------------------------------------------------------------------------------- /game-galciv3/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-galciv3/info.json -------------------------------------------------------------------------------- /game-gardenpaws/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-gardenpaws/gameart.jpg -------------------------------------------------------------------------------- /game-gardenpaws/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-gardenpaws/index.js -------------------------------------------------------------------------------- /game-gardenpaws/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-gardenpaws/info.json -------------------------------------------------------------------------------- /game-gardenpaws/umm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-gardenpaws/umm.png -------------------------------------------------------------------------------- /game-greedfall/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-greedfall/gameart.jpg -------------------------------------------------------------------------------- /game-greedfall/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-greedfall/index.js -------------------------------------------------------------------------------- /game-greedfall/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-greedfall/info.json -------------------------------------------------------------------------------- /game-grimdawn/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-grimdawn/gameart.jpg -------------------------------------------------------------------------------- /game-grimdawn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-grimdawn/index.js -------------------------------------------------------------------------------- /game-grimdawn/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-grimdawn/info.json -------------------------------------------------------------------------------- /game-grimrock/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-grimrock/gameart.jpg -------------------------------------------------------------------------------- /game-grimrock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-grimrock/index.js -------------------------------------------------------------------------------- /game-grimrock/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-grimrock/info.json -------------------------------------------------------------------------------- /game-kenshi/Nvidia logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kenshi/Nvidia logo.png -------------------------------------------------------------------------------- /game-kenshi/OCS logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kenshi/OCS logo.png -------------------------------------------------------------------------------- /game-kenshi/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kenshi/gameart.jpg -------------------------------------------------------------------------------- /game-kenshi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kenshi/index.js -------------------------------------------------------------------------------- /game-kenshi/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kenshi/info.json -------------------------------------------------------------------------------- /game-kerbalspaceprogram/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kerbalspaceprogram/gameart.jpg -------------------------------------------------------------------------------- /game-kerbalspaceprogram/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kerbalspaceprogram/index.js -------------------------------------------------------------------------------- /game-kerbalspaceprogram/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kerbalspaceprogram/info.json -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/collections/CollectionsDataView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/collections/CollectionsDataView.js -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/collections/CollectionsDataView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/collections/CollectionsDataView.tsx -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/collections/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/collections/collections.js -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/collections/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/collections/collections.ts -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/collections/loadOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/collections/loadOrder.js -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/collections/loadOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/collections/loadOrder.ts -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/collections/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/collections/types.js -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/collections/types.ts: -------------------------------------------------------------------------------- 1 | export interface IKCDCollectionsData { 2 | loadOrder: string[]; 3 | } -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/collections/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/collections/util.js -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/collections/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/collections/util.ts -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/gameart.jpg -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/index.js -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/index.ts -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/info.json -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/statics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/statics.js -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/statics.ts -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/util.js -------------------------------------------------------------------------------- /game-kingdomcome-deliverance/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-kingdomcome-deliverance/util.ts -------------------------------------------------------------------------------- /game-masterchiefcollection/assemblytool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/assemblytool.png -------------------------------------------------------------------------------- /game-masterchiefcollection/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/common.js -------------------------------------------------------------------------------- /game-masterchiefcollection/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/common.ts -------------------------------------------------------------------------------- /game-masterchiefcollection/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/gameart.jpg -------------------------------------------------------------------------------- /game-masterchiefcollection/halo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/halo1.png -------------------------------------------------------------------------------- /game-masterchiefcollection/halo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/halo2.png -------------------------------------------------------------------------------- /game-masterchiefcollection/halo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/halo3.png -------------------------------------------------------------------------------- /game-masterchiefcollection/halo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/halo4.png -------------------------------------------------------------------------------- /game-masterchiefcollection/haloreach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/haloreach.png -------------------------------------------------------------------------------- /game-masterchiefcollection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/index.js -------------------------------------------------------------------------------- /game-masterchiefcollection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/index.ts -------------------------------------------------------------------------------- /game-masterchiefcollection/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/info.json -------------------------------------------------------------------------------- /game-masterchiefcollection/installers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/installers.js -------------------------------------------------------------------------------- /game-masterchiefcollection/installers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/installers.ts -------------------------------------------------------------------------------- /game-masterchiefcollection/masterchief.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/masterchief.scss -------------------------------------------------------------------------------- /game-masterchiefcollection/modTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/modTypes.js -------------------------------------------------------------------------------- /game-masterchiefcollection/modTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/modTypes.ts -------------------------------------------------------------------------------- /game-masterchiefcollection/odst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/odst.png -------------------------------------------------------------------------------- /game-masterchiefcollection/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/tests.js -------------------------------------------------------------------------------- /game-masterchiefcollection/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/tests.ts -------------------------------------------------------------------------------- /game-masterchiefcollection/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/types.js -------------------------------------------------------------------------------- /game-masterchiefcollection/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/types.ts -------------------------------------------------------------------------------- /game-masterchiefcollection/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/util.js -------------------------------------------------------------------------------- /game-masterchiefcollection/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-masterchiefcollection/util.ts -------------------------------------------------------------------------------- /game-microsoftflightsimulator/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-microsoftflightsimulator/gameart.jpg -------------------------------------------------------------------------------- /game-microsoftflightsimulator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-microsoftflightsimulator/index.js -------------------------------------------------------------------------------- /game-microsoftflightsimulator/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-microsoftflightsimulator/info.json -------------------------------------------------------------------------------- /game-monster-hunter-world/HunterPie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-monster-hunter-world/HunterPie.png -------------------------------------------------------------------------------- /game-monster-hunter-world/MHWTransmog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-monster-hunter-world/MHWTransmog.png -------------------------------------------------------------------------------- /game-monster-hunter-world/SmartHunter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-monster-hunter-world/SmartHunter.png -------------------------------------------------------------------------------- /game-monster-hunter-world/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-monster-hunter-world/gameart.jpg -------------------------------------------------------------------------------- /game-monster-hunter-world/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-monster-hunter-world/index.js -------------------------------------------------------------------------------- /game-monster-hunter-world/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-monster-hunter-world/info.json -------------------------------------------------------------------------------- /game-morrowind/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/collections.js -------------------------------------------------------------------------------- /game-morrowind/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/constants.js -------------------------------------------------------------------------------- /game-morrowind/constructionset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/constructionset.png -------------------------------------------------------------------------------- /game-morrowind/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/gameart.jpg -------------------------------------------------------------------------------- /game-morrowind/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/index.js -------------------------------------------------------------------------------- /game-morrowind/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/index.ts -------------------------------------------------------------------------------- /game-morrowind/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/info.json -------------------------------------------------------------------------------- /game-morrowind/loadorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/loadorder.js -------------------------------------------------------------------------------- /game-morrowind/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/migrations.js -------------------------------------------------------------------------------- /game-morrowind/types/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/types/types.js -------------------------------------------------------------------------------- /game-morrowind/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/types/types.ts -------------------------------------------------------------------------------- /game-morrowind/views/MorrowindCollectionsDataView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/views/MorrowindCollectionsDataView.js -------------------------------------------------------------------------------- /game-morrowind/views/MorrowindCollectionsDataView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-morrowind/views/MorrowindCollectionsDataView.tsx -------------------------------------------------------------------------------- /game-mount-and-blade/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-mount-and-blade/gameart.jpg -------------------------------------------------------------------------------- /game-mount-and-blade/gameartfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-mount-and-blade/gameartfire.png -------------------------------------------------------------------------------- /game-mount-and-blade/gameartviking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-mount-and-blade/gameartviking.png -------------------------------------------------------------------------------- /game-mount-and-blade/gameartwarband.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-mount-and-blade/gameartwarband.png -------------------------------------------------------------------------------- /game-mount-and-blade/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-mount-and-blade/index.js -------------------------------------------------------------------------------- /game-mount-and-blade/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-mount-and-blade/info.json -------------------------------------------------------------------------------- /game-mount-and-blade2/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-mount-and-blade2/gameart.jpg -------------------------------------------------------------------------------- /game-mount-and-blade2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-mount-and-blade2/index.js -------------------------------------------------------------------------------- /game-mount-and-blade2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-mount-and-blade2/info.json -------------------------------------------------------------------------------- /game-nehrim/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-nehrim/gameart.jpg -------------------------------------------------------------------------------- /game-nehrim/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-nehrim/index.js -------------------------------------------------------------------------------- /game-nehrim/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-nehrim/info.json -------------------------------------------------------------------------------- /game-nehrim/nehrim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-nehrim/nehrim.png -------------------------------------------------------------------------------- /game-neverwinter-nights/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-neverwinter-nights/gameart.jpg -------------------------------------------------------------------------------- /game-neverwinter-nights/gameartee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-neverwinter-nights/gameartee.png -------------------------------------------------------------------------------- /game-neverwinter-nights/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-neverwinter-nights/index.js -------------------------------------------------------------------------------- /game-neverwinter-nights/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-neverwinter-nights/info.json -------------------------------------------------------------------------------- /game-neverwinter-nights2/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-neverwinter-nights2/gameart.jpg -------------------------------------------------------------------------------- /game-neverwinter-nights2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-neverwinter-nights2/index.js -------------------------------------------------------------------------------- /game-neverwinter-nights2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-neverwinter-nights2/info.json -------------------------------------------------------------------------------- /game-nomanssky/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-nomanssky/gameart.jpg -------------------------------------------------------------------------------- /game-nomanssky/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-nomanssky/index.js -------------------------------------------------------------------------------- /game-nomanssky/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-nomanssky/index.ts -------------------------------------------------------------------------------- /game-nomanssky/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-nomanssky/info.json -------------------------------------------------------------------------------- /game-oblivion/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-oblivion/gameart.jpg -------------------------------------------------------------------------------- /game-oblivion/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-oblivion/index.js -------------------------------------------------------------------------------- /game-oblivion/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-oblivion/info.json -------------------------------------------------------------------------------- /game-oblivion/tes5edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-oblivion/tes5edit.png -------------------------------------------------------------------------------- /game-oblivion/wrye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-oblivion/wrye.png -------------------------------------------------------------------------------- /game-oni/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-oni/gameart.jpg -------------------------------------------------------------------------------- /game-oni/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-oni/index.js -------------------------------------------------------------------------------- /game-oni/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-oni/info.json -------------------------------------------------------------------------------- /game-oni/umm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-oni/umm.png -------------------------------------------------------------------------------- /game-palworld/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-palworld/gameart.jpg -------------------------------------------------------------------------------- /game-palworld/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-palworld/index.js -------------------------------------------------------------------------------- /game-palworld/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-palworld/info.json -------------------------------------------------------------------------------- /game-pathfinderkingmaker/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-pathfinderkingmaker/gameart.jpg -------------------------------------------------------------------------------- /game-pathfinderkingmaker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-pathfinderkingmaker/index.js -------------------------------------------------------------------------------- /game-pathfinderkingmaker/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-pathfinderkingmaker/info.json -------------------------------------------------------------------------------- /game-pathfinderkingmaker/umm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-pathfinderkingmaker/umm.png -------------------------------------------------------------------------------- /game-pathfinderwrathoftherighteous/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-pathfinderwrathoftherighteous/gameart.jpg -------------------------------------------------------------------------------- /game-pathfinderwrathoftherighteous/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-pathfinderwrathoftherighteous/index.js -------------------------------------------------------------------------------- /game-pathfinderwrathoftherighteous/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-pathfinderwrathoftherighteous/index.ts -------------------------------------------------------------------------------- /game-pathfinderwrathoftherighteous/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-pathfinderwrathoftherighteous/info.json -------------------------------------------------------------------------------- /game-pathfinderwrathoftherighteous/umm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-pathfinderwrathoftherighteous/umm.png -------------------------------------------------------------------------------- /game-prisonarchitect/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-prisonarchitect/gameart.jpg -------------------------------------------------------------------------------- /game-prisonarchitect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-prisonarchitect/index.js -------------------------------------------------------------------------------- /game-prisonarchitect/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-prisonarchitect/info.json -------------------------------------------------------------------------------- /game-re2remake/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-re2remake/gameart.jpg -------------------------------------------------------------------------------- /game-re2remake/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-re2remake/index.js -------------------------------------------------------------------------------- /game-re2remake/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-re2remake/info.json -------------------------------------------------------------------------------- /game-re3remake/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-re3remake/gameart.jpg -------------------------------------------------------------------------------- /game-re3remake/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-re3remake/index.js -------------------------------------------------------------------------------- /game-re3remake/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-re3remake/info.json -------------------------------------------------------------------------------- /game-rimworld/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-rimworld/gameart.jpg -------------------------------------------------------------------------------- /game-rimworld/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-rimworld/index.js -------------------------------------------------------------------------------- /game-rimworld/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-rimworld/info.json -------------------------------------------------------------------------------- /game-sekiro/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sekiro/gameart.jpg -------------------------------------------------------------------------------- /game-sekiro/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sekiro/index.js -------------------------------------------------------------------------------- /game-sekiro/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sekiro/info.json -------------------------------------------------------------------------------- /game-shadowrunreturns/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-shadowrunreturns/gameart.jpg -------------------------------------------------------------------------------- /game-shadowrunreturns/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-shadowrunreturns/index.js -------------------------------------------------------------------------------- /game-shadowrunreturns/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-shadowrunreturns/info.json -------------------------------------------------------------------------------- /game-sims3/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sims3/gameart.jpg -------------------------------------------------------------------------------- /game-sims3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sims3/index.js -------------------------------------------------------------------------------- /game-sims3/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sims3/info.json -------------------------------------------------------------------------------- /game-sims4/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sims4/gameart.jpg -------------------------------------------------------------------------------- /game-sims4/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sims4/icon.png -------------------------------------------------------------------------------- /game-sims4/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sims4/index.js -------------------------------------------------------------------------------- /game-sims4/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sims4/info.json -------------------------------------------------------------------------------- /game-skyrim/fnis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrim/fnis.png -------------------------------------------------------------------------------- /game-skyrim/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrim/gameart.jpg -------------------------------------------------------------------------------- /game-skyrim/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrim/index.js -------------------------------------------------------------------------------- /game-skyrim/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrim/info.json -------------------------------------------------------------------------------- /game-skyrim/tes5edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrim/tes5edit.png -------------------------------------------------------------------------------- /game-skyrim/wrye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrim/wrye.png -------------------------------------------------------------------------------- /game-skyrimse/CK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimse/CK.png -------------------------------------------------------------------------------- /game-skyrimse/SKSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimse/SKSE.png -------------------------------------------------------------------------------- /game-skyrimse/fnis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimse/fnis.png -------------------------------------------------------------------------------- /game-skyrimse/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimse/gameart.jpg -------------------------------------------------------------------------------- /game-skyrimse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimse/index.js -------------------------------------------------------------------------------- /game-skyrimse/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimse/info.json -------------------------------------------------------------------------------- /game-skyrimse/tes5edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimse/tes5edit.png -------------------------------------------------------------------------------- /game-skyrimse/wrye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimse/wrye.png -------------------------------------------------------------------------------- /game-skyrimvr/fnis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimvr/fnis.png -------------------------------------------------------------------------------- /game-skyrimvr/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimvr/gameart.jpg -------------------------------------------------------------------------------- /game-skyrimvr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimvr/index.js -------------------------------------------------------------------------------- /game-skyrimvr/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimvr/info.json -------------------------------------------------------------------------------- /game-skyrimvr/tes5edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-skyrimvr/tes5edit.png -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/LICENSE -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/common.js -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/common.ts -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/gameart.jpg -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/index.js -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/index.ts -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/info.json -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/loadOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/loadOrder.js -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/loadOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/loadOrder.ts -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/migrations.js -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/migrations.ts -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/types.js -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/types.ts -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/util.js -------------------------------------------------------------------------------- /game-spyroreignitedtrilogy/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-spyroreignitedtrilogy/util.ts -------------------------------------------------------------------------------- /game-starbound/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-starbound/gameart.jpg -------------------------------------------------------------------------------- /game-starbound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-starbound/index.js -------------------------------------------------------------------------------- /game-starbound/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-starbound/info.json -------------------------------------------------------------------------------- /game-stardewvalley/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/CHANGELOG.md -------------------------------------------------------------------------------- /game-stardewvalley/CompatibilityIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/CompatibilityIcon.js -------------------------------------------------------------------------------- /game-stardewvalley/CompatibilityIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/CompatibilityIcon.tsx -------------------------------------------------------------------------------- /game-stardewvalley/DependencyManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/DependencyManager.js -------------------------------------------------------------------------------- /game-stardewvalley/DependencyManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/DependencyManager.ts -------------------------------------------------------------------------------- /game-stardewvalley/SMAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/SMAPI.js -------------------------------------------------------------------------------- /game-stardewvalley/SMAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/SMAPI.ts -------------------------------------------------------------------------------- /game-stardewvalley/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/Settings.js -------------------------------------------------------------------------------- /game-stardewvalley/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/Settings.tsx -------------------------------------------------------------------------------- /game-stardewvalley/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/actions.js -------------------------------------------------------------------------------- /game-stardewvalley/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/actions.ts -------------------------------------------------------------------------------- /game-stardewvalley/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/common.js -------------------------------------------------------------------------------- /game-stardewvalley/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/common.ts -------------------------------------------------------------------------------- /game-stardewvalley/configMod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/configMod.js -------------------------------------------------------------------------------- /game-stardewvalley/configMod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/configMod.ts -------------------------------------------------------------------------------- /game-stardewvalley/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/constants.js -------------------------------------------------------------------------------- /game-stardewvalley/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/constants.ts -------------------------------------------------------------------------------- /game-stardewvalley/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/gameart.jpg -------------------------------------------------------------------------------- /game-stardewvalley/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/index.js -------------------------------------------------------------------------------- /game-stardewvalley/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/index.ts -------------------------------------------------------------------------------- /game-stardewvalley/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/info.json -------------------------------------------------------------------------------- /game-stardewvalley/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/reducers.js -------------------------------------------------------------------------------- /game-stardewvalley/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/reducers.ts -------------------------------------------------------------------------------- /game-stardewvalley/sdvstyle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/sdvstyle.scss -------------------------------------------------------------------------------- /game-stardewvalley/smapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/smapi.png -------------------------------------------------------------------------------- /game-stardewvalley/smapiProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/smapiProxy.js -------------------------------------------------------------------------------- /game-stardewvalley/smapiProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/smapiProxy.ts -------------------------------------------------------------------------------- /game-stardewvalley/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/tests.js -------------------------------------------------------------------------------- /game-stardewvalley/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/tests.ts -------------------------------------------------------------------------------- /game-stardewvalley/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/types.js -------------------------------------------------------------------------------- /game-stardewvalley/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/types.ts -------------------------------------------------------------------------------- /game-stardewvalley/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/util.js -------------------------------------------------------------------------------- /game-stardewvalley/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stardewvalley/util.ts -------------------------------------------------------------------------------- /game-starfield/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-starfield/gameart.jpg -------------------------------------------------------------------------------- /game-starfield/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-starfield/index.js -------------------------------------------------------------------------------- /game-starfield/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-starfield/info.json -------------------------------------------------------------------------------- /game-stateofdecay/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stateofdecay/gameart.jpg -------------------------------------------------------------------------------- /game-stateofdecay/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stateofdecay/index.js -------------------------------------------------------------------------------- /game-stateofdecay/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-stateofdecay/info.json -------------------------------------------------------------------------------- /game-subnautica/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-subnautica/gameart.jpg -------------------------------------------------------------------------------- /game-subnautica/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-subnautica/index.js -------------------------------------------------------------------------------- /game-subnautica/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-subnautica/info.json -------------------------------------------------------------------------------- /game-subnauticabelowzero/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-subnauticabelowzero/gameart.jpg -------------------------------------------------------------------------------- /game-subnauticabelowzero/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-subnauticabelowzero/index.js -------------------------------------------------------------------------------- /game-subnauticabelowzero/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-subnauticabelowzero/info.json -------------------------------------------------------------------------------- /game-survivingmars/Mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-survivingmars/Mars.png -------------------------------------------------------------------------------- /game-survivingmars/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-survivingmars/gameart.jpg -------------------------------------------------------------------------------- /game-survivingmars/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-survivingmars/index.js -------------------------------------------------------------------------------- /game-survivingmars/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-survivingmars/info.json -------------------------------------------------------------------------------- /game-sw-kotor/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sw-kotor/gameart.jpg -------------------------------------------------------------------------------- /game-sw-kotor/gameartkotor2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sw-kotor/gameartkotor2.jpg -------------------------------------------------------------------------------- /game-sw-kotor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sw-kotor/index.js -------------------------------------------------------------------------------- /game-sw-kotor/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-sw-kotor/info.json -------------------------------------------------------------------------------- /game-teamfortress2/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-teamfortress2/gameart.jpg -------------------------------------------------------------------------------- /game-teamfortress2/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-teamfortress2/hammer.png -------------------------------------------------------------------------------- /game-teamfortress2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-teamfortress2/index.js -------------------------------------------------------------------------------- /game-teamfortress2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-teamfortress2/info.json -------------------------------------------------------------------------------- /game-teso/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-teso/gameart.jpg -------------------------------------------------------------------------------- /game-teso/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-teso/index.js -------------------------------------------------------------------------------- /game-teso/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-teso/info.json -------------------------------------------------------------------------------- /game-torchlight2/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-torchlight2/gameart.jpg -------------------------------------------------------------------------------- /game-torchlight2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-torchlight2/index.js -------------------------------------------------------------------------------- /game-torchlight2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-torchlight2/info.json -------------------------------------------------------------------------------- /game-totalwarthreekingdoms/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-totalwarthreekingdoms/gameart.jpg -------------------------------------------------------------------------------- /game-totalwarthreekingdoms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-totalwarthreekingdoms/index.js -------------------------------------------------------------------------------- /game-totalwarthreekingdoms/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-totalwarthreekingdoms/info.json -------------------------------------------------------------------------------- /game-untitledgoose/BepInEx.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/BepInEx.cfg -------------------------------------------------------------------------------- /game-untitledgoose/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/gameart.jpg -------------------------------------------------------------------------------- /game-untitledgoose/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/index.js -------------------------------------------------------------------------------- /game-untitledgoose/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/index.ts -------------------------------------------------------------------------------- /game-untitledgoose/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/info.json -------------------------------------------------------------------------------- /game-untitledgoose/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/migrations.js -------------------------------------------------------------------------------- /game-untitledgoose/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/migrations.ts -------------------------------------------------------------------------------- /game-untitledgoose/statics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/statics.js -------------------------------------------------------------------------------- /game-untitledgoose/statics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/statics.ts -------------------------------------------------------------------------------- /game-untitledgoose/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/types.js -------------------------------------------------------------------------------- /game-untitledgoose/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/types.ts -------------------------------------------------------------------------------- /game-untitledgoose/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/util.js -------------------------------------------------------------------------------- /game-untitledgoose/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/util.ts -------------------------------------------------------------------------------- /game-untitledgoose/vortexui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/vortexui -------------------------------------------------------------------------------- /game-untitledgoose/vortexui.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-untitledgoose/vortexui.manifest -------------------------------------------------------------------------------- /game-vtmbloodlines/exec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-vtmbloodlines/exec.png -------------------------------------------------------------------------------- /game-vtmbloodlines/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-vtmbloodlines/gameart.jpg -------------------------------------------------------------------------------- /game-vtmbloodlines/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-vtmbloodlines/index.js -------------------------------------------------------------------------------- /game-vtmbloodlines/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-vtmbloodlines/info.json -------------------------------------------------------------------------------- /game-warthunder/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-warthunder/gameart.jpg -------------------------------------------------------------------------------- /game-warthunder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-warthunder/index.js -------------------------------------------------------------------------------- /game-warthunder/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-warthunder/info.json -------------------------------------------------------------------------------- /game-witcher/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher/gameart.jpg -------------------------------------------------------------------------------- /game-witcher/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher/index.js -------------------------------------------------------------------------------- /game-witcher/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher/info.json -------------------------------------------------------------------------------- /game-witcher2/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher2/gameart.jpg -------------------------------------------------------------------------------- /game-witcher2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher2/index.js -------------------------------------------------------------------------------- /game-witcher2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher2/info.json -------------------------------------------------------------------------------- /game-witcher3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/CHANGELOG.md -------------------------------------------------------------------------------- /game-witcher3/MD5Cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/MD5Cache.json -------------------------------------------------------------------------------- /game-witcher3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/README.md -------------------------------------------------------------------------------- /game-witcher3/WitcherScriptMerger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/WitcherScriptMerger.jpg -------------------------------------------------------------------------------- /game-witcher3/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/actions.js -------------------------------------------------------------------------------- /game-witcher3/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/actions.ts -------------------------------------------------------------------------------- /game-witcher3/collections/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/collections/collections.js -------------------------------------------------------------------------------- /game-witcher3/collections/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/collections/collections.ts -------------------------------------------------------------------------------- /game-witcher3/collections/loadOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/collections/loadOrder.js -------------------------------------------------------------------------------- /game-witcher3/collections/loadOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/collections/loadOrder.ts -------------------------------------------------------------------------------- /game-witcher3/collections/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/collections/types.js -------------------------------------------------------------------------------- /game-witcher3/collections/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/collections/types.ts -------------------------------------------------------------------------------- /game-witcher3/collections/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/collections/util.js -------------------------------------------------------------------------------- /game-witcher3/collections/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/collections/util.ts -------------------------------------------------------------------------------- /game-witcher3/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/common.js -------------------------------------------------------------------------------- /game-witcher3/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/common.ts -------------------------------------------------------------------------------- /game-witcher3/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/deprecated.js -------------------------------------------------------------------------------- /game-witcher3/deprecated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/deprecated.ts -------------------------------------------------------------------------------- /game-witcher3/eventHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/eventHandlers.js -------------------------------------------------------------------------------- /game-witcher3/eventHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/eventHandlers.ts -------------------------------------------------------------------------------- /game-witcher3/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/gameart.jpg -------------------------------------------------------------------------------- /game-witcher3/iconbarActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/iconbarActions.js -------------------------------------------------------------------------------- /game-witcher3/iconbarActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/iconbarActions.ts -------------------------------------------------------------------------------- /game-witcher3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/index.js -------------------------------------------------------------------------------- /game-witcher3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/index.ts -------------------------------------------------------------------------------- /game-witcher3/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/info.json -------------------------------------------------------------------------------- /game-witcher3/iniParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/iniParser.js -------------------------------------------------------------------------------- /game-witcher3/iniParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/iniParser.ts -------------------------------------------------------------------------------- /game-witcher3/installers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/installers.js -------------------------------------------------------------------------------- /game-witcher3/installers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/installers.ts -------------------------------------------------------------------------------- /game-witcher3/loadOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/loadOrder.js -------------------------------------------------------------------------------- /game-witcher3/loadOrder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/loadOrder.tsx -------------------------------------------------------------------------------- /game-witcher3/menumod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/menumod.js -------------------------------------------------------------------------------- /game-witcher3/menumod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/menumod.ts -------------------------------------------------------------------------------- /game-witcher3/mergeBackup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/mergeBackup.js -------------------------------------------------------------------------------- /game-witcher3/mergeBackup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/mergeBackup.ts -------------------------------------------------------------------------------- /game-witcher3/mergeInventoryParsing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/mergeInventoryParsing.js -------------------------------------------------------------------------------- /game-witcher3/mergeInventoryParsing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/mergeInventoryParsing.ts -------------------------------------------------------------------------------- /game-witcher3/mergers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/mergers.js -------------------------------------------------------------------------------- /game-witcher3/mergers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/mergers.ts -------------------------------------------------------------------------------- /game-witcher3/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/migrations.js -------------------------------------------------------------------------------- /game-witcher3/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/migrations.ts -------------------------------------------------------------------------------- /game-witcher3/modLimitPatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/modLimitPatch.js -------------------------------------------------------------------------------- /game-witcher3/modLimitPatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/modLimitPatch.ts -------------------------------------------------------------------------------- /game-witcher3/modTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/modTypes.js -------------------------------------------------------------------------------- /game-witcher3/modTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/modTypes.ts -------------------------------------------------------------------------------- /game-witcher3/priorityManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/priorityManager.js -------------------------------------------------------------------------------- /game-witcher3/priorityManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/priorityManager.ts -------------------------------------------------------------------------------- /game-witcher3/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/reducers.js -------------------------------------------------------------------------------- /game-witcher3/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/reducers.ts -------------------------------------------------------------------------------- /game-witcher3/scriptmerger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/scriptmerger.js -------------------------------------------------------------------------------- /game-witcher3/scriptmerger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/scriptmerger.ts -------------------------------------------------------------------------------- /game-witcher3/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/tests.js -------------------------------------------------------------------------------- /game-witcher3/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/tests.ts -------------------------------------------------------------------------------- /game-witcher3/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/types.js -------------------------------------------------------------------------------- /game-witcher3/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/types.ts -------------------------------------------------------------------------------- /game-witcher3/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/util.js -------------------------------------------------------------------------------- /game-witcher3/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/util.ts -------------------------------------------------------------------------------- /game-witcher3/views/CollectionsDataView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/views/CollectionsDataView.js -------------------------------------------------------------------------------- /game-witcher3/views/CollectionsDataView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/views/CollectionsDataView.tsx -------------------------------------------------------------------------------- /game-witcher3/views/InfoComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/views/InfoComponent.js -------------------------------------------------------------------------------- /game-witcher3/views/InfoComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/views/InfoComponent.tsx -------------------------------------------------------------------------------- /game-witcher3/views/ItemRenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/views/ItemRenderer.js -------------------------------------------------------------------------------- /game-witcher3/views/ItemRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-witcher3/views/ItemRenderer.tsx -------------------------------------------------------------------------------- /game-wolcen/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-wolcen/gameart.jpg -------------------------------------------------------------------------------- /game-wolcen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-wolcen/index.js -------------------------------------------------------------------------------- /game-wolcen/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-wolcen/info.json -------------------------------------------------------------------------------- /game-worldoftanks/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-worldoftanks/gameart.jpg -------------------------------------------------------------------------------- /game-worldoftanks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-worldoftanks/index.js -------------------------------------------------------------------------------- /game-worldoftanks/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-worldoftanks/info.json -------------------------------------------------------------------------------- /game-x4foundations/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-x4foundations/gameart.jpg -------------------------------------------------------------------------------- /game-x4foundations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-x4foundations/index.js -------------------------------------------------------------------------------- /game-x4foundations/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-x4foundations/info.json -------------------------------------------------------------------------------- /game-xcom2/gameart-wotc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-xcom2/gameart-wotc.jpg -------------------------------------------------------------------------------- /game-xcom2/gameart-xcom2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-xcom2/gameart-xcom2.jpg -------------------------------------------------------------------------------- /game-xcom2/icons/modbuddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-xcom2/icons/modbuddy.png -------------------------------------------------------------------------------- /game-xcom2/icons/wotc-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-xcom2/icons/wotc-icon.png -------------------------------------------------------------------------------- /game-xcom2/icons/xcom-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-xcom2/icons/xcom-icon.png -------------------------------------------------------------------------------- /game-xcom2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-xcom2/index.js -------------------------------------------------------------------------------- /game-xcom2/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-xcom2/info.json -------------------------------------------------------------------------------- /game-xrebirth/gameart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-xrebirth/gameart.jpg -------------------------------------------------------------------------------- /game-xrebirth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-xrebirth/index.js -------------------------------------------------------------------------------- /game-xrebirth/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/game-xrebirth/info.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nexus-Mods/vortex-games/HEAD/tsconfig.json --------------------------------------------------------------------------------