Downloads:
125
Downloads of v 2.14.2:
24
Last Update:
03 Aug 2024
Package Maintainer(s):
Software Author(s):
- thomas694
- johanneszab
- elipriaulx
- arrowsmith001
- amigre38
- yfdyh000
Tags:
tumblr waf downloader gui windows open-source- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
TumblThree
This is not the latest version of TumblThree available.
- 1
- 2
- 3
2.14.2 | Updated: 03 Aug 2024
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
125
Downloads of v 2.14.2:
24
Maintainer(s):
Software Author(s):
- thomas694
- johanneszab
- elipriaulx
- arrowsmith001
- amigre38
- yfdyh000
TumblThree 2.14.2
This is not the latest version of TumblThree available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by thomas694, johanneszab, elipriaulx, arrowsmith001, amigre38, yfdyh000. The inclusion of thomas694, johanneszab, elipriaulx, arrowsmith001, amigre38, yfdyh000 trademark(s), if any, upon this webpage is solely to identify thomas694, johanneszab, elipriaulx, arrowsmith001, amigre38, yfdyh000 goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install TumblThree, run the following command from the command line or from PowerShell:
To upgrade TumblThree, run the following command from the command line or from PowerShell:
To uninstall TumblThree, 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 tumblthree --internalize --version=2.14.2 --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 tumblthree -y --source="'INTERNAL REPO URL'" --version="'2.14.2'" [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 tumblthree -y --source="'INTERNAL REPO URL'" --version="'2.14.2'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install tumblthree
win_chocolatey:
name: tumblthree
version: '2.14.2'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'tumblthree' do
action :install
source 'INTERNAL REPO URL'
version '2.14.2'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller tumblthree
{
Name = "tumblthree"
Version = "2.14.2"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'tumblthree':
ensure => '2.14.2',
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator Windos on 13 Aug 2024.
Summary
TumblThree is a free and open source Tumblr and Twitter blog backup application. It downloads photo, video, audio and text posts from a given Tumblr or Twitter blog. It is the code rewrite of TumblTwo, using the Win Application Framework (WAF) and C# with WPF and the MVVM pattern.
Features
- Source code at GitHub (written in C# using WPF and MVVM)
- Multiple concurrent downloads of a single blog and/or different blogs
- A clipboard monitor that detects blogname.tumblr.com urls in the clipboard (copy and paste) and automatically adds the blog to the bloglist
- A settings panel (change download location, turn preview off/on, define number of concurrent downloads, set the imagesize of downloaded pictures, set download defaults, enable portable mode, etc.)
- An option to skip the download of a file if it has already been downloaded before in any currently added blog
- Preview of photos and videos
- Download of Gif instead of WebP/Gifv images from Tumblr
- File rename functionality
- Download of Twitter blogs
- Image viewer with slideshow mode
- Automated update process
- Group blogs into collections
- Choice of download format for .pnj links
- Internationalization support (several languages available)
- A download queue
- Autosave of the queuelist
- Save, clear and restore the queuelist
- Uses Windows proxy settings
- A bandwidth throttler
- An option to download an url list instead of the actual files
- Set of a start time for a automatic download (e.g. during nights)
- Change of blog settings of multiple selected blogs at once
- Uses SSL connections
- Taskbar buttons and key bindings
$ErrorActionPreference = 'Stop'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$shortcutPath = "$env:USERPROFILE\Desktop\TumblThree.lnk"
# Remove the desktop shortcut
if (Test-Path $shortcutPath) {
Remove-Item $shortcutPath -Force
}
# Remove the extracted files
if (Test-Path $toolsDir) {
Remove-Item $toolsDir -Recurse -Force
}
Log in or click on link to see number of positives.
- tumblthree.2.14.2.nupkg (0142fc3f9f26) - ## / 68
- TumblThree-v2.14.2-x64-Application.zip (0a5605eb4954) - ## / 66
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 |
---|---|---|---|---|
TumblThree 2.15.1 | 21 | Tuesday, September 10, 2024 | Approved | |
TumblThree 2.14.2 | 24 | Saturday, August 3, 2024 | Approved | |
TumblThree 2.14.1 | 26 | Monday, June 17, 2024 | Approved | |
TumblThree 2.12.0 | 54 | Saturday, May 25, 2024 | Approved |
Copyright (c) 2016-2024 Johannes Meyer zum Alten Borgloh and others
This package has no dependencies.
Ground Rules:
- This discussion is only about TumblThree and the TumblThree 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 TumblThree, 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.