Version Bump 5.0.19

This commit is contained in:
Zarg 2025-08-20 22:42:25 +02:00
parent 904c3f696c
commit a87bec252f
8 changed files with 20 additions and 20 deletions

View file

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.16) cmake_minimum_required(VERSION 3.16)
project(stremio VERSION "5.0.18") project(stremio VERSION "5.0.19")
set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD 20)
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>") set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")

View file

@ -37,7 +37,7 @@ const DEFAULT_SETTINGS_FOLDER = path.join(SOURCE_DIR, 'utils', 'stremio');
const DEFAULT_NSIS = 'C:\\Program Files (x86)\\NSIS\\makensis.exe'; const DEFAULT_NSIS = 'C:\\Program Files (x86)\\NSIS\\makensis.exe';
//VCPKG //VCPKG
const VCPKG_TRIPLET = ARCH === 'x86' ? 'x86-windows-static' : 'x64-windows-static'; const VCPKG_TRIPLET = ARCH === 'x86' ? 'x86-windows-static' : 'x64-windows-static';
const VCPKG_CMAKE = 'C:/bin/vcpkg/scripts/buildsystems/vcpkg.cmake'; const VCPKG_CMAKE = 'G:\\Documents\\Github\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake';
// --------------------------------------------------------------------- // ---------------------------------------------------------------------
// Main // Main

View file

@ -27,7 +27,7 @@ using json = nlohmann::json;
#define APP_TITLE "Stremio - Freedom to Stream" #define APP_TITLE "Stremio - Freedom to Stream"
#define APP_NAME "Stremio" #define APP_NAME "Stremio"
#define APP_CLASS L"Stremio" #define APP_CLASS L"Stremio"
#define APP_VERSION "5.0.18" #define APP_VERSION "5.0.19"
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
// Globals // Globals

View file

@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata> <metadata>
<id>stremio-desktop-v5</id> <id>stremio-desktop-v5</id>
<version>5.0.18</version> <version>5.0.19</version>
<title>Stremio Desktop v5</title> <title>Stremio Desktop v5</title>
<authors>Zarg</authors> <authors>Zarg</authors>
<owners>Zarg</owners> <owners>Zarg</owners>

View file

@ -11,12 +11,12 @@ $packageArgs = @{
if ([Environment]::Is64BitOperatingSystem) { if ([Environment]::Is64BitOperatingSystem) {
$packageArgs['url'] = 'https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.18/Stremio.5.0.18-x64.exe' $packageArgs['url'] = 'https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.19/Stremio.5.0.19-x64.exe'
$packageArgs['checksum'] = '9a04f81d5ef6e76207e2af1d8fa567b1f6c5edd696b8c49fb5b94261ebf04ea9' $packageArgs['checksum'] = '31204153329ac4165a58408c32a3d6216800e227c52a6a9c7eeb42ca69b585f1'
$packageArgs['checksumType'] = 'sha256' $packageArgs['checksumType'] = 'sha256'
} else { } else {
$packageArgs['url'] = 'https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.18/Stremio.5.0.18-x86.exe' $packageArgs['url'] = 'https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.19/Stremio.5.0.19-x86.exe'
$packageArgs['checksum'] = '3633ad3eda25c26e4b213f5a93f845ed226a9fb5186df59293e8576fc2de2d32' $packageArgs['checksum'] = '74a9ce5571aba133b8bb99c02202fd3de00bcd9e851144515d76745350219529'
$packageArgs['checksumType'] = 'sha256' $packageArgs['checksumType'] = 'sha256'
} }

View file

@ -1,12 +1,12 @@
{ {
"version": "5.0.18", "version": "5.0.19",
"description": "Stremio Desktop v5 Community", "description": "Stremio Desktop v5 Community",
"homepage": "https://github.com/Zaarrg/stremio-desktop-v5", "homepage": "https://github.com/Zaarrg/stremio-desktop-v5",
"license": "GPL-3.0", "license": "GPL-3.0",
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.18/Stremio.5.0.18-x64.exe", "url": "https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.19/Stremio.5.0.19-x64.exe",
"hash": "9a04f81d5ef6e76207e2af1d8fa567b1f6c5edd696b8c49fb5b94261ebf04ea9", "hash": "31204153329ac4165a58408c32a3d6216800e227c52a6a9c7eeb42ca69b585f1",
"installer": { "installer": {
"args": [ "args": [
"/S" "/S"
@ -24,8 +24,8 @@
} }
}, },
"32bit": { "32bit": {
"url": "https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.18/Stremio.5.0.18-x86.exe", "url": "https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.19/Stremio.5.0.19-x86.exe",
"hash": "3633ad3eda25c26e4b213f5a93f845ed226a9fb5186df59293e8576fc2de2d32", "hash": "74a9ce5571aba133b8bb99c02202fd3de00bcd9e851144515d76745350219529",
"installer": { "installer": {
"args": [ "args": [
"/S" "/S"

View file

@ -1,16 +1,16 @@
{ {
"shellVersion": "5.0.18", "shellVersion": "5.0.19",
"files": { "files": {
"windows-x64": { "windows-x64": {
"url": "https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.18/Stremio.5.0.18-x64.exe", "url": "https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.19/Stremio.5.0.19-x64.exe",
"checksum": "9a04f81d5ef6e76207e2af1d8fa567b1f6c5edd696b8c49fb5b94261ebf04ea9" "checksum": "31204153329ac4165a58408c32a3d6216800e227c52a6a9c7eeb42ca69b585f1"
}, },
"windows-x86": { "windows-x86": {
"url": "https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.18/Stremio.5.0.18-x86.exe", "url": "https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.19/Stremio.5.0.19-x86.exe",
"checksum": "3633ad3eda25c26e4b213f5a93f845ed226a9fb5186df59293e8576fc2de2d32" "checksum": "74a9ce5571aba133b8bb99c02202fd3de00bcd9e851144515d76745350219529"
}, },
"server.js": { "server.js": {
"url": "https://dl.strem.io/server/v4.20.11/desktop/server.js", "url": "https://dl.strem.io/server/4.20.11/desktop/server.js",
"checksum": "d900b0525bac3531aa6ce98e1a3c8a3b1d1b1daa069a7f6fcbddea5625f1f791" "checksum": "d900b0525bac3531aa6ce98e1a3c8a3b1d1b1daa069a7f6fcbddea5625f1f791"
} }
} }

View file

@ -1,5 +1,5 @@
{ {
"upToDate": false, "upToDate": false,
"versionDesc": "https://raw.githubusercontent.com/Zaarrg/stremio-desktop-v5/refs/heads/webview-windows/version/version-details.json", "versionDesc": "https://raw.githubusercontent.com/Zaarrg/stremio-desktop-v5/refs/heads/webview-windows/version/version-details.json",
"signature": "lB0JmhHa6ig9Of0F/g0wQkNTRm9yAPchKHYHcwuDPS9LYI6mKIc292SkGDEV3o7fYqGz5aJKv8UN/hUwN4l6dso+/y3bL+L1GFyAwDcp8YkqncdIA9EZB/x+4X8/oTXTJjeo0pBSHmedTFhxfQcusj2rv/5bOsTkVCdxBqoPopfxOKm8Uj9icnz3eBkbY2dA3JZSYdxMRRxHuvPhSx57Cn2W7C9os0U4yAYvBJV0MV4CM/MPxnQDwflvrRYk1pvoHld2wZ/SBqelO66EegsMkt9yEth/LAOjOg8j3+/pTmc/9NS0FvLUoG7tY2jy+wZbGPGLn2S6pr1caF29F1zacQ==" "signature": "FIhV2RGwSN9+WDGM68Nxunp/yUwf9m3lWaFbdVs7PBrTGfmkvKhYpSvRL5npm/+4CUkjko0PAuoQEWWXMtMNoCCcTqVvHEpre9vtRJPHRGfosOvgH9fWwfrQUId61J6pEFWOXNYPMhiaHMiBYPipS65fWw2MiKLj9AviXZ3q2Qv1RHQVjCCxtHi5mIFS7+m3pBtMjGI0mgrJtonHg+p2/YPKmMEG7akEIX0WcIxQeLEkvI58vs9oZvqsedOkspmZXMeB5HuTbpQK74F1ui0ed1iMgKBhWNGr2NzlCR0sp0FNxR/1u4krftupIt85DHiOS/jYSEIEvj6oovIt0e6UTw=="
} }