BOS fix
This commit is contained in:
parent
1f67556130
commit
e2d85a41e7
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.4.1
|
||||||
|
* Fixed some image previews showing up black
|
||||||
|
|
||||||
|
|
||||||
## 1.4.0
|
## 1.4.0
|
||||||
* More configurable settings for F-Chat Rising
|
* More configurable settings for F-Chat Rising
|
||||||
* Hover mouse over a character name to see a character preview
|
* Hover mouse over a character name to see a character preview
|
||||||
|
|
|
@ -9,6 +9,11 @@ export class CharacterPreviewHelper extends ImagePreviewHelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
getName(): string {
|
||||||
|
return 'CharacterPreviewHelper';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
show(url: string | undefined): void {
|
show(url: string | undefined): void {
|
||||||
this.visible = true;
|
this.visible = true;
|
||||||
this.url = url;
|
this.url = url;
|
||||||
|
|
|
@ -47,6 +47,11 @@ export class ExternalImagePreviewHelper extends ImagePreviewHelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
getName(): string {
|
||||||
|
return 'ExternalImagePreviewHelper';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
reactsToSizeUpdates(): boolean {
|
reactsToSizeUpdates(): boolean {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,6 +12,7 @@ export abstract class ImagePreviewHelper {
|
||||||
abstract hide(): void;
|
abstract hide(): void;
|
||||||
abstract match(domainName: string | undefined, url: string | undefined): boolean;
|
abstract match(domainName: string | undefined, url: string | undefined): boolean;
|
||||||
abstract renderStyle(): Record<string, any>;
|
abstract renderStyle(): Record<string, any>;
|
||||||
|
abstract getName(): string;
|
||||||
|
|
||||||
abstract reactsToSizeUpdates(): boolean;
|
abstract reactsToSizeUpdates(): boolean;
|
||||||
abstract setRatio(ratio: number): void;
|
abstract setRatio(ratio: number): void;
|
||||||
|
|
|
@ -8,6 +8,11 @@ export class LocalImagePreviewHelper extends ImagePreviewHelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
getName(): string {
|
||||||
|
return 'LocalImagePreviewHelper';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
show(url: string | undefined): void {
|
show(url: string | undefined): void {
|
||||||
this.visible = true;
|
this.visible = true;
|
||||||
this.url = url;
|
this.url = url;
|
||||||
|
|
|
@ -42,7 +42,7 @@ export class PreviewManager {
|
||||||
|
|
||||||
return _.fromPairs(
|
return _.fromPairs(
|
||||||
_.map(
|
_.map(
|
||||||
this.helpers, (h) => ([h.helper.constructor.name, h.renderStyle])
|
this.helpers, (h) => ([h.helper.getName(), h.renderStyle])
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "fchat",
|
"name": "fchat",
|
||||||
"version": "1.4.0",
|
"version": "1.4.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.4.0",
|
"version": "1.4.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