Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,280,285

Downloads of v 0.127.0:

2,845

Last Update:

11 Sep 2014

Package Maintainer(s):

Software Author(s):

  • https://github.com/orgs/atom/members

Tags:

atom notepad text github

Atom

This is not the latest version of Atom available.

  • 1
  • 2
  • 3

0.127.0 | Updated: 11 Sep 2014

Downloads:

1,280,285

Downloads of v 0.127.0:

2,845

Maintainer(s):

Software Author(s):

  • https://github.com/orgs/atom/members

Atom 0.127.0

This is not the latest version of Atom available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Unknown


Verification Testing Unknown


Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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:

>

Deployment Method:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade atom -y --source="'INTERNAL REPO URL'" --version="'0.127.0'" [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="'INTERNAL REPO URL'" --version="'0.127.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install atom
  win_chocolatey:
    name: atom
    version: '0.127.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'atom' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.127.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller atom
{
    Name     = "atom"
    Version  = "0.127.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'atom':
  ensure   => '0.127.0',
  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.

Package Approved

This package was approved as a trusted package on 06 Nov 2014.

Description

Read more @http://atom.io


tools\chocolateyInstall.ps1
$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"
tools\functions.ps1
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.

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
Atom 1.61.0-beta0 280 Tuesday, March 8, 2022 Approved
Atom 1.60.0-beta0 111 Tuesday, February 8, 2022 Approved
Atom 1.59.0 7808 Tuesday, February 8, 2022 Approved
Atom 1.59.0-beta0 268 Tuesday, July 27, 2021 Approved
Atom 1.58.0 27211 Tuesday, July 27, 2021 Approved
Atom 1.58.0-beta0 175 Tuesday, May 11, 2021 Approved
Atom 1.57.0 12569 Tuesday, May 11, 2021 Approved
Atom 1.57.0-beta0 139 Tuesday, April 13, 2021 Approved
Atom 1.56.0 6272 Tuesday, April 13, 2021 Approved
Atom 1.56.0-beta0 332 Wednesday, March 10, 2021 Approved
Atom 1.55.0 7430 Wednesday, March 10, 2021 Approved
Atom 1.55.0-beta0 631 Thursday, January 14, 2021 Approved
Atom 1.54.0 11186 Thursday, January 14, 2021 Approved
Atom 1.54.0-beta0 692 Tuesday, November 10, 2020 Approved
Atom 1.53.0 13726 Tuesday, November 10, 2020 Approved
Atom 1.53.0-beta0 385 Tuesday, October 13, 2020 Approved
Atom 1.52.0.20201107 1506 Saturday, November 7, 2020 Approved
Atom 1.52.0 7593 Tuesday, October 13, 2020 Approved
Atom 1.52.0-beta0 397 Wednesday, September 9, 2020 Approved
Atom 1.51.0 8896 Wednesday, September 9, 2020 Approved
Atom 1.51.0-beta0 391 Tuesday, August 11, 2020 Approved
Atom 1.50.0 8503 Tuesday, August 11, 2020 Approved
Atom 1.50.0-beta0 402 Tuesday, July 14, 2020 Approved
Atom 1.49.0 7882 Tuesday, July 14, 2020 Approved
Atom 1.49.0-beta0 443 Wednesday, June 10, 2020 Approved
Atom 1.48.0 8606 Wednesday, June 10, 2020 Approved
Atom 1.48.0-beta0 327 Tuesday, May 19, 2020 Approved
Atom 1.47.0 6829 Tuesday, May 19, 2020 Approved
Atom 1.47.0-beta0 327 Tuesday, May 5, 2020 Approved
Atom 1.46.0 4924 Tuesday, May 5, 2020 Approved
Atom 1.46.0-beta0 561 Tuesday, March 10, 2020 Approved
Atom 1.45.0 14081 Tuesday, March 10, 2020 Approved
Atom 1.45.0-beta0 292 Tuesday, February 11, 2020 Approved
Atom 1.44.0 9346 Monday, February 10, 2020 Approved
Atom 1.44.0-beta0 1151 Monday, January 20, 2020 Approved
Atom 1.43.0 12071 Wednesday, January 15, 2020 Approved
Atom 1.43.0-beta0 268 Monday, December 16, 2019 Approved
Atom 1.42.0.20191029-beta0 366 Monday, October 28, 2019 Exempted
Atom 1.41.0.20191029 27835 Monday, October 28, 2019 Approved
Atom 1.41.0-beta1 410 Tuesday, August 20, 2019 Exempted
Atom 1.41.0-beta0 226 Tuesday, August 13, 2019 Exempted
Atom 1.40.0-beta1 297 Thursday, July 25, 2019 Exempted
Atom 1.40.0-beta0 222 Tuesday, July 23, 2019 Exempted
Atom 1.39.1 36740 Thursday, July 25, 2019 Approved
Atom 1.39.0 1590 Tuesday, July 23, 2019 Approved
Atom 1.39.0-beta3 291 Tuesday, July 2, 2019 Approved
Atom 1.39.0-beta2 240 Monday, June 17, 2019 Approved
Atom 1.39.0-beta1 215 Thursday, June 13, 2019 Exempted
Atom 1.39.0-beta0 215 Tuesday, June 11, 2019 Approved
Atom 1.38.2 13869 Monday, June 17, 2019 Approved
Atom 1.38.1 2519 Thursday, June 13, 2019 Approved
Atom 1.38.0 1451 Tuesday, June 11, 2019 Approved
Atom 1.38.0-beta0 306 Tuesday, May 14, 2019 Approved
Atom 1.37.0 11347 Tuesday, May 14, 2019 Approved
Atom 1.37.0-beta1 312 Friday, April 26, 2019 Approved
Atom 1.37.0-beta0 252 Thursday, April 11, 2019 Approved
Atom 1.36.1 8352 Friday, April 26, 2019 Approved
Atom 1.36.0 6505 Thursday, April 11, 2019 Approved
Atom 1.36.0-beta2 306 Friday, March 29, 2019 Approved
Atom 1.36.0-beta1 275 Wednesday, March 13, 2019 Approved
Atom 1.36.0-beta0 217 Tuesday, March 12, 2019 Exempted
Atom 1.35.1 6713 Wednesday, March 13, 2019 Approved
Atom 1.35.0 1251 Tuesday, March 12, 2019 Approved
Atom 1.35.0-beta0 413 Wednesday, January 9, 2019 Approved
Atom 1.34.0 12870 Wednesday, January 9, 2019 Approved
Atom 1.34.0-beta1 282 Thursday, December 20, 2018 Approved
Atom 1.34.0-beta0 281 Thursday, November 29, 2018 Approved
Atom 1.33.1 4443 Thursday, December 20, 2018 Approved
Atom 1.33.0 5220 Thursday, November 29, 2018 Approved
Atom 1.33.0-beta3 223 Wednesday, November 21, 2018 Approved
Atom 1.33.0-beta2 284 Friday, November 9, 2018 Approved
Atom 1.33.0-beta1 268 Wednesday, October 31, 2018 Approved
Atom 1.33.0-beta0 282 Wednesday, October 24, 2018 Approved
Atom 1.32.2 4418 Friday, November 9, 2018 Approved
Atom 1.32.1 2675 Wednesday, October 31, 2018 Approved
Atom 1.32.0 2296 Wednesday, October 24, 2018 Approved
Atom 1.32.0-beta3 290 Saturday, October 6, 2018 Approved
Atom 1.32.0-beta2 269 Friday, October 5, 2018 Approved
Atom 1.32.0-beta1 265 Friday, September 28, 2018 Approved
Atom 1.32.0-beta0 248 Thursday, September 27, 2018 Approved
Atom 1.31.2 4139 Saturday, October 6, 2018 Approved
Atom 1.31.1 2659 Friday, September 28, 2018 Approved
Atom 1.31.0 889 Thursday, September 27, 2018 Approved
Atom 1.31.0-beta1 302 Friday, August 31, 2018 Approved
Atom 1.31.0-beta0 250 Wednesday, August 29, 2018 Approved
Atom 1.30.0 23813 Wednesday, August 29, 2018 Approved
Atom 1.30.0-beta2 323 Wednesday, August 15, 2018 Approved
Atom 1.30.0-beta1 325 Wednesday, August 1, 2018 Approved
Atom 1.30.0-beta0 256 Wednesday, August 1, 2018 Approved
Atom 1.29.0 40361 Wednesday, August 1, 2018 Approved
Atom 1.29.0-beta2 387 Saturday, July 14, 2018 Approved
Atom 1.29.0-beta1 357 Thursday, July 5, 2018 Approved
Atom 1.29.0-beta0 411 Friday, June 22, 2018 Approved
Atom 1.28.2 36793 Saturday, July 14, 2018 Approved
Atom 1.28.1 18887 Thursday, July 5, 2018 Approved
Atom 1.28.0 19802 Friday, June 22, 2018 Approved
Atom 1.28.0-beta3 388 Wednesday, June 6, 2018 Approved
Atom 1.28.0-beta2 366 Thursday, May 31, 2018 Approved
Atom 1.28.0-beta1 374 Monday, May 21, 2018 Approved
Atom 1.28.0-beta0 368 Tuesday, May 15, 2018 Approved
Atom 1.27.2 45101 Thursday, May 31, 2018 Approved
Atom 1.27.1 31432 Monday, May 21, 2018 Approved
Atom 1.27.0 9492 Tuesday, May 15, 2018 Approved
Atom 1.27.0-beta1 406 Friday, April 27, 2018 Approved
Atom 1.27.0-beta0 360 Thursday, April 19, 2018 Approved
Atom 1.26.1 29722 Friday, April 27, 2018 Approved
Atom 1.26.0 13962 Thursday, April 19, 2018 Approved
Atom 1.26.0-beta2 356 Friday, April 13, 2018 Approved
Atom 1.26.0-beta1 350 Thursday, April 5, 2018 Approved
Atom 1.26.0-beta0 414 Friday, March 16, 2018 Approved
Atom 1.25.1 21946 Thursday, April 5, 2018 Approved
Atom 1.25.0 26034 Friday, March 16, 2018 Approved
Atom 1.25.0-beta3 341 Thursday, March 8, 2018 Approved
Atom 1.25.0-beta2 399 Thursday, February 22, 2018 Approved
Atom 1.25.0-beta1 362 Tuesday, February 20, 2018 Approved
Atom 1.25.0-beta0 371 Wednesday, February 14, 2018 Approved
Atom 1.24.1 11546 Thursday, March 8, 2018 Approved
Atom 1.24.0 32966 Wednesday, February 14, 2018 Approved
Atom 1.24.0-beta3 454 Wednesday, January 10, 2018 Approved
Atom 1.24.0-beta2 401 Wednesday, January 3, 2018 Approved
Atom 1.24.0-beta1 723 Friday, December 15, 2017 Approved
Atom 1.24.0-beta0 414 Tuesday, December 12, 2017 Approved
Atom 1.23.3 44314 Wednesday, January 10, 2018 Approved
Atom 1.23.2 9946 Wednesday, January 3, 2018 Approved
Atom 1.23.1 21693 Thursday, December 14, 2017 Approved
Atom 1.23.0 3305 Tuesday, December 12, 2017 Approved
Atom 1.23.0-beta1 504 Saturday, November 18, 2017 Approved
Atom 1.23.0-beta0 407 Wednesday, November 8, 2017 Approved
Atom 1.22.1 27644 Saturday, November 18, 2017 Approved
Atom 1.22.0 14461 Wednesday, November 8, 2017 Approved
Atom 1.22.0-beta2 373 Tuesday, October 31, 2017 Approved
Atom 1.22.0-beta1 412 Saturday, October 21, 2017 Approved
Atom 1.22.0-beta0 464 Tuesday, October 3, 2017 Approved
Atom 1.21.2 9656 Tuesday, October 31, 2017 Approved
Atom 1.21.1 19217 Thursday, October 12, 2017 Approved
Atom 1.21.0 16230 Wednesday, October 4, 2017 Approved
Atom 1.21.0-beta2 462 Thursday, September 28, 2017 Approved
Atom 1.20.1 9995 Thursday, September 28, 2017 Approved
Atom 1.0.7 158772 Wednesday, August 12, 2015 Approved
Atom 0.174.1 23359 Thursday, January 15, 2015 Approved
Atom 0.174.0 579 Thursday, January 15, 2015 Approved
Atom 0.155.0 11691 Tuesday, December 9, 2014 Approved
Atom 0.154.0 1228 Tuesday, December 9, 2014 Approved
Atom 0.153.0 2233 Friday, December 5, 2014 Approved
Atom 0.152.0 3170 Monday, December 1, 2014 Approved
Atom 0.150.0 5793 Thursday, November 20, 2014 Approved
Atom 0.149.0 1356 Thursday, November 20, 2014 Approved
Atom 0.148.0 774 Wednesday, November 19, 2014 Approved
Atom 0.147.0 1771 Tuesday, November 18, 2014 Approved
Atom 0.146.0 4438 Wednesday, November 12, 2014 Approved
Atom 0.145.0 1762 Tuesday, November 11, 2014 Approved
Atom 0.144.0 2891 Saturday, November 8, 2014 Approved
Atom 0.143.0 922 Friday, November 7, 2014 Approved
Atom 0.142.0 1459 Thursday, November 6, 2014 Approved
Atom 0.141.0 4380 Thursday, October 30, 2014 Approved
Atom 0.140.0 3537 Monday, October 27, 2014 Approved
Atom 0.139.0 3773 Wednesday, October 22, 2014 Approved
Atom 0.138.0 3825 Friday, October 17, 2014 Approved
Atom 0.137.0 2438 Wednesday, October 15, 2014 Approved
Atom 0.136.0 7102 Tuesday, October 7, 2014 Approved
Atom 0.135.0 3135 Thursday, October 2, 2014 Approved
Atom 0.134.0 1470 Wednesday, October 1, 2014 Approved
Atom 0.133.0 1302 Tuesday, September 30, 2014 Approved
Atom 0.132.0 2473 Friday, September 26, 2014 Approved
Atom 0.131.0 2043 Wednesday, September 24, 2014 Approved
Atom 0.130.0 1372 Tuesday, September 23, 2014 Approved
Atom 0.129.1 3026 Wednesday, September 17, 2014 Approved
Atom 0.129.0 1254 Tuesday, September 16, 2014 Approved
Atom 0.127.0 2845 Thursday, September 11, 2014 Approved
Atom 0.126.0 1394 Wednesday, September 10, 2014 Approved
Atom 0.125.0 2880 Friday, September 5, 2014 Approved
Atom 0.124.0 4658 Tuesday, August 26, 2014 Approved
Atom 0.123.0 4767 Friday, August 15, 2014 Approved
Atom 0.122.0 1130 Thursday, August 14, 2014 Approved
Atom 0.121.0 1499 Wednesday, August 13, 2014 Approved
Atom 0.120.0 5776 Monday, July 28, 2014 Approved
Atom 0.119.0 2126 Friday, July 25, 2014 Approved
Atom 0.118.0 1143 Thursday, July 24, 2014 Approved
Atom 0.117.0 2060 Tuesday, July 22, 2014 Approved
Atom 0.116.0 671 Tuesday, July 22, 2014 Approved
Atom 0.115.0 9107 Friday, July 11, 2014 Approved
Atom 0.114.0 943 Friday, July 11, 2014 Approved
Atom 0.113.0 6452 Tuesday, July 8, 2014 Approved
Atom 0.112.0 634 Tuesday, July 8, 2014 Approved
Atom 0.111.0 622 Tuesday, July 8, 2014 Approved
Atom 0.110.0 837 Tuesday, July 8, 2014 Approved
Atom 0.101.0 893 Thursday, June 5, 2014 Approved
Atom 0.96.1.0 756 Saturday, May 17, 2014 Approved
Atom 0.0.0.1 742 Friday, May 9, 2014 Approved

This package has no dependencies.

Discussion for the Atom Package

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.
comments powered by Disqus