Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"slug": "elgato-control-center/windows",
"package_identifier": "Elgato.ControlCenter",
"unique_identifier": "Elgato Control Center",
"install_script_path": "ee/maintained-apps/inputs/winget/scripts/elgato-control-center_install.ps1",
"installer_arch": "x64",
"installer_type": "msi",
"installer_scope": "machine",
Expand Down
3 changes: 2 additions & 1 deletion ee/maintained-apps/inputs/winget/loom.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
"installer_arch": "x64",
"installer_type": "exe",
"installer_scope": "user",
"default_categories": ["Productivity"]
"default_categories": ["Productivity"],
"frozen": true
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
$logFile = "${env:TEMP}/fleet-install-software.log"

# MSI exit codes that indicate success. 3010 = ERROR_SUCCESS_REBOOT_REQUIRED,
# 1641 = ERROR_SUCCESS_REBOOT_INITIATED. Treat these as success rather than failure.
$successCodes = @(0, 3010, 1641)

# The installer's own .NET Framework check runs out of order during silent
# installs and always fails, so this script performs the same check (.NET
# Framework 4.8.1, release 533320 or later) and passes the result to the
# installer via WIX_IS_NETFRAMEWORK_481_OR_LATER_INSTALLED.

try {

$release = (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full' -ErrorAction SilentlyContinue).Release
if (-not $release -or $release -lt 533320) {
Write-Host "This application requires .NET Framework 4.8.1 or later. Please install .NET Framework 4.8.1, then retry."
Exit 1
}

$installProcess = Start-Process msiexec.exe `
-ArgumentList "/quiet /norestart /lv `"${logFile}`" /i `"${env:INSTALLER_PATH}`" WIX_IS_NETFRAMEWORK_481_OR_LATER_INSTALLED=1" `
-PassThru -Verb RunAs -Wait

Get-Content $logFile -Tail 500

if ($successCodes -contains $installProcess.ExitCode) {
Exit 0
}

Exit $installProcess.ExitCode

} catch {
Write-Host "Error: $_"
Exit 1
}
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/amie/darwin.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "260821.0.0",
"version": "260827.0.0",
"queries": {
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'so.amie.electron-app';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'so.amie.electron-app' AND version_compare(bundle_short_version, '260821.0.0') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'so.amie.electron-app' AND version_compare(bundle_short_version, '260827.0.0') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps a JOIN processes p ON substr(p.path, 1, LENGTH(a.path) + 1) = concat(a.path, '/') WHERE a.bundle_identifier = 'so.amie.electron-app');"
},
"installer_url": "https://github.com/amieso/electron-releases/releases/download/v260821.0.0/Amie-260821.0.0-arm64-mac.zip",
"installer_url": "https://github.com/amieso/electron-releases/releases/download/v260827.0.0/Amie-260827.0.0-arm64-mac.zip",
"install_script_ref": "be47fa85",
"uninstall_script_ref": "44125419",
"sha256": "bc0e4d2ce703ec626ab331484a69c08bf77d96dc6d393fb3f4f3906360960aed",
"sha256": "16f812d2ce211ad15e2305ff4dacecd65bdf1f6a8618afd19e481816924c6da0",
"default_categories": [
"Productivity"
]
Expand Down
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/aptakube/windows.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "1.19.3",
"version": "1.19.4",
"queries": {
"exists": "SELECT 1 FROM programs WHERE name = 'Aptakube' AND publisher = 'Zandar Labs SL';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name = 'Aptakube' AND publisher = 'Zandar Labs SL' AND version_compare(version, '1.19.3') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name = 'Aptakube' AND publisher = 'Zandar Labs SL' AND version_compare(version, '1.19.4') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM processes WHERE LOWER(name) = 'aptakube.exe');"
},
"installer_url": "https://releases.aptakube.com/Aptakube_1.19.3_x64_en-US.msi",
"installer_url": "https://releases.aptakube.com/Aptakube_1.19.4_x64_en-US.msi",
"install_script_ref": "22e48c46",
"uninstall_script_ref": "d2281ec5",
"sha256": "d51bd33bcf1df0df6da2343a3a469495137b6856ccbbccea2254d9bc99fc25ce",
"sha256": "6e541bee1db60c1582a88733624fd8442e7c2c87598e221cca2f805e8fcc7d8c",
"default_categories": [
"Developer tools"
],
Expand Down
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/arc/darwin.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "1.161.1",
"version": "1.162.0",
"queries": {
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'company.thebrowser.Browser';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'company.thebrowser.Browser' AND version_compare(bundle_short_version, '1.161.1') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'company.thebrowser.Browser' AND version_compare(bundle_short_version, '1.162.0') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps a JOIN processes p ON substr(p.path, 1, LENGTH(a.path) + 1) = concat(a.path, '/') WHERE a.bundle_identifier = 'company.thebrowser.Browser');"
},
"installer_url": "https://releases.arc.net/release/Arc-1.161.1-85803.zip",
"installer_url": "https://releases.arc.net/release/Arc-1.162.0-86046.zip",
"install_script_ref": "cbf109ae",
"uninstall_script_ref": "a19b04fa",
"sha256": "06e241de8f8aef42b358a113de2e77199a66e46f7092f83c4df0fb68217f6969",
"sha256": "d8f4299200c16bde5c0f413976fb92397613706eb6fff855d02dcd9e9c3f1aa1",
"default_categories": [
"Browsers"
]
Expand Down
4 changes: 2 additions & 2 deletions ee/maintained-apps/outputs/audio-hijack/darwin.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"versions": [
{
"version": "4.5.9",
"version": "4.6.0",
"queries": {
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'com.rogueamoeba.audiohijack';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.rogueamoeba.audiohijack' AND version_compare(bundle_short_version, '4.5.9') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.rogueamoeba.audiohijack' AND version_compare(bundle_short_version, '4.6.0') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps a JOIN processes p ON substr(p.path, 1, LENGTH(a.path) + 1) = concat(a.path, '/') WHERE a.bundle_identifier = 'com.rogueamoeba.audiohijack');"
},
"installer_url": "https://cdn.rogueamoeba.com/audiohijack/download/AudioHijack.zip",
Expand Down
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/aws-cli/windows.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "2.36.30",
"version": "2.36.32",
"queries": {
"exists": "SELECT 1 FROM programs WHERE name LIKE 'AWS Command Line Interface v2 %' AND publisher = 'Amazon Web Services';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name LIKE 'AWS Command Line Interface v2 %' AND publisher = 'Amazon Web Services' AND version_compare(version, '2.36.30') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name LIKE 'AWS Command Line Interface v2 %' AND publisher = 'Amazon Web Services' AND version_compare(version, '2.36.32') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM processes WHERE LOWER(name) = 'aws command line interface v2.exe');"
},
"installer_url": "https://awscli.amazonaws.com/AWSCLIV2-2.36.30.msi",
"installer_url": "https://awscli.amazonaws.com/AWSCLIV2-2.36.32.msi",
"install_script_ref": "22e48c46",
"uninstall_script_ref": "58bcd016",
"sha256": "09077f9ffd8147c830bf729ff8a0f6de304087a78d87b861e7edb244e83072a7",
"sha256": "bd5fb57b3ed9fefce4cf1ce520d87886077fc83eb0b8dcc9745a597a7f397343",
"default_categories": [
"Developer tools"
],
Expand Down
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/beeper/darwin.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "4.3.57",
"version": "4.3.73",
"queries": {
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'com.automattic.beeper.desktop';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.automattic.beeper.desktop' AND version_compare(bundle_short_version, '4.3.57') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.automattic.beeper.desktop' AND version_compare(bundle_short_version, '4.3.73') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps a JOIN processes p ON substr(p.path, 1, LENGTH(a.path) + 1) = concat(a.path, '/') WHERE a.bundle_identifier = 'com.automattic.beeper.desktop');"
},
"installer_url": "https://beeper-desktop.download.beeper.com/builds/Beeper-4.3.57-arm64-mac.zip",
"installer_url": "https://beeper-desktop.download.beeper.com/builds/Beeper-4.3.73-arm64-mac.zip",
"install_script_ref": "403ed251",
"uninstall_script_ref": "978d30f8",
"sha256": "1bdd5fee6d0e89a81e334506e1d200256177f4db85e523853f7c6ae689c002eb",
"sha256": "efd4f7a4f2c4b7eb50436c680b75c1008ff1a7131d9d8d75a92995036545895c",
"default_categories": [
"Communication"
]
Expand Down
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/bettertouchtool/darwin.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "6.755",
"version": "6.760",
"queries": {
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'com.hegenberg.BetterTouchTool';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.hegenberg.BetterTouchTool' AND version_compare(bundle_short_version, '6.755') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.hegenberg.BetterTouchTool' AND version_compare(bundle_short_version, '6.760') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps a JOIN processes p ON substr(p.path, 1, LENGTH(a.path) + 1) = concat(a.path, '/') WHERE a.bundle_identifier = 'com.hegenberg.BetterTouchTool');"
},
"installer_url": "https://folivora.ai/releases/btt6.755-2026082501.zip",
"installer_url": "https://folivora.ai/releases/btt6.760-2026082704.zip",
"install_script_ref": "17a00450",
"uninstall_script_ref": "aef4d4fc",
"sha256": "6c81647b9530f8e9ff27d9fa5e2d1e2e7106281011a471d21d093277c56bbac2",
"sha256": "56280e4db3c5721231fff7e0a63993c77ad43e979a67cd38b95363edcad129d1",
"default_categories": [
"Productivity"
]
Expand Down
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/brave-browser/darwin.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "151.1.93.138",
"version": "152.1.94.117",
"queries": {
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'com.brave.Browser';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.brave.Browser' AND version_compare(bundle_short_version, '151.1.93.138') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.brave.Browser' AND version_compare(bundle_short_version, '152.1.94.117') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps a JOIN processes p ON substr(p.path, 1, LENGTH(a.path) + 1) = concat(a.path, '/') WHERE a.bundle_identifier = 'com.brave.Browser');"
},
"installer_url": "https://updates-cdn.bravesoftware.com/sparkle/Brave-Browser/stable-arm64/193.138/Brave-Browser-arm64.dmg",
"installer_url": "https://updates-cdn.bravesoftware.com/sparkle/Brave-Browser/stable-arm64/194.117/Brave-Browser-arm64.dmg",
"install_script_ref": "32bb30f2",
"uninstall_script_ref": "9a376609",
"sha256": "7f5a87929dde058705a55e5fbb0b6043c9f196108429443a0a5d4e086e9703c0",
"sha256": "b2c57075f6c047c0f849abee965c124b43909b4d93e350a85f7f5dae12a48db1",
"default_categories": [
"Browsers"
]
Expand Down
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/bricklink-studio/darwin.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "2.26.7_1",
"version": "2.26.8_1",
"queries": {
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'com.BrickLink.Studio';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.BrickLink.Studio' AND version_compare(bundle_short_version, '2.26.7_1') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.BrickLink.Studio' AND version_compare(bundle_short_version, '2.26.8_1') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps a JOIN processes p ON substr(p.path, 1, LENGTH(a.path) + 1) = concat(a.path, '/') WHERE a.bundle_identifier = 'com.BrickLink.Studio');"
},
"installer_url": "https://studio.download.bricklink.info/Studio2.0/Archive/2.26.7_1/Studio+2.0.pkg",
"installer_url": "https://studio.download.bricklink.info/Studio2.0/Archive/2.26.8_1/Studio+2.0.pkg",
"install_script_ref": "59096fcd",
"uninstall_script_ref": "1c500b78",
"sha256": "526d727e85ab9104429a41c63bc1d3ace63f76353843d98a2fab9d6f7c5ff95d",
"sha256": "0f688139458f72d00f9397b9bb06fe1db700f223c6bfbe2ebfa5a2f0ee5be9cd",
"default_categories": [
"Productivity"
]
Expand Down
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/calibre/windows.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "9.13.0",
"version": "9.14.0",
"queries": {
"exists": "SELECT 1 FROM programs WHERE name LIKE 'calibre %' AND publisher = 'Kovid Goyal';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name LIKE 'calibre %' AND publisher = 'Kovid Goyal' AND version_compare(version, '9.13.0') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name LIKE 'calibre %' AND publisher = 'Kovid Goyal' AND version_compare(version, '9.14.0') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM processes WHERE LOWER(name) = 'calibre.exe');"
},
"installer_url": "https://download.calibre-ebook.com/9.13.0/calibre-64bit-9.13.0.msi",
"installer_url": "https://download.calibre-ebook.com/9.14.0/calibre-64bit-9.14.0.msi",
"install_script_ref": "22e48c46",
"uninstall_script_ref": "3ae8dcd8",
"sha256": "f5f19e870163c20ec63a656d6f5d0c123e07c4254899380ebeec51b00766e615",
"sha256": "4ccaf2a49a0069b5e78291ee7248dcd8967896d316d6432ddf657b6feae8f32d",
"default_categories": [
"Productivity"
],
Expand Down
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/canva/darwin.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "1.124.0",
"version": "1.124.1",
"queries": {
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'com.canva.CanvaDesktop';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.canva.CanvaDesktop' AND version_compare(bundle_short_version, '1.124.0') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.canva.CanvaDesktop' AND version_compare(bundle_short_version, '1.124.1') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps a JOIN processes p ON substr(p.path, 1, LENGTH(a.path) + 1) = concat(a.path, '/') WHERE a.bundle_identifier = 'com.canva.CanvaDesktop');"
},
"installer_url": "https://desktop-release.canva.com/Canva-1.124.0-universal.dmg",
"installer_url": "https://desktop-release.canva.com/Canva-1.124.1-universal.dmg",
"install_script_ref": "c3a04904",
"uninstall_script_ref": "8588c4f7",
"sha256": "1492c91b74b68d12185476088c8c1235ce6d5547b13fe39fbc09cbacf949551a",
"sha256": "d5772b5bed2da9dadabd256beb92ecd70617013a1fbf2844fc2ff78cdbea3266",
"default_categories": [
"Productivity"
]
Expand Down
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/chatgpt/darwin.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "26.820.71523",
"version": "26.825.32147",
"queries": {
"exists": "SELECT 1 FROM apps WHERE bundle_identifier = 'com.openai.chat';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.openai.chat' AND version_compare(bundle_short_version, '26.820.71523') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE bundle_identifier = 'com.openai.chat' AND version_compare(bundle_short_version, '26.825.32147') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps a JOIN processes p ON substr(p.path, 1, LENGTH(a.path) + 1) = concat(a.path, '/') WHERE a.bundle_identifier = 'com.openai.chat');"
},
"installer_url": "https://persistent.oaistatic.com/codex-app-prod/ChatGPT-darwin-arm64-26.820.71523.zip",
"installer_url": "https://persistent.oaistatic.com/codex-app-prod/ChatGPT-darwin-arm64-26.825.32147.zip",
"install_script_ref": "cbce2d7d",
"uninstall_script_ref": "678e6cf0",
"sha256": "80975234a8d0711097bd5cb1fbb1265eb482ebca0baaf16b2db408c1fcac114b",
"sha256": "cdafd0845c14ed3ac513c128aea6d19c5cfca52898fd834113845a2ea01a29ab",
"default_categories": [
"Productivity"
]
Expand Down
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/cmake-app/windows.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "4.4.2",
"version": "4.4.3",
"queries": {
"exists": "SELECT 1 FROM programs WHERE name = 'CMake' AND publisher = 'Kitware';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name = 'CMake' AND publisher = 'Kitware' AND version_compare(version, '4.4.2') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE name = 'CMake' AND publisher = 'Kitware' AND version_compare(version, '4.4.3') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM processes WHERE LOWER(name) = 'cmake.exe');"
},
"installer_url": "https://github.com/Kitware/CMake/releases/download/v4.4.2/cmake-4.4.2-windows-x86_64.msi",
"installer_url": "https://github.com/Kitware/CMake/releases/download/v4.4.3/cmake-4.4.3-windows-x86_64.msi",
"install_script_ref": "22e48c46",
"uninstall_script_ref": "6ac3efbc",
"sha256": "5f391b528a6604c7248375d107ee993baa85667549ecb6e4c14bed9d9a718c41",
"sha256": "f3b27c83979727b73540db53dbe610967656b4631746a94b17a1dd0329dd7868",
"default_categories": [
"Productivity"
],
Expand Down
8 changes: 4 additions & 4 deletions ee/maintained-apps/outputs/darktable/windows.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"versions": [
{
"version": "5.6.0",
"version": "5.6.1",
"queries": {
"exists": "SELECT 1 FROM programs WHERE (name = 'darktable' OR name LIKE 'darktable %') AND publisher LIKE '%darktable%';",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE ((name = 'darktable' OR name LIKE 'darktable %') AND publisher LIKE '%darktable%') AND version_compare(version, '5.6.0') < 0);",
"patched": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM programs WHERE ((name = 'darktable' OR name LIKE 'darktable %') AND publisher LIKE '%darktable%') AND version_compare(version, '5.6.1') < 0);",
"open": "SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM processes WHERE LOWER(name) = 'darktable.exe');"
},
"installer_url": "https://github.com/darktable-org/darktable/releases/download/release-5.6.0/darktable-5.6.0-win64.exe",
"installer_url": "https://github.com/darktable-org/darktable/releases/download/release-5.6.1/darktable-5.6.1-win64.exe",
"install_script_ref": "14588e29",
"uninstall_script_ref": "43a78344",
"sha256": "b42989195dfff44540c0b767b407987329ca99853612304cbbf14c48d1d3f803",
"sha256": "bb15a8e4d24c21097cfdef0a560920f7fa0c05dec93482448dd538f2be02d6c4",
"default_categories": [
"Productivity"
]
Expand Down
Loading
Loading