Downloads:
8,794
Downloads of v 1.7:
61
Last Update:
19 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.7 | Updated: 19 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:
8,794
Downloads of v 1.7:
61
Maintainer(s):
Software Author(s):
- Daniel Chýlek
TweetDuck (Install) 1.7
This is not the latest version of TweetDuck (Install) available.
- 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.7 --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.7'" [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.7'"
$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.7'
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.7'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller tweetduck.install
{
Name = "tweetduck.install"
Version = "1.7"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'tweetduck.install':
ensure => '1.7',
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 19 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.7.nupkg (2fc06ff44134) - ## / 62
- TweetDuck.exe (aabcc03d401e) - ## / 65
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.25.3 | 46 | Saturday, March 11, 2023 | Approved | |
TweetDuck (Install) 1.25.2 | 102 | Monday, December 12, 2022 | Approved | |
TweetDuck (Install) 1.25.1 | 38 | Friday, December 9, 2022 | Approved | |
TweetDuck (Install) 1.25 | 68 | Monday, November 28, 2022 | Approved | |
TweetDuck (Install) 1.24 | 113 | Saturday, October 8, 2022 | Approved | |
TweetDuck (Install) 1.23 | 108 | Monday, August 22, 2022 | Approved | |
TweetDuck (Install) 1.22.1 | 125 | Monday, June 27, 2022 | Approved | |
TweetDuck (Install) 1.22.0.1 | 181 | Tuesday, March 8, 2022 | Approved | |
TweetDuck (Install) 1.22 | 93 | Tuesday, March 1, 2022 | Approved | |
TweetDuck (Install) 1.21.2 | 144 | Wednesday, January 26, 2022 | Approved | |
TweetDuck (Install) 1.21.1 | 100 | Wednesday, January 19, 2022 | Approved | |
TweetDuck (Install) 1.21.0.1 | 101 | Wednesday, January 5, 2022 | Approved | |
TweetDuck (Install) 1.21 | 38 | Wednesday, January 5, 2022 | Approved | |
TweetDuck (Install) 1.20 | 384 | Saturday, February 6, 2021 | Approved | |
TweetDuck (Install) 1.19.0.2 | 278 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.19.0.1 | 67 | Thursday, July 23, 2020 | Approved | |
TweetDuck (Install) 1.19 | 75 | Wednesday, July 15, 2020 | Approved | |
TweetDuck (Install) 1.18.6 | 89 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.18.5 | 99 | Monday, June 15, 2020 | Approved | |
TweetDuck (Install) 1.18.4 | 90 | Saturday, August 8, 2020 | Approved | |
TweetDuck (Install) 1.18.3 | 95 | Saturday, August 8, 2020 | Approved | |
TweetDuck (Install) 1.18.2 | 75 | Thursday, July 23, 2020 | Approved | |
TweetDuck (Install) 1.18.1 | 65 | Thursday, July 23, 2020 | Approved | |
TweetDuck (Install) 1.18 | 77 | Wednesday, August 5, 2020 | Approved | |
TweetDuck (Install) 1.17.4 | 82 | Wednesday, August 5, 2020 | Approved | |
TweetDuck (Install) 1.17.3 | 87 | Tuesday, August 4, 2020 | Approved | |
TweetDuck (Install) 1.17.2 | 87 | Tuesday, August 4, 2020 | Approved | |
TweetDuck (Install) 1.17.1 | 83 | Tuesday, August 4, 2020 | Approved | |
TweetDuck (Install) 1.17 | 81 | Wednesday, August 5, 2020 | Approved | |
TweetDuck (Install) 1.16.3 | 79 | Monday, August 3, 2020 | Approved | |
TweetDuck (Install) 1.16.2 | 92 | Monday, August 3, 2020 | Approved | |
TweetDuck (Install) 1.16.1 | 79 | Monday, August 3, 2020 | Approved | |
TweetDuck (Install) 1.16 | 79 | Monday, August 3, 2020 | Approved | |
TweetDuck (Install) 1.15.2 | 95 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.15.1 | 90 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.15 | 74 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.14.4.1 | 63 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.14.4 | 84 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.14.3 | 79 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.14.2.1 | 75 | Saturday, August 1, 2020 | Approved | |
TweetDuck (Install) 1.14.2 | 88 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.14.1 | 73 | Saturday, August 1, 2020 | Approved | |
TweetDuck (Install) 1.14 | 83 | Sunday, August 2, 2020 | Approved | |
TweetDuck (Install) 1.13.6 | 84 | Saturday, August 1, 2020 | Approved | |
TweetDuck (Install) 1.13.5 | 83 | Friday, July 31, 2020 | Approved | |
TweetDuck (Install) 1.13.4.1 | 65 | Friday, July 31, 2020 | Approved | |
TweetDuck (Install) 1.13.4 | 88 | Friday, July 31, 2020 | Approved | |
TweetDuck (Install) 1.13.3 | 77 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.13.2 | 68 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.13.1 | 80 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.13.0.1 | 74 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.13 | 78 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.12.5.1 | 71 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.12.5 | 75 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.12.4 | 77 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.12.3.1 | 65 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.12.3 | 70 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.12.2 | 66 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.12.1.1 | 70 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.12.1 | 75 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.12 | 60 | Thursday, July 30, 2020 | Approved | |
TweetDuck (Install) 1.11.2 | 56 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.11.1 | 56 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.11 | 70 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.10.3 | 65 | Saturday, July 25, 2020 | Approved | |
TweetDuck (Install) 1.10.2 | 68 | Saturday, July 25, 2020 | Approved | |
TweetDuck (Install) 1.10.1 | 77 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.10 | 65 | Wednesday, July 29, 2020 | Approved | |
TweetDuck (Install) 1.9.2 | 50 | Friday, August 28, 2020 | Approved | |
TweetDuck (Install) 1.9.1 | 63 | Friday, August 28, 2020 | Approved | |
TweetDuck (Install) 1.9 | 64 | Friday, August 28, 2020 | Approved | |
TweetDuck (Install) 1.8.7 | 69 | Sunday, August 23, 2020 | Approved | |
TweetDuck (Install) 1.8.6 | 49 | Sunday, August 23, 2020 | Approved | |
TweetDuck (Install) 1.8.5.1 | 44 | Friday, August 21, 2020 | Approved | |
TweetDuck (Install) 1.8.5 | 59 | Sunday, August 23, 2020 | Approved | |
TweetDuck (Install) 1.8.4.1 | 51 | Friday, August 21, 2020 | Approved | |
TweetDuck (Install) 1.8.4 | 50 | Friday, August 21, 2020 | Approved | |
TweetDuck (Install) 1.8.3 | 49 | Wednesday, August 19, 2020 | Approved | |
TweetDuck (Install) 1.8.2 | 60 | Wednesday, August 19, 2020 | Approved | |
TweetDuck (Install) 1.8.1 | 40 | Wednesday, August 19, 2020 | Approved | |
TweetDuck (Install) 1.8 | 44 | Sunday, August 23, 2020 | Approved | |
TweetDuck (Install) 1.7.7 | 67 | Wednesday, August 19, 2020 | Approved | |
TweetDuck (Install) 1.7.6 | 42 | Wednesday, August 19, 2020 | Approved | |
TweetDuck (Install) 1.7.5 | 45 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.7.4 | 62 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.7.3 | 66 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.7.2 | 75 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.7.1 | 45 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.7 | 61 | Wednesday, August 19, 2020 | Approved | |
TweetDuck (Install) 1.6.7 | 46 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.6.6 | 47 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.6.5 | 49 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.6.4 | 47 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.6.3 | 52 | Wednesday, August 12, 2020 | Approved | |
TweetDuck (Install) 1.6.2 | 55 | Wednesday, August 12, 2020 | Approved | |
TweetDuck (Install) 1.6.1 | 48 | Wednesday, August 12, 2020 | Approved | |
TweetDuck (Install) 1.6 | 53 | Thursday, August 13, 2020 | Approved | |
TweetDuck (Install) 1.5.1 | 57 | Wednesday, August 12, 2020 | Approved | |
TweetDuck (Install) 1.5 | 59 | Wednesday, August 12, 2020 | Approved | |
TweetDuck (Install) 1.4.3 | 45 | Wednesday, August 12, 2020 | Approved | |
TweetDuck (Install) 1.4.2 | 55 | Monday, August 10, 2020 | Approved | |
TweetDuck (Install) 1.4.1 | 51 | Monday, August 10, 2020 | Approved | |
TweetDuck (Install) 1.4 | 91 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.3.3 | 52 | Monday, August 10, 2020 | Approved | |
TweetDuck (Install) 1.3.2 | 48 | Monday, August 10, 2020 | Approved | |
TweetDuck (Install) 1.3.1 | 49 | Saturday, August 8, 2020 | Approved | |
TweetDuck (Install) 1.3 | 79 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.2.3 | 79 | Saturday, July 25, 2020 | Approved | |
TweetDuck (Install) 1.2.2 | 87 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.2.1 | 92 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.2 | 89 | Tuesday, June 16, 2020 | Approved | |
TweetDuck (Install) 1.1.1 | 86 | Monday, June 15, 2020 | Approved | |
TweetDuck (Install) 1.1 | 98 | Monday, June 15, 2020 | Approved | |
TweetDuck (Install) 1.0 | 138 | Friday, May 29, 2020 | Approved |
Copyright © 2016 - 2020 chylex; Copyright © 2006 - 2020 Twitter, Inc
New Features
Added a new plugin for easy TweetDeck customization, accessible from Settings - Edit layout & design on the website (not in the app settings)
Added a Non-Intrusive Popups setting that prevents desktop notifications from showing if the cursor has recently moved inside the notification area (enabled by default)
Added a Pause When Idle setting to pause new notifications after not using a mouse or keyboard for a set amount of time
Added a Copy account username item to the context menu for Twitter account links
Added a connection error screen if TweetDeck cannot be loaded
Added a Restart with Arguments button with a dialog that shows all valid command line arguments, and restarting the app after editing them
Added an option to revert replies that were recently updated by TweetDeck (included as a part of the new customization plugin)
Enhancements
Using clever tricks, launching the app now feels significantly faster
Improved performance of the app while a desktop notification is being displayed
Using mouse wheel over the notification window no longer focuses it
The tweet context menu (open/copy/screenshot) is now available for like and retweet mentions
Reduced memory usage after taking a screenshot
Reorganized the Settings (moved contents from the Updates tab to the General tab)
Improved the Import/Export Profile dialogs (replaced the restart warning with a button text change, disabled minimize/maximize buttons)
Significantly improved animation performance, especially on slow computers (included as a part of the new customization plugin, can be turned off to save memory)
Sound notifications can now play mp3 files and many other formats, as long as Windows Media Player is installed
Improved the visuals of the tray icon's context menu
The TweetDeck settings menu now shows a single TweetDuck entry, which displays the general context menu
Plugins can now use
window.prompt
for a simple user input dialog, and also easily inject custom HTML into notifications before the notification is displayed; the wiki was updated with new infoGeneral improvements to make the app a bit faster and more reliable
Bugfixes
Fixed missing youtu.be previews due to a TweetDeck bug which could not handle https in the URL
Fixed media previews sometimes showing inside quoted tweets in notifications
Fixed various issues with tweet screenshots (fixed too much empty space on the bottom, fixed tweet location messing things up, improved plugin support, increased delay for slow computers)
Fixed the blocked URL dialog showing for empty URLs
Fixed ampersand characters not displaying properly in the Plugins screen
Fixed Plugins not being reloaded after resetting the settings
Fixed missing default Enter/Escape action in several dialogs
Fixed minor UI issues
-
- 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.