Compare commits

...

9 Commits

Author SHA1 Message Date
Anirudh Sevugan
a26e1448ab
Update renderer.js
Some checks failed
Build Linux / build_x64 (push) Has been cancelled
Build Linux / build_arm64 (push) Has been cancelled
Build macOS / build (push) Has been cancelled
Build Windows / build-x64 (push) Has been cancelled
Build Windows / build-arm64 (push) Has been cancelled
2025-09-15 18:19:03 -05:00
Anirudh Sevugan
59a8d5c577
v2.1.4 2025-09-15 18:17:27 -05:00
Anirudh Sevugan
ef5e34331e
Update main.js
Some checks are pending
Build Linux / build_x64 (push) Waiting to run
Build Linux / build_arm64 (push) Waiting to run
Build macOS / build (push) Waiting to run
Build Windows / build-x64 (push) Waiting to run
Build Windows / build-arm64 (push) Waiting to run
2025-09-14 22:35:14 -05:00
Anirudh Sevugan
cc5da53f23
Update package-arm64-linux.json 2025-09-14 22:35:06 -05:00
Anirudh Sevugan
5d0128e2af
Update package.json 2025-09-14 22:34:56 -05:00
Anirudh Sevugan
101f14c4d6
Update package.json 2025-09-14 22:34:49 -05:00
Anirudh Sevugan
49939dd963
Update package-arm64-linux.json 2025-09-14 22:34:30 -05:00
Anirudh Sevugan
257218c5a1
prep for 2.1.4
Some checks failed
Build Windows / build-x64 (push) Has been cancelled
Build Windows / build-arm64 (push) Has been cancelled
Build macOS / build (push) Has been cancelled
Build Linux / build_x64 (push) Has been cancelled
Build Linux / build_arm64 (push) Has been cancelled
2025-09-10 21:38:47 -05:00
Anirudh Sevugan
808c275167
prep for 2.1.4 2025-09-10 21:37:38 -05:00
4 changed files with 19 additions and 5 deletions

View File

@ -6,7 +6,7 @@ const { pathToFileURL } = require("url");
const { checkForUpdate } = require('./updateChecker');
let gpuAccel = "";
let didRegisterShortcuts = false;
let version = "2.1.3.0"
let version = "2.1.4.0"
if (process.platform === 'darwin') {
if (process.argv.includes('--use-gl')) {

View File

@ -1,6 +1,6 @@
{
"name": "SimpliPlay",
"version": "2.1.3",
"version": "2.1.4",
"description": "SimpliPlay - The mission to make media playback accessible on every device, anywhere, anytime.",
"main": "./main.js",
"scripts": {
@ -92,6 +92,11 @@
"name": "FLAC Audio",
"role": "Viewer"
},
{
"ext": "opus",
"name": "Opus Audio",
"role": "Viewer"
},
{
"ext": "mkv",
"name": "MKV Video",

View File

@ -1,6 +1,6 @@
{
"name": "SimpliPlay",
"version": "2.1.3",
"version": "2.1.4",
"description": "The mission to make media playback accessible on every platform, anywhere, anytime.",
"main": "./main.js",
"scripts": {
@ -105,6 +105,11 @@
"name": "FLAC Audio",
"role": "Viewer"
},
{
"ext": "opus",
"name": "Opus Audio",
"role": "Viewer"
},
{
"ext": "mkv",
"name": "MKV Video",

View File

@ -96,9 +96,9 @@ window.addEventListener('drop', e => {
// Create a new Object URL
const fileURL = URL.createObjectURL(file);
mediaElement.src = fileURL;
mediaElement.load();
// Autoplay if checkbox is checked
mediaElement.load();
// Autoplay if checkbox is checked
if (autoplayCheckbox.checked) {
mediaElement.play().catch(err => console.warn(err));
}
@ -194,3 +194,7 @@ window.electron.receive("unload-addon", (fileURL) => {
unloadAddon(fileURL);
});