Merge pull request #546 from thornbill/default-fmp4

Enable fmp4 by default for native player
This commit is contained in:
Bill Thornton 2024-11-08 13:03:48 -05:00 committed by GitHub
commit 5d57d69730
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -59,7 +59,7 @@ export default class SettingStore {
/**
* Is fMP4 enabled for the native video player
*/
isFmp4Enabled = false;
isFmp4Enabled = true;
/**
* EXPERIMENTAL: Is the native audio player enabled
@ -85,7 +85,7 @@ export default class SettingStore {
this.systemThemeId = null;
this.isSystemThemeEnabled = false;
this.isNativeVideoPlayerEnabled = false;
this.isFmp4Enabled = false;
this.isFmp4Enabled = true;
this.isExperimentalNativeAudioPlayerEnabled = false;
this.isExperimentalDownloadsEnabled = false;

View File

@ -27,7 +27,7 @@ describe('SettingStore', () => {
expect(store.isSystemThemeEnabled).toBe(false);
expect(store.theme).toBe(Themes.dark);
expect(store.isNativeVideoPlayerEnabled).toBe(false);
expect(store.isFmp4Enabled).toBe(false);
expect(store.isFmp4Enabled).toBe(true);
expect(store.isExperimentalDownloadsEnabled).toBe(false);
});
@ -88,7 +88,7 @@ describe('SettingStore', () => {
store.systemThemeId = 'dark';
store.isSystemThemeEnabled = true;
store.isNativeVideoPlayerEnabled = true;
store.isFmp4Enabled = true;
store.isFmp4Enabled = false;
store.isExperimentalDownloadsEnabled = true;
expect(store.activeServer).toBe(99);
@ -100,7 +100,7 @@ describe('SettingStore', () => {
expect(store.isSystemThemeEnabled).toBe(true);
expect(store.theme).toBe(Themes.dark);
expect(store.isNativeVideoPlayerEnabled).toBe(true);
expect(store.isFmp4Enabled).toBe(true);
expect(store.isFmp4Enabled).toBe(false);
expect(store.isExperimentalDownloadsEnabled).toBe(true);
store.reset();
@ -114,7 +114,7 @@ describe('SettingStore', () => {
expect(store.isSystemThemeEnabled).toBe(false);
expect(store.theme).toBe(Themes.dark);
expect(store.isNativeVideoPlayerEnabled).toBe(false);
expect(store.isFmp4Enabled).toBe(false);
expect(store.isFmp4Enabled).toBe(true);
expect(store.isExperimentalDownloadsEnabled).toBe(false);
});
});