Downloads:
26,620
Downloads of v 7.5.418-beta:
182
Last Update:
09 Dec 2020
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
This is a prerelease version of Toggl Track.
- 1
- 2
- 3
7.5.418-beta | Updated: 09 Dec 2020
- 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,620
Downloads of v 7.5.418-beta:
182
Maintainer(s):
Software Author(s):
- Toggl OÜ
Toggl Track 7.5.418-beta
This is a prerelease version of Toggl Track.
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
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
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 --version=7.5.418-beta --pre --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'" --version="'7.5.418-beta'" --prerelease [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'" --version="'7.5.418-beta'" --prerelease
$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.418-beta'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
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.418-beta'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller toggl
{
Name = "toggl"
Version = "7.5.418-beta"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'toggl':
ensure => '7.5.418-beta',
install_options => ['--prerelease'],
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 09 Dec 2020.
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: 33BAC929EA20A3889D99D56E174E879C | sha1: 1B68960A09F8AC5F4E7C16C159D2ED5A8E5E0C15 | sha256: 9AD45F175852A8F8E66A7AB918080902AA01AB605D04A852732D1D8D07915769 | sha512: 3242BBA4E6BEF810DC56946954FE2D037DAAEA3A320022ED8A3E4E3CB1216459FE9BDB2520673A8E836EC3375A452050A5BA8B0EB338DEE5F0B4F735DA95E9D6
md5: 75BA3EF32C3645C84EE7029CB9B90486 | sha1: A48C11249996A48A276922836E44C3EDDC716804 | sha256: 60B694B202AF027748F8CEA86E7926C7A0C1AA8D9A90318B7A14808F83F4717A | sha512: CF0DBCE582BADA22CE9C43E54F878167DF3692A89C9F535833B9192410C3F1E9FA83047F2E7AFA0BC926474C71259DA69B4F7B9480560A190972B172D5735F72
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.
- toggl.7.5.418-beta.nupkg (3d9072e9ff5c) - ## / 59
- TogglDesktopInstaller-7.5.418.exe (9ad45f175852) - ## / 70
- TogglDesktopInstaller-x64-7.5.418.exe (60b694b202af) - ## / 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.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Toggl Track 7.5.454 | 4899 | 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.