1.10.1
This commit is contained in:
parent
0d45848cfe
commit
00f2e2ba03
|
@ -1,7 +1,8 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## Canary
|
## 1.10.1
|
||||||
* Improved performance on highly advertised channels like LFRP
|
* Improved performance on highly advertised channels like LFRP
|
||||||
|
* Fixed Rule34.xxx previews
|
||||||
|
|
||||||
|
|
||||||
## 1.10.0
|
## 1.10.0
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Download
|
# Download
|
||||||
[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v1.10.0/F-Chat-Rising-1.10.0-win.exe) (75 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.0/F-Chat-Rising-1.10.0-macos.dmg) (76 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.0/F-Chat-Rising-1.10.0-linux.AppImage) (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
|
# F-Chat Rising
|
||||||
|
|
|
@ -28,6 +28,8 @@ class FListImagePreviewDomMutator {
|
||||||
};
|
};
|
||||||
/* ## SETTINGS_END ## */
|
/* ## SETTINGS_END ## */
|
||||||
|
|
||||||
|
// this.settings.debug = true;
|
||||||
|
|
||||||
this.startTime = Date.now();
|
this.startTime = Date.now();
|
||||||
|
|
||||||
this.selectors = this.settings.selectors;
|
this.selectors = this.settings.selectors;
|
||||||
|
@ -188,7 +190,9 @@ class FListImagePreviewDomMutator {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
attemptPlay(img, lessStrict) {
|
async attemptPlay(img, lessStrict) {
|
||||||
|
this.debug('attemptPlay', img, lessStrict);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (
|
if (
|
||||||
(img.play)
|
(img.play)
|
||||||
|
@ -198,9 +202,24 @@ class FListImagePreviewDomMutator {
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
img.onpause = () => {
|
||||||
img.muted = true;
|
img.muted = true;
|
||||||
img.loop = true;
|
img.loop = true;
|
||||||
img.play();
|
img.play();
|
||||||
|
};
|
||||||
|
|
||||||
|
img.muted = true;
|
||||||
|
img.loop = true;
|
||||||
|
|
||||||
|
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) {
|
} catch (err) {
|
||||||
this.error('attemptPlay', err, img, lessStrict);
|
this.error('attemptPlay', err, img, lessStrict);
|
||||||
|
@ -255,7 +274,7 @@ class FListImagePreviewDomMutator {
|
||||||
try {
|
try {
|
||||||
img.parentNode.removeChild(img);
|
img.parentNode.removeChild(img);
|
||||||
} catch(err2) {
|
} catch(err2) {
|
||||||
console.error('attachImgToWrapper', 'removeChild()', err2);
|
this.error('attachImgToWrapper', 'removeChild()', err2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ theme: jekyll-theme-slate
|
||||||
changelog: https://github.com/mrstallion/fchat-rising/blob/master/CHANGELOG.md
|
changelog: https://github.com/mrstallion/fchat-rising/blob/master/CHANGELOG.md
|
||||||
|
|
||||||
download:
|
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%
|
url: https://github.com/mrstallion/fchat-rising/releases/download/v%VERSION%/F-Chat-Rising-%VERSION%-%PLATFORM_TAIL%
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "fchat",
|
"name": "fchat",
|
||||||
"version": "1.10.0",
|
"version": "1.10.1",
|
||||||
"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",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "f-list-rising",
|
"name": "f-list-rising",
|
||||||
"version": "1.10.0",
|
"version": "1.10.1",
|
||||||
"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",
|
||||||
|
|
Loading…
Reference in New Issue