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
This commit is contained in:
GaboGG 2026-07-27 15:05:52 -04:00
parent d60233d205
commit 6167df57b4
5 changed files with 18 additions and 6 deletions

View file

@ -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(),
};
// ═══════════════════════════════════════════════════════════════════════

View file

@ -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(),
};
// ═══════════════════════════════════════════════════════════════════════

View file

@ -2,7 +2,7 @@
// CONFIG — default settings
// ═══════════════════════════════════════════════════════════════════════
const VERSION = '0.14.7';
const VERSION = '0.14.8';
const CFG = {
// — Battle automation

View file

@ -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/*

View file

@ -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(),
};