This commit is contained in:
TheGiddyLimit
2024-01-03 17:51:53 +00:00
parent 8117ebddc5
commit 0a4253c9f0
19 changed files with 141 additions and 34 deletions

View File

@@ -169,7 +169,7 @@ class NavBar {
this._addElement_button(
NavBar._CAT_CACHE,
{
html: "Preload Adventure Text <small>(25MB+)</small>",
html: "Preload Adventure Text <small>(50MB+)</small>",
click: (evt) => NavBar.InteractionManager._pOnClick_button_preloadOffline(evt, /data\/adventure/),
title: "Preload adventure text for offline use.",
},

View File

@@ -11919,7 +11919,7 @@ Renderer.hover = {
_getShowWindow_doZIndexToFront ({$hov, hoverWindow, hoverId}) {
const nxtZIndex = Renderer.hover._getNextZIndex(hoverId);
Renderer.hover._getNextZIndex({$hov, hoverWindow}, nxtZIndex);
Renderer.hover._getShowWindow_setZIndex({$hov, hoverWindow}, nxtZIndex);
},
/**

View File

@@ -228,6 +228,11 @@ class SearchPage {
{
onObserve: () => {
const page = UrlUtil.categoryToHoverPage(category);
if (!page) {
$dispImage.addClass(`mobile__hidden`);
return;
}
DataLoader.pCacheAndGet(
page,
source,

View File

@@ -2,7 +2,7 @@
// in deployment, `IS_DEPLOYED = "<version number>";` should be set below.
globalThis.IS_DEPLOYED = undefined;
globalThis.VERSION_NUMBER = /* 5ETOOLS_VERSION__OPEN */"1.197.1"/* 5ETOOLS_VERSION__CLOSE */;
globalThis.VERSION_NUMBER = /* 5ETOOLS_VERSION__OPEN */"1.197.2"/* 5ETOOLS_VERSION__CLOSE */;
globalThis.DEPLOYED_IMG_ROOT = undefined;
// for the roll20 script to set
globalThis.IS_VTT = false;