Merge branch 'master' of github.com-greyhoof:greyhoof/fchat-rising into browser-option
This commit is contained in:
commit
e6981f03ee
|
@ -1,5 +1,12 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.25.0
|
||||||
|
* Added option for switching browsers (Credit: [@greyhoof](https://github.com/greyhoof))
|
||||||
|
* Fixed broken adblocker
|
||||||
|
* Fixed incorrect BBCode rendering of `[collapse=[hr]test[hr]]` (Credit: [@Abeehiltz](https://github.com/Abeehiltz))
|
||||||
|
* Fixed TikTok previews
|
||||||
|
* Switched `node-sass` to `sass` for ARM64 compatibility (Credit: [@WhiteHusky](https://github.com/WhiteHusky))
|
||||||
|
|
||||||
## 1.24.2
|
## 1.24.2
|
||||||
* Hotfix to address connectivity issues
|
* Hotfix to address connectivity issues
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,14 @@
|
||||||
# Contributors
|
# Contributors
|
||||||
|
|
||||||
|
> Want to contribute? Please [continue here](https://github.com/hearmeneigh/fchat-rising/wiki/Contributions).
|
||||||
|
|
||||||
This project contains contributions from:
|
This project contains contributions from:
|
||||||
|
|
||||||
* [Mr Stallion, esq.](https://github.com/hearmeneigh)
|
* [Mr Stallion, esq.](https://github.com/hearmeneigh)
|
||||||
* [twilight-sparkle-irl](https://github.com/twilight-sparkle-irl)
|
* [twilight-sparkle-irl](https://github.com/twilight-sparkle-irl)
|
||||||
* [ButterCheezii](https://github.com/ButterCheezii)
|
* [ButterCheezii](https://github.com/ButterCheezii)
|
||||||
* [FatCatClient](https://github.com/FatCatClient)
|
* [FatCatClient](https://github.com/FatCatClient)
|
||||||
|
* [WhiteHusky](https://github.com/WhiteHusky)
|
||||||
|
* [Abeehiltz](https://github.com/Abeehiltz)
|
||||||
|
* [greyhoof](https://github.com/greyhoof)
|
||||||
* [F-List Team](https://github.com/f-list) (original F-Chat 3.0 client)
|
* [F-List Team](https://github.com/f-list) (original F-Chat 3.0 client)
|
||||||
|
|
|
@ -127,7 +127,10 @@ export class BBCodeParser {
|
||||||
isAllowed = (name) => self.isAllowed(name) && parentAllowed(name);
|
isAllowed = (name) => self.isAllowed(name) && parentAllowed(name);
|
||||||
currentTag = this._currentTag = {tag: self.tag, line: this._line, column: this._column};
|
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) {
|
for(let i = start; i < input.length; ++i) {
|
||||||
const c = input[i];
|
const c = input[i];
|
||||||
++this._column;
|
++this._column;
|
||||||
|
@ -135,12 +138,22 @@ export class BBCodeParser {
|
||||||
++this._line;
|
++this._line;
|
||||||
this._column = 1;
|
this._column = 1;
|
||||||
}
|
}
|
||||||
if(c === '[') {
|
if(c === '[' && !isInCollapseParam) {
|
||||||
tagStart = i;
|
tagStart = i;
|
||||||
paramStart = -1;
|
paramStart = -1;
|
||||||
} else if(c === '=' && paramStart === -1)
|
} else if(c === '=' && paramStart === -1) {
|
||||||
paramStart = i;
|
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 === ']') {
|
else if(c === ']') {
|
||||||
|
|
||||||
const paramIndex = paramStart === -1 ? i : paramStart;
|
const paramIndex = paramStart === -1 ? i : paramStart;
|
||||||
let tagKey = input.substring(tagStart + 1, paramIndex).trim().toLowerCase();
|
let tagKey = input.substring(tagStart + 1, paramIndex).trim().toLowerCase();
|
||||||
if(tagKey.length === 0) {
|
if(tagKey.length === 0) {
|
||||||
|
@ -154,6 +167,17 @@ export class BBCodeParser {
|
||||||
tagStart = -1;
|
tagStart = -1;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (isInCollapseParam) {
|
||||||
|
let fullTagKey = input
|
||||||
|
.substring(tagStart + 1, i + 1)
|
||||||
|
.trim()
|
||||||
|
.toLowerCase();
|
||||||
|
if (fullTagKey.endsWith("[hr]")) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
isInCollapseParam = false;
|
||||||
if(!close) {
|
if(!close) {
|
||||||
const tag = this._tags[tagKey]!;
|
const tag = this._tags[tagKey]!;
|
||||||
const allowed = isAllowed(tagKey);
|
const allowed = isAllowed(tagKey);
|
||||||
|
|
|
@ -72,8 +72,15 @@ export class StandardBBCodeParser extends CoreBBCodeParser {
|
||||||
const icon = parser.createElement('i');
|
const icon = parser.createElement('i');
|
||||||
icon.className = 'fas fa-chevron-down';
|
icon.className = 'fas fa-chevron-down';
|
||||||
icon.style.marginRight = '10px';
|
icon.style.marginRight = '10px';
|
||||||
|
// HACK: to allow [hr] in header part
|
||||||
|
if (param.startsWith('[hr]')) { headerText.appendChild(parser.createElement('hr')); param = param.slice(4) }
|
||||||
headerText.appendChild(icon);
|
headerText.appendChild(icon);
|
||||||
headerText.appendChild(document.createTextNode(param));
|
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);
|
outer.appendChild(headerText);
|
||||||
const body = parser.createElement('div');
|
const body = parser.createElement('div');
|
||||||
body.className = 'bbcode-collapse-body';
|
body.className = 'bbcode-collapse-body';
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
<div style="height:100%; display: flex; position: relative;" id="chatView" @click="userMenuHandle" @contextmenu="userMenuHandle" @touchstart.passive="userMenuHandle"
|
<div style="height:100%; display: flex; position: relative;" id="chatView" @click="userMenuHandle" @contextmenu="userMenuHandle" @touchstart.passive="userMenuHandle"
|
||||||
@touchend="userMenuHandle">
|
@touchend="userMenuHandle">
|
||||||
<sidebar id="sidebar" :label="l('chat.menu')" icon="fa-bars">
|
<sidebar id="sidebar" :label="l('chat.menu')" icon="fa-bars">
|
||||||
<img :src="characterImage(ownCharacter.name)" v-if="showAvatars" style="float:left;margin-right:5px;width:60px"/>
|
<img :src="characterImage(ownCharacter.name)" v-if="showAvatars" style="float:left;margin-right:5px;margin-top:5px;width:70px"/>
|
||||||
<a target="_blank" :href="ownCharacterLink" class="btn" style="margin-right:5px">{{ownCharacter.name}}</a>
|
<a target="_blank" :href="ownCharacterLink" class="btn" style="display:block">{{ownCharacter.name}}</a>
|
||||||
<a href="#" @click.prevent="logOut()" class="btn"><i class="fas fa-sign-out-alt"></i>{{l('chat.logout')}}</a><br/>
|
<a href="#" @click.prevent="logOut()" class="btn"><i class="fas fa-sign-out-alt"></i>{{l('chat.logout')}}</a><br/>
|
||||||
<div>
|
<div>
|
||||||
{{l('chat.status')}}
|
{{l('chat.status')}}
|
||||||
|
|
|
@ -90,7 +90,7 @@ export class AdManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
private determineNextAdDelayMs(chanConv: Conversation.ChannelConversation): number {
|
private determineNextAdDelayMs(chanConv: Conversation.ChannelConversation): number {
|
||||||
const match = chanConv.channel.description.toLowerCase().match(/\[\s*ads:\s*([0-9.]+)\s*(m|min|minutes?|h|hr|hours?|s|secs?|seconds?)\s*]/);
|
const match = chanConv.channel.description.toLowerCase().match(/\[\s*ads:\s*([0-9.]+)\s*(m|mins?|minutes?|h|hrs?|hours?|s|secs?|seconds?)\.?\s*]/);
|
||||||
|
|
||||||
if (!match) {
|
if (!match) {
|
||||||
return AdManager.POST_DELAY;
|
return AdManager.POST_DELAY;
|
||||||
|
@ -105,7 +105,7 @@ export class AdManager {
|
||||||
mul = 60 * 1000; // minutes
|
mul = 60 * 1000; // minutes
|
||||||
}
|
}
|
||||||
|
|
||||||
return Math.max((n * mul) - (Date.now() - chanConv.nextAd), AdManager.POST_DELAY);
|
return Math.max((n * mul) - Math.max(Date.now() - chanConv.nextAd, 0), AdManager.POST_DELAY);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async sendNextPost(): Promise<void> {
|
private async sendNextPost(): Promise<void> {
|
||||||
|
|
|
@ -189,7 +189,7 @@ Current log location: {1}`,
|
||||||
'settings.beta': 'Opt-in to test unstable prerelease updates',
|
'settings.beta': 'Opt-in to test unstable prerelease updates',
|
||||||
'settings.hwAcceleration': 'Enable hardware acceleration (requires restart)',
|
'settings.hwAcceleration': 'Enable hardware acceleration (requires restart)',
|
||||||
'settings.bbCodeBar': 'Show BBCode formatting bar',
|
'settings.bbCodeBar': 'Show BBCode formatting bar',
|
||||||
'settings.browserOption': 'Set command for opening clicked links',
|
'settings.browserOption': 'Set default browser',
|
||||||
'settings.browserOptionHeader': 'Browser Settings',
|
'settings.browserOptionHeader': 'Browser Settings',
|
||||||
'settings.browserOptionTitle': 'Browser Path',
|
'settings.browserOptionTitle': 'Browser Path',
|
||||||
'settings.browserOptionPath': 'Path to browser executable',
|
'settings.browserOptionPath': 'Path to browser executable',
|
||||||
|
|
|
@ -560,6 +560,8 @@
|
||||||
|
|
||||||
|
|
||||||
async executeJavaScript(js: string | undefined, context: string = 'unknown', logDetails?: any): Promise<any> {
|
async executeJavaScript(js: string | undefined, context: string = 'unknown', logDetails?: any): Promise<any> {
|
||||||
|
console.log('EXECUTE JS', js);
|
||||||
|
|
||||||
if (!this.runJs) return;
|
if (!this.runJs) return;
|
||||||
|
|
||||||
const webview = this.getWebview();
|
const webview = this.getWebview();
|
||||||
|
|
|
@ -80,7 +80,7 @@ class FListImagePreviewDomMutator {
|
||||||
|
|
||||||
const img = selected.filter(el => (el !== body)).shift();
|
const img = selected.filter(el => (el !== body)).shift();
|
||||||
|
|
||||||
this.debug('detectImage.found', !!img, img);
|
this.debug('detectImage.found', !!img, img, body);
|
||||||
|
|
||||||
return img;
|
return img;
|
||||||
}
|
}
|
||||||
|
|
|
@ -110,10 +110,11 @@ export class ExternalImagePreviewHelper extends ImagePreviewHelper {
|
||||||
this.ratio = null;
|
this.ratio = null;
|
||||||
|
|
||||||
webview.stop();
|
webview.stop();
|
||||||
|
webview.setAudioMuted(true);
|
||||||
|
|
||||||
// Broken promise chain on purpose
|
// Broken promise chain on purpose
|
||||||
// tslint:disable-next-line:no-floating-promises
|
// tslint:disable-next-line:no-floating-promises
|
||||||
this.urlMutator.resolve(url)
|
void this.urlMutator.resolve(url)
|
||||||
.then(
|
.then(
|
||||||
async(finalUrl: string) => {
|
async(finalUrl: string) => {
|
||||||
if (this.debug)
|
if (this.debug)
|
||||||
|
@ -121,7 +122,9 @@ export class ExternalImagePreviewHelper extends ImagePreviewHelper {
|
||||||
|
|
||||||
webview.stop();
|
webview.stop();
|
||||||
|
|
||||||
return webview.loadURL(finalUrl);
|
await webview.loadURL(finalUrl);
|
||||||
|
|
||||||
|
webview.setAudioMuted(true);
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
.catch(
|
.catch(
|
||||||
|
|
|
@ -181,6 +181,11 @@ export class ImageDomMutator {
|
||||||
this.getBaseJsMutatorScript([/*'#__flistCore', '#player', */ '#photoImageSection img', 'video', 'img', '#player'], false)
|
this.getBaseJsMutatorScript([/*'#__flistCore', '#player', */ '#photoImageSection img', 'video', 'img', '#player'], false)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
this.add(
|
||||||
|
'tiktokstalk.com',
|
||||||
|
this.getBaseJsMutatorScript(['video'], false, [], true, true)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
this.add(
|
this.add(
|
||||||
'gifmixxx.com',
|
'gifmixxx.com',
|
||||||
|
|
|
@ -33,6 +33,23 @@ export class ImageUrlMutator {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected init(): void {
|
protected init(): void {
|
||||||
|
this.add(
|
||||||
|
/^https?:\/\/(www\.)?tiktok\.com\//,
|
||||||
|
async(url: string, _match: RegExpMatchArray): Promise<string> => {
|
||||||
|
const result = await Axios.get(
|
||||||
|
`https://www.tiktok.com/oembed?url=${encodeURIComponent(url)}`,
|
||||||
|
{
|
||||||
|
responseType: 'json'
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
const userId = result.data.author_unique_id;
|
||||||
|
const videoId = result.data.embed_product_id;
|
||||||
|
|
||||||
|
return `https://www.tiktokstalk.com/user/${userId}/${videoId}/`;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
this.add(
|
this.add(
|
||||||
/^http(?:s?):\/\/(?:www\.)?youtu(?:be\.com\/watch\?v=|\.be\/)([\w\-\_]*)(&(amp;)?[\w\?=]*)?/,
|
/^http(?:s?):\/\/(?:www\.)?youtu(?:be\.com\/watch\?v=|\.be\/)([\w\-\_]*)(&(amp;)?[\w\?=]*)?/,
|
||||||
async(_url: string, match: RegExpMatchArray): Promise<string> => {
|
async(_url: string, match: RegExpMatchArray): Promise<string> => {
|
||||||
|
@ -40,6 +57,7 @@ export class ImageUrlMutator {
|
||||||
return `https://yewtu.be/embed/${videoId}?autoplay=1`
|
return `https://yewtu.be/embed/${videoId}?autoplay=1`
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
this.add(
|
this.add(
|
||||||
/^https?:\/\/.*twitter.com\/(.*)/,
|
/^https?:\/\/.*twitter.com\/(.*)/,
|
||||||
async(url: string, match: RegExpMatchArray): Promise<string> => {
|
async(url: string, match: RegExpMatchArray): Promise<string> => {
|
||||||
|
|
|
@ -51,7 +51,7 @@ changelog: https://github.com/hearmeneigh/fchat-rising/blob/master/CHANGELOG.md
|
||||||
installurl: https://github.com/hearmeneigh/fchat-rising/wiki
|
installurl: https://github.com/hearmeneigh/fchat-rising/wiki
|
||||||
|
|
||||||
download:
|
download:
|
||||||
version: 1.24.2
|
version: 1.25.0
|
||||||
|
|
||||||
url: https://github.com/hearmeneigh/fchat-rising/releases/latest/download/F-Chat-Rising-%PLATFORM_TAIL%
|
url: https://github.com/hearmeneigh/fchat-rising/releases/latest/download/F-Chat-Rising-%PLATFORM_TAIL%
|
||||||
|
|
||||||
|
|
|
@ -57,13 +57,13 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group col-12">
|
<div class="form-group col-12">
|
||||||
<div class="row no-gutters">
|
<div class="row no-gutters">
|
||||||
<div class="col-2">
|
|
||||||
<button class="btn btn-primary" @click.prevent.stop="submit()">{{l('settings.browserOptionSave')}}</button>
|
|
||||||
</div>
|
|
||||||
<div class="col"></div>
|
|
||||||
<div class="col-4">
|
<div class="col-4">
|
||||||
<button class="btn btn-danger" style="float: right;" @click.prevent.stop="resetToDefault()">{{l('settings.browserOptionReset')}}</button>
|
<button class="btn btn-danger" style="float: right;" @click.prevent.stop="resetToDefault()">{{l('settings.browserOptionReset')}}</button>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col"></div>
|
||||||
|
<div class="col-2">
|
||||||
|
<button class="btn btn-primary" @click.prevent.stop="submit()">{{l('settings.browserOptionSave')}}</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -10,7 +10,7 @@ export class BlockerIntegration {
|
||||||
protected static readonly adBlockerLists = [
|
protected static readonly adBlockerLists = [
|
||||||
'https://easylist.to/easylist/easylist.txt',
|
'https://easylist.to/easylist/easylist.txt',
|
||||||
'https://easylist.to/easylist/easyprivacy.txt', // EasyPrivacy
|
'https://easylist.to/easylist/easyprivacy.txt', // EasyPrivacy
|
||||||
'https://easylist-downloads.adblockplus.org/easylist-cookie.txt', // Easy Cookies
|
'https://secure.fanboy.co.nz/fanboy-cookiemonster.txt', // Easy Cookies
|
||||||
'https://easylist.to/easylist/fanboy-social.txt', // Fanboy Social
|
'https://easylist.to/easylist/fanboy-social.txt', // Fanboy Social
|
||||||
'https://easylist.to/easylist/fanboy-annoyance.txt', // Fanboy Annoyances
|
'https://easylist.to/easylist/fanboy-annoyance.txt', // Fanboy Annoyances
|
||||||
'https://filters.adtidy.org/extension/chromium/filters/2.txt', // AdGuard Base
|
'https://filters.adtidy.org/extension/chromium/filters/2.txt', // AdGuard Base
|
||||||
|
|
|
@ -303,6 +303,11 @@ export class SettingsStore implements Settings.Store {
|
||||||
async get<K extends keyof Settings.Keys>(key: K, character?: string): Promise<Settings.Keys[K] | undefined> {
|
async get<K extends keyof Settings.Keys>(key: K, character?: string): Promise<Settings.Keys[K] | undefined> {
|
||||||
try {
|
try {
|
||||||
const file = path.join(getSettingsDir(character), key);
|
const file = path.join(getSettingsDir(character), key);
|
||||||
|
|
||||||
|
if (!fs.existsSync(file)) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
return <Settings.Keys[K]>JSON.parse(fs.readFileSync(file, 'utf8'));
|
return <Settings.Keys[K]>JSON.parse(fs.readFileSync(file, 'utf8'));
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
console.error('READ KEY FAILURE', e, key, character);
|
console.error('READ KEY FAILURE', e, key, character);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "fchat",
|
"name": "fchat",
|
||||||
"version": "1.24.2",
|
"version": "1.25.0",
|
||||||
"author": "The F-List Team and Mister Stallion (Esq.)",
|
"author": "The F-List Team and Mister Stallion (Esq.)",
|
||||||
"description": "F-List.net Chat Client",
|
"description": "F-List.net Chat Client",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||||
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
21
package.json
21
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "f-list-rising",
|
"name": "f-list-rising",
|
||||||
"version": "1.24.2",
|
"version": "1.25.0",
|
||||||
"author": "The F-List Team and and Mister Stallion (Esq.)",
|
"author": "The F-List Team and and Mister Stallion (Esq.)",
|
||||||
"description": "A heavily modded F-Chat 3.0 client for F-List",
|
"description": "A heavily modded F-Chat 3.0 client for F-List",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
@ -12,7 +12,6 @@
|
||||||
"@types/bluebird": "3.5.32",
|
"@types/bluebird": "3.5.32",
|
||||||
"@types/lodash": "4.14.162",
|
"@types/lodash": "4.14.162",
|
||||||
"@types/node": "16.18.32",
|
"@types/node": "16.18.32",
|
||||||
"@types/node-fetch": "2.6.4",
|
|
||||||
"@types/vue-clickaway": "2.2.0",
|
"@types/vue-clickaway": "2.2.0",
|
||||||
"@types/qs": "^6.9.5",
|
"@types/qs": "^6.9.5",
|
||||||
"@types/request-promise": "^4.1.46",
|
"@types/request-promise": "^4.1.46",
|
||||||
|
@ -22,7 +21,7 @@
|
||||||
"async": "^0.9.0",
|
"async": "^0.9.0",
|
||||||
"axios": "^0.21.4",
|
"axios": "^0.21.4",
|
||||||
"bluebird": "~3.7.2",
|
"bluebird": "~3.7.2",
|
||||||
"bootstrap": "^4.5.3",
|
"bootstrap": "^4.6.2",
|
||||||
"copy-webpack-plugin": "^6.2.1",
|
"copy-webpack-plugin": "^6.2.1",
|
||||||
"css-loader": "^5.0.0",
|
"css-loader": "^5.0.0",
|
||||||
"date-fns": "2.29.3",
|
"date-fns": "2.29.3",
|
||||||
|
@ -34,7 +33,7 @@
|
||||||
"extract-loader": "^5.1.0",
|
"extract-loader": "^5.1.0",
|
||||||
"file-loader": "^6.2.0",
|
"file-loader": "^6.2.0",
|
||||||
"lodash": "^4.17.20",
|
"lodash": "^4.17.20",
|
||||||
"node-sass": "^7.0.1",
|
"sass": "^1.68.0",
|
||||||
"optimize-css-assets-webpack-plugin": "^5.0.4",
|
"optimize-css-assets-webpack-plugin": "^5.0.4",
|
||||||
"qs": "^6.9.4",
|
"qs": "^6.9.4",
|
||||||
"raven-js": "^3.27.2",
|
"raven-js": "^3.27.2",
|
||||||
|
@ -58,14 +57,14 @@
|
||||||
"webpack": "5.8.0"
|
"webpack": "5.8.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cliqz/adblocker-electron": "1.23.9",
|
"@cliqz/adblocker-electron": "^1.26.12",
|
||||||
"jquery": "^3.6.0",
|
"jquery": "^3.7.1",
|
||||||
"node-fetch": "2.6.11"
|
"node-fetch": "^2.7.0"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"appdmg": "^0.6.0",
|
"appdmg": "^0.6.0",
|
||||||
"electron-squirrel-startup": "^1.0.0",
|
"electron-squirrel-startup": "^1.0.0",
|
||||||
"electron-winstaller": "^5.0.0"
|
"electron-winstaller": "^5.2.1"
|
||||||
},
|
},
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
"vue": "2.6.12",
|
"vue": "2.6.12",
|
||||||
|
@ -73,11 +72,7 @@
|
||||||
"vue-loader": "15.9.8",
|
"vue-loader": "15.9.8",
|
||||||
"vue-template-compiler": "2.6.12",
|
"vue-template-compiler": "2.6.12",
|
||||||
"@types/bluebird": "3.5.32",
|
"@types/bluebird": "3.5.32",
|
||||||
"@types/node": "16.18.32",
|
"@types/node": "16.18.32"
|
||||||
"@cliqz/adblocker": "1.23.9",
|
|
||||||
"@cliqz/adblocker-content": "1.23.9",
|
|
||||||
"@cliqz/adblocker-electron-preload": "1.23.9",
|
|
||||||
"@cliqz/adblocker-extended-selectors": "1.23.9"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"__removed__postinstall": "electron-rebuild --prebuild-tag-prefix=ignoreprebuilds -f -o keytar",
|
"__removed__postinstall": "electron-rebuild --prebuild-tag-prefix=ignoreprebuilds -f -o keytar",
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-free": "^5.15.1",
|
"@fortawesome/fontawesome-free": "^5.15.1",
|
||||||
"bootstrap": "^4.5.3",
|
"bootstrap": "^4.6.2",
|
||||||
"node-sass": "^7.0.2",
|
"node-sass": "^7.0.2",
|
||||||
"@snyk/protect": "latest"
|
"@snyk/protect": "latest"
|
||||||
},
|
},
|
||||||
|
|
|
@ -82,3 +82,13 @@ export function init(s: Settings, c: SimpleCharacter[]): void {
|
||||||
settings = s;
|
settings = s;
|
||||||
characters = c;
|
characters = c;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function escapeRegExp(string: string):
|
||||||
|
string {
|
||||||
|
return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string
|
||||||
|
}
|
||||||
|
|
||||||
|
export function replaceAll(str: string, find: string, replace: string):
|
||||||
|
string {
|
||||||
|
return str.replace(new RegExp(escapeRegExp(find), "g"), replace);
|
||||||
|
}
|
Loading…
Reference in New Issue