
213,147
Downloads
73,486
Downloads of v 3.0.0.3126
10/5/2016
Last update
Sublime Text 3 is a sophisticated text editor for code, html and prose. You'll love the slick user interface and extraordinary features. Sublime Text may be downloaded and evaluated for free, however a license must be purchased for continued use. Sublime text 3 is currently in beta.
To install Sublime Text 3, run the following command from the command line or from PowerShell:
C:\> choco install sublimetext3
--version 3.0.0.3126
To upgrade Sublime Text 3, run the following command from the command line or from PowerShell:
C:\> choco upgrade sublimetext3
--version 3.0.0.3126
Files
Hide- tools\chocolateyInstall.ps1
Show
# Variables $package = 'sublimetext3' $build = '3126' # Determine if Sublime Text 3 $build Version is installed # - Return the path if found # - Return $false if not function getInstallationDirectory($buildArg) { $installFolder = 'Sublime Text 3' $installedPath = [string]::empty $found = $false if(!${env:ProgramFiles(x86)}) { # 32 bit machine $installedPath = Join-Path $Env:ProgramFiles $installFolder; } else { # 64 bit machine # Get the first path which is existing $installedPath = (Join-Path "${Env:ProgramFiles(x86)}" $installFolder), (Join-Path $Env:ProgramFiles $installFolder) | ? { Test-Path $_ } | Select -First 1 } # Check Sublime Text's folder existence if (![string]::IsNullOrEmpty($installedPath) -and (Test-Path $installedPath)) { $exe = Join-Path $installedPath 'sublime_text.exe' # Check Sublime Executable existence if (![string]::IsNullOrEmpty($exe) -and (Test-Path $exe)) { $version = (Get-Command $exe).FileVersionInfo.ProductVersion $found = ($version -eq $buildArg) } } # If we don't found the build we are looking for if (!$found) { $installedPath = $false } return $installedPath; } # Self Executing utiliy function $result = (getInstallationDirectory($build)) if ( !($result -eq $false) ) { # Sublime is installed Write-Host "$package is already installed to : " $result } else { # Sublime is not installed $params = @{ PackageName = $package; FileType = 'exe'; #uses InnoSetup - http://www.jrsoftware.org/ishelp/index.php?topic=setupcmdline SilentArgs = '/VERYSILENT /NORESTART /TASKS="contextentry"'; Url = 'https://download.sublimetext.com/Sublime Text Build 3126 Setup.exe'; Url64Bit = 'https://download.sublimetext.com/Sublime%20Text%20Build%203126%20x64%20Setup.exe'; } Install-ChocolateyPackage @params }
- tools\chocolateyUninstall.ps1
Show
# Variables $package = 'sublimetext3' $build = '3126' # Determine if Sublime Text 3 $build Version is installed # - Return the path if found # - Return $false if not function getInstallationDirectory($buildArg) { $installFolder = 'Sublime Text 3' $installedPath = [string]::empty $found = $false if(!${env:ProgramFiles(x86)}) { # 32 bit machine $installedPath = Join-Path $Env:ProgramFiles $installFolder; } else { # 64 bit machine # Get the first path which is existing $installedPath = (Join-Path "${Env:ProgramFiles(x86)}" $installFolder), (Join-Path $Env:ProgramFiles $installFolder) | ? { Test-Path $_ } | Select -First 1 } # Check Sublime Text's folder existence if (![string]::IsNullOrEmpty($installedPath) -and (Test-Path $installedPath)) { $exe = Join-Path $installedPath 'sublime_text.exe' # Check Sublime Executable existence if (![string]::IsNullOrEmpty($exe) -and (Test-Path $exe)) { $version = (Get-Command $exe).FileVersionInfo.ProductVersion $found = ($version -eq $buildArg) } } # If we don't found the build we are looking for if (!$found) { $installedPath = $false } return $installedPath; } # Self Executing utiliy function $result = (getInstallationDirectory($build)) if ( !($result -eq $false) ) { # Sublime is installed Start the uninstallation Push-Location $result # move to Sublime Text Folder $uninstallerName = 'unins000.exe' # Check if the Uninstaller is present in $result folder if (Test-Path $uninstallerName) { $params = @{ PackageName = $package; FileType = 'exe'; SilentArgs = '/SILENT /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /TASKS="contextentry"'; File = (Join-Path $result $uninstallerName) } Uninstall-ChocolateyPackage @params } } else { # Sublime is not installed Write-Host "Sublime Text $build is not installed" }
Virus Scan Results
- SublimeText3.3.0.0.3126.nupkg (19f2bcf24736) - ## / 55 - Log in or click on link to see number of positives
- Sublime Text Build 3126 x64 Setup.exe (9583c9ad1534) - ## / 56 - Log in or click on link to see number of positives
- Sublime Text Build 3126 Setup.exe (4a93c8bedc60) - ## / 56 - Log in or click on link to see number of positives
Dependencies
This package has no dependencies.
Package Maintainer(s)
Software Author(s)
Tags
Release Notes
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Sublime Text 3 3.1.1 | 41101 | Friday, May 18, 2018 | approved |
Sublime Text 3 3.0.0.3143 | 24139 | Tuesday, November 14, 2017 | approved |
Sublime Text 3 3.0.0.3126 | 73486 | Wednesday, October 5, 2016 | approved |
Sublime Text 3 3.0.0.3114 | 10111 | Wednesday, May 18, 2016 | approved |
Sublime Text 3 3.0.0.3103 | 8157 | Wednesday, February 24, 2016 | approved |
Sublime Text 3 3.0.0.3083 | 27974 | Monday, May 4, 2015 | approved |
Sublime Text 3 3.0.0.3065 | 17663 | Monday, September 15, 2014 | approved |
Sublime Text 3 3.0.0.3059 | 8402 | Friday, January 3, 2014 | |
Sublime Text 3 3.0.0.3047 | 2007 | Tuesday, July 23, 2013 |
Discussion for the Sublime Text 3 Package
Ground rules:
- This discussion is only about Sublime Text 3 and the Sublime Text 3 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 Sublime Text 3, 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.