Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
611,586
Downloads of v 20.11.22.0:
13
Last Update:
22 Nov 2020
Package Maintainer(s):
Software Author(s):
- Maximus5
Tags:
graphical console emulator tabs farmanager powershell cmd bash cygwin msys git
ConEmu
Downloads:
611,586
Downloads of v 20.11.22.0:
13
Maintainer(s):
Software Author(s):
- Maximus5
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Some Checks Have Failed or Are Not Yet Complete
1 Test Passing and 1 Failing Test
This package was rejected on 28 Dec 2020. The reviewer chocolatey-ops has listed the following reason(s):
ConEmu-Maximus5 (short for Console Emulator) is a handy and full featured Windows console window (local terminal) with a lot of enhancements: panes, tabs, tasks, jump lists, quake style, handy text and block selection, handy paste of paths in either Unix or Windows notation, and much more.
ConEmu may work as either standalone window, or embeddable console control. And it may host two types of applications:
- ‘console’: cmd, powershell, Far Manager, bash, and many others;
- ‘graphical’ (GUI): Notepad, PuTTY, GVim, mintty and so on.
Short list of features:
- predefined and user-defined tasks for different shells;
- user friendly text and block selection and paste;
- smooth and friendly window resizing;
- Windows 7 Jump Lists and Progress on Taskbar buttons;
- DosBox integration: run old DOS applications (games) in modern OS;
- quake-style and full screen window modes;
- ANSI sequences and Xterm 256 colors;
- cursor: standard console (horizontal) or GUI (vertical);
- customizable starting tabs;
- Far Manager integration: drag-n-drop, tabs, truecolor, thumbnails;
- unicode and CJK support;
- explore much more features on the project site.
$package = 'ConEmu'
$version = '20.11.22'
$sha256 = 'EC3B92CEBA4F9EC99468D747CDD1CE535A08461BEE40735C895D90B451E1240F'
$isSytem32Bit = (($Env:PROCESSOR_ARCHITECTURE -eq 'x86') -and `
($Env:PROCESSOR_ARCHITEW6432 -eq $null))
$os = if ($isSytem32Bit) { "x86" } else { "x64" }
$url = "https://github.com/Maximus5/ConEmu/releases/download/v$version/ConEmuSetup.$($version.replace('.','')).exe"
# MSI installer, but packed inside wrapper to select x86 or x64
# version. Therefore, treat it as EXE type.
$params = @{
PackageName = $package;
FileType = 'exe';
SilentArgs = "/p:$os /quiet /norestart";
Url = $url;
Url64bit = $url;
checksum = $sha256
checksumType = 'sha256'
checksum64 = $sha256
checksumType64= 'sha256'
}
$script:CE_PID = 0
$script:CE_SRV = 0
$script:CE_WND = 0
$script:CE_DIR = ""
$script:ConEmuC = ""
$script:CE_FILES = @()
function log($s) {
# Write-Host $s
}
function initWinApi() {
Add-Type @"
using System;
using System.Text;
using System.Runtime.InteropServices;
public class ConEmuApi
{
[DllImport("user32.dll", SetLastError=true, CharSet=CharSet.Auto)]
public static extern int IsWindow(IntPtr hwnd);
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
static extern bool MoveFileEx(string lpExistingFileName, string lpNewFileName, int dwFlags);
public static bool MarkFileDelete(string sourcefile)
{
return MoveFileEx(sourcefile, null, 4);
}
}
"@
}
function isWindowAlive($hwnd) {
if (("ConEmuApi" -as [type]) -eq $null) {
initWinApi
}
$rc = [ConEmuApi]::IsWindow($hwnd)
# log "HWND=$hwnd, rc=$rc"
return ($rc -ne 0)
}
function isProcessAlive($id) {
if ((Get-Process -Id $id -ErrorAction Ignore) -eq $Null) {
return $False
}
return $True
}
function isConEmu() {
if (($env:ConEmuDrawHWND -eq $Null) -Or ($env:ConEmuPID -eq $Null) -Or
($env:ConEmuServerPID -eq $Null) -Or ($env:ConEmuBaseDir -eq $Null)) {
return $False
}
$id = [convert]::ToInt32($env:ConEmuPID)
$srv = [convert]::ToInt32($env:ConEmuServerPID)
$wnd = [convert]::ToInt32($env:ConEmuDrawHWND, 16)
if (-Not (isProcessAlive $id)) {
return $False
}
if (-Not (isWindowAlive $wnd)) {
return $False
}
if (Test-Path -path (Join-Path $env:ConEmuBaseDir "ConEmuC.exe") -pathtype leaf) {
$script:ConEmuC = Join-Path $env:ConEmuBaseDir "ConEmuC.exe"
} elseif (Test-Path -path (Join-Path $env:ConEmuBaseDir "ConEmuC64.exe") -pathtype leaf) {
$script:ConEmuC = Join-Path $env:ConEmuBaseDir "ConEmuC64.exe"
} else {
return $False
}
$script:CE_PID = $id
$script:CE_SRV = $srv
$script:CE_WND = $wnd
$script:CE_DIR = $env:ConEmuBaseDir
return $True
}
function unlockFiles($files) {
$suffix = Get-Date -format yyMMddHHmmss
foreach ($fn in $files) {
$f = @{src_name=$fn; tmp_name=".$fn.$suffix";}
$f.Add("src", (Join-Path $script:CE_DIR $f.src_name))
$f.Add("tmp", (Join-Path $script:CE_DIR $f.tmp_name))
try {
if (Test-Path -path $f.src -pathtype leaf) {
Rename-Item -Path $f.src -NewName $f.tmp_name -ErrorAction Stop
$script:CE_FILES += $f
}
} catch {
}
}
}
function removeTempFiles() {
foreach ($f in $script:CE_FILES) {
try {
Remove-Item $f.tmp -ErrorAction Stop
} catch {
$deleteResult = [ConEmuApi]::MarkFileDelete($f.tmp)
}
}
}
function restoreFiles() {
foreach ($f in $script:CE_FILES) {
try {
Rename-Item -Path $f.tmp -NewName $f.src_name -ErrorAction Stop
} catch {
log "Failed to restore file: $($f.src_name)"
}
}
}
function ConEmuPreUpdate() {
# Checking
if (isConEmu) {
# Note, old ConEmu versions weren't able to detach without confirmation
log "Detaching from ConEmu"
$warn_msg = "Please choose <Yes> in the confirmation dialog"
Write-Host -ForegroundColor Green -NoNewLine $warn_msg
$macro_rc = & $script:ConEmuC -GuiMacro:$script:CE_PID detach 3
Write-Host -NoNewLine ("`r".PadRight($warn_msg.length+1)+"`r")
$wait_delay = 10000
$wait_ms = 250
$wait_count = $wait_delay/$wait_ms
# log "Code=$LASTEXITCODE" # may be always 0 and "OK"
# Sleep for 10 sec waiting for detach
$warn_msg = "Waiting for detach"
Write-Host -ForegroundColor Green -NoNewLine $warn_msg
for ($i = 0; $i -lt $wait_count; $i++) {
if (-Not (isWindowAlive $script:CE_WND)) {
log "Detached successfully"
break
}
# Write-Host -NoNewLine "."
Sleep -m $wait_ms
}
Write-Host -NoNewLine ("`r".PadRight($warn_msg.length+1)+"`r")
if ($i -eq $wait_count) {
throw "Detach failed, please try to run update outside of ConEmu"
}
if (isProcessAlive $script:CE_PID) {
Sleep -s 1
if (isProcessAlive $script:CE_PID) {
$warn_msg = "Requesting ConEmu termination"
Write-Host -ForegroundColor Green -NoNewLine $warn_msg
$macro_rc = & $script:ConEmuC -GuiMacro:$script:CE_PID close 2
for ($i = 0; $i -lt $wait_count; $i++) {
if (-Not (isProcessAlive $script:CE_PID)) {
log "Terminated successfully"
break
}
# Write-Host -NoNewLine "."
Sleep -m $wait_ms
}
Write-Host -NoNewLine ("`r".PadRight($warn_msg.length+1)+"`r")
if ($i -eq $wait_count) {
throw "ConEmu process still alive, please try to run update outside of ConEmu"
}
}
}
if (isProcessAlive $script:CE_SRV) {
log "Terminating console server process PID=$($script:CE_SRV)"
Stop-Process -Force -Id $script:CE_SRV
}
log "Renaming hooks libraries"
unlockFiles @("ConEmuHk.dll", "ConEmuHk64.dll")
log "Console is ready to update ConEmu"
} else {
$is_conemu = $FALSE
try {
& ConEmuC.exe -IsConEmu
$is_conemu = ($LASTEXITCODE -eq 1)
} catch {
}
if ($is_conemu) {
throw "Can't detect proper ConEmu environment variables! Please restart console!"
}
log "PowerShell was not stared from ConEmu"
}
}
function ConEmuPostUpdate() {
if ($script:CE_FILES.Count -ne 0) {
if (Test-Path -path $script:CE_FILES[0] -pathtype leaf) {
# On Success
removeTempFiles
} else {
# On Failure
restoreFiles
}
}
if ($script:CE_PID -ne 0) {
Write-Host -ForegroundColor Green "Console restart is strongly recommended to gain proper ConEmu environment"
# Reattach
$rc = Start-Process -FilePath $script:ConEmuC -ArgumentList @("/ATTACH","/NOCMD") -NoNewWindow
for ($i = 0; $i -lt 100; $i++) {
$rc = & $script:ConEmuC -IsConEmu
if ($LASTEXITCODE -eq 1) { break }
Sleep -m 100
}
}
}
# Unlock ConEmu binaries
ConEmuPreUpdate
# Do installation/update
Install-ChocolateyPackage @params
# Try to restore files if update has failed
ConEmuPostUpdate
# Done
$package = 'ConEmu'
$version = '20.11.22'
$isSytem32Bit = (($Env:PROCESSOR_ARCHITECTURE -eq 'x86') -and `
($Env:PROCESSOR_ARCHITEW6432 -eq $null))
$os = if ($isSytem32Bit) { "x86" } else { "x64" }
$displayName = "ConEmu $($version.replace('.','')).$os"
$installerRoot = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer'
$productsRoot = "$installerRoot\UserData\S-1-5-18\Products"
# To avoid unexpected PC reboot, prohibit ConEmu uninstall from ConEmu
$is_conemu = $FALSE
try {
& ConEmuC.exe -IsConEmu
$is_conemu = ($LASTEXITCODE -eq 1)
} catch {
}
if ($is_conemu) {
throw "Can't detect proper ConEmu environment variables! Please restart console!"
}
Write-Host "Searching for installed msi-packet..."
# ConEmu packages do not have fixed GUIDs
$pkg = ""
Get-ChildItem $productsRoot |
% { ($productsRoot + "\" + (Split-Path -Leaf $_.Name) + "\InstallProperties") } |
? { ($pkg -eq "") -And (Test-Path $_) } |
? { ((Get-ItemProperty $_).DisplayName -eq $displayName) } |
% {
$pkg = (Get-ItemProperty $_).LocalPackage
}
if ($pkg -ne "") {
# Write-Host "Found at $pkg"
Write-Host "Uninstalling '$displayName' via 'msiexec /x $pkg'"
Start-Process -Wait msiexec -ArgumentList @("/x", $pkg, "/qb-!")
}
# Done
Log in or click on link to see number of positives.
- ConEmu.20.11.22.0.nupkg (e0c22b4a6b68) - ## / 65
- ConEmuSetup.201122.exe (ec3b92ceba4f) - ## / 71
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
ConEmu 21.1.12.0 | 3523 | Tuesday, January 12, 2021 | Approved |
ConEmu 21.1.11.0 | 1425 | Monday, January 11, 2021 | Approved |
ConEmu 21.1.9.0 | 709 | Sunday, January 10, 2021 | Approved |
ConEmu 20.11.24.0 | 8768 | Wednesday, November 25, 2020 | Approved |
ConEmu 20.11.23.1 | 1316 | Monday, November 23, 2020 | Approved |
ConEmu 20.11.23.0 | 49 | Monday, November 23, 2020 | Approved |
ConEmu 20.11.1.0 | 6379 | Sunday, November 1, 2020 | Approved |
ConEmu 20.10.11.0 | 6961 | Sunday, October 11, 2020 | Approved |
ConEmu 20.9.28.0 | 4709 | Monday, September 28, 2020 | Approved |
ConEmu 20.7.13.0 | 15938 | Monday, July 13, 2020 | Approved |
ConEmu 20.6.15.0 | 12490 | Monday, June 15, 2020 | Approved |
ConEmu 20.6.4.0 | 9304 | Thursday, June 4, 2020 | Approved |
ConEmu 19.10.12.0 | 62237 | Sunday, October 13, 2019 | Approved |
ConEmu 19.7.14.0 | 28477 | Sunday, July 14, 2019 | Approved |
ConEmu 19.6.23.0 | 9810 | Sunday, June 23, 2019 | Approved |
ConEmu 19.5.26.0 | 9538 | Sunday, May 26, 2019 | Approved |
ConEmu 19.3.31.0 | 13497 | Sunday, March 31, 2019 | Approved |
ConEmu 19.3.26.0 | 3110 | Wednesday, March 27, 2019 | Approved |
ConEmu 19.3.24.0 | 2446 | Sunday, March 24, 2019 | Approved |
ConEmu 19.3.10.0 | 7431 | Sunday, March 10, 2019 | Approved |
ConEmu 19.3.3.0 | 5877 | Sunday, March 3, 2019 | Approved |
ConEmu 19.3.1.0 | 1744 | Friday, March 1, 2019 | Approved |
ConEmu 19.2.25.0 | 3745 | Monday, February 25, 2019 | Approved |
ConEmu 19.2.24.0 | 1515 | Monday, February 25, 2019 | Approved |
ConEmu 19.2.17.0 | 4934 | Sunday, February 17, 2019 | Approved |
ConEmu 19.1.8.0 | 16140 | Saturday, January 12, 2019 | Approved |
ConEmu 18.6.26.0 | 28912 | Tuesday, June 26, 2018 | Approved |
ConEmu 18.6.17.0 | 5804 | Sunday, June 17, 2018 | Approved |
ConEmu 18.5.28.0 | 6198 | Monday, May 28, 2018 | Approved |
ConEmu 18.5.6.0 | 6243 | Monday, May 7, 2018 | Approved |
ConEmu 18.5.3.0 | 2058 | Thursday, May 3, 2018 | Approved |
ConEmu 18.4.29.0 | 2562 | Sunday, April 29, 2018 | Approved |
ConEmu 18.4.27.0 | 1130 | Saturday, April 28, 2018 | Approved |
ConEmu 18.4.22.0 | 2996 | Monday, April 23, 2018 | Approved |
ConEmu 18.4.18.0 | 2259 | Thursday, April 19, 2018 | Approved |
ConEmu 18.4.16.0 | 1346 | Tuesday, April 17, 2018 | Approved |
ConEmu 18.4.15.0 | 1923 | Monday, April 16, 2018 | Approved |
ConEmu 18.4.11.0 | 2012 | Thursday, April 12, 2018 | Approved |
ConEmu 18.4.9.0 | 2176 | Monday, April 9, 2018 | Approved |
ConEmu 18.4.8.0 | 1073 | Sunday, April 8, 2018 | Approved |
ConEmu 18.3.18.0 | 10466 | Monday, March 19, 2018 | Approved |
ConEmu 18.3.9.0 | 226 | Sunday, April 8, 2018 | Approved |
ConEmu 18.2.6.0 | 9326 | Tuesday, February 6, 2018 | Approved |
ConEmu 18.1.31.0 | 2693 | Wednesday, January 31, 2018 | Approved |
ConEmu 18.1.30.0 | 1565 | Tuesday, January 30, 2018 | Approved |
ConEmu 18.1.14.0 | 4910 | Monday, January 15, 2018 | Approved |
ConEmu 18.1.11.0 | 2296 | Thursday, January 11, 2018 | Approved |
ConEmu 18.1.8.0 | 1801 | Tuesday, January 9, 2018 | Approved |
ConEmu 17.12.26.0 | 4007 | Wednesday, December 27, 2017 | Approved |
ConEmu 17.12.17.0 | 3331 | Sunday, December 17, 2017 | Approved |
ConEmu 17.12.5.0 | 4172 | Wednesday, December 6, 2017 | Approved |
ConEmu 17.12.3.0 | 2273 | Monday, December 4, 2017 | Approved |
ConEmu 17.11.17.0 | 4910 | Saturday, November 18, 2017 | Approved |
ConEmu 17.11.9.0 | 3809 | Friday, November 10, 2017 | Approved |
ConEmu 17.10.25.0 | 4713 | Thursday, October 26, 2017 | Approved |
ConEmu 17.9.10.0 | 10065 | Monday, September 11, 2017 | Approved |
ConEmu 17.8.19.0 | 5762 | Saturday, August 19, 2017 | Approved |
ConEmu 17.8.7.0 | 3693 | Tuesday, August 8, 2017 | Approved |
ConEmu 17.8.5.0 | 1645 | Sunday, August 6, 2017 | Approved |
ConEmu 17.7.30.0 | 2881 | Sunday, July 30, 2017 | Approved |
ConEmu 17.7.23.0 | 2998 | Sunday, July 23, 2017 | Approved |
ConEmu 17.7.9.0 | 4045 | Monday, July 10, 2017 | Approved |
ConEmu 17.7.5.0 | 1924 | Thursday, July 6, 2017 | Approved |
ConEmu 17.6.22.0 | 3663 | Friday, June 23, 2017 | Approved |
ConEmu 17.6.5.0 | 4493 | Tuesday, June 6, 2017 | Approved |
ConEmu 17.5.17.0 | 5101 | Wednesday, May 17, 2017 | Approved |
ConEmu 17.4.2.0 | 9686 | Monday, April 3, 2017 | Approved |
ConEmu 17.3.26.0 | 3122 | Monday, March 27, 2017 | Approved |
ConEmu 17.3.16.0 | 3117 | Friday, March 17, 2017 | Approved |
ConEmu 17.3.5.0 | 3456 | Monday, March 6, 2017 | Approved |
ConEmu 17.2.27.0 | 3026 | Tuesday, February 28, 2017 | Approved |
ConEmu 17.1.18.0 | 7479 | Thursday, January 19, 2017 | Approved |
ConEmu 16.12.6.0 | 7143 | Wednesday, December 7, 2016 | Approved |
ConEmu 16.12.3.0 | 1557 | Saturday, December 3, 2016 | Approved |
ConEmu 16.10.22.0 | 7211 | Saturday, October 22, 2016 | Approved |
ConEmu 16.10.9.1 | 2937 | Monday, October 10, 2016 | Approved |
ConEmu 16.10.9.0 | 600 | Monday, October 10, 2016 | Approved |
ConEmu 16.10.2.0 | 3876 | Monday, October 3, 2016 | Approved |
ConEmu 16.9.14.0 | 4068 | Thursday, September 15, 2016 | Approved |
ConEmu 16.9.13.0 | 818 | Wednesday, September 14, 2016 | Approved |
ConEmu 16.9.4.0 | 2847 | Sunday, September 4, 2016 | Approved |
ConEmu 16.8.28.0 | 2454 | Monday, August 29, 2016 | Approved |
ConEmu 16.7.24.0 | 8193 | Monday, July 25, 2016 | Approved |
ConEmu 16.7.10.0 | 683 | Monday, July 11, 2016 | Approved |
ConEmu 16.7.7.0 | 354 | Friday, July 8, 2016 | Approved |
ConEmu 16.6.19.0 | 335 | Monday, June 20, 2016 | Approved |
ConEmu 16.6.12.0 | 309 | Tuesday, June 14, 2016 | Approved |
ConEmu 16.6.9.0 | 319 | Thursday, June 9, 2016 | Approved |
ConEmu 16.6.7.0 | 331 | Tuesday, June 7, 2016 | Approved |
ConEmu 16.6.5.0 | 296 | Monday, June 6, 2016 | Approved |
ConEmu 16.5.29.0 | 329 | Sunday, May 29, 2016 | Approved |
ConEmu 16.5.22.0 | 240 | Monday, May 23, 2016 | Approved |
ConEmu 16.5.15.0 | 287 | Monday, May 16, 2016 | Approved |
ConEmu 16.5.4.0 | 383 | Thursday, May 5, 2016 | Approved |
ConEmu 16.5.3.0 | 268 | Wednesday, May 4, 2016 | Approved |
ConEmu 16.4.28.0 | 1386 | Thursday, April 28, 2016 | Approved |
ConEmu 16.4.16.0 | 3058 | Sunday, April 17, 2016 | Approved |
ConEmu 16.4.13.0 | 1239 | Wednesday, April 13, 2016 | Approved |
ConEmu 16.4.11.0 | 964 | Tuesday, April 12, 2016 | Approved |
ConEmu 16.4.3.1 | 2488 | Monday, April 4, 2016 | Approved |
ConEmu 16.4.3.0 | 772 | Saturday, April 2, 2016 | Approved |
ConEmu 16.3.29.0 | 1503 | Wednesday, March 30, 2016 | Approved |
ConEmu 16.3.28.0 | 707 | Tuesday, March 29, 2016 | Approved |
ConEmu 16.3.27.0 | 752 | Monday, March 28, 2016 | Approved |
ConEmu 16.3.24.0 | 1159 | Friday, March 25, 2016 | Approved |
ConEmu 16.3.13.0 | 2745 | Sunday, March 13, 2016 | Approved |
ConEmu 16.3.10.0 | 970 | Friday, March 11, 2016 | Approved |
ConEmu 16.3.8.0 | 1055 | Tuesday, March 8, 2016 | Approved |
ConEmu 16.3.1.0 | 1887 | Wednesday, March 2, 2016 | Approved |
ConEmu 16.2.28.0 | 874 | Monday, February 29, 2016 | Approved |
ConEmu 16.2.22.0 | 1830 | Monday, February 22, 2016 | Approved |
ConEmu 16.2.19.0 | 943 | Saturday, February 20, 2016 | Approved |
ConEmu 16.2.18.0 | 571 | Friday, February 19, 2016 | Approved |
ConEmu 16.2.17.0 | 760 | Thursday, February 18, 2016 | Approved |
ConEmu 16.2.11.0 | 1589 | Thursday, February 11, 2016 | Approved |
ConEmu 16.2.7.0 | 273 | Monday, February 8, 2016 | Approved |
ConEmu 16.2.4.0 | 1879 | Thursday, February 4, 2016 | Approved |
ConEmu 16.2.2.0 | 858 | Wednesday, February 3, 2016 | Approved |
ConEmu 16.1.24.0 | 2145 | Monday, January 25, 2016 | Approved |
ConEmu 16.1.11.0 | 2764 | Monday, January 11, 2016 | Approved |
ConEmu 15.12.24.0 | 3157 | Friday, December 25, 2015 | Approved |
ConEmu 15.12.22.0 | 761 | Tuesday, December 22, 2015 | Approved |
ConEmu 15.12.17.0 | 1339 | Thursday, December 17, 2015 | Approved |
ConEmu 15.12.10.0 | 1541 | Thursday, December 10, 2015 | Approved |
ConEmu 15.12.8.0 | 797 | Tuesday, December 8, 2015 | Approved |
ConEmu 15.12.7.0 | 540 | Monday, December 7, 2015 | Approved |
ConEmu 15.12.5.0 | 749 | Sunday, December 6, 2015 | Approved |
ConEmu 15.12.2.0 | 894 | Wednesday, December 2, 2015 | Approved |
ConEmu 15.11.29.0 | 1038 | Monday, November 30, 2015 | Approved |
ConEmu 15.11.26.0 | 747 | Friday, November 27, 2015 | Approved |
ConEmu 15.11.22.0 | 1211 | Monday, November 23, 2015 | Approved |
ConEmu 15.11.19.0 | 891 | Friday, November 20, 2015 | Approved |
ConEmu 15.11.15.0 | 1288 | Monday, November 16, 2015 | Approved |
ConEmu 15.11.9.0 | 1507 | Monday, November 9, 2015 | Approved |
ConEmu 15.11.1.0 | 1706 | Monday, November 2, 2015 | Approved |
ConEmu 15.10.29.0 | 930 | Thursday, October 29, 2015 | Approved |
ConEmu 15.10.25.0 | 1217 | Sunday, October 25, 2015 | Approved |
ConEmu 15.10.15.0 | 2292 | Friday, October 16, 2015 | Approved |
ConEmu 15.10.6.0 | 2421 | Wednesday, October 7, 2015 | Approved |
ConEmu 15.9.13.0 | 3985 | Sunday, September 13, 2015 | Approved |
ConEmu 15.9.10.0 | 786 | Friday, September 11, 2015 | Approved |
ConEmu 15.9.8.0 | 1191 | Monday, September 7, 2015 | Approved |
ConEmu 15.8.21.0 | 2851 | Saturday, August 22, 2015 | Approved |
ConEmu 15.8.16.0 | 1424 | Monday, August 17, 2015 | Approved |
ConEmu 15.8.14.0 | 696 | Saturday, August 15, 2015 | Approved |
ConEmu 15.8.13.0 | 488 | Friday, August 14, 2015 | Approved |
ConEmu 15.7.28.0 | 3071 | Wednesday, July 29, 2015 | Approved |
ConEmu 15.7.27.0 | 660 | Monday, July 27, 2015 | Approved |
ConEmu 15.7.22.0 | 1057 | Thursday, July 23, 2015 | Approved |
ConEmu 15.7.16.0 | 1441 | Thursday, July 16, 2015 | Approved |
ConEmu 15.7.7.0 | 1823 | Tuesday, July 7, 2015 | Approved |
ConEmu 15.7.5.0 | 745 | Monday, July 6, 2015 | Approved |
ConEmu 15.7.1.0 | 1020 | Thursday, July 2, 2015 | Approved |
ConEmu 15.6.29.0 | 819 | Tuesday, June 30, 2015 | Approved |
ConEmu 15.6.21.0 | 1397 | Monday, June 22, 2015 | Approved |
ConEmu 15.5.13.0 | 3455 | Wednesday, May 13, 2015 | Approved |
ConEmu 15.5.4.0 | 1318 | Tuesday, May 5, 2015 | Approved |
ConEmu 15.4.27.0 | 1110 | Tuesday, April 28, 2015 | Approved |
ConEmu 15.4.20.0 | 747 | Friday, April 24, 2015 | Approved |
ConEmu 15.4.9.0 | 1633 | Friday, April 10, 2015 | Approved |
ConEmu 15.4.8.0 | 591 | Thursday, April 9, 2015 | Approved |
ConEmu 15.4.5.0 | 762 | Monday, April 6, 2015 | Approved |
ConEmu 15.3.31.0 | 855 | Wednesday, April 1, 2015 | Approved |
ConEmu 15.3.27.0 | 783 | Saturday, March 28, 2015 | Approved |
ConEmu 15.3.16.0 | 746 | Tuesday, March 24, 2015 | Approved |
ConEmu 14.9.23.0 | 8722 | Thursday, September 25, 2014 | Approved |
ConEmu 14.9.22.0 | 561 | Wednesday, September 24, 2014 | Approved |
ConEmu 14.9.14.0 | 903 | Monday, September 15, 2014 | Approved |
ConEmu 13.12.25.0 | 7096 | Friday, January 3, 2014 | Approved |
ConEmu 13.9.13.0 | 2169 | Monday, September 16, 2013 | Approved |
ConEmu 13.7.8.0 | 2290 | Tuesday, July 16, 2013 | Approved |
ConEmu 12.6.18-alpha | 657 | Friday, June 22, 2012 | Approved |
ConEmu 12.4.17.1 | 1774 | Thursday, September 13, 2012 | Approved |
ConEmu 12.4.17 | 494 | Friday, June 22, 2012 | Approved |
© 2015, Maximus5
This package has no dependencies.
Ground Rules:
- This discussion is only about ConEmu and the ConEmu 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 ConEmu, 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.
Maximus5 (maintainer) on 22 Nov 2020 23:38:03 +00:00:
User 'Maximus5' (maintainer) submitted package.
chocolatey-ops (reviewer) on 23 Nov 2020 00:12:52 +00:00:
ConEmu has passed automated validation. It may have or may still fail other checks like testing (verification).
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
packageSourceUrl
, pointing to the url where the package source resides. This is a strong guideline because it simplifies collaboration. Please add it to the nuspec. More...Notes
Notes typically flag things for both you and the reviewer to go over. Sometimes this is the use of things that may or may not be necessary given the constraints of what you are trying to do and/or are harder for automation to flag for other reasons. Items found in Notes might be Requirements depending on the context. A package version can be approved without addressing Note comments.
chocolatey-ops (reviewer) on 23 Nov 2020 16:21:44 +00:00:
ConEmu has failed automated testing.
This is not the only check that is performed so check the package page to ensure a 'Ready' status.
Please visit https://gist.github.com/b0e50bef7889824c2228758444fdf7d8 for details.
The package status will be changed and will be waiting on your next actions.
chocolatey-ops (reviewer) on 13 Dec 2020 16:23:58 +00:00:
We've found ConEmu v20.11.22.0 in a submitted status and waiting for your next actions. It has had no updates for 20 or more days since a reviewer has asked for corrections. Please note that if there is no response or fix of the package within 15 days of this message, this package version will automatically be closed (rejected) due to being stale.
Take action:
If your package is failing automated testing, you can use the chocolatey test environment to manually run the verification and determine what may need to be fixed.
Note: We don't like to see packages automatically rejected. It doesn't mean that we don't value your contributions, just that we can not continue to hold packages versions in a waiting status that have possibly been abandoned. If you don't believe you will be able to fix up this version of the package within 15 days, we strongly urge you to log in to the site and respond to the review comments until you are able to.
chocolatey-ops (reviewer) on 28 Dec 2020 16:27:26 +00:00:
Unfortunately there has not been progress to move ConEmu v20.11.22.0 towards an approved status within 15 days after the last review message, so we need to close (reject) the package version at this time. If you want to pick this version up and move it towards approval in the future, use the contact site admins link on the package page and we can move it back into a submitted status so you can submit updates.
Status Change - Changed status of package from 'submitted' to 'rejected'.