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:
1,123,064
Downloads of v 0.127.0:
2,680
Last Update:
11 Sep 2014
Package Maintainer(s):
Software Author(s):
- https://github.com/orgs/atom/members
Tags:
atom notepad text github- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Atom
This is not the latest version of Atom available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,123,064
Downloads of v 0.127.0:
2,680
Maintainer(s):
Software Author(s):
- https://github.com/orgs/atom/members
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.
Atom 0.127.0
This is not the latest version of Atom available.
All Checks are Unknown
2 Test of Unknown Status
Validation Testing Unknown
Verification Testing Unknown
To install Atom, run the following command from the command line or from PowerShell:
To upgrade Atom, run the following command from the command line or from PowerShell:
To uninstall Atom, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
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://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
choco download atom --internalize --version=0.127.0 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade atom -y --source="'STEP 3 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 atom -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure atom installed
win_chocolatey:
name: atom
state: present
version: 0.127.0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'atom' do
action :install
version '0.127.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: atom,
Version: 0.127.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller atom
{
Name = 'atom'
Ensure = 'Present'
Version = '0.127.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'atom':
provider => 'chocolatey',
ensure => '0.127.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install atom version="0.127.0" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 06 Nov 2014.
Read more @http://atom.io
$dest = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
. $(Join-Path $dest "functions.ps1")
# Install zip
$packageName = 'Atom' # arbitrary name for the package, used in messages
$url = 'https://github.com/atom/atom/releases/download/v0.127.0/atom-windows.zip' # download url
$url64 = $url # 64bit URL here or just use the same as $url
Install-ChocolateyZipPackage "$packageName" "$url" "$dest" "$url64"
# Install desktop shortcut
$desktop = $([System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::DesktopDirectory))
$desktopLink = Join-Path $desktop "$packageName.lnk"
Install-ChocolateyShortcut -shortcutFilePath $desktopLink -targetPath "$dest\Atom\atom.exe"
# Install start menu shortcut
$startMenu = $([System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::Programs))
$githubStartMenuGroup = Join-Path $startMenu "GitHub, Inc"
New-Item $githubStartMenuGroup -type directory -force
$startMenuLink = Join-Path $githubStartMenuGroup "$packageName.lnk"
Install-ChocolateyShortcut -shortcutFilePath $startMenuLink -targetPath "$dest\Atom\atom.exe"
# Install explorer menu shortcut
Install-ChocolateyExplorerMenuItem "Atom" "Open with Atom" "$dest\Atom\atom.exe" "file"
# Install apm shortcut
Install-BinFile "apm" "$dest\Atom\resources\app\apm\node_modules\atom-package-manager\bin\apm.cmd"
function Install-ChocolateyShortcut {
param(
[string] $shortcutFilePath,
[string] $targetPath,
[string] $workingDirectory,
[string] $arguments,
[string] $iconLocation,
[string] $description
)
Write-Debug "Running 'Install-ChocolateyShortcut' with parameters ShortcutFilePath: `'$shortcutFilePath`', TargetPath: `'$targetPath`', WorkingDirectory: `'$workingDirectory`', Arguments: `'$arguments`', IconLocation: `'$iconLocation`', Description: `'$description`'";
if(!$shortcutFilePath) {
Write-ChocolateyFailure "Install-ChocolateyShortcut" "Missing ShortCutFilePath input parameter."
return
}
if(!$targetPath) {
Write-ChocolateyFailure "Install-ChocolateyShortcut" "Missing TargetPath input parameter."
return
}
if(!(Test-Path($targetPath))) {
Write-ChocolateyFailure "Install-ChocolateyShortcut" "TargetPath does not exist, so can't create shortcut."
return
}
if($iconLocation) {
if(!(Test-Path($iconLocation))) {
Write-ChocolateyFailure "Install-ChocolateyShortcut" "IconLocation does not exist, so can't create shortcut."
return
}
}
if($workingDirectory) {
if(!(Test-Path($workingDirectory))) {
Write-ChocolateyFailure "Install-ChocolateyShortcut" "WorkingDirectory does not exist, so can't create shortcut."
return
}
}
Write-Debug "Creating Shortcut..."
try {
$global:WshShell = New-Object -com "WScript.Shell"
$lnk = $global:WshShell.CreateShortcut($shortcutFilePath)
$lnk.TargetPath = $targetPath
$lnk.WorkingDirectory = $workingDirectory
$lnk.Arguments = $arguments
if($iconLocation) {
$lnk.IconLocation = $iconLocation
}
$lnk.Description = $description
$lnk.Save()
Write-Debug "Shortcut created."
Write-ChocolateySuccess "Install-ChocolateyShortcut completed"
}
catch {
Write-ChocolateyFailure "Install-ChocolateyShortcut" "There were errors attempting to create shortcut. The error message was '$_'."
}
}
function Install-BinFile {
param(
[string] $name,
[string] $path
)
Write-Debug "Running 'Install-BinFile' for $name with path:`'$path`'";
$packageBatchFileName = Join-Path $nugetExePath "$name.bat"
if (Test-Path ($packageBatchFileName)) {Remove-Item $packageBatchFileName -force}
$path = $path.ToLower().Replace($nugetPath.ToLower(), "..\").Replace("\\","\")
$path = "%DIR%$($path)"
$pathBash = $path.Replace("%DIR%..\","`$DIR/../").Replace("\","/")
Write-Host "Adding $packageBatchFileName and pointing to `'$path`'." -ForegroundColor $Note
"@echo off
SET DIR=%~dp0%
cmd /c ""$path %*""
exit /b %ERRORLEVEL%" | Out-File $packageBatchFileName -encoding ASCII
}
Log in or click on link to see number of positives.
- Atom.0.127.0.nupkg (9cfa4f80dbd0) - ## / 56
- atom-windows.zip (281c32f05051) - ## / 45
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 |
---|---|---|---|
Atom 1.55.0-beta0 | 118 | Thursday, January 14, 2021 | Approved |
Atom 1.54.0 | 3754 | Thursday, January 14, 2021 | Approved |
Atom 1.54.0-beta0 | 562 | Tuesday, November 10, 2020 | Approved |
Atom 1.53.0 | 13582 | Tuesday, November 10, 2020 | Approved |
Atom 1.53.0-beta0 | 287 | Tuesday, October 13, 2020 | Approved |
Atom 1.52.0.20201107 | 1406 | Saturday, November 7, 2020 | Approved |
Atom 1.52.0 | 7463 | Tuesday, October 13, 2020 | Approved |
Atom 1.52.0-beta0 | 277 | Wednesday, September 9, 2020 | Approved |
Atom 1.51.0 | 8774 | Wednesday, September 9, 2020 | Approved |
Atom 1.51.0-beta0 | 240 | Tuesday, August 11, 2020 | Approved |
Atom 1.50.0 | 8387 | Tuesday, August 11, 2020 | Approved |
Atom 1.50.0-beta0 | 267 | Tuesday, July 14, 2020 | Approved |
Atom 1.49.0 | 7767 | Tuesday, July 14, 2020 | Approved |
Atom 1.49.0-beta0 | 301 | Wednesday, June 10, 2020 | Approved |
Atom 1.48.0 | 8452 | Wednesday, June 10, 2020 | Approved |
Atom 1.48.0-beta0 | 200 | Tuesday, May 19, 2020 | Approved |
Atom 1.47.0 | 6694 | Tuesday, May 19, 2020 | Approved |
Atom 1.47.0-beta0 | 190 | Tuesday, May 5, 2020 | Approved |
Atom 1.46.0 | 4784 | Tuesday, May 5, 2020 | Approved |
Atom 1.46.0-beta0 | 423 | Tuesday, March 10, 2020 | Approved |
Atom 1.45.0 | 13928 | Tuesday, March 10, 2020 | Approved |
Atom 1.45.0-beta0 | 149 | Tuesday, February 11, 2020 | Approved |
Atom 1.44.0 | 9193 | Monday, February 10, 2020 | Approved |
Atom 1.44.0-beta0 | 1001 | Monday, January 20, 2020 | Approved |
Atom 1.43.0 | 11962 | Wednesday, January 15, 2020 | Approved |
Atom 1.43.0-beta0 | 140 | Monday, December 16, 2019 | Approved |
Atom 1.42.0.20191029-beta0 | 224 | Monday, October 28, 2019 | Exempted |
Atom 1.41.0.20191029 | 27698 | Monday, October 28, 2019 | Approved |
Atom 1.41.0-beta1 | 280 | Tuesday, August 20, 2019 | Exempted |
Atom 1.41.0-beta0 | 109 | Tuesday, August 13, 2019 | Exempted |
Atom 1.40.0-beta1 | 142 | Thursday, July 25, 2019 | Exempted |
Atom 1.40.0-beta0 | 103 | Tuesday, July 23, 2019 | Exempted |
Atom 1.39.1 | 34823 | Thursday, July 25, 2019 | Approved |
Atom 1.39.0 | 1451 | Tuesday, July 23, 2019 | Approved |
Atom 1.39.0-beta3 | 176 | Tuesday, July 2, 2019 | Approved |
Atom 1.39.0-beta2 | 141 | Monday, June 17, 2019 | Approved |
Atom 1.39.0-beta1 | 105 | Thursday, June 13, 2019 | Exempted |
Atom 1.39.0-beta0 | 98 | Tuesday, June 11, 2019 | Approved |
Atom 1.38.2 | 13710 | Monday, June 17, 2019 | Approved |
Atom 1.38.1 | 2394 | Thursday, June 13, 2019 | Approved |
Atom 1.38.0 | 1343 | Tuesday, June 11, 2019 | Approved |
Atom 1.38.0-beta0 | 178 | Tuesday, May 14, 2019 | Approved |
Atom 1.37.0 | 11209 | Tuesday, May 14, 2019 | Approved |
Atom 1.37.0-beta1 | 169 | Friday, April 26, 2019 | Approved |
Atom 1.37.0-beta0 | 155 | Thursday, April 11, 2019 | Approved |
Atom 1.36.1 | 8225 | Friday, April 26, 2019 | Approved |
Atom 1.36.0 | 6381 | Thursday, April 11, 2019 | Approved |
Atom 1.36.0-beta2 | 202 | Friday, March 29, 2019 | Approved |
Atom 1.36.0-beta1 | 149 | Wednesday, March 13, 2019 | Approved |
Atom 1.36.0-beta0 | 107 | Tuesday, March 12, 2019 | Exempted |
Atom 1.35.1 | 6591 | Wednesday, March 13, 2019 | Approved |
Atom 1.35.0 | 1142 | Tuesday, March 12, 2019 | Approved |
Atom 1.35.0-beta0 | 302 | Wednesday, January 9, 2019 | Approved |
Atom 1.34.0 | 12736 | Wednesday, January 9, 2019 | Approved |
Atom 1.34.0-beta1 | 173 | Thursday, December 20, 2018 | Approved |
Atom 1.34.0-beta0 | 195 | Thursday, November 29, 2018 | Approved |
Atom 1.33.1 | 4349 | Thursday, December 20, 2018 | Approved |
Atom 1.33.0 | 5084 | Thursday, November 29, 2018 | Approved |
Atom 1.33.0-beta3 | 119 | Wednesday, November 21, 2018 | Approved |
Atom 1.33.0-beta2 | 185 | Friday, November 9, 2018 | Approved |
Atom 1.33.0-beta1 | 160 | Wednesday, October 31, 2018 | Approved |
Atom 1.33.0-beta0 | 163 | Wednesday, October 24, 2018 | Approved |
Atom 1.32.2 | 4296 | Friday, November 9, 2018 | Approved |
Atom 1.32.1 | 2571 | Wednesday, October 31, 2018 | Approved |
Atom 1.32.0 | 2196 | Wednesday, October 24, 2018 | Approved |
Atom 1.32.0-beta3 | 195 | Saturday, October 6, 2018 | Approved |
Atom 1.32.0-beta2 | 135 | Friday, October 5, 2018 | Approved |
Atom 1.32.0-beta1 | 155 | Friday, September 28, 2018 | Approved |
Atom 1.32.0-beta0 | 128 | Thursday, September 27, 2018 | Approved |
Atom 1.31.2 | 4033 | Saturday, October 6, 2018 | Approved |
Atom 1.31.1 | 2557 | Friday, September 28, 2018 | Approved |
Atom 1.31.0 | 779 | Thursday, September 27, 2018 | Approved |
Atom 1.31.0-beta1 | 199 | Friday, August 31, 2018 | Approved |
Atom 1.31.0-beta0 | 151 | Wednesday, August 29, 2018 | Approved |
Atom 1.30.0 | 23405 | Wednesday, August 29, 2018 | Approved |
Atom 1.30.0-beta2 | 235 | Wednesday, August 15, 2018 | Approved |
Atom 1.30.0-beta1 | 221 | Wednesday, August 1, 2018 | Approved |
Atom 1.30.0-beta0 | 152 | Wednesday, August 1, 2018 | Approved |
Atom 1.29.0 | 40239 | Wednesday, August 1, 2018 | Approved |
Atom 1.29.0-beta2 | 276 | Saturday, July 14, 2018 | Approved |
Atom 1.29.0-beta1 | 241 | Thursday, July 5, 2018 | Approved |
Atom 1.29.0-beta0 | 282 | Friday, June 22, 2018 | Approved |
Atom 1.28.2 | 36657 | Saturday, July 14, 2018 | Approved |
Atom 1.28.1 | 18779 | Thursday, July 5, 2018 | Approved |
Atom 1.28.0 | 19664 | Friday, June 22, 2018 | Approved |
Atom 1.28.0-beta3 | 264 | Wednesday, June 6, 2018 | Approved |
Atom 1.28.0-beta2 | 229 | Thursday, May 31, 2018 | Approved |
Atom 1.28.0-beta1 | 240 | Monday, May 21, 2018 | Approved |
Atom 1.28.0-beta0 | 221 | Tuesday, May 15, 2018 | Approved |
Atom 1.27.2 | 44983 | Thursday, May 31, 2018 | Approved |
Atom 1.27.1 | 31319 | Monday, May 21, 2018 | Approved |
Atom 1.27.0 | 9345 | Tuesday, May 15, 2018 | Approved |
Atom 1.27.0-beta1 | 284 | Friday, April 27, 2018 | Approved |
Atom 1.27.0-beta0 | 233 | Thursday, April 19, 2018 | Approved |
Atom 1.26.1 | 29614 | Friday, April 27, 2018 | Approved |
Atom 1.26.0 | 13855 | Thursday, April 19, 2018 | Approved |
Atom 1.26.0-beta2 | 234 | Friday, April 13, 2018 | Approved |
Atom 1.26.0-beta1 | 215 | Thursday, April 5, 2018 | Approved |
Atom 1.26.0-beta0 | 312 | Friday, March 16, 2018 | Approved |
Atom 1.25.1 | 21830 | Thursday, April 5, 2018 | Approved |
Atom 1.25.0 | 25930 | Friday, March 16, 2018 | Approved |
Atom 1.25.0-beta3 | 235 | Thursday, March 8, 2018 | Approved |
Atom 1.25.0-beta2 | 280 | Thursday, February 22, 2018 | Approved |
Atom 1.25.0-beta1 | 254 | Tuesday, February 20, 2018 | Approved |
Atom 1.25.0-beta0 | 254 | Wednesday, February 14, 2018 | Approved |
Atom 1.24.1 | 11453 | Thursday, March 8, 2018 | Approved |
Atom 1.24.0 | 32841 | Wednesday, February 14, 2018 | Approved |
Atom 1.24.0-beta3 | 327 | Wednesday, January 10, 2018 | Approved |
Atom 1.24.0-beta2 | 289 | Wednesday, January 3, 2018 | Approved |
Atom 1.24.0-beta1 | 608 | Friday, December 15, 2017 | Approved |
Atom 1.24.0-beta0 | 282 | Tuesday, December 12, 2017 | Approved |
Atom 1.23.3 | 44175 | Wednesday, January 10, 2018 | Approved |
Atom 1.23.2 | 9817 | Wednesday, January 3, 2018 | Approved |
Atom 1.23.1 | 21535 | Thursday, December 14, 2017 | Approved |
Atom 1.23.0 | 3192 | Tuesday, December 12, 2017 | Approved |
Atom 1.23.0-beta1 | 361 | Saturday, November 18, 2017 | Approved |
Atom 1.23.0-beta0 | 313 | Wednesday, November 8, 2017 | Approved |
Atom 1.22.1 | 27541 | Saturday, November 18, 2017 | Approved |
Atom 1.22.0 | 14343 | Wednesday, November 8, 2017 | Approved |
Atom 1.22.0-beta2 | 268 | Tuesday, October 31, 2017 | Approved |
Atom 1.22.0-beta1 | 310 | Saturday, October 21, 2017 | Approved |
Atom 1.22.0-beta0 | 345 | Tuesday, October 3, 2017 | Approved |
Atom 1.21.2 | 9548 | Tuesday, October 31, 2017 | Approved |
Atom 1.21.1 | 19102 | Thursday, October 12, 2017 | Approved |
Atom 1.21.0 | 16101 | Wednesday, October 4, 2017 | Approved |
Atom 1.21.0-beta2 | 319 | Thursday, September 28, 2017 | Approved |
Atom 1.20.1 | 9863 | Thursday, September 28, 2017 | Approved |
Atom 1.0.7 | 158613 | Wednesday, August 12, 2015 | Approved |
Atom 0.174.1 | 23225 | Thursday, January 15, 2015 | Approved |
Atom 0.174.0 | 463 | Thursday, January 15, 2015 | Approved |
Atom 0.155.0 | 11516 | Tuesday, December 9, 2014 | Approved |
Atom 0.154.0 | 1110 | Tuesday, December 9, 2014 | Approved |
Atom 0.153.0 | 2133 | Friday, December 5, 2014 | Approved |
Atom 0.152.0 | 3049 | Monday, December 1, 2014 | Approved |
Atom 0.150.0 | 5650 | Thursday, November 20, 2014 | Approved |
Atom 0.149.0 | 1235 | Thursday, November 20, 2014 | Approved |
Atom 0.148.0 | 658 | Wednesday, November 19, 2014 | Approved |
Atom 0.147.0 | 1645 | Tuesday, November 18, 2014 | Approved |
Atom 0.146.0 | 4322 | Wednesday, November 12, 2014 | Approved |
Atom 0.145.0 | 1647 | Tuesday, November 11, 2014 | Approved |
Atom 0.144.0 | 2769 | Saturday, November 8, 2014 | Approved |
Atom 0.143.0 | 819 | Friday, November 7, 2014 | Approved |
Atom 0.142.0 | 1339 | Thursday, November 6, 2014 | Approved |
Atom 0.141.0 | 4283 | Thursday, October 30, 2014 | Approved |
Atom 0.140.0 | 3409 | Monday, October 27, 2014 | Approved |
Atom 0.139.0 | 3665 | Wednesday, October 22, 2014 | Approved |
Atom 0.138.0 | 3731 | Friday, October 17, 2014 | Approved |
Atom 0.137.0 | 2284 | Wednesday, October 15, 2014 | Approved |
Atom 0.136.0 | 6970 | Tuesday, October 7, 2014 | Approved |
Atom 0.135.0 | 3022 | Thursday, October 2, 2014 | Approved |
Atom 0.134.0 | 1322 | Wednesday, October 1, 2014 | Approved |
Atom 0.133.0 | 1190 | Tuesday, September 30, 2014 | Approved |
Atom 0.132.0 | 2353 | Friday, September 26, 2014 | Approved |
Atom 0.131.0 | 1929 | Wednesday, September 24, 2014 | Approved |
Atom 0.130.0 | 1255 | Tuesday, September 23, 2014 | Approved |
Atom 0.129.1 | 2917 | Wednesday, September 17, 2014 | Approved |
Atom 0.129.0 | 1159 | Tuesday, September 16, 2014 | Approved |
Atom 0.127.0 | 2680 | Thursday, September 11, 2014 | Approved |
Atom 0.126.0 | 1280 | Wednesday, September 10, 2014 | Approved |
Atom 0.125.0 | 2790 | Friday, September 5, 2014 | Approved |
Atom 0.124.0 | 4550 | Tuesday, August 26, 2014 | Approved |
Atom 0.123.0 | 4670 | Friday, August 15, 2014 | Approved |
Atom 0.122.0 | 1014 | Thursday, August 14, 2014 | Approved |
Atom 0.121.0 | 1376 | Wednesday, August 13, 2014 | Approved |
Atom 0.120.0 | 5689 | Monday, July 28, 2014 | Approved |
Atom 0.119.0 | 2016 | Friday, July 25, 2014 | Approved |
Atom 0.118.0 | 1025 | Thursday, July 24, 2014 | Approved |
Atom 0.117.0 | 1955 | Tuesday, July 22, 2014 | Approved |
Atom 0.116.0 | 567 | Tuesday, July 22, 2014 | Approved |
Atom 0.115.0 | 8969 | Friday, July 11, 2014 | Approved |
Atom 0.114.0 | 822 | Friday, July 11, 2014 | Approved |
Atom 0.113.0 | 6329 | Tuesday, July 8, 2014 | Approved |
Atom 0.112.0 | 499 | Tuesday, July 8, 2014 | Approved |
Atom 0.111.0 | 491 | Tuesday, July 8, 2014 | Approved |
Atom 0.110.0 | 689 | Tuesday, July 8, 2014 | Approved |
Atom 0.101.0 | 733 | Thursday, June 5, 2014 | Approved |
Atom 0.96.1.0 | 632 | Saturday, May 17, 2014 | Approved |
Atom 0.0.0.1 | 614 | Friday, May 9, 2014 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Atom and the Atom 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 Atom, 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.