From a9b8cc5ba5d1f18bbc0675d3678ad37f87d53fcb Mon Sep 17 00:00:00 2001 From: Dusk <24+dusk@noreply.octowow.st> Date: Tue, 16 Jun 2026 12:32:55 +0000 Subject: [PATCH 1/4] Update server/src/addons-sources.ts --- server/src/addons-sources.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/server/src/addons-sources.ts b/server/src/addons-sources.ts index 9e4e897..6900a5a 100644 --- a/server/src/addons-sources.ts +++ b/server/src/addons-sources.ts @@ -14,7 +14,7 @@ export const defaultSources: AddonSource[] = [ ref: 'pre-rewrite-backup' }, { - git: 'https://github.com/shirsig/aux-addon-vanilla.git', + git: 'https://github.com/OldManAlpha/aux-addon.git', name: 'aux-addon', description: 'Auction House replacement with advanced filtering and search' }, @@ -25,7 +25,7 @@ export const defaultSources: AddonSource[] = [ git: 'https://github.com/DBFBlackbull/BitesCookBook.git', description: 'Tracks which items are used in cooking and what they create' }, - { git: 'https://github.com/bhhandley/CleveRoidMacros.git', branch: 'main' }, + { git: 'https://github.com/cutiepoka/CleveRoidMacros.git', branch: 'main' }, { git: 'https://github.com/Cinecom/ConsumesManager.git', branch: 'main', @@ -36,7 +36,7 @@ export const defaultSources: AddonSource[] = [ name: 'Cursive-Raid', description: 'Raid debuff tracker with profiles and multi-curse assist (SuperWoW)' }, - { git: 'https://github.com/Player-Doite/DoiteAuras.git', branch: 'main' }, + { git: 'https://github.com/pepopo978/DoiteAuras.git', branch: 'main' }, { git: 'https://github.com/Stormhand-dev/DragonflightUI-Reforged.git', branch: 'main' }, { git: 'https://github.com/Fiurs-Hearth/ExtraResourceBars.git', @@ -69,7 +69,7 @@ export const defaultSources: AddonSource[] = [ name: '_LazyPig', description: 'Auto-dismount, auto-accept, auto-roll, and chat spam filter. /lp to configure' }, - { git: 'https://github.com/Spartelfant/LevelRange-Turtle.git', branch: 'main' }, + { git: 'https://github.com/Dusk-92/LevelRange-Octo.git', branch: 'main' }, { git: 'https://github.com/tilare/MessageBox.git', branch: 'main' }, { git: 'https://github.com/tdymel/ModifiedPowerAuras.git', @@ -86,7 +86,7 @@ export const defaultSources: AddonSource[] = [ }, { git: 'https://github.com/tilare/MovementTracker.git', branch: 'main' }, { - git: 'https://github.com/pepopo978/NampowerSettings.git', + git: 'https://github.com/Emyrk/NampowerSettings.git', description: 'Settings panel for the Nampower spellqueue addon' }, { @@ -100,7 +100,7 @@ export const defaultSources: AddonSource[] = [ description: 'Raid management: roles, trade distribution, soft-reserve validation' }, { - git: 'https://github.com/CosminPOP/PallyPower.git', + git: 'https://github.com/ShikawaLePaladin/PallyPowerTW.git', description: 'Paladin buff and assignment manager for raids and parties' }, { @@ -108,9 +108,9 @@ export const defaultSources: AddonSource[] = [ branch: 'main', description: 'pfQuest extension showing all monster drops and quest chains. /pfex' }, - { git: 'https://github.com/shagu/pfQuest.git' }, - { git: 'https://github.com/shagu/pfQuest-turtle.git' }, - { git: 'https://github.com/shagu/pfUI.git' }, + { git: 'https://github.com/The-Kludge-Bureau/pfQuest.git' }, + { git: 'https://github.com/KameleonUK/pfQuest-turtle.git' }, + { git: 'https://github.com/brues-code/pfUI.git' }, { git: 'https://github.com/jrc13245/pfUI-addonskinner.git', branch: 'main', @@ -147,9 +147,9 @@ export const defaultSources: AddonSource[] = [ git: 'https://github.com/shagu/ShaguPlates.git', description: 'Nameplates with castbars and class colors. /splates' }, - { git: 'https://github.com/shagu/ShaguTweaks.git' }, + { git: 'https://github.com/paokkerkir/ShaguTweaks.git' }, { - git: 'https://github.com/shagu/ShaguTweaks-extras.git', + git: 'https://github.com/paokkerkir/ShaguTweaks-extras.git', description: 'Extras module for ShaguTweaks (additional UI tweaks)' }, { git: 'https://github.com/pepopo978/SimpleActionSets.git' }, -- 2.52.0 From 8d4e447ee7489b0cfa7e39185aaa16d7f02f82eb Mon Sep 17 00:00:00 2001 From: Dusk <24+dusk@noreply.octowow.st> Date: Tue, 16 Jun 2026 12:40:25 +0000 Subject: [PATCH 2/4] Update src/common/mods.ts --- src/common/mods.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common/mods.ts b/src/common/mods.ts index 940e8bc..944ac18 100644 --- a/src/common/mods.ts +++ b/src/common/mods.ts @@ -67,15 +67,15 @@ export const MODS: ModEntry[] = [ { id: 'nampower', name: 'nampower', - version: 'v4.6.0', + version: 'v4.6.2', description: 'A client modification that minimizes your input lag if you have higher latency.', - repoUrl: 'https://gitea.com/avitasia/nampower', + repoUrl: 'https://github.com/Emyrk/nampower', requires: ['vanillaFixes'], source: { kind: 'directFile', - url: 'https://gitea.com/avitasia/nampower/releases/download/v4.6.0/nampower.dll', - pinnedTag: 'v4.6.0', + url: 'https://github.com/Emyrk/nampower/releases/download/v4.6.2/nampower.dll', + pinnedTag: 'v4.6.2', assetName: 'nampower.dll' }, registerInDllsTxt: 'nampower.dll' -- 2.52.0 From a11062a575b45468f83c1963238c7e0a3ce4b963 Mon Sep 17 00:00:00 2001 From: Dusk <24+dusk@noreply.octowow.st> Date: Tue, 16 Jun 2026 12:56:36 +0000 Subject: [PATCH 3/4] Update server/src/addons-sources.ts --- server/src/addons-sources.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/src/addons-sources.ts b/server/src/addons-sources.ts index 6900a5a..55155b1 100644 --- a/server/src/addons-sources.ts +++ b/server/src/addons-sources.ts @@ -65,14 +65,14 @@ export const defaultSources: AddonSource[] = [ description: 'Item set manager with quick-swap menus for inventory' }, { - git: 'https://github.com/CosminPOP/_LazyPig.git', + git: 'https://github.com/Otari98/_LazyPig.git', name: '_LazyPig', description: 'Auto-dismount, auto-accept, auto-roll, and chat spam filter. /lp to configure' }, { git: 'https://github.com/Dusk-92/LevelRange-Octo.git', branch: 'main' }, { git: 'https://github.com/tilare/MessageBox.git', branch: 'main' }, { - git: 'https://github.com/tdymel/ModifiedPowerAuras.git', + git: 'https://github.com/MarcelineVQ/ModifiedPowerAuras.git', description: "Advanced version of Sinesther's Power Auras" }, { @@ -134,7 +134,7 @@ export const defaultSources: AddonSource[] = [ }, { git: 'https://github.com/SabineWren/Quiver.git', branch: 'main' }, { - git: 'https://github.com/hazlema/Rested.git', + git: 'https://github.com/thezephyrsong/Rested.git', description: 'Progress bar showing your rested XP while resting' }, { git: 'https://github.com/Otari98/Rinse.git' }, -- 2.52.0 From 298e34bc04bdf60f043ac67d97bf7e088e7c2e40 Mon Sep 17 00:00:00 2001 From: Dusk <24+dusk@noreply.octowow.st> Date: Wed, 17 Jun 2026 17:23:30 +0000 Subject: [PATCH 4/4] Update server/src/addons-sources.ts --- server/src/addons-sources.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/addons-sources.ts b/server/src/addons-sources.ts index 55155b1..618c27e 100644 --- a/server/src/addons-sources.ts +++ b/server/src/addons-sources.ts @@ -108,9 +108,9 @@ export const defaultSources: AddonSource[] = [ branch: 'main', description: 'pfQuest extension showing all monster drops and quest chains. /pfex' }, - { git: 'https://github.com/The-Kludge-Bureau/pfQuest.git' }, + { git: 'https://github.com/shagu/pfQuest.git' }, { git: 'https://github.com/KameleonUK/pfQuest-turtle.git' }, - { git: 'https://github.com/brues-code/pfUI.git' }, + { git: 'https://github.com/shagu/pfUI.git' }, { git: 'https://github.com/jrc13245/pfUI-addonskinner.git', branch: 'main', -- 2.52.0