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:

24,806

Downloads of v 7.5.454:

4,256

Last Update:

22 Dec 2021

Package Maintainer(s):

Software Author(s):

  • Toggl OÜ

Tags:

toggl time tracking time-tracking productivity pomodoro timer

Toggl Track

  • 1
  • 2
  • 3

7.5.454 | Updated: 22 Dec 2021

Downloads:

24,806

Downloads of v 7.5.454:

4,256

Maintainer(s):

Software Author(s):

  • Toggl OÜ

Toggl Track 7.5.454

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

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:

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 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.

Package Approved

This package was approved as a trusted package on 22 Dec 2021.

Description

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

tools\chocolateybeforemodify.ps1
ps toggldesktop -ErrorAction SilentlyContinue | kill -PassThru
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  unzipLocation = $toolsDir
  fileType      = 'EXE'
  file          = "$toolsDir\TogglDesktopInstaller-7.5.454.exe"
  file64        = "$toolsDir\TogglDesktopInstaller-x64-7.5.454.exe"
  softwareName  = 'Toggl Desktop*'
  silentArgs   = '/S'
  validExitCodes= @(0)
}

Install-ChocolateyInstallPackage @packageArgs
tools\chocolateyuninstall.ps1
$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)"}
}
tools\LICENSE.txt
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.
tools\TogglDesktopInstaller-7.5.454.exe
md5: 7437B5DAF31F74AC08760519CA31EA4A | sha1: B575394A31F12EBE464EFA25CBBBE105A97306A1 | sha256: A2029A1C16EA6FD91D29ED180BF43397808E935F8F92C12DAFBCCCA1AEBF0BA5 | sha512: 4F842CE88517C79DED162D731917EEC8C8AC770B85D6792F2AD863D748407ADBF1A75E1BBD680C80533C07C9298CD85CEE275C400BCCA94B64FED7F408600AFA
tools\TogglDesktopInstaller-x64-7.5.454.exe
md5: 8CF08A839E3D9CA6ACB47ACD932A38C9 | sha1: 0DC028BF17D7835F5A96F1C78FF0CF86E77C2F56 | sha256: B0CBA412DF4B244B507AFEFD3BD662332AD94CCA04CD1CEF5B2B88F91EFF58E2 | sha512: 3E6CF3B11FD674EBA3F72E349B0ABA2AF35FC9FE2532DBBCBB67788C1E0A6EE83AE965BB5EB929F29A514B7235BB8E32C37B5D1F0BBECA9BAD8C10EFE5D51F71
tools\VERIFICATION.txt
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.

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-beta 61 Wednesday, December 22, 2021 Approved
Toggl Track 7.5.445 2208 Thursday, March 25, 2021 Approved
Toggl Track 7.5.442 904 Thursday, January 21, 2021 Approved
Toggl Track 7.5.442-beta 115 Thursday, January 14, 2021 Approved
Toggl Track 7.5.418 618 Monday, December 14, 2020 Approved
Toggl Track 7.5.418-beta 109 Wednesday, December 9, 2020 Approved
Toggl Track 7.5.403 317 Monday, December 7, 2020 Approved
Toggl Track 7.5.403-beta 116 Monday, November 30, 2020 Approved
Toggl Track 7.5.394 369 Wednesday, November 25, 2020 Approved
Toggl Track 7.5.394-beta 122 Thursday, November 19, 2020 Approved
Toggl Track 7.5.348-beta 141 Thursday, October 22, 2020 Approved
Toggl Track 7.5.343-beta 94 Tuesday, October 20, 2020 Approved
Toggl Track 7.5.295-beta 130 Thursday, October 1, 2020 Approved
Toggl Track 7.5.282 709 Friday, September 25, 2020 Approved
Toggl Track 7.5.282-beta 122 Tuesday, September 22, 2020 Approved
Toggl Track 7.5.260 500 Monday, September 7, 2020 Approved
Toggl Track 7.5.260-beta 134 Monday, September 7, 2020 Approved
Toggl Desktop 7.5.249 386 Wednesday, August 26, 2020 Approved
Toggl Desktop 7.5.249-beta 134 Tuesday, August 18, 2020 Exempted
Toggl Desktop 7.5.242 449 Monday, August 10, 2020 Approved
Toggl Desktop 7.5.242-beta 121 Tuesday, August 18, 2020 Exempted
Toggl Desktop 7.5.213 518 Tuesday, July 14, 2020 Approved
Toggl Desktop 7.5.193 447 Thursday, June 25, 2020 Approved
Toggl Desktop 7.5.162 559 Saturday, May 30, 2020 Approved
Toggl Desktop 7.5.46 912 Monday, February 24, 2020 Approved
Toggl Desktop 7.4.1112 548 Monday, January 6, 2020 Approved
Toggl Desktop 7.4.1092 414 Thursday, December 12, 2019 Approved
Toggl Desktop 7.4.1023 631 Wednesday, October 2, 2019 Approved
Toggl Desktop 7.4.1022 227 Wednesday, October 2, 2019 Approved
Toggl Desktop 7.4.1015 292 Thursday, September 26, 2019 Approved
Toggl Desktop 7.4.1003-beta 222 Thursday, September 12, 2019 Approved
Toggl Desktop 7.4.529 511 Tuesday, August 27, 2019 Approved
Toggl Desktop 7.4.527-beta 277 Wednesday, August 21, 2019 Approved
Toggl Desktop 7.4.475 354 Tuesday, August 6, 2019 Approved
Toggl Desktop 7.4.475-beta 171 Thursday, July 25, 2019 Approved
Toggl Desktop 7.4.422 337 Wednesday, July 24, 2019 Approved
Toggl Desktop 7.4.252 1165 Tuesday, December 11, 2018 Approved
Toggl Desktop 7.3.318 1900 Monday, August 8, 2016 Approved
Toggl Desktop 7.1.145 919 Friday, January 2, 2015 Approved
Toggl Desktop 4.94.0 957 Saturday, June 22, 2013 Approved
Toggl Desktop 4.75.0 579 Tuesday, January 1, 2013 Approved
toggl 2.6.4.1 582 Friday, December 2, 2011 Approved

This package has no dependencies.

Discussion for the Toggl Track Package

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