From 1eaa3fda50b6c7f07008dd0a0087442b294a62c0 Mon Sep 17 00:00:00 2001 From: YusufKhalifadev Date: Tue, 16 Jun 2026 11:08:26 +0300 Subject: [PATCH 1/2] Update Camstudio to 3.0 --- bucket/camstudio.json | 28 ++++++---------------------- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/bucket/camstudio.json b/bucket/camstudio.json index 53cc8c1ec19051..7a0f9953b22905 100644 --- a/bucket/camstudio.json +++ b/bucket/camstudio.json @@ -1,33 +1,17 @@ { - "version": "2.7.4-r354", + "version": "3.0", "description": "Free desktop recorder and video streaming software", "homepage": "https://camstudio.org/", - "license": "GPL-3.0-or-later", + "license": "Freeware", "suggest": { - "vcredist": "extras/vcredist2010" + "vcredist": "extras/vcredist2015" }, - "url": [ - "https://eu2.contabostorage.com/a4054a9f5df24ecf87c4a33ac9b6477b:camstudio/CamStudioSetup.exe#/dl.exe", - "https://downloads.sourceforge.net/project/camstudio/legacy/CamStudioCodec_1.5_Setup.exe#/codec.7z_" - ], - "hash": [ - "3fbe450e3267799f372a775e4c7e7c47c8bbffeebb0bd0c9690e63374eba8ba0", - "a589f791aea96adc4350b70ecde7572dadd7a80c1a054959874c3d6e01fa4b04" - ], - "pre_install": [ - "Expand-InnoArchive \"$dir\\dl.exe\" \"$dir\" -Removal | Out-Null", - "Expand-7zipArchive \"$dir\\codec.7z_\" \"$dir\" -ExtractDir '$SYSDIR' -Overwrite All -Removal | Out-Null", - "Remove-Item \"$dir\\CamStudio.nsi\"" - ], - "bin": "CamCommandLine.exe", + "url": "https://camstudio.org/assets/current-version/CamStudio-x64.exe", + "hash": "b5f48d48e090bd2e3404bfb37cf2e522c1462e03f0fed96dd3459c5c41d5e86e", "shortcuts": [ [ - "Recorder.exe", + "CamStudio-x64.exe", "CamStudio" ] - ], - "persist": [ - "controller\\controller.ini", - "ffmpeg.log" ] } From d56646d42e8b4d93e06a6f76bc9f5d3b3b8236c8 Mon Sep 17 00:00:00 2001 From: Aliaksandr Belik Date: Thu, 2 Jul 2026 14:20:28 +0300 Subject: [PATCH 2/2] camstudio@3.0.0: Add checkver & autoupdate, fix license --- bucket/camstudio.json | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/bucket/camstudio.json b/bucket/camstudio.json index 7a0f9953b22905..602af28a58bf7e 100644 --- a/bucket/camstudio.json +++ b/bucket/camstudio.json @@ -1,17 +1,35 @@ { - "version": "3.0", + "version": "3.0.0", "description": "Free desktop recorder and video streaming software", "homepage": "https://camstudio.org/", - "license": "Freeware", + "license": { + "identifier": "GPL-3.0-or-later", + "url": "https://github.com/iamnickthegeek/camstudio#license" + }, "suggest": { "vcredist": "extras/vcredist2015" }, - "url": "https://camstudio.org/assets/current-version/CamStudio-x64.exe", - "hash": "b5f48d48e090bd2e3404bfb37cf2e522c1462e03f0fed96dd3459c5c41d5e86e", + "architecture": { + "64bit": { + "url": "https://camstudio.org/assets/current-version/CamStudio-x64.exe", + "hash": "b5f48d48e090bd2e3404bfb37cf2e522c1462e03f0fed96dd3459c5c41d5e86e" + } + }, "shortcuts": [ [ "CamStudio-x64.exe", "CamStudio" ] - ] + ], + "checkver": { + "url": "https://camstudio.org/changelog.php", + "regex": "version-number\">Version ([\\d.-]+)<" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://camstudio.org/assets/current-version/CamStudio-x64.exe" + } + } + } }