Downloads:
680,917
Downloads of v 1.3.21:
8,424
Last Update:
04 May 2023
Package Maintainer(s):
Software Author(s):
- Samuel Vasko
Tags:
cmder console terminal cli foss- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Cmder
- 1
- 2
- 3
1.3.21 | Updated: 04 May 2023
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
680,917
Downloads of v 1.3.21:
8,424
Maintainer(s):
Software Author(s):
- Samuel Vasko
Cmder 1.3.21
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Cmder, run the following command from the command line or from PowerShell:
To upgrade Cmder, run the following command from the command line or from PowerShell:
To uninstall Cmder, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download cmder --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade cmder -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade cmder -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install cmder
win_chocolatey:
name: cmder
version: '1.3.21'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'cmder' do
action :install
source 'INTERNAL REPO URL'
version '1.3.21'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller cmder
{
Name = "cmder"
Version = "1.3.21"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'cmder':
ensure => '1.3.21',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved by moderator Pauby on 04 May 2023.
Cmder is a software package created out of pure frustration over absence of usable console emulator on Windows. It is based on ConEmu with major config overhaul. Monokai color scheme, amazing clink and custom prompt layout.
The main advantage of Cmder is portability. It is designed to be totally self-contained with no external dependencies, that is makes it great for USB Sticks or Dropbox. So you can carry your console, aliases and binaries (like wget, curl and git) with you anywhere.
Combines utility of 3 distinct tools:
- Console emulator = Conemu
- Cmd.exe enhancements = clink
- Unix tools on windows = msysgit
Notes
This package uncompresses to 250 MB and includes Unix commands via bundled msysgit.
See cmdermini (8 MB) for basic console without bundled msysgit.
MIT License
Copyright (c) 2017 Samuel Vasko
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The embedded software have been downloaded from the listed download
location on <https://github.com/cmderdev/cmder/releases/tag/v1.3.21>
and can be verified by doing the following:
1. Download the following <https://github.com/cmderdev/cmder/releases/download/v1.3.21/cmder.7z>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:
checksum type: sha256
checksum: 50AE085198BFA454B4D188EAC10C48120741E94C3D63FBFCDA01EB4BA891425A
The file 'LICENSE.txt' has been obtained from <https://github.com/cmderdev/cmder/blob/master/LICENSE>
$ErrorActionPreference = 'Stop'
$toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$unScriptPath = Join-Path $toolsPath "Uninstall-ChocolateyPath.psm1"
$installPath = Join-Path (Get-ToolsLocation) $env:ChocolateyPackageName
Import-Module $unScriptPath
Uninstall-ChocolateyPath $installPath 'User'
if (Test-Path $installPath) {
Remove-Item -path $installPath -Recurse -Force
}
md5: A57AEA1BB841C2AE9A50E818A461E3D6 | sha1: 0F55B1B3DC123987F0EFD2F91246EA2BA8EFA1DF | sha256: 50AE085198BFA454B4D188EAC10C48120741E94C3D63FBFCDA01EB4BA891425A | sha512: 66AE002B94D594460D5BD6AFAAA1A280CC532A7B183A5141A99CCA33BB1B2CC566F2DED619C15918895E8A7EE788EBE7D2DA9DE94ACFC86BF6912081C278901F
function Uninstall-ChocolateyPath {
param(
[string] $pathToUninstall,
[System.EnvironmentVariableTarget] $pathType = [System.EnvironmentVariableTarget]::User
)
Write-Debug "Running 'Uninstall-ChocolateyPath' with pathToUninstall:`'$pathToUninstall`'";
#get the PATH variable
$envPath = $env:PATH
#$envPath = [Environment]::GetEnvironmentVariable('Path', $pathType)
if (!$envPath.ToLower().Contains($pathToUninstall.ToLower())) {
Write-Host "PATH environment variable does not have $pathToUninstall in it."
return
}
Write-Host "PATH environment variable has $pathToUninstall in it. Removing..."
$actualPath = [Environment]::GetEnvironmentVariable('Path', $pathType)
# escape regex metachars, match possible backslash and item separator at eol
$pathToUninstallRegex = ($pathToUninstall -replace '([\\().])', '\$1') + '\\?(;|$)'
# remove pathToUninstall from actualPath
$actualPath = $actualPath -replace "$pathToUninstallRegex", ''
if ($pathType -eq [System.EnvironmentVariableTarget]::Machine) {
$psArgs = "[Environment]::SetEnvironmentVariable('Path',`'$actualPath`', `'$pathType`')"
Start-ChocolateyProcessAsAdmin "$psArgs"
}
else {
[Environment]::SetEnvironmentVariable('Path', $actualPath, $pathType)
}
# remove from path of current powershell session
$envPSPath = $env:PATH
$env:Path = $envPSPath -replace "$pathToUninstallRegex", ''
}
Log in or click on link to see number of positives.
- funzip.exe (77529cc57a58) - ## / 70
- unzip.exe (79ff15ec1433) - ## / 70
- unzipsfx.exe (c52e8c1d3a65) - ## / 70
- ssh-pageant.exe (75e252b5c24c) - ## / 70
- winpty-agent.exe (d3b74b6e8b15) - ## / 69
- winpty-debugserver.exe (532323cd6fa3) - ## / 70
- winpty.exe (a54e240ef85a) - ## / 70
- libtre-5.dll (ced3ed477102) - ## / 69
- x86_64-w64-mingw32-agrep.exe (436d6e9f1198) - ## / 70
- pdftotext.exe (252d2b345662) - ## / 70
- msys-npth-0.dll (68f3cfb0ca10) - ## / 68
- cygwin1.dll (b5498e8e6ae9) - ## / 67
- wslbridge.exe (668ee195182b) - ## / 69
- msys-aprutil-1-0.dll (7ffbd2daec49) - ## / 69
- winpty.dll (1098d3a01bd4) - ## / 70
- awk.exe (6dad72258006) - ## / 69
- msys-apr-1-0.dll (fcf13812f547) - ## / 69
- grcat.exe (01e8c7cb777e) - ## / 70
- pwcat.exe (788f0b6eeafc) - ## / 70
- filefuncs.dll (b759d08eeab7) - ## / 68
- fnmatch.dll (f91b8da021aa) - ## / 63
- fork.dll (3ec9f323bb79) - ## / 66
- inplace.dll (53f2d02be452) - ## / 66
- intdiv.dll (144c13f38f41) - ## / 68
- ordchr.dll (4110cce86c10) - ## / 69
- readdir.dll (66213814476d) - ## / 69
- readfile.dll (6f8afa86237c) - ## / 71
- revoutput.dll (b932b9d7a5aa) - ## / 67
- revtwoway.dll (5c91c6b88966) - ## / 63
- rwarray.dll (83e7eed24f71) - ## / 67
- time.dll (7d1c0d9fc2d3) - ## / 66
- edit.dll (f6381126970c) - ## / 69
- edit_test.exe (4f6f2e5e0062) - ## / 56
- edit_test_dll.exe (237daa746514) - ## / 70
- bunzip2.exe (f078a78be891) - ## / 70
- bzip2recover.exe (89be78a91f98) - ## / 70
- libbz2-1.dll (e996e8d18fa4) - ## / 69
- conemu-cyg-32.exe (d580de81a996) - ## / 68
- conemu-cyg-64.exe (c61002446dae) - ## / 70
- conemu-msys-32.exe (a6f71894092a) - ## / 69
- conemu-msys2-32.exe (211f17cd364b) - ## / 69
- conemu-msys2-64.exe (8e5c5f66df50) - ## / 67
- msys-serf-1-0.dll (91cfba7450ab) - ## / 67
- dumpsexp.exe (8117245fe985) - ## / 70
- gpg-error.exe (c5cbbcc64e5f) - ## / 71
- gpgparsemail.exe (09f1840ea4e1) - ## / 70
- hmac256.exe (5d32b3e4c729) - ## / 70
- mpicalc.exe (616cf344c80e) - ## / 68
- msys-gcrypt-20.dll (95d22775d336) - ## / 69
- msys-gpg-error-0.dll (f983de3245c8) - ## / 69
- yat2m.exe (c18e229c0d94) - ## / 68
- libpcre-1.dll (624e1e55f227) - ## / 68
- libpcreposix-0.dll (976d00b1e26c) - ## / 69
- dirmngr-client.exe (0e0edf6add4a) - ## / 70
- dirmngr.exe (aa6c71f4a859) - ## / 70
- gpg-agent.exe (72f2310bda5f) - ## / 69
- gpg-connect-agent.exe (5125d8d1f952) - ## / 70
- gpg-wks-server.exe (542fa0a58c0d) - ## / 56
- gpg.exe (034b6ed50e7f) - ## / 70
- gpgconf.exe (94a25f85eef9) - ## / 70
- gpgscm.exe (c772df1c9f93) - ## / 70
- gpgsm.exe (4cc007420add) - ## / 70
- gpgsplit.exe (407c51ade640) - ## / 70
- gpgtar.exe (e902a23e3965) - ## / 70
- gpgv.exe (a54cc5f34859) - ## / 70
- kbxutil.exe (0ae8e3398e5e) - ## / 70
- watchgnupg.exe (ace8dfa64a07) - ## / 69
- gpg-check-pattern.exe (50821525f1a2) - ## / 68
- gpg-preset-passphrase.exe (85a43f6a0e3f) - ## / 70
- gpg-protect-tool.exe (0fb2df847364) - ## / 69
- gpg-wks-client.exe (760a12190097) - ## / 70
- scdaemon.exe (2d7e790684d7) - ## / 70
- libssh2-1.dll (94237791a4d4) - ## / 69
- libgmp-10.dll (326c7b96104b) - ## / 69
- libintl-8.dll (35ed170c5d53) - ## / 68
- envsubst.exe (cba119231059) - ## / 70
- gettext.exe (a9124d22a6a4) - ## / 70
- libzstd.dll (5ca17a67fb64) - ## / 70
- acountry.exe (e32abdfa3ca6) - ## / 70
- adig.exe (6c6cdc627b3b) - ## / 70
- ahost.exe (668d63ca814a) - ## / 70
- libcares-5.dll (ba4e7af4bd16) - ## / 69
- msys-gmp-10.dll (5132a16a8c94) - ## / 69
- libunistring-2.dll (300b43b4a3a2) - ## / 70
- captoinfo.exe (eb28d6a41d44) - ## / 70
- clear.exe (712cef3d1f78) - ## / 70
- infocmp.exe (d7dc54f7fe03) - ## / 69
- msys-ncursesw6.dll (ea79750d536f) - ## / 69
- msys-ticw6.dll (d6b581d81d7e) - ## / 67
- reset.exe (38e95d59c091) - ## / 69
- tabs.exe (6774ec127676) - ## / 69
- toe.exe (92224a4c3148) - ## / 69
- tput.exe (5cb7335078bf) - ## / 68
- brotli.exe (1ca51a30040b) - ## / 70
- libbrotlicommon.dll (156db8f3c997) - ## / 70
- libbrotlidec.dll (5a46a9e4baba) - ## / 69
- libiconv-2.dll (1728ee90659f) - ## / 63
- bunzip2.exe (ac027e648f7d) - ## / 70
- bzip2recover.exe (65dbae306bef) - ## / 70
- d2u.exe (df1a75186ead) - ## / 69
- dash.exe (51ecdfa7b829) - ## / 70
- envsubst.exe (279b19e80cbd) - ## / 69
- ex.exe (3efcb22dfc87) - ## / 71
- find.exe (9ae3942cd4f6) - ## / 70
- gettext.exe (80b491bfe652) - ## / 69
- gzip.exe (26b87fe4d67a) - ## / 69
- iconv.exe (3f6dc3bf14e9) - ## / 70
- locate.exe (c3ca86609e80) - ## / 70
- msgattrib.exe (eefe3555e58d) - ## / 63
- msgcat.exe (d1730ead7305) - ## / 69
- msgcmp.exe (fe72972a4adf) - ## / 69
- msgcomm.exe (bbc6b24d8918) - ## / 70
- msgconv.exe (96dd4477f649) - ## / 69
- msgen.exe (6c65d8789fbf) - ## / 70
- msgexec.exe (42457398346b) - ## / 70
- msgfilter.exe (8a781d3b109c) - ## / 69
- msgfmt.exe (67b495b7f338) - ## / 69
- msggrep.exe (92deba65fad3) - ## / 69
- msginit.exe (7a70d1797b23) - ## / 69
- msgmerge.exe (2699599c6557) - ## / 70
- msgunfmt.exe (e41ba327e64a) - ## / 69
- msguniq.exe (22c40b000f42) - ## / 70
- msys-assuan-0.dll (ed122492880e) - ## / 69
- msys-bz2-1.dll (1082896c71da) - ## / 69
- msys-gettextlib-0-21.dll (35231de8c6f1) - ## / 64
- msys-gettextsrc-0-21.dll (292ed16fb2a1) - ## / 69
- msys-iconv-2.dll (9cbf5613b946) - ## / 69
- msys-intl-8.dll (ca327a6414a0) - ## / 69
- msys-p11-kit-0.dll (4d4b7fbe7571) - ## / 69
- msys-sasl2-3.dll (0dfc1e07e7fd) - ## / 61
- ngettext.exe (dd869c223c95) - ## / 70
- p11-kit.exe (ed0fa9c78902) - ## / 70
- pluginviewer.exe (b3d4fd36fcc3) - ## / 64
- rebase.exe (7154c4c325c9) - ## / 70
- recode-sr-latin.exe (e2276866013b) - ## / 70
- rview.exe (98976697f0db) - ## / 70
- tar.exe (54a4c8d30691) - ## / 70
- trust.exe (760676384a72) - ## / 69
- u2d.exe (c5c5c92ec6ce) - ## / 69
- which.exe (43c3ad76d2f4) - ## / 70
- xargs.exe (a1c0208f84a4) - ## / 70
- xgettext.exe (b306947cacd5) - ## / 70
- xxd.exe (d9beb0f04b56) - ## / 70
- frcode.exe (c56e4a5bb0b3) - ## / 70
- cldr-plurals.exe (1ce8bee74f1f) - ## / 65
- hostname.exe (0d5f546a88a4) - ## / 70
- urlget.exe (0d7339206c95) - ## / 67
- p11-kit-trust.dll (76a17afb40e6) - ## / 68
- msys-anonymous-3.dll (a8737e03dd25) - ## / 70
- msys-crammd5-3.dll (b24ca83b2232) - ## / 70
- msys-digestmd5-3.dll (f69688f1624e) - ## / 69
- msys-gs2-3.dll (140c2013e64f) - ## / 69
- msys-gssapiv2-3.dll (753244daa281) - ## / 69
- msys-otp-3.dll (9025f89e1793) - ## / 69
- msys-plain-3.dll (feefaa4a653f) - ## / 70
- msys-scram-3.dll (e9f82e65f9d0) - ## / 69
- rmt.exe (48b59612c489) - ## / 69
- p11-kit-remote.exe (19ccfc537490) - ## / 70
- p11-kit-server.exe (a06a2af2bb55) - ## / 67
- msys-gcc_s-seh-1.dll (30eec9a37ce4) - ## / 69
- msys-pcre2-8-0.dll (97a574fbee5e) - ## / 69
- msys-pcre2-posix-3.dll (bd79c963cc5e) - ## / 69
- libhogweed-6.dll (72064fb13645) - ## / 69
- libidn2-0.dll (b2d53b7ec4ab) - ## / 69
- libnettle-8.dll (fe1cbcaa5ed2) - ## / 69
- pkcs1-conv.exe (2a5ffa9994eb) - ## / 70
- sexp-conv.exe (bbe57e659d4a) - ## / 70
- msys-hogweed-6.dll (cbf3ee0ee3e9) - ## / 68
- msys-nettle-8.dll (b7d2d5d215b2) - ## / 69
- msys-perl5_36.dll (ae83f767ef0a) - ## / 66
- msys-svn_client-1-0.dll (08fba2f3f4ec) - ## / 69
- msys-svn_delta-1-0.dll (b8c22072f8ab) - ## / 70
- msys-svn_diff-1-0.dll (a4d243e98a4e) - ## / 69
- msys-svn_fs-1-0.dll (c89d21ae200f) - ## / 68
- msys-svn_fs_fs-1-0.dll (a9fb29988cbd) - ## / 69
- msys-svn_fs_util-1-0.dll (3bd2cdad90f5) - ## / 69
- msys-svn_fs_x-1-0.dll (40c804c21b62) - ## / 69
- msys-svn_ra-1-0.dll (1655e4c58717) - ## / 69
- msys-svn_ra_local-1-0.dll (0130a8a22744) - ## / 69
- msys-svn_ra_serf-1-0.dll (77f778884deb) - ## / 69
- msys-svn_ra_svn-1-0.dll (ec3b152cdafe) - ## / 69
- msys-svn_repos-1-0.dll (f27e80778e9b) - ## / 69
- msys-svn_subr-1-0.dll (898f97d25127) - ## / 69
- msys-svn_swig_perl-1-0.dll (1ae1b297a4c2) - ## / 69
- msys-svn_wc-1-0.dll (b6848271106f) - ## / 69
- nettle-hash.exe (062a1f41beda) - ## / 70
- nettle-lfib-stream.exe (5db901cb9fbc) - ## / 67
- nettle-pbkdf2.exe (44f149ed02aa) - ## / 70
- perl.exe (d0f70d617ba2) - ## / 70
- pkcs1-conv.exe (eb5337b142f7) - ## / 70
- sexp-conv.exe (aa7a194a829a) - ## / 69
- attributes.dll (060c5865ea7c) - ## / 68
- B.dll (3bcd25bd0bad) - ## / 70
- Cwd.dll (329fd9ea2de1) - ## / 69
- Encode.dll (5ed5bf7d8f03) - ## / 68
- Fcntl.dll (0356d11900f5) - ## / 69
- IO.dll (6a79e88c1d7c) - ## / 69
- mro.dll (4d0f7322bdd8) - ## / 68
- NDBM_File.dll (79d699f89d6a) - ## / 69
- Opcode.dll (7ff6aa485ae7) - ## / 69
- POSIX.dll (d270e11c7769) - ## / 70
- re.dll (c65377c25072) - ## / 56
- SDBM_File.dll (22503f52e13f) - ## / 69
- Socket.dll (fa8743613b3b) - ## / 67
- Storable.dll (ac60110061d0) - ## / 70
- threads.dll (a7e266ff6db8) - ## / 70
- Win32.dll (a142a32aa87b) - ## / 69
- Clone.dll (029b751a4eb6) - ## / 70
- Dumper.dll (7b1ddfc5e698) - ## / 69
- Peek.dll (db36ac9f278e) - ## / 70
- MD5.dll (a979e8260781) - ## / 69
- SHA.dll (efb3a578987e) - ## / 67
- Byte.dll (4c95d5c2b2b6) - ## / 69
- CN.dll (fbbe47a6fd64) - ## / 66
- EBCDIC.dll (1f695e06f084) - ## / 69
- JP.dll (6ce29786d6b5) - ## / 68
- KR.dll (8a36224b6cdc) - ## / 67
- Symbol.dll (7e0e8a1de54b) - ## / 68
- TW.dll (8b9bcf82f126) - ## / 66
- Unicode.dll (3f412a8f5e22) - ## / 69
- DosGlob.dll (94d8f35e3f8a) - ## / 69
- Glob.dll (47b2caa9fc70) - ## / 69
- Util.dll (459c3a3609d8) - ## / 70
- Langinfo.dll (f9616c1c99f1) - ## / 69
- SysV.dll (b7d8079012d2) - ## / 69
- Util.dll (47b500710e20) - ## / 69
- Base64.dll (ab29f477e886) - ## / 70
- encoding.dll (45e76e50cfda) - ## / 69
- mmap.dll (26efb1c00da6) - ## / 69
- scalar.dll (df8b3efd1c24) - ## / 69
- via.dll (7226b136f16b) - ## / 69
- Hostname.dll (acb96ecf13d6) - ## / 70
- Syslog.dll (6940ec43b155) - ## / 70
- shared.dll (7c9cca18563c) - ## / 69
- HiRes.dll (6715f1a8206e) - ## / 69
- Piece.dll (b32479b57e16) - ## / 69
- Collate.dll (b0025afa0803) - ## / 69
- Normalize.dll (4b87b98aa67f) - ## / 69
- File.dll (b40cd8f23473) - ## / 67
- APItest.dll (9a9f9a06a993) - ## / 69
- Typemap.dll (0b8d1681aa92) - ## / 69
- Parser.dll (fb198160fdb8) - ## / 69
- SSLeay.dll (3a9c1be879b9) - ## / 69
- _Client.dll (2382bf657891) - ## / 70
- _Core.dll (ae0318efd7be) - ## / 68
- _Delta.dll (9327cdf0cd52) - ## / 58
- _Fs.dll (b2a124e9f0e4) - ## / 69
- _Ra.dll (cbf3f89f0166) - ## / 69
- _Repos.dll (d15dd1354ced) - ## / 69
- _Wc.dll (3d3c7e59e2d7) - ## / 68
- ReadKey.dll (b09aff6770b4) - ## / 69
- Bzip2.dll (261337216e2d) - ## / 70
- Zlib.dll (109a33d5cb5e) - ## / 69
- Call.dll (87a9a19b3e8e) - ## / 70
- FieldHash.dll (c16518cf9cec) - ## / 70
- FastCalc.dll (46d81fc882e8) - ## / 70
- libp11-kit-0.dll (b544dd4bf21f) - ## / 69
- libtasn1-6.dll (bc4d746d8b85) - ## / 69
- p11-kit.exe (e525bcb67e46) - ## / 69
- trust.exe (bf7fa6838b40) - ## / 69
- msys-lz4-1.dll (42baa9b27c31) - ## / 69
- msys-tasn1-6.dll (f1fa3e73a611) - ## / 67
- tig.exe (00d55e815534) - ## / 69
- p11-kit-trust.dll (ccf8d6c30be4) - ## / 70
- p11-kit-remote.exe (3ca9f2d8e333) - ## / 69
- p11-kit-server.exe (ce392491275c) - ## / 69
- libgcc_s_seh-1.dll (a679d5383f8c) - ## / 69
- libstdc++-6.dll (60839238d802) - ## / 69
- libexpat-1.dll (3d24885b6f3a) - ## / 59
- libffi-8.dll (e689c781dd06) - ## / 70
- zlib1.dll (6cb1a552ac83) - ## / 70
- git-bash.exe (e3ce0b3fec3f) - ## / 68
- git-cmd.exe (03813d2c6ec7) - ## / 67
- bash.exe (b61746aa8d34) - ## / 70
- git.exe (1aeda5eab0bb) - ## / 69
- git-gui.exe (7a06df0e9825) - ## / 69
- gitk.exe (53cc94158206) - ## / 69
- antiword.exe (d30a37489c64) - ## / 70
- Atlassian.Bitbucket.dll (29f19ce20a6a) - ## / 69
- Atlassian.Bitbucket.UI.exe (199bacb9ec4d) - ## / 68
- Atlassian.Bitbucket.UI.Shared.dll (7edd2ad30bd8) - ## / 69
- blocked-file-util.exe (4a42eabfd040) - ## / 70
- connect.exe (0ac27d946d3b) - ## / 70
- create-shortcut.exe (0b2801f95b41) - ## / 69
- curl.exe (d0d7dce8d7b4) - ## / 69
- gcmcore.dll (871b387411cc) - ## / 69
- gcmcoreui.dll (158ff318fcc2) - ## / 69
- gcmcoreuiwpf.dll (5418a46635f3) - ## / 68
- git-askpass.exe (b5cd4607f171) - ## / 70
- git-askyesno.exe (5b6f82b1355b) - ## / 70
- git-credential-helper-selector.exe (f32090dc490c) - ## / 70
- git-credential-manager-core.exe (adf94660f9f6) - ## / 69
- git-credential-manager-ui.exe (cf03054f0bcb) - ## / 69
- git-credential-manager.exe (a54e814c7e96) - ## / 70
- git-lfs.exe (1ae193b7299c) - ## / 70
- git-receive-pack.exe (70e004111c1f) - ## / 69
- git.exe (688ec5fa272a) - ## / 70
- GitHub.dll (03ee3fd437e8) - ## / 69
- GitHub.UI.exe (4744c60e46f4) - ## / 68
- GitHub.UI.Shared.dll (5c762b82617c) - ## / 69
- GitLab.dll (8a92bd483428) - ## / 69
- GitLab.UI.exe (0aaf5e2a5a63) - ## / 68
- GitLab.UI.Shared.dll (3156b86635f8) - ## / 69
- libcrypto-1_1-x64.dll (a9523e542551) - ## / 69
- libcurl-4.dll (c52a0ce88151) - ## / 68
- liblzma-5.dll (317e22b1e613) - ## / 70
- libnghttp2-14.dll (c388a62370ba) - ## / 69
- libpcre2-8-0.dll (803a597c0f6e) - ## / 69
- libssl-1_1-x64.dll (cafb31a37713) - ## / 69
- libwinpthread-1.dll (e2ba208edfbe) - ## / 70
- lzmadec.exe (d80daaae8140) - ## / 69
- lzmainfo.exe (1a843950b62a) - ## / 69
- Microsoft.AzureRepos.dll (f04ff8fb9a25) - ## / 68
- Microsoft.Identity.Client.Desktop.dll (06eabc88ea07) - ## / 69
- Microsoft.Identity.Client.dll (438a8e9e0572) - ## / 69
- Microsoft.Identity.Client.Extensions.Msal.dll (fe5cef934623) - ## / 69
- Microsoft.Web.WebView2.Core.dll (90e6f24aa8c5) - ## / 69
- Microsoft.Web.WebView2.WinForms.dll (1b50ee3a49fe) - ## / 69
- Microsoft.Web.WebView2.Wpf.dll (bfe2d862b3a1) - ## / 69
- Newtonsoft.Json.dll (e8b6bff89e18) - ## / 68
- odt2txt.exe (87ccefd04081) - ## / 68
- openssl.exe (33a4b3cc98db) - ## / 69
- proxy-lookup.exe (51962204cd6d) - ## / 70
- scalar.exe (503774ba962a) - ## / 68
- System.Buffers.dll (0e0ed7d9a677) - ## / 69
- System.CommandLine.dll (d9ef56ef173c) - ## / 68
- System.Memory.dll (11ec83588824) - ## / 69
- System.Numerics.Vectors.dll (09595a4dfa76) - ## / 68
- System.Runtime.CompilerServices.Unsafe.dll (01822b24d728) - ## / 69
- tcl86.dll (7513c1fab026) - ## / 69
- tclsh.exe (c96328f3dbb8) - ## / 70
- tk86.dll (99a5ade69806) - ## / 69
- unxz.exe (c9bd0a00fbcb) - ## / 70
- WebView2Loader.dll (eb9a06c8d6d1) - ## / 69
- WhoUses.exe (6f9bafb034cc) - ## / 69
- wish.exe (fc199ee77bc8) - ## / 70
- xmlwf.exe (5f8fe3562687) - ## / 69
- xzdec.exe (d1a7705c920f) - ## / 69
- arch.exe (c63dc7b8d578) - ## / 69
- b2sum.exe (604deb03fc03) - ## / 70
- base32.exe (a54e521efb9c) - ## / 70
- base64.exe (ef4877b2e3f9) - ## / 70
- basename.exe (6fe2e201a956) - ## / 70
- basenc.exe (39a435a6a46a) - ## / 70
- bash.exe (1c4e42a23e2a) - ## / 68
- cat.exe (f1b37048ee5c) - ## / 70
- chattr.exe (70e31760045d) - ## / 70
- chcon.exe (97ac075c9b7f) - ## / 70
- chgrp.exe (a73833f67a44) - ## / 70
- chmod.exe (fd765e24d91b) - ## / 70
- chown.exe (601acf672040) - ## / 70
- chroot.exe (67d990ca052d) - ## / 69
- cksum.exe (dc8779dd9018) - ## / 69
- cmp.exe (5099a45866b2) - ## / 70
- column.exe (93fb4aa791fd) - ## / 70
- comm.exe (7b1a630adb1d) - ## / 70
- cp.exe (5f91e0b445ed) - ## / 70
- csplit.exe (730846a83bc6) - ## / 69
- cut.exe (63fcfb76c80d) - ## / 70
- cygcheck.exe (22e1b384ce21) - ## / 69
- cygpath.exe (30aaeb8bc139) - ## / 70
- cygwin-console-helper.exe (90969959891a) - ## / 70
- date.exe (743228ae082e) - ## / 70
- dd.exe (fc825633d2b8) - ## / 69
- df.exe (66d5c328f71c) - ## / 70
- diff.exe (2d376b6478f1) - ## / 69
- diff3.exe (3db8ace3f549) - ## / 70
- dir.exe (0ed6ccc9669f) - ## / 69
- dircolors.exe (368a44254cfe) - ## / 42
- dirname.exe (53896fda3546) - ## / 54
- du.exe (dc22867da6d5) - ## / 69
- echo.exe (629697ea64fa) - ## / 70
- env.exe (b5d80f13e6b4) - ## / 70
- expand.exe (d4dd802d17f6) - ## / 70
- expr.exe (e1608f267813) - ## / 70
- factor.exe (8a9deaea51cb) - ## / 70
- false.exe (71314347cf13) - ## / 70
- file.exe (1badc44391b5) - ## / 69
- fmt.exe (578c22331e77) - ## / 70
- fold.exe (391d6f86fb79) - ## / 70
- gencat.exe (6cdd42cb1c33) - ## / 70
- getconf.exe (45763490b25c) - ## / 69
- getfacl.exe (55fcdb452148) - ## / 70
- getopt.exe (ef9411f5769b) - ## / 69
- gkill.exe (17630ebb0651) - ## / 70
- gmondump.exe (800b35597e8a) - ## / 70
- grep.exe (abc78c8cb735) - ## / 70
- groups.exe (18bb936d12ba) - ## / 69
- head.exe (c82ae2ef7223) - ## / 70
- hostid.exe (9c93d1b5c9df) - ## / 70
- hostname.exe (99d3b0b66071) - ## / 70
- id.exe (7e5a847d3d47) - ## / 69
- install.exe (23b01a97c735) - ## / 60
- join.exe (6e30a08d2bc2) - ## / 71
- kill.exe (69904dfc211a) - ## / 71
- ldd.exe (eceb0fb769ed) - ## / 69
- ldh.exe (d084a216756e) - ## / 71
- less.exe (71cfdfff8225) - ## / 70
- lessecho.exe (cd0665520c37) - ## / 69
- lesskey.exe (3355d7fdd43c) - ## / 69
- link.exe (070b43c6e5df) - ## / 70
- ln.exe (28f25f435e02) - ## / 70
- locale.exe (b262820af94e) - ## / 70
- logname.exe (b9938523b459) - ## / 69
- ls.exe (b45981580702) - ## / 70
- lsattr.exe (e6522b8491f5) - ## / 70
- md5sum.exe (9327e6f33e2d) - ## / 70
- minidumper.exe (334af3712eb6) - ## / 69
- mintty.exe (c68094c3a049) - ## / 68
- mkdir.exe (fc9b9e49fd64) - ## / 70
- mkfifo.exe (efd816dd4d07) - ## / 70
- mkgroup.exe (dc5172789f55) - ## / 60
- mknod.exe (ac12a4c60b0c) - ## / 69
- mkpasswd.exe (f99dd2a08cf5) - ## / 69
- mktemp.exe (bd6474b0404e) - ## / 70
- mount.exe (6309d8766f1e) - ## / 70
- msys-2.0.dll (dc31f3ab1f61) - ## / 50
- msys-asn1-8.dll (5b5f31cddea8) - ## / 69
- msys-cbor-0.9.dll (f56b2b24f1fc) - ## / 69
- msys-com_err-1.dll (0f353a4b6ee1) - ## / 66
- msys-crypt-0.dll (848d16cb595b) - ## / 69
- msys-crypto-1.1.dll (cfef3f4a7496) - ## / 69
- msys-edit-0.dll (f64f2e88b011) - ## / 70
- msys-expat-1.dll (02061bb1ff75) - ## / 71
- msys-ffi-8.dll (639a8c493ad0) - ## / 67
- msys-fido2-1.dll (05adceead468) - ## / 69
- msys-gnutls-30.dll (3016064b6be2) - ## / 69
- msys-gssapi-3.dll (6e362bfc6463) - ## / 68
- msys-hcrypto-4.dll (0b584238d35c) - ## / 69
- msys-heimbase-1.dll (0df20e5d9164) - ## / 70
- msys-heimntlm-0.dll (e9f801fbb3f4) - ## / 69
- msys-hx509-5.dll (c466b815239c) - ## / 68
- msys-idn2-0.dll (d5e7252be102) - ## / 69
- msys-kafs-0.dll (e64f71161717) - ## / 69
- msys-krb5-26.dll (8d302b9f9839) - ## / 67
- msys-ksba-8.dll (77d438d5d904) - ## / 69
- msys-magic-1.dll (bede7c8e2189) - ## / 69
- msys-mpfr-6.dll (6e02ad3bd066) - ## / 66
- msys-pcre-1.dll (edffd570245b) - ## / 69
- msys-psl-5.dll (3c64601d2263) - ## / 68
- msys-readline8.dll (19de237eb169) - ## / 70
- msys-roken-18.dll (3f5f6037ede5) - ## / 68
- msys-smartcols-1.dll (359073b40814) - ## / 68
- msys-sqlite3-0.dll (159a3f636c47) - ## / 69
- msys-ssl-1.1.dll (320542f28c15) - ## / 68
- msys-unistring-5.dll (38a4c902df50) - ## / 63
- msys-uuid-1.dll (26964aa0e883) - ## / 69
- msys-wind-0.dll (41d9d341b196) - ## / 70
- msys-z.dll (cbb0d89b565d) - ## / 69
- mv.exe (0e990f9314e1) - ## / 70
- nano.exe (0f34d042db26) - ## / 70
- nice.exe (9801b3b6def5) - ## / 70
- nl.exe (925d98a835ad) - ## / 69
- nohup.exe (215a3fa276e0) - ## / 70
- nproc.exe (0b1029ad4b71) - ## / 70
- numfmt.exe (a56e3fdeb73d) - ## / 62
- od.exe (5533b3edb4b4) - ## / 69
- openssl.exe (9f142b5b1583) - ## / 69
- passwd.exe (57ac165d32e3) - ## / 71
- paste.exe (dbe30811afd9) - ## / 69
- patch.exe (5f02c3c167f7) - ## / 70
- pathchk.exe (36afccc7251e) - ## / 70
- pinentry-w32.exe (62d2f9e62e32) - ## / 70
- pinky.exe (7bf3d57f6874) - ## / 70
- pldd.exe (5e5e686e9604) - ## / 71
- pr.exe (6e88ea485319) - ## / 70
- printenv.exe (0c2c6c2141e1) - ## / 70
- printf.exe (dbc52ee41a9d) - ## / 70
- profiler.exe (937a27ee1cd3) - ## / 69
- ps.exe (187128c2cb50) - ## / 70
- psl.exe (5f7f833ec849) - ## / 69
- ptx.exe (adac7303d0a6) - ## / 69
- pwd.exe (d1281cecce65) - ## / 58
- readlink.exe (3617334c2563) - ## / 70
- realpath.exe (e780c23d5d6b) - ## / 70
- regtool.exe (3235c83b3223) - ## / 71
- rm.exe (a845f7517a49) - ## / 70
- rmdir.exe (7d91cc7b4e7a) - ## / 70
- rnano.exe (2dbedab6f4ef) - ## / 69
- runcon.exe (8f3881baac0c) - ## / 70
- scp.exe (7617778e2202) - ## / 70
- sdiff.exe (75fc85f1c9df) - ## / 70
- sed.exe (8d54e322dfc3) - ## / 70
- seq.exe (6e5c79fce1d5) - ## / 70
- setfacl.exe (f2d20f70c1ee) - ## / 69
- setmetamode.exe (122142fd01b3) - ## / 71
- sftp.exe (b51d0723b857) - ## / 69
- sha1sum.exe (2fdbabc61355) - ## / 70
- sha224sum.exe (42026c118285) - ## / 68
- sha256sum.exe (ad199fb8a110) - ## / 65
- sha384sum.exe (1a14f45fcf0f) - ## / 69
- sha512sum.exe (19b1bd5ce7f1) - ## / 70
- shred.exe (0b5368364b3e) - ## / 69
- shuf.exe (d36625fd75bc) - ## / 70
- sleep.exe (3dfa24353173) - ## / 69
- sort.exe (7c5df851d821) - ## / 69
- split.exe (2c37e1474ccc) - ## / 69
- ssh-add.exe (880bc60dc777) - ## / 70
- ssh-agent.exe (af4731ed8022) - ## / 70
- ssh-keygen.exe (68e560d10358) - ## / 69
- ssh-keyscan.exe (350eb4db32cf) - ## / 68
- ssh.exe (0933caeb0072) - ## / 70
- sshd.exe (2a8d7a743301) - ## / 71
- ssp.exe (522d12fe86eb) - ## / 71
- stat.exe (84468965a541) - ## / 70
- stdbuf.exe (8926989b60ca) - ## / 69
- strace.exe (75de244a8b80) - ## / 70
- stty.exe (9fb3079c682d) - ## / 70
- sum.exe (994a8c3a1d3a) - ## / 69
- sync.exe (24312a69a33d) - ## / 70
- tac.exe (894fb8d66858) - ## / 70
- tail.exe (8608c4138642) - ## / 70
- tee.exe (5b956ac9d6bb) - ## / 70
- test.exe (bc151f331dbb) - ## / 70
- timeout.exe (01da440d6316) - ## / 70
- touch.exe (1d895e0f77cb) - ## / 70
- tr.exe (7cf90be63820) - ## / 70
- true.exe (e3ce23542503) - ## / 70
- truncate.exe (d91dfea756b3) - ## / 70
- tsort.exe (d9513d0d97ec) - ## / 70
- tty.exe (b76e6139c92d) - ## / 69
- tzset.exe (8f3f444a87f4) - ## / 70
- umount.exe (2ddedca96798) - ## / 69
- uname.exe (1cba275ff8e0) - ## / 70
- unexpand.exe (1952df1ca353) - ## / 70
- uniq.exe (07e78095a798) - ## / 69
- unlink.exe (b520d67aa204) - ## / 70
- users.exe (2d0d68763854) - ## / 67
- vdir.exe (eb95ca4eb646) - ## / 70
- wc.exe (3ab05efc4703) - ## / 70
- who.exe (b5660ee09997) - ## / 70
- whoami.exe (1a93f1d417aa) - ## / 70
- yes.exe (d7fafc94aeb8) - ## / 70
- [.exe (0093104c9e58) - ## / 70
- getprocaddr32.exe (650fa1d80fd2) - ## / 70
- getprocaddr64.exe (a7eba3b4e004) - ## / 69
- capi.dll (91a49e007710) - ## / 69
- padlock.dll (e53c864655db) - ## / 71
- tclreg13.dll (5a2846ec4904) - ## / 69
- thread287.dll (b0fcef1e72f3) - ## / 70
- git-credential-wincred.exe (2c74647199e3) - ## / 70
- git-daemon.exe (60b9fa1f6f16) - ## / 70
- git-http-backend.exe (f40ba85242b2) - ## / 69
- git-http-fetch.exe (529982fb09d0) - ## / 69
- git-http-push.exe (1eab56240ab7) - ## / 70
- git-imap-send.exe (a517a27f633e) - ## / 70
- git-remote-ftp.exe (8aaf0467c714) - ## / 70
- git-sh-i18n--envsubst.exe (18023df7fcf1) - ## / 67
- headless-git.exe (e59d5260d13d) - ## / 70
- edit-git-bash.exe (488e500a14ab) - ## / 70
- libstdbuf.dll (ca50c44b8cdb) - ## / 71
- sftp-server.exe (40bb6a2cdbea) - ## / 70
- ssh-keysign.exe (b810214724d9) - ## / 62
- ssh-pkcs11-helper.exe (b07d0bb6fbca) - ## / 70
- ssh-sk-helper.exe (b0830378a248) - ## / 69
- capi.dll (3261596bb12e) - ## / 70
- padlock.dll (acc63ff1e04d) - ## / 69
- Cmder.exe (ac8cbb33a8d5) - ## / 70
- clink_dll_x64.dll (6eed28867286) - ## / 61
- clink_dll_x86.dll (cba9f355df1c) - ## / 68
- clink_x64.exe (3662c662a577) - ## / 70
- clink_x86.exe (8f1fce7faea1) - ## / 69
- ConEmu.exe (5c650f32b060) - ## / 70
- ConEmu64.exe (8556915a3816) - ## / 70
- ConEmuC.exe (0c9401142f18) - ## / 70
- ConEmuC64.exe (73827b465e47) - ## / 70
- ConEmuCD.dll (d1b4b268f5ec) - ## / 59
- ConEmuCD64.dll (c39ba98be9a0) - ## / 69
- ConEmuHk.dll (1ffd82eb6819) - ## / 69
- ConEmuHk64.dll (a0a5a66e1beb) - ## / 69
- ExtendedConsole.dll (839267319a49) - ## / 68
- ExtendedConsole64.dll (1f44b782358e) - ## / 69
- ConEmu.dll (b858e1a51e97) - ## / 68
- ConEmu.x64.dll (9d617173957d) - ## / 68
- ConEmuBg.dll (b4aee201ef59) - ## / 60
- ConEmuBg.x64.dll (c5c26bed74c4) - ## / 68
- ConEmuLn.dll (b8f21d0b2329) - ## / 65
- ConEmuLn.x64.dll (319080911be5) - ## / 69
- ConEmuTh.dll (091149ec9f0c) - ## / 69
- ConEmuTh.x64.dll (c1d7b3d22b74) - ## / 69
- Cmder.1.3.21.nupkg (1b6c13ff0a84) - ## / 40
- cmder.7z (50ae085198bf) - ## / 55
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Cmder 1.3.21 | 8424 | Thursday, May 4, 2023 | Approved | |
Cmder 1.3.20 | 42366 | Tuesday, October 18, 2022 | Approved | |
Cmder 1.3.19 | 143740 | Monday, January 17, 2022 | Approved | |
Cmder 1.3.18 | 56554 | Friday, March 26, 2021 | Approved | |
Cmder 1.3.17 | 27237 | Wednesday, December 23, 2020 | Approved | |
Cmder 1.3.16 | 57609 | Friday, July 31, 2020 | Approved | |
Cmder 1.3.15 | 17835 | Saturday, June 27, 2020 | Approved | |
Cmder 1.3.14 | 50837 | Thursday, January 9, 2020 | Approved | |
Cmder 1.3.13 | 17366 | Monday, November 25, 2019 | Approved | |
Cmder 1.3.12 | 36748 | Wednesday, August 21, 2019 | Approved | |
Cmder 1.3.11 | 61611 | Monday, December 24, 2018 | Approved | |
Cmder 1.3.10 | 6795 | Saturday, December 1, 2018 | Approved | |
Cmder 1.3.9 | 310 | Thursday, November 29, 2018 | Approved | |
Cmder 1.3.8 | 6452 | Tuesday, November 13, 2018 | Approved | |
Cmder 1.3.7 | 1387 | Saturday, November 10, 2018 | Approved | |
Cmder 1.3.6 | 5136 | Thursday, October 25, 2018 | Approved | |
Cmder 1.3.5 | 46136 | Sunday, February 11, 2018 | Approved | |
Cmder 1.3.4 | 338 | Thursday, March 29, 2018 | Approved | |
Cmder 1.3.3 | 17820 | Friday, November 3, 2017 | Approved | |
Cmder 1.3.2 | 33841 | Friday, December 16, 2016 | Approved | |
Cmder 1.3.1.20161216 | 373 | Friday, December 16, 2016 | Approved | |
Cmder 1.3.1 | 4611 | Wednesday, November 30, 2016 | Approved | |
Cmder 1.3.0.20160620-beta | 974 | Wednesday, June 22, 2016 | Exempted | |
Cmder 1.3.0 | 10944 | Wednesday, July 20, 2016 | Approved | |
Cmder 1.3.0-beta | 454 | Saturday, May 21, 2016 | Exempted | |
Cmder 1.2.9-beta | 368 | Saturday, May 21, 2016 | Exempted | |
Cmder 1.1.4.102 | 501 | Wednesday, June 22, 2016 | Approved |
Copyright (c) 2016 Samuel Vasko
Software changelog
IMPORTANT
This release updates a dependency with a known vulnerability, it is suggested that you update as soon as possible.
Additionally, a number of regressions from this version and previous versions have now been fixed in the master
branch, which will be released in 1.3.22. For more information, please see Issues. As always, you can download the latest unreleased builds from Actions.
Note: The version file included in this release is incorrectly named Version 1.3.20, instead of the correct 1.3.21. This issue occurred due to a misconfiguration with the build procedure, and is now fixed.
What's Changed
- Added pagent ssh auth support by @AlphaGit in https://github.com/cmderdev/cmder/pull/1391
- Update issue template labels by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2763
- Git-bash use conemu-msys2-64 connector by @nexplorer-3e in https://github.com/cmderdev/cmder/pull/2765
- Improvements to Cmder prompt by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2772
- Improvements to shells and general fixes by @DRSDavidSoft in https://github.com/cmderdev/cmder/pull/2779
- Fix https://github.com/cmderdev/cmder/issues/2789 by @chrisant996 in https://github.com/cmderdev/cmder/pull/2791
- ⬆️ Update dependencies (clink v1.4.4) by @github-actions in https://github.com/cmderdev/cmder/pull/2792
- Update conemu to mitigate CVE-2022-46387 by @MartiUK in https://github.com/cmderdev/cmder/pull/2794
- Fixed a couple of regressions, and minor new improvements.
New Contributors
- @AlphaGit made their first contribution in https://github.com/cmderdev/cmder/pull/1391
- @nexplorer-3e made their first contribution in https://github.com/cmderdev/cmder/pull/2765
Full Changelog: https://github.com/cmderdev/cmder/compare/v1.3.20...v1.3.21
-
- vcredist2010 (≥ 10.0.40219.2)
Ground Rules:
- This discussion is only about Cmder and the Cmder package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Cmder, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.