From 6167df57b48862823a21c33e3cae14f16f24713d Mon Sep 17 00:00:00 2001 From: GaboGG Date: Mon, 27 Jul 2026 15:05:52 -0400 Subject: [PATCH] v0.14.8 - Expose gear API via HV.gear() / HV.gearSummary() - Added to window.HV public API: gear(), gearSummary(), scrapeGear() - Now accessible from console as HV.gear(), HV.gearSummary() - Also keep getGearDB() and logGearSummary() directly available --- scripts/hv-unified.user.js | 8 ++++++-- scripts/latest.user.js | 8 ++++++-- src/config.js | 2 +- src/header.user.js | 2 +- src/public-api.js | 4 ++++ 5 files changed, 18 insertions(+), 6 deletions(-) diff --git a/scripts/hv-unified.user.js b/scripts/hv-unified.user.js index 12938ea..bb2adc3 100644 --- a/scripts/hv-unified.user.js +++ b/scripts/hv-unified.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name HV Unified // @namespace hvunified -// @version 0.14.7 +// @version 0.14.8 // @description HV Unified — battle automation, guidance, and UI enhancements for HentaiVerse // @author GaboGG + Hermes // @match *://*.hentaiverse.org/* @@ -17,7 +17,7 @@ // CONFIG — default settings // ═══════════════════════════════════════════════════════════════════════ -const VERSION = '0.14.7'; +const VERSION = '0.14.8'; const CFG = { // — Battle automation @@ -3815,6 +3815,10 @@ window.HV = { log: () => getBattleLog(), summary: () => getBattleSummary(), saveLog: () => {}, // Auto-saves in real-time now + // Gear database + gear: () => getGearDB(), + gearSummary: () => logGearSummary(), + scrapeGear: () => autoScrapeGear(), }; // ═══════════════════════════════════════════════════════════════════════ diff --git a/scripts/latest.user.js b/scripts/latest.user.js index 12938ea..bb2adc3 100644 --- a/scripts/latest.user.js +++ b/scripts/latest.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name HV Unified // @namespace hvunified -// @version 0.14.7 +// @version 0.14.8 // @description HV Unified — battle automation, guidance, and UI enhancements for HentaiVerse // @author GaboGG + Hermes // @match *://*.hentaiverse.org/* @@ -17,7 +17,7 @@ // CONFIG — default settings // ═══════════════════════════════════════════════════════════════════════ -const VERSION = '0.14.7'; +const VERSION = '0.14.8'; const CFG = { // — Battle automation @@ -3815,6 +3815,10 @@ window.HV = { log: () => getBattleLog(), summary: () => getBattleSummary(), saveLog: () => {}, // Auto-saves in real-time now + // Gear database + gear: () => getGearDB(), + gearSummary: () => logGearSummary(), + scrapeGear: () => autoScrapeGear(), }; // ═══════════════════════════════════════════════════════════════════════ diff --git a/src/config.js b/src/config.js index 695f1f1..3ad84d7 100644 --- a/src/config.js +++ b/src/config.js @@ -2,7 +2,7 @@ // CONFIG — default settings // ═══════════════════════════════════════════════════════════════════════ -const VERSION = '0.14.7'; +const VERSION = '0.14.8'; const CFG = { // — Battle automation diff --git a/src/header.user.js b/src/header.user.js index 9f97c95..d3b60bf 100644 --- a/src/header.user.js +++ b/src/header.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name HV Unified // @namespace hvunified -// @version 0.14.7 +// @version 0.14.8 // @description HV Unified — battle automation, guidance, and UI enhancements for HentaiVerse // @author GaboGG + Hermes // @match *://*.hentaiverse.org/* diff --git a/src/public-api.js b/src/public-api.js index 543e89a..864f351 100644 --- a/src/public-api.js +++ b/src/public-api.js @@ -20,4 +20,8 @@ window.HV = { log: () => getBattleLog(), summary: () => getBattleSummary(), saveLog: () => {}, // Auto-saves in real-time now + // Gear database + gear: () => getGearDB(), + gearSummary: () => logGearSummary(), + scrapeGear: () => autoScrapeGear(), };