Downloads:
26,619
Downloads of v 7.5.454:
4,898
Last Update:
22 Dec 2021
Package Maintainer(s):
Software Author(s):
- Toggl OÜ
Tags:
toggl time tracking time-tracking productivity pomodoro timer- Software Specific:
- Software Site
- Software Source
- Software Docs
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Toggl Track
- 1
- 2
- 3
7.5.454 | Updated: 22 Dec 2021
- Software Specific:
- Software Site
- Software Source
- Software Docs
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
26,619
Downloads of v 7.5.454:
4,898
Maintainer(s):
Software Author(s):
- Toggl OÜ
Toggl Track 7.5.454
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Toggl OÜ. The inclusion of Toggl OÜ trademark(s), if any, upon this webpage is solely to identify Toggl OÜ goods or services and not for commercial purposes.
- 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 Toggl Track, run the following command from the command line or from PowerShell:
To upgrade Toggl Track, run the following command from the command line or from PowerShell:
To uninstall Toggl Track, 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 toggl --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 toggl -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 toggl -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 toggl
win_chocolatey:
name: toggl
version: '7.5.454'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'toggl' do
action :install
source 'INTERNAL REPO URL'
version '7.5.454'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller toggl
{
Name = "toggl"
Version = "7.5.454"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'toggl':
ensure => '7.5.454',
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 as a trusted package on 20 Oct 2024.
Desktop app for the leading time tracking tool Toggl Track.
The Desktop app is a great companion for time tracking and productivity as it has advanced features like:
- Idle detection
- Tracking reminder
- Pomodoro timer
- Timeline
- Autotracker
ps toggldesktop -ErrorAction SilentlyContinue | kill -PassThru
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'Toggl Desktop*'
fileType = 'EXE'
silentArgs = '/S'
validExitCodes= @(0)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
if ($packageArgs['fileType'] -eq 'MSI') {
$packageArgs['silentArgs'] = "$($_.PSChildName) $($packageArgs['silentArgs'])"
$packageArgs['file'] = ''
} else {
}
Uninstall-ChocolateyPackage @packageArgs
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
From: https://github.com/toggl-open-source/toggldesktop/blob/master/LICENSE
LICENSE
Copyright (c) 2019, TOGGL LLC
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the TOGGL LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
md5: 7437B5DAF31F74AC08760519CA31EA4A | sha1: B575394A31F12EBE464EFA25CBBBE105A97306A1 | sha256: A2029A1C16EA6FD91D29ED180BF43397808E935F8F92C12DAFBCCCA1AEBF0BA5 | sha512: 4F842CE88517C79DED162D731917EEC8C8AC770B85D6792F2AD863D748407ADBF1A75E1BBD680C80533C07C9298CD85CEE275C400BCCA94B64FED7F408600AFA
md5: 8CF08A839E3D9CA6ACB47ACD932A38C9 | sha1: 0DC028BF17D7835F5A96F1C78FF0CF86E77C2F56 | sha256: B0CBA412DF4B244B507AFEFD3BD662332AD94CCA04CD1CEF5B2B88F91EFF58E2 | sha512: 3E6CF3B11FD674EBA3F72E349B0ABA2AF35FC9FE2532DBBCBB67788C1E0A6EE83AE965BB5EB929F29A514B7235BB8E32C37B5D1F0BBECA9BAD8C10EFE5D51F71
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
This package is published by the Toggl Desktop team itself.
Log in or click on link to see number of positives.
- TogglDesktopInstaller-7.5.454.exe (a2029a1c16ea) - ## / 68
- TogglDesktopInstaller-x64-7.5.454.exe (b0cba412df4b) - ## / 67
- toggl.7.5.454.nupkg (0a0bc52e30aa) - ## / 58
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 |
---|---|---|---|---|
Toggl Track 7.5.454 | 4898 | Wednesday, December 22, 2021 | Approved | |
Toggl Track 7.5.454-beta | 87 | Wednesday, December 22, 2021 | Approved | |
Toggl Track 7.5.445 | 2226 | Thursday, March 25, 2021 | Approved | |
Toggl Track 7.5.442 | 927 | Thursday, January 21, 2021 | Approved | |
Toggl Track 7.5.442-beta | 132 | Thursday, January 14, 2021 | Approved | |
Toggl Track 7.5.418 | 633 | Monday, December 14, 2020 | Approved | |
Toggl Track 7.5.418-beta | 182 | Wednesday, December 9, 2020 | Approved | |
Toggl Track 7.5.403 | 338 | Monday, December 7, 2020 | Approved | |
Toggl Track 7.5.403-beta | 194 | Monday, November 30, 2020 | Approved | |
Toggl Track 7.5.394 | 388 | Wednesday, November 25, 2020 | Approved | |
Toggl Track 7.5.394-beta | 139 | Thursday, November 19, 2020 | Approved | |
Toggl Track 7.5.348-beta | 155 | Thursday, October 22, 2020 | Approved | |
Toggl Track 7.5.343-beta | 109 | Tuesday, October 20, 2020 | Approved | |
Toggl Track 7.5.295-beta | 143 | Thursday, October 1, 2020 | Approved | |
Toggl Track 7.5.282 | 800 | Friday, September 25, 2020 | Approved | |
Toggl Track 7.5.282-beta | 137 | Tuesday, September 22, 2020 | Approved | |
Toggl Track 7.5.260 | 516 | Monday, September 7, 2020 | Approved | |
Toggl Track 7.5.260-beta | 155 | Monday, September 7, 2020 | Approved | |
Toggl Desktop 7.5.249 | 401 | Wednesday, August 26, 2020 | Approved | |
Toggl Desktop 7.5.249-beta | 172 | Tuesday, August 18, 2020 | Exempted | |
Toggl Desktop 7.5.242 | 469 | Monday, August 10, 2020 | Approved | |
Toggl Desktop 7.5.242-beta | 143 | Tuesday, August 18, 2020 | Exempted | |
Toggl Desktop 7.5.213 | 538 | Tuesday, July 14, 2020 | Approved | |
Toggl Desktop 7.5.193 | 469 | Thursday, June 25, 2020 | Approved | |
Toggl Desktop 7.5.162 | 577 | Saturday, May 30, 2020 | Approved | |
Toggl Desktop 7.5.46 | 927 | Monday, February 24, 2020 | Approved | |
Toggl Desktop 7.4.1112 | 564 | Monday, January 6, 2020 | Approved | |
Toggl Desktop 7.4.1092 | 428 | Thursday, December 12, 2019 | Approved | |
Toggl Desktop 7.4.1023 | 652 | Wednesday, October 2, 2019 | Approved | |
Toggl Desktop 7.4.1022 | 245 | Wednesday, October 2, 2019 | Approved | |
Toggl Desktop 7.4.1015 | 310 | Thursday, September 26, 2019 | Approved | |
Toggl Desktop 7.4.1003-beta | 240 | Thursday, September 12, 2019 | Approved | |
Toggl Desktop 7.4.529 | 535 | Tuesday, August 27, 2019 | Approved | |
Toggl Desktop 7.4.527-beta | 446 | Wednesday, August 21, 2019 | Approved | |
Toggl Desktop 7.4.475 | 415 | Tuesday, August 6, 2019 | Approved | |
Toggl Desktop 7.4.475-beta | 188 | Thursday, July 25, 2019 | Approved | |
Toggl Desktop 7.4.422 | 362 | Wednesday, July 24, 2019 | Approved | |
Toggl Desktop 7.4.252 | 1184 | Tuesday, December 11, 2018 | Approved | |
Toggl Desktop 7.3.318 | 1921 | Monday, August 8, 2016 | Approved | |
Toggl Desktop 7.1.145 | 934 | Friday, January 2, 2015 | Approved | |
Toggl Desktop 4.94.0 | 977 | Saturday, June 22, 2013 | Approved | |
Toggl Desktop 4.75.0 | 596 | Tuesday, January 1, 2013 | Approved | |
toggl 2.6.4.1 | 598 | Friday, December 2, 2011 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Toggl Track and the Toggl Track 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 Toggl Track, 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.