Skip to content
Open
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
37 changes: 17 additions & 20 deletions bucket/mqttx.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,30 @@
{
"version": "1.11.1",
"version": "1.12.1",
"description": "MQTT 5.0 Desktop Client",
"homepage": "https://mqttx.app",
"license": "Apache-2.0",
"license": {
"identifier": "Apache-2.0",
"url": "https://github.com/emqx/MQTTX/blob/main/LICENSE"
},
"notes": [
"ARM64 architecture has been temporarily removed from the manifest due to compatibility issues observed on Windows 11 ARM devices.",
"For more details, see the upstream discussion: https://github.com/emqx/MQTTX/issues/1803#issuecomment-2962059492",
"Once the upstream provides a stable ARM64 version, support for this architecture will be re-added to the manifest."
],
"architecture": {
"64bit": {
"url": "https://github.com/emqx/MQTTX/releases/download/v1.11.1/MQTTX-Setup-1.11.1-x64.exe#/dl.7z",
"hash": "sha512:d2af8839ad6e9ce5c1bb382ecbbd171e08041f369b29413049e768a220f86df88ac3393a02b09e42fb6fa5abbf751e786b2a489c14f5933f6e2f903429ed38b4"
"url": "https://github.com/emqx/MQTTX/releases/download/v1.12.1/MQTTX-Setup-1.12.1-x64.exe#/dl.7z",
"hash": "sha512:321e57f500fc85309ffb7d45d34fbc9cfd560623cbe8593a4474ca81baf95d4bbe80eb5b3adaecd6eb1d99b98757a9844f6f197e40d2cf875087441a3148919d"
},
"32bit": {
"url": "https://github.com/emqx/MQTTX/releases/download/v1.11.1/MQTTX-Setup-1.11.1-ia32.exe#/dl.7z",
"hash": "sha512:63330193e443ccd47444aeebfda335c129ec5359bdc8d7f57abdd34cdc711ae621b4817aca5a7382ff99afdf098580d597991e3965dccf484a0328bb403d5f1f"
},
"arm64": {
"url": "https://github.com/emqx/MQTTX/releases/download/v1.11.1/MQTTX-Setup-1.11.1-arm64.exe#/dl.7z",
"hash": "sha512:a634b5e379440c628fac41d1dfff3e083367d51a98746239c26853494a202a2c09028e4c4ba9f6b3e3bcc33a8c96400aa1f5f272e4cea44bcb911da34b571500"
"url": "https://github.com/emqx/MQTTX/releases/download/v1.12.1/MQTTX-Setup-1.12.1-ia32.exe#/dl.7z",
"hash": "sha512:f109e1fc77b224ce21cc7dedc84a2d756eb8353b3f68083d83409110d23c78a30ed3caaa3ee88a26d2a7ef1e977bc7c62269fe7c835345a2398ac013613b3cd9"
}
},
"pre_install": [
"Get-ChildItem \"$dir\\`$PLUGINSDIR\\app*.7z\" | Rename-Item -NewName 'app.7z'",
"Expand-7zipArchive -Path \"$dir\\`$PLUGINSDIR\\app.7z\" \"$dir\"",
"Remove-Item \"$dir\\`$*\", \"$dir\\Uninst*\" -Recurse"
"Get-ChildItem -Path \"$dir\\`$PLUGINSDIR\\app*.7z\" | Rename-Item -NewName 'app.7z'",
"Expand-7zipArchive -Path \"$dir\\`$PLUGINSDIR\\app.7z\" -DestinationPath \"$dir\"",
"Remove-Item -Path \"$dir\\`$*\", \"$dir\\Uninst*\" -Recurse -Force -ErrorAction SilentlyContinue"
],
"shortcuts": [
[
Expand All @@ -46,13 +50,6 @@
"url": "$baseurl/latest.yml",
"regex": "(?sm)ia32.*?sha512:\\s+$base64"
}
},
"arm64": {
"url": "https://github.com/emqx/MQTTX/releases/download/v$version/MQTTX-Setup-$version-arm64.exe#/dl.7z",
"hash": {
"url": "$baseurl/latest.yml",
"regex": "(?sm)arm64.*?sha512:\\s+$base64"
}
}
}
}
Expand Down