We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8bff3e commit 77f7835Copy full SHA for 77f7835
CHANGELOG.md
@@ -5,6 +5,7 @@
5
### Fixed
6
7
- potential race condition that could cause crashes when settings are modified concurrently
8
+- CLI download on some Windows versions
9
10
## 0.7.0 - 2025-09-27
11
gradle.properties
@@ -1,3 +1,3 @@
1
-version=0.7.0
+version=0.7.1
2
group=com.coder.toolbox
3
name=coder-toolbox
src/main/kotlin/com/coder/toolbox/cli/downloader/CoderDownloadService.kt
@@ -35,6 +35,7 @@ private val SUPPORTED_BIN_MIME_TYPES = listOf(
35
"application/x-winexe",
36
"application/x-msdos-program",
37
"application/x-msdos-executable",
38
+ "application/x-ms-dos-executable",
39
"application/vnd.microsoft.portable-executable"
40
)
41
/**
0 commit comments