Downloads:
14,399
Downloads of v 1.6.3:
88
Last Update:
12 Aug 2020
Package Maintainer(s):
Software Author(s):
- Daniel Chýlek
Tags:
twitter tweet tweetdeck management foss free open source desktop client electron- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
TweetDuck (Install)
This is not the latest version of TweetDuck (Install) available.
- 1
- 2
- 3
1.6.3 | Updated: 12 Aug 2020
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
14,399
Downloads of v 1.6.3:
88
Maintainer(s):
Software Author(s):
- Daniel Chýlek
TweetDuck (Install) 1.6.3
This is not the latest version of TweetDuck (Install) available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Daniel Chýlek. The inclusion of Daniel Chýlek trademark(s), if any, upon this webpage is solely to identify Daniel Chýlek goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install TweetDuck (Install), run the following command from the command line or from PowerShell:
To upgrade TweetDuck (Install), run the following command from the command line or from PowerShell:
To uninstall TweetDuck (Install), 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 tweetduck.install --internalize --version=1.6.3 --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 tweetduck.install -y --source="'INTERNAL REPO URL'" --version="'1.6.3'" [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 tweetduck.install -y --source="'INTERNAL REPO URL'" --version="'1.6.3'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install tweetduck.install
win_chocolatey:
name: tweetduck.install
version: '1.6.3'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'tweetduck.install' do
action :install
source 'INTERNAL REPO URL'
version '1.6.3'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller tweetduck.install
{
Name = "tweetduck.install"
Version = "1.6.3"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'tweetduck.install':
ensure => '1.6.3',
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 is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.
- Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
- Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
- Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.
Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.
This package was approved as a trusted package on 12 Aug 2020.
TweetDuck is an open source Windows client for Twitter utilizing TweetDeck.
$ErrorActionPreference = 'SilentlyContinue';
$stop_application = if (Get-Process -Name TweetDuck -ErrorAction SilentlyContinue) {$false} else {$true}
if ($stop_application -and (Get-Process -Name TweetDuck -ErrorAction SilentlyContinue)) {
Stop-Process -processname TweetDuck
}
$ErrorActionPreference = 'Stop'
$PackageName = $env:ChocolateyPackageName.Split(".")[0]
[array] $key = Get-UninstallRegistryKey "PackageName*"
if ($key.Count -eq 1) {
$key | ForEach-Object {
$PackageArgs = @{
PackageName = $PackageName
SilentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
FileType = 'EXE'
ValidExitCodes = @(0)
File = "$($_.UninstallString.Replace(' /x86=0', ''))"
}
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 | ForEach-Object {Write-Warning "- $($_.DisplayName)"}
}
Log in or click on link to see number of positives.
- tweetduck.install.1.6.3.nupkg (0dda5d8c078b) - ## / 63
- TweetDuck.exe (20e4971535a2) - ## / 68
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 |
---|---|---|---|---|
TweetDuck (Install) 1.26.0 | 119 | Monday, October 23, 2023 | Approved | |
TweetDuck (Install) 1.25.4 | 161 | Wednesday, July 19, 2023 | Approved | |
TweetDuck (Install) 1.25.3 | 240 | Saturday, March 11, 2023 | Approved | |
TweetDuck (Install) 1.25.2 | 136 | Monday, December 12, 2022 | Approved | |
TweetDuck (Install) 1.25.1 | 94 | Friday, December 9, 2022 | Approved | |
TweetDuck (Install) 1.25 | 120 | Monday, November 28, 2022 | Approved | |
TweetDuck (Install) 1.24 | 181 | Saturday, October 8, 2022 | Approved | |
TweetDuck (Install) 1.23 | 149 | Monday, August 22, 2022 | Approved | |
TweetDuck (Install) 1.22.1 | 188 | Monday, June 27, 2022 | Approved | |
TweetDuck (Install) 1.22.0.1 | 244 | Tuesday, March 8, 2022 | Approved | |
TweetDuck (Install) 1.22 | 133 | Tuesday, March 1, 2022 | Approved | |
TweetDuck (Install) 1.21.2 | 192 | Wednesday, January 26, 2022 | Approved | |
TweetDuck (Install) 1.21.1 | 134 | Wednesday, January 19, 2022 | Approved | |
TweetDuck (Install) 1.21.0.1 | 174 | Wednesday, January 5, 2022 | Approved | |
TweetDuck (Install) 1.21 | 77 | Wednesday, January 5, 2022 | Approved | |
TweetDuck (Install) 1.20 | 470 | Saturday, February 6, 2021 | Approved | |
TweetDuck (Install) 1.19.0.2 | 333 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.19.0.1 | 108 | Thursday, July 23, 2020 | Approved | |
TweetDuck (Install) 1.19 | 117 | Wednesday, July 15, 2020 | Approved | |
TweetDuck (Install) 1.18.6 | 126 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.18.5 | 133 | Monday, June 15, 2020 | Approved | |
TweetDuck (Install) 1.18.4 | 127 | Saturday, August 8, 2020 | Approved | |
TweetDuck (Install) 1.18.3 | 136 | Saturday, August 8, 2020 | Approved | |
TweetDuck (Install) 1.18.2 | 119 | Thursday, July 23, 2020 | Approved | |
TweetDuck (Install) 1.18.1 | 104 | Thursday, July 23, 2020 | Approved | |
TweetDuck (Install) 1.18 | 117 | Wednesday, August 5, 2020 | Approved | |
TweetDuck (Install) 1.17.4 | 122 | Wednesday, August 5, 2020 | Approved | |
TweetDuck (Install) 1.17.3 | 138 | Tuesday, August 4, 2020 | Approved | |
TweetDuck (Install) 1.17.2 | 125 | Tuesday, August 4, 2020 | Approved | |
TweetDuck (Install) 1.17.1 | 132 | Tuesday, August 4, 2020 | Approved | |
TweetDuck (Install) 1.17 | 135 | Wednesday, August 5, 2020 | Approved | |
TweetDuck (Install) 1.16.3 | 120 | Monday, August 3, 2020 | Approved | |
TweetDuck (Install) 1.16.2 | 127 | Monday, August 3, 2020 | Approved | |
TweetDuck (Install) 1.16.1 | 114 | Monday, August 3, 2020 | Approved | |
TweetDuck (Install) 1.16 | 120 | Monday, August 3, 2020 | Approved | |
TweetDuck (Install) 1.15.2 | 147 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.15.1 | 140 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.15 | 111 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.14.4.1 | 100 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.14.4 | 120 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.14.3 | 122 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.14.2.1 | 129 | Saturday, August 1, 2020 | Approved | |
TweetDuck (Install) 1.14.2 | 148 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.14.1 | 121 | Saturday, August 1, 2020 | Approved | |
TweetDuck (Install) 1.14 | 128 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.13.6 | 130 | Saturday, August 1, 2020 | Approved | |
TweetDuck (Install) 1.13.5 | 114 | Friday, July 31, 2020 | Approved | |
TweetDuck (Install) 1.13.4.1 | 111 | Friday, July 31, 2020 | Approved | |
TweetDuck (Install) 1.13.4 | 132 | Friday, July 31, 2020 | Approved | |
TweetDuck (Install) 1.13.3 | 116 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.13.2 | 106 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.13.1 | 120 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.13.0.1 | 122 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.13 | 121 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.12.5.1 | 116 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.12.5 | 111 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.12.4 | 122 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.12.3.1 | 103 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.12.3 | 111 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.12.2 | 118 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.12.1.1 | 108 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.12.1 | 113 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.12 | 118 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.11.2 | 97 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.11.1 | 97 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.11 | 134 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.10.3 | 121 | Saturday, July 25, 2020 | Approved | |
TweetDuck (Install) 1.10.2 | 107 | Saturday, July 25, 2020 | Approved | |
TweetDuck (Install) 1.10.1 | 119 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.10 | 99 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.9.2 | 92 | Friday, August 28, 2020 | Approved | |
TweetDuck (Install) 1.9.1 | 129 | Friday, August 28, 2020 | Approved | |
TweetDuck (Install) 1.9 | 119 | Friday, August 28, 2020 | Approved | |
TweetDuck (Install) 1.8.7 | 103 | Sunday, August 23, 2020 | Approved | |
TweetDuck (Install) 1.8.6 | 101 | Sunday, August 23, 2020 | Approved | |
TweetDuck (Install) 1.8.5.1 | 94 | Friday, August 21, 2020 | Approved | |
TweetDuck (Install) 1.8.5 | 96 | Sunday, August 23, 2020 | Approved | |
TweetDuck (Install) 1.8.4.1 | 87 | Friday, August 21, 2020 | Approved | |
TweetDuck (Install) 1.8.4 | 91 | Friday, August 21, 2020 | Approved | |
TweetDuck (Install) 1.8.3 | 99 | Wednesday, August 19, 2020 | Approved | |
TweetDuck (Install) 1.8.2 | 108 | Wednesday, August 19, 2020 | Approved | |
TweetDuck (Install) 1.8.1 | 87 | Wednesday, August 19, 2020 | Approved | |
TweetDuck (Install) 1.8 | 99 | Sunday, August 23, 2020 | Approved | |
TweetDuck (Install) 1.7.7 | 102 | Wednesday, August 19, 2020 | Approved | |
TweetDuck (Install) 1.7.6 | 100 | Wednesday, August 19, 2020 | Approved | |
TweetDuck (Install) 1.7.5 | 86 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.7.4 | 102 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.7.3 | 117 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.7.2 | 117 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.7.1 | 84 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.7 | 105 | Wednesday, August 19, 2020 | Approved | |
TweetDuck (Install) 1.6.7 | 78 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.6.6 | 97 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.6.5 | 100 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.6.4 | 105 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.6.3 | 88 | Wednesday, August 12, 2020 | Approved | |
TweetDuck (Install) 1.6.2 | 101 | Wednesday, August 12, 2020 | Approved | |
TweetDuck (Install) 1.6.1 | 86 | Wednesday, August 12, 2020 | Approved | |
TweetDuck (Install) 1.6 | 98 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.5.1 | 98 | Wednesday, August 12, 2020 | Approved | |
TweetDuck (Install) 1.5 | 102 | Wednesday, August 12, 2020 | Approved | |
TweetDuck (Install) 1.4.3 | 84 | Wednesday, August 12, 2020 | Approved | |
TweetDuck (Install) 1.4.2 | 113 | Monday, August 10, 2020 | Approved | |
TweetDuck (Install) 1.4.1 | 88 | Monday, August 10, 2020 | Approved | |
TweetDuck (Install) 1.4 | 133 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.3.3 | 95 | Monday, August 10, 2020 | Approved | |
TweetDuck (Install) 1.3.2 | 106 | Monday, August 10, 2020 | Approved | |
TweetDuck (Install) 1.3.1 | 97 | Saturday, August 8, 2020 | Approved | |
TweetDuck (Install) 1.3 | 122 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.2.3 | 129 | Saturday, July 25, 2020 | Approved | |
TweetDuck (Install) 1.2.2 | 126 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.2.1 | 143 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.2 | 134 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.1.1 | 127 | Monday, June 15, 2020 | Approved | |
TweetDuck (Install) 1.1 | 147 | Monday, June 15, 2020 | Approved | |
TweetDuck (Install) 1.0 | 187 | Friday, May 29, 2020 | Approved |
Copyright © 2016 - 2020 chylex; Copyright © 2006 - 2020 Twitter, Inc
Important
- The way TweetDuck communicates with the browser has been rewritten to a newer system, which significantly improves performance and responsiveness
- The browser should no longer freeze for several seconds when restoring the window from a minimized state
- The app now completely shuts down within 1-2 seconds instead of 12
- Some plugin development information has changed, please read the updated page in the wiki if you are a developer
Enhancements
- Custom sound notification now shows an error message on failure instead of ignoring the error, and the file name has a red color when the file cannot be found
- Edit CSS dialog now automatically updates the browser styles while typing
- Update downloader now shows kB instead of MB
Bugfixes
- Fixed Copy context menu item (missing in popup notifications, incorrect separators in browser)
- Fixed Alt key causing a lockup in Windows 10 Anniversary Update
- Fixed incorrect cursor when hovering over quoted tweets in notifications
-
- dotnet4.7.2 (≥ 4.7.2.20180712)
- chocolatey-core.extension (≥ 1.3.5.1)
- vcredist2015 (≥ 14.0.24215.20170201)
- vcredist140 (≥ 14.26.28720.3)
Ground Rules:
- This discussion is only about TweetDuck (Install) and the TweetDuck (Install) 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 TweetDuck (Install), 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.