From 00f2e2ba034c0bdfcc5918ed76e18eced0634cc6 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Fri, 26 Feb 2021 15:46:34 -0600 Subject: [PATCH] 1.10.1 --- CHANGELOG.md | 3 ++- README.md | 6 ++--- chat/preview/assets/browser.processor.raw.js | 25 +++++++++++++++++--- docs/_config.yml | 2 +- electron/package.json | 2 +- package.json | 2 +- 6 files changed, 30 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d82e36e..6a4f282 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Changelog -## Canary +## 1.10.1 * Improved performance on highly advertised channels like LFRP +* Fixed Rule34.xxx previews ## 1.10.0 diff --git a/README.md b/README.md index e50b0ec..d5a23a1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Download -[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v1.10.0/F-Chat-Rising-1.10.0-win.exe) (75 MB) -| [MacOS](https://github.com/mrstallion/fchat-rising/releases/download/v1.10.0/F-Chat-Rising-1.10.0-macos.dmg) (76 MB) -| [Linux](https://github.com/mrstallion/fchat-rising/releases/download/v1.10.0/F-Chat-Rising-1.10.0-linux.AppImage) (76 MB) +[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v1.10.1/F-Chat-Rising-1.10.1-win.exe) (75 MB) +| [MacOS](https://github.com/mrstallion/fchat-rising/releases/download/v1.10.1/F-Chat-Rising-1.10.1-macos.dmg) (76 MB) +| [Linux](https://github.com/mrstallion/fchat-rising/releases/download/v1.10.1/F-Chat-Rising-1.10.1-linux.AppImage) (76 MB) # F-Chat Rising diff --git a/chat/preview/assets/browser.processor.raw.js b/chat/preview/assets/browser.processor.raw.js index 1479ed2..6e32d42 100644 --- a/chat/preview/assets/browser.processor.raw.js +++ b/chat/preview/assets/browser.processor.raw.js @@ -28,6 +28,8 @@ class FListImagePreviewDomMutator { }; /* ## SETTINGS_END ## */ + // this.settings.debug = true; + this.startTime = Date.now(); this.selectors = this.settings.selectors; @@ -188,7 +190,9 @@ class FListImagePreviewDomMutator { } - attemptPlay(img, lessStrict) { + async attemptPlay(img, lessStrict) { + this.debug('attemptPlay', img, lessStrict); + try { if ( (img.play) @@ -198,9 +202,24 @@ class FListImagePreviewDomMutator { ) ) { + img.onpause = () => { + img.muted = true; + img.loop = true; + img.play(); + }; + img.muted = true; img.loop = true; - img.play(); + + const result = await img.play(); + + img.muted = true; + img.loop = true; + + this.debug('attemptPlay result', result); + } + else { + this.debug('attemptPlay skip', img.ended, img.currentTime); } } catch (err) { this.error('attemptPlay', err, img, lessStrict); @@ -255,7 +274,7 @@ class FListImagePreviewDomMutator { try { img.parentNode.removeChild(img); } catch(err2) { - console.error('attachImgToWrapper', 'removeChild()', err2); + this.error('attachImgToWrapper', 'removeChild()', err2); } } diff --git a/docs/_config.yml b/docs/_config.yml index 3fe0491..f08c38f 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -50,7 +50,7 @@ theme: jekyll-theme-slate changelog: https://github.com/mrstallion/fchat-rising/blob/master/CHANGELOG.md download: - version: 1.10.0 + version: 1.10.1 url: https://github.com/mrstallion/fchat-rising/releases/download/v%VERSION%/F-Chat-Rising-%VERSION%-%PLATFORM_TAIL% diff --git a/electron/package.json b/electron/package.json index a68387b..556a819 100644 --- a/electron/package.json +++ b/electron/package.json @@ -1,6 +1,6 @@ { "name": "fchat", - "version": "1.10.0", + "version": "1.10.1", "author": "The F-List Team and Mister Stallion (Esq.)", "description": "F-List.net Chat Client", "main": "main.js", diff --git a/package.json b/package.json index bc68e83..6e0777f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "f-list-rising", - "version": "1.10.0", + "version": "1.10.1", "author": "The F-List Team and and Mister Stallion (Esq.)", "description": "A heavily modded F-Chat 3.0 client for F-List", "license": "MIT",