
251,674
Downloads
789
Downloads of v 2.5.0
10/3/2014
Last update
Calibre
2.5.0
calibre is a free and open source e-book library management application developed by users of e-books for users of e-books.
To install Calibre, run the following command from the command line or from PowerShell:
C:\> choco install calibre
--version 2.5.0
To upgrade Calibre, run the following command from the command line or from PowerShell:
C:\> choco upgrade calibre
--version 2.5.0
Files
Hide- calibre.ketarin.xml
Show
<?xml version='1.0' encoding='utf-8'?> <Jobs> <ApplicationJob xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Guid="48990104-8c8d-401f-a9c2-60653fc81c65"> <SourceTemplate><![CDATA[<?xml version="1.0" encoding="utf-8"?> <Jobs> <ApplicationJob xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Guid="0fb30714-8ed0-4611-8f1b-cb8fec9dae91"> <WebsiteUrl /> <UserAgent>Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.168 Safari/535.19</UserAgent> <UserNotes /> <LastFileSize>384846</LastFileSize> <LastFileDate>2012-05-23T02:09:37.7748325</LastFileDate> <IgnoreFileInformation>false</IgnoreFileInformation> <DownloadBeta>Default</DownloadBeta> <DownloadDate xsi:nil="true" /> <CheckForUpdatesOnly>false</CheckForUpdatesOnly> <VariableChangeIndicator /> <CanBeShared>true</CanBeShared> <ShareApplication>false</ShareApplication> <ExclusiveDownload>false</ExclusiveDownload> <HttpReferer /> <SetupInstructions /> <Variables> <item> <key> <string>version</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>StartEnd</VariableType> <Regex /> <Url><placeholder name="Url with version information" value="http://sourceforge.net/projects/calibre/files/" /></Url> <StartText><TABLE cellspacing ="1" cellpadding ="6" border = "0"> <TR> <TH class="Title" align="center" width=90>7-Zip </StartText> <EndText><BR></EndText> <TextualContent /> <Name>version</Name> </UrlVariable> </value> </item> <item> <key> <string>url64</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>Textual</VariableType> <Regex /> <TextualContent>""</TextualContent> <Name>url64</Name> </UrlVariable> </value> </item> </Variables> <ExecuteCommand /> <ExecutePreCommand /> <ExecuteCommandType>Batch</ExecuteCommandType> <ExecutePreCommandType>Batch</ExecutePreCommandType> <Category /> <SourceType>FixedUrl</SourceType> <DeletePreviousFile>true</DeletePreviousFile> <Enabled>true</Enabled> <FileHippoId /> <LastUpdated>2012-05-23T02:09:37.7748325</LastUpdated> <TargetPath>C:\Chocolatey\_work\</TargetPath> <FixedDownloadUrl><placeholder name="Download Url - Optional" value="http://freefr.dl.sourceforge.net/project/calibre/{version}/calibre-{version}.msi" /></FixedDownloadUrl> <Name><placeholder name="Name" value="calibre" /></Name> </ApplicationJob> </Jobs>]]></SourceTemplate> <WebsiteUrl /> <UserAgent>Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.168 Safari/535.19</UserAgent> <UserNotes /> <LastFileSize>56419840</LastFileSize> <LastFileDate>2014-08-08T05:00:42.1223032</LastFileDate> <IgnoreFileInformation>false</IgnoreFileInformation> <DownloadBeta>Default</DownloadBeta> <DownloadDate xsi:nil="true" /> <CheckForUpdatesOnly>false</CheckForUpdatesOnly> <VariableChangeIndicator /> <CanBeShared>true</CanBeShared> <ShareApplication>false</ShareApplication> <ExclusiveDownload>false</ExclusiveDownload> <HttpReferer /> <SetupInstructions /> <Variables> <item> <key> <string>version</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>StartEnd</VariableType> <Regex /> <Url>http://sourceforge.net/projects/calibre/files/</Url> <StartText><tr title="</StartText> <EndText>" class="folder "></EndText> <TextualContent /> <Name>version</Name> </UrlVariable> </value> </item> <item> <key> <string>url64</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>Textual</VariableType> <Regex /> <TextualContent>""</TextualContent> <Name>url64</Name> </UrlVariable> </value> </item> </Variables> <ExecuteCommand /> <ExecutePreCommand /> <ExecuteCommandType>Batch</ExecuteCommandType> <ExecutePreCommandType>Batch</ExecutePreCommandType> <Category /> <SourceType>FixedUrl</SourceType> <PreviousLocation>C:\Chocolatey\_work\calibre-1.48.0.msi</PreviousLocation> <DeletePreviousFile>true</DeletePreviousFile> <Enabled>true</Enabled> <FileHippoId /> <LastUpdated>2014-08-08T05:00:42.1223032</LastUpdated> <TargetPath>C:\Chocolatey\_work\</TargetPath> <FixedDownloadUrl>http://download.calibre-ebook.com/{version}/calibre-{version}.msi</FixedDownloadUrl> <Name>calibre</Name> </ApplicationJob> </Jobs>
- tools\chocolateyInstall.ps1
Show
$packageName = 'calibre' $installerType = 'MSI' $32BitUrl = 'http://download.calibre-ebook.com/2.5.0/calibre-2.5.0.msi' $64BitUrl = 'http://download.calibre-ebook.com/2.5.0/calibre-64bit-2.5.0.msi' $silentArgs = '/quiet' $validExitCodes = @(0) Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$32BitUrl" "$64BitUrl" -validExitCodes $validExitCodes
- tools\chocolateyUninstall.ps1
Show
$packageName = "calibre" $packageWildCard = $packageName + "*"; try { $app = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -like $packageWildCard -and ($_.Version -eq "2.5.0") } $result = $app.Uninstall(); Write-ChocolateySuccess $packageName } catch { Write-ChocolateyFailure $packageName "$($_.Exception.Message)" throw }
Virus Scan Results
- calibre.2.5.0.nupkg (dabb510f1ba2) - ## / 57 - Log in or click on link to see number of positives
- calibre-64bit-2.5.0.msi (cdb0adf04d0b) - ## / 55 - Log in or click on link to see number of positives
- calibre-2.5.0.msi (4b194828af50) - ## / 53 - Log in or click on link to see number of positives
Dependencies
This package has no dependencies.
Package Maintainer(s)
Software Author(s)
Copyright
Kovid Goyal
Tags
Release Notes
Up to date release notes for this application can be found here:
http://calibre-ebook.com/whats-new
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Calibre 3.39.1 | 2993 | Friday, February 8, 2019 | approved |
Calibre 3.39.0 | 2585 | Friday, February 1, 2019 | approved |
Calibre 3.38.1 | 3779 | Friday, January 18, 2019 | approved |
Calibre 3.38.0 | 731 | Friday, January 18, 2019 | approved |
Calibre 3.37.0 | 3687 | Friday, January 4, 2019 | approved |
Calibre 3.35.0 | 5241 | Friday, December 7, 2018 | approved |
Calibre 3.34.0 | 4773 | Thursday, November 8, 2018 | approved |
Calibre 3.33.1 | 3943 | Friday, October 19, 2018 | approved |
Calibre 3.32.0 | 3886 | Friday, September 28, 2018 | approved |
Calibre 3.31.0 | 3836 | Friday, September 7, 2018 | approved |
Discussion for the Calibre Package
Ground rules:
- This discussion is only about Calibre and the Calibre 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 Calibre, 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.