diff --git a/bbcode/parser.ts b/bbcode/parser.ts index 7983ec3..c5e026b 100644 --- a/bbcode/parser.ts +++ b/bbcode/parser.ts @@ -127,7 +127,10 @@ export class BBCodeParser { isAllowed = (name) => self.isAllowed(name) && parentAllowed(name); currentTag = this._currentTag = {tag: self.tag, line: this._line, column: this._column}; } - let tagStart = -1, paramStart = -1, mark = start; + let tagStart = -1, + paramStart = -1, + mark = start, + isInCollapseParam = false; for(let i = start; i < input.length; ++i) { const c = input[i]; ++this._column; @@ -135,12 +138,22 @@ export class BBCodeParser { ++this._line; this._column = 1; } - if(c === '[') { + if(c === '[' && !isInCollapseParam) { tagStart = i; paramStart = -1; - } else if(c === '=' && paramStart === -1) - paramStart = i; + } else if(c === '=' && paramStart === -1) { + paramStart = i; + + const paramIndex = paramStart === -1 ? i : paramStart; + let tagKey = input + .substring(tagStart + 1, paramIndex) + .trim() + .toLowerCase(); + + if (tagKey == "collapse") isInCollapseParam = true; + } else if(c === ']') { + const paramIndex = paramStart === -1 ? i : paramStart; let tagKey = input.substring(tagStart + 1, paramIndex).trim().toLowerCase(); if(tagKey.length === 0) { @@ -154,6 +167,17 @@ export class BBCodeParser { tagStart = -1; continue; } + if (isInCollapseParam) { + let fullTagKey = input + .substring(tagStart + 1, i + 1) + .trim() + .toLowerCase(); + if (fullTagKey.endsWith("[hr]")) { + continue; + } + } + + isInCollapseParam = false; if(!close) { const tag = this._tags[tagKey]!; const allowed = isAllowed(tagKey); diff --git a/bbcode/standard.ts b/bbcode/standard.ts index 80f851b..b32e4df 100644 --- a/bbcode/standard.ts +++ b/bbcode/standard.ts @@ -72,8 +72,15 @@ export class StandardBBCodeParser extends CoreBBCodeParser { const icon = parser.createElement('i'); icon.className = 'fas fa-chevron-down'; icon.style.marginRight = '10px'; - headerText.appendChild(icon); - headerText.appendChild(document.createTextNode(param)); + // HACK: to allow [hr] in header part + if (param.startsWith('[hr]')) { headerText.appendChild(parser.createElement('hr')); param = param.slice(4) } + headerText.appendChild(icon); + const splitParam = param.split('[hr]') + for (let iii = 0; iii < splitParam.length; iii++) { + const element = splitParam[iii]; + headerText.appendChild(document.createTextNode(element)); + if (iii < splitParam.length-1) headerText.appendChild(parser.createElement('hr')) + } outer.appendChild(headerText); const body = parser.createElement('div'); body.className = 'bbcode-collapse-body'; diff --git a/chat/localize.ts b/chat/localize.ts index baa905e..ea8fb63 100644 --- a/chat/localize.ts +++ b/chat/localize.ts @@ -197,6 +197,7 @@ Current log location: {1}`, 'settings.browserOptionArgumentsHelp': 'Arguments are separated by spaces. Use %s to insert the URL.', 'settings.browserOptionBrowse': 'Browse', 'settings.browserOptionSave': 'Save', + 'settings.browserOptionReset': 'Reset to default', 'fixLogs.action': 'Fix corrupted logs', 'fixLogs.text': `There are a few reason log files can become corrupted - log files from old versions with bugs that have since been fixed or incomplete file operations caused by computer crashes are the most common. If one of your log files is corrupted, you may get an "Unknown Type" error when you log in or when you open a specific tab. You may also experience other issues. diff --git a/electron/BrowserOption.vue b/electron/BrowserOption.vue index eae71f1..5913c2b 100644 --- a/electron/BrowserOption.vue +++ b/electron/BrowserOption.vue @@ -16,6 +16,21 @@
Mac User: As of writing, MacOS has a bug in how it handles opening links.
+When your default browser is something other than Safari and you select Safari in this settings window, links might be opened twice.
+Once in Safari and a second time in your default browser. This tends to happen when Safari is not running when clicking a link.