From 6c3d4a312059b61849d1532be02591db0d9326ff Mon Sep 17 00:00:00 2001
From: Arkerthan <arkerthan@gmail.com>
Date: Mon, 18 May 2020 12:27:27 +0200
Subject: [PATCH] add showing differnt names than actual passage title
 framework

---
 src/gui/quicklinks.js | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/src/gui/quicklinks.js b/src/gui/quicklinks.js
index d70fe43c525..bf25ccf4024 100644
--- a/src/gui/quicklinks.js
+++ b/src/gui/quicklinks.js
@@ -47,6 +47,11 @@ App.UI.quickMenu = (function() {
 		"Cellblock": () => !V.cellblock
 	});
 
+	// show different names than the actual passage name
+	const uiNames = cleanPassageMapping({
+		"BG Select": "Armory",
+	});
+
 	// setup hotkeys list, upper/lower case is important!
 	const hotkeys = cleanPassageMapping({
 		Main: "m",
@@ -185,18 +190,18 @@ App.UI.quickMenu = (function() {
 		}
 		// we are already on this passage
 		if (State.passage === passage) {
-			div.append(passage);
+			div.append(uiName(passage));
 			currentPassageDOM = div;
 			return;
 		}
 		// That is not a passage we can safely jump to, it's a deco element
 		if (hidden || !jumpTo.includes(passage)) {
-			div.append(passage);
+			div.append(uiName(passage));
 			return;
 		}
 		// Create link
 		const a = document.createElement("a");
-		a.append(passage);
+		a.append(uiName(passage));
 		a.onclick = () => {
 			Engine.play(passage);
 		};
@@ -206,6 +211,13 @@ App.UI.quickMenu = (function() {
 		}
 	}
 
+	function uiName(passage) {
+		if (uiNames[passage]) {
+			return uiNames[passage];
+		}
+		return passage;
+	}
+
 	function addOtherCategory(layout) {
 		const passages = jumpTo.slice();
 		filterPassages(passages, layout);
-- 
GitLab