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:
parent
d60233d205
commit
6167df57b4
5 changed files with 18 additions and 6 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name HV Unified
|
// @name HV Unified
|
||||||
// @namespace hvunified
|
// @namespace hvunified
|
||||||
// @version 0.14.7
|
// @version 0.14.8
|
||||||
// @description HV Unified — battle automation, guidance, and UI enhancements for HentaiVerse
|
// @description HV Unified — battle automation, guidance, and UI enhancements for HentaiVerse
|
||||||
// @author GaboGG + Hermes
|
// @author GaboGG + Hermes
|
||||||
// @match *://*.hentaiverse.org/*
|
// @match *://*.hentaiverse.org/*
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
// CONFIG — default settings
|
// CONFIG — default settings
|
||||||
// ═══════════════════════════════════════════════════════════════════════
|
// ═══════════════════════════════════════════════════════════════════════
|
||||||
|
|
||||||
const VERSION = '0.14.7';
|
const VERSION = '0.14.8';
|
||||||
|
|
||||||
const CFG = {
|
const CFG = {
|
||||||
// — Battle automation
|
// — Battle automation
|
||||||
|
|
@ -3815,6 +3815,10 @@ window.HV = {
|
||||||
log: () => getBattleLog(),
|
log: () => getBattleLog(),
|
||||||
summary: () => getBattleSummary(),
|
summary: () => getBattleSummary(),
|
||||||
saveLog: () => {}, // Auto-saves in real-time now
|
saveLog: () => {}, // Auto-saves in real-time now
|
||||||
|
// Gear database
|
||||||
|
gear: () => getGearDB(),
|
||||||
|
gearSummary: () => logGearSummary(),
|
||||||
|
scrapeGear: () => autoScrapeGear(),
|
||||||
};
|
};
|
||||||
|
|
||||||
// ═══════════════════════════════════════════════════════════════════════
|
// ═══════════════════════════════════════════════════════════════════════
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name HV Unified
|
// @name HV Unified
|
||||||
// @namespace hvunified
|
// @namespace hvunified
|
||||||
// @version 0.14.7
|
// @version 0.14.8
|
||||||
// @description HV Unified — battle automation, guidance, and UI enhancements for HentaiVerse
|
// @description HV Unified — battle automation, guidance, and UI enhancements for HentaiVerse
|
||||||
// @author GaboGG + Hermes
|
// @author GaboGG + Hermes
|
||||||
// @match *://*.hentaiverse.org/*
|
// @match *://*.hentaiverse.org/*
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
// CONFIG — default settings
|
// CONFIG — default settings
|
||||||
// ═══════════════════════════════════════════════════════════════════════
|
// ═══════════════════════════════════════════════════════════════════════
|
||||||
|
|
||||||
const VERSION = '0.14.7';
|
const VERSION = '0.14.8';
|
||||||
|
|
||||||
const CFG = {
|
const CFG = {
|
||||||
// — Battle automation
|
// — Battle automation
|
||||||
|
|
@ -3815,6 +3815,10 @@ window.HV = {
|
||||||
log: () => getBattleLog(),
|
log: () => getBattleLog(),
|
||||||
summary: () => getBattleSummary(),
|
summary: () => getBattleSummary(),
|
||||||
saveLog: () => {}, // Auto-saves in real-time now
|
saveLog: () => {}, // Auto-saves in real-time now
|
||||||
|
// Gear database
|
||||||
|
gear: () => getGearDB(),
|
||||||
|
gearSummary: () => logGearSummary(),
|
||||||
|
scrapeGear: () => autoScrapeGear(),
|
||||||
};
|
};
|
||||||
|
|
||||||
// ═══════════════════════════════════════════════════════════════════════
|
// ═══════════════════════════════════════════════════════════════════════
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
// CONFIG — default settings
|
// CONFIG — default settings
|
||||||
// ═══════════════════════════════════════════════════════════════════════
|
// ═══════════════════════════════════════════════════════════════════════
|
||||||
|
|
||||||
const VERSION = '0.14.7';
|
const VERSION = '0.14.8';
|
||||||
|
|
||||||
const CFG = {
|
const CFG = {
|
||||||
// — Battle automation
|
// — Battle automation
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name HV Unified
|
// @name HV Unified
|
||||||
// @namespace hvunified
|
// @namespace hvunified
|
||||||
// @version 0.14.7
|
// @version 0.14.8
|
||||||
// @description HV Unified — battle automation, guidance, and UI enhancements for HentaiVerse
|
// @description HV Unified — battle automation, guidance, and UI enhancements for HentaiVerse
|
||||||
// @author GaboGG + Hermes
|
// @author GaboGG + Hermes
|
||||||
// @match *://*.hentaiverse.org/*
|
// @match *://*.hentaiverse.org/*
|
||||||
|
|
|
||||||
|
|
@ -20,4 +20,8 @@ window.HV = {
|
||||||
log: () => getBattleLog(),
|
log: () => getBattleLog(),
|
||||||
summary: () => getBattleSummary(),
|
summary: () => getBattleSummary(),
|
||||||
saveLog: () => {}, // Auto-saves in real-time now
|
saveLog: () => {}, // Auto-saves in real-time now
|
||||||
|
// Gear database
|
||||||
|
gear: () => getGearDB(),
|
||||||
|
gearSummary: () => logGearSummary(),
|
||||||
|
scrapeGear: () => autoScrapeGear(),
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue