Downloads:
1,105,336
Downloads of v 24.2.5:
33,993
Last Update:
25 Jul 2024
Package Maintainer(s):
Software Author(s):
- LibreOffice developers
Tags:
libreoffice office cross-platform foss admin- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
LibreOffice Still
This is not the latest version of LibreOffice Still available.
- 1
- 2
- 3
24.2.5 | Updated: 25 Jul 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,105,336
Downloads of v 24.2.5:
33,993
Maintainer(s):
Software Author(s):
- LibreOffice developers
LibreOffice Still 24.2.5
This is not the latest version of LibreOffice Still available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by LibreOffice developers. The inclusion of LibreOffice developers trademark(s), if any, upon this webpage is solely to identify LibreOffice developers 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 LibreOffice Still, run the following command from the command line or from PowerShell:
To upgrade LibreOffice Still, run the following command from the command line or from PowerShell:
To uninstall LibreOffice Still, 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 libreoffice-still --internalize --version=24.2.5 --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 libreoffice-still -y --source="'INTERNAL REPO URL'" --version="'24.2.5'" [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 libreoffice-still -y --source="'INTERNAL REPO URL'" --version="'24.2.5'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install libreoffice-still
win_chocolatey:
name: libreoffice-still
version: '24.2.5'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'libreoffice-still' do
action :install
source 'INTERNAL REPO URL'
version '24.2.5'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller libreoffice-still
{
Name = "libreoffice-still"
Version = "24.2.5"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'libreoffice-still':
ensure => '24.2.5',
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 as a trusted package on 25 Jul 2024.
LibreOffice is the free power-packed Open Source personal productivity suite for Windows, macOS and Linux, that gives you six feature-rich applications for all your document production and data processing needs.
Notes
- This package relies on the update service provided by The Document Foundation to determine new updates. As their policy is to distribute to their website immediately and to the update service after 1 to 2 weeks, there will be a delay between a new software update and a new version release of the package.
- This package installs LibreOffice Still which is the stable version of LibreOffice that has undergone more testing (over a longer time). This version is recommended for more conservative users or for deployments in enterprise or corporate environments. If you want the latest version with the most recent bleeding-edge features, install libreoffice-fresh instead.
- For business deployments, The Document Foundation (the foundation behind the LibreOffice project) strongly recommends support from certified partners which also offer long-term support versions of LibreOffice.
- Older versions of this package are likely broken because the LibreOffice team removes the download links for older versions after each update.
- If the package is out of date by more than 2 weeks, please check Version History for the latest submitted version. If you have a question, please ask it in Chocolatey Community Package Discussions or raise an issue on the Chocolatey Community Packages Repository if you have problems with the package. Disqus comments will generally not be responded to.
# Send a generic request to the LibreOffice update service
function GetLatestVersionFromLibOUpdateChecker($userAgent) {
$url = "https://update.libreoffice.org/check.php"
$request = [System.Net.WebRequest]::Create($url)
$request.UserAgent = $userAgent
$s = $request.GetResponse().GetResponseStream()
$sr = New-Object -TypeName System.IO.StreamReader($s)
[xml]$xmlAnswer = $sr.ReadToEnd()
return $xmlAnswer.description.version
}
# Send a request to the LibreOffice update service to get the latest Still
# version
function GetLatestStillVersionFromLibOUpdateChecker() {
# We are taking the build UUID of 3.5.7. This is needed because the update
# service is determining which branch to take depending on the third dot
# number. If the latest fresh release has a third dot number greater or
# equal to the third dot number we specified (here 7), the fresh branch is
# returned, otherwise this is the Still branch.
# src.: https://web.archive.org/web/20190806174607/https://cgit.freedesktop.org/libreoffice/website/tree/check.php?h=update&id=c0c4940e998a0f5fbeb57910b1dfe6778226c51b#n665
return GetLatestVersionFromLibOUpdateChecker "LibreOffice 0 (3215f89-f603614-ab984f2-7348103-1225a5b; Chocolatey; x86; )"
}
# Send a request to the LibreOffice update service to get the latest fresh
# version
function GetLatestFreshVersionFromLibOUpdateChecker() {
# We are taking the build UUID of 3.5.0.1 here for the same explanation
# as before.
return GetLatestVersionFromLibOUpdateChecker "LibreOffice 0 (b6c8ba5-8c0b455-0b5e650-d7f0dd3-b100c87; Chocolatey; x86; )"
}
# Get all the links from a MirrorBrain instance without the copyright
# and owner links
function GetAllBuildsFromMirrorBrainUrl($url) {
$request = [System.Net.WebRequest]::Create($url)
$s = $request.GetResponse().GetResponseStream()
$sr = New-Object -TypeName System.IO.StreamReader($s)
$answer = $sr.ReadToEnd()
[xml]$xmlAnswer = [System.Net.WebUtility]::HtmlDecode($answer)
$linksArray = $xmlAnswer.GetElementsByTagName("a")
# ? outputs all items that conform with condition (here: TryParse returning
# a boolean). As if it was "foreach { if (...) {return ... } }"
# The returned values are still a string that must be parsed to a Version object.
return @($linksArray | ForEach-Object href | ForEach-Object {$_ -Split '/' } | Where-Object { [version]::TryParse($_, [ref]($__)) })
}
function GetBuildHashFromMirrorBrainUrl($url) {
if ([string]::IsNullOrEmpty($url)) {
return $null
}
# We are not using the $url/sha256 suffix because that file is missing
# from downloadarchive :/
$request = [System.Net.WebRequest]::Create("$url.sha256")
$s = $request.GetResponse().GetResponseStream()
$sr = New-Object -TypeName System.IO.StreamReader($s)
$answer = $sr.ReadToEnd()
return $answer.Split(" ")[0]
}
function IsUrlValid($url) {
try {
[System.Net.HttpWebRequest]$request = [System.Net.WebRequest]::Create($url)
$request.Method = "HEAD"
# GetResponse raises a WebException when an error occurred.
$response = $request.GetResponse()
$status = [int]$response.StatusCode
$response.Close()
if ($status -eq 200) {
return $true
} else {
return $false
}
} catch {
return $false
}
}
# Get correspondance between release and build versions
# e.g. 6.2.0 => 6.2.0.3
function BuildLibOReleasesToBuildsMapping($builds) {
$mapping = New-Object -TypeName System.Collections.Specialized.OrderedDictionary
$buildVersion = New-Object -TypeName System.Version
# The last one is never populated, prevent this by adding one additional
# different item in order for the loop to work properly.
[System.Collections.ArrayList]$buildsPlusOne = $builds
$buildsPlusOne.Add("0.0.0.")
foreach ($build in $buildsPlusOne) {
[void][version]::TryParse($build, [ref]$buildVersion)
$releaseId = "$($buildVersion.Major).$($buildVersion.Minor).$($buildVersion.Build)"
if ($releaseId -ne $previousReleaseId -and $previousReleaseId -ne $null) {
$mapping.add($previousReleaseId, $previousBuildId)
}
$previousReleaseId = $releaseId
$previousBuildId = $build
}
return $mapping
}
function GetFilename($url, $releasesMapping, $release, $arch) {
# Sorted to most likely to less likely to avoid unneeded tests
$filenamePatterns = @(
"LibreOffice_[VERSION]_Win_[ARCH].msi",
"LibO_[VERSION]_Win_[ARCH]_install_multi.msi",
"LibO_[VERSION]_Win_[ARCH]_install_multi.exe",
"LibO_[VERSION]_Win_[ARCH]_install_all_lang.msi",
"LibO_[VERSION]_Win_[ARCH]_install_all_lang.exe"
)
$filename64bitsPatterns = @(
"x86_64",
"x64",
"x86-64"
)
$filename32bitsPatterns = @(
"x86"
)
if ($arch -eq "x64") {
$folderArchPattern = "x86_64"
$filenameArchPatterns = $filename64bitsPatterns
} else {
$folderArchPattern = "x86"
$filenameArchPatterns = $filename32bitsPatterns
}
$urlFolder = "${url}$($releasesMapping.$release)/win/$folderArchPattern/"
# No need to go further if the folder doesn't even exist. i.e. typically
# the case when only 32 bits version are available.
if (!(IsUrlValid "$urlFolder")) {
Write-Debug "$urlFolder doesn't exist"
return $null
}
[System.Collections.ArrayList]$filenames = @()
# Build all possible URL variants with filename patterns and arch patterns
foreach ($filename in $filenamePatterns) {
foreach ($archPattern in $filenameArchPatterns) {
# Replace template URL by assuming the release id is used, e.g. 6.2.0
[void]$filenames.Add($($filename -Replace "\[VERSION\]","$release" -Replace "\[ARCH\]","$archPattern"))
# Replace template URL by assuming the build id is used instead, e.g. 6.2.0.0
[void]$filenames.Add($($filename -Replace "\[VERSION\]","$($releasesMapping.$release)" -Replace "\[ARCH\]","$archPattern"))
}
}
# Test all the filename variants we crafted
foreach ($filename in $filenames) {
$completeUrl = "${urlFolder}${filename}"
Write-Debug "Testing $completeUrl..."
# As soon we have a valid URL, break the loop and go to the next release
if (IsUrlValid "$completeUrl") {
Write-Debug "Testing $completeUrl is valid."
return "$completeUrl"
}
}
return $null
}
# Generate an array with all the LibreOffice versions that exist from one
# version to another with checksums and valid links at the time.
function GetLibOVersions($fromVersion, $toVersion) {
# Define table and columns
# src.: https://blogs.msdn.microsoft.com/rkramesh/2012/02/01/creating-table-using-powershell/
$table = New-Object System.Data.DataTable
$table.columns.add($(New-Object System.Data.DataColumn Version))
$table.columns.add($(New-Object System.Data.DataColumn Build))
$table.columns.add($(New-Object System.Data.DataColumn Url64))
$table.columns.add($(New-Object System.Data.DataColumn Checksum64))
$table.columns.add($(New-Object System.Data.DataColumn Url32))
$table.columns.add($(New-Object System.Data.DataColumn Checksum32))
$latestStillVersion = GetLatestStillVersionFromLibOUpdateChecker
$latestStillBranch = $latestStillVersion.Split(".")[0,1] -Join '.'
$latestFreshVersion = GetLatestFreshVersionFromLibOUpdateChecker
$latestFreshBranch = $latestFreshVersion.Split(".")[0,1] -Join '.'
# Get all versions from the downloadarchive according to the limits
# specified above.
$url = 'https://downloadarchive.documentfoundation.org/libreoffice/old/'
$builds = GetAllBuildsFromMirrorBrainUrl $url | Sort-Object
$releasesMapping = BuildLibOReleasesToBuildsMapping $builds
foreach ($release in $releasesMapping.Keys) {
$releaseBranch = $release.Split(".")[0,1] -Join '.'
# These first 2 conditions ensures if the loop continue that we are in
# the interval, since the array is properly sorted (lower to greater).
if ($release -lt $fromVersion) {
continue
} elseif ($release -gt $toVersion) {
break
# Imagine we ask to generate released builds from 6.2.7 to 6.3.2.
# There might be on the server builds 6.2.8 and 6.3.3, the later might
# not have been released by TDF yet. Avoid this.
} elseif (($releaseBranch -eq $latestStillBranch -and $release -gt $latestStillVersion) -or
($releaseBranch -eq $latestFreshBranch -and $release -gt $latestFreshVersion)) {
continue
}
$row = $table.NewRow()
$row.Version = $release
$row.Build = $releasesMapping.$release
# Find 64 bits version if any. At the beginning of the LibreOffice
# project, there weren't 64 bits versions for Windows.
$row.Url64 = GetFilename $url $releasesMapping $release "x64"
$row.Checksum64 = GetBuildHashFromMirrorBrainUrl $row.Url64
$row.Url32 = GetFilename $url $releasesMapping $release "x86"
$row.Checksum32 = GetBuildHashFromMirrorBrainUrl $row.Url32
$table.Rows.Add($row)
}
# If versions are under CDN replace the links with the ones from the CDN
# instead. We assume, all released builds in the stable folder are those
# that are being under CDN.
$url = 'https://download.documentfoundation.org/libreoffice/stable/'
$builds = GetAllBuildsFromMirrorBrainUrl $url | Sort-Object
# $releasesMapping is an ordered dictionnary containing
# mappings like 6.2.0 => 6.2.0.3
$releasesMapping = New-Object -TypeName System.Collections.Specialized.OrderedDictionary
foreach ($release in $builds) {
$releasesMapping.Add($release, $release)
}
foreach ($release in $releasesMapping.Keys) {
foreach ($row in $table) {
if ($row.Version -eq $release) {
$row.Url64 = GetFilename $url $releasesMapping $release "x64"
$row.Url32 = GetFilename $url $releasesMapping $release "x86"
}
}
}
# Powershell doesn't have all the enumerable tools implemented with the
# .NET collections reponsible of the proper unrolling arrays/collections,
# which means if we want our DataTable to be returned under this type,
# we need to wrap the collection into a dummy array with a heading comma
# operator.
# src.: https://stackoverflow.com/a/1918455/3514658
return ,$table
}
function GetLibOVersionsWithoutFromVersion($fromVersion, $toVersion) {
$versions = GetLibOVersions $from $to
# Discard the first version since it is the current one that has already
# been pushed to Chocolatey.
if ($versions.Rows.Count -gt 0) {
$versions.Rows[0].Delete()
}
# Casting needed for the same reason as above
return ,$versions
}
function GetLibOExactVersion($version) {
$versions = GetLibOVersions $version $version
if (($versions.Rows[0].Url64 -eq '') -or ($versions.Rows[0].Url32 -eq '')) {
Throw "Libreoffice update service did not return download URLs"
}
return $versions.Rows[0]
}
function AddLibOVersionsToStreams($streams, $branch, $from, $to) {
$versions = GetLibOVersionsWithoutFromVersion $from $to
foreach ($row in $versions) {
# The package variable needs to be a hashtable. Therefore, we cannot use
# an OrderedDictionary. Tradeoff: The dictionary keys will unfortunately
# appear in random order.
# $row is a DataRow, we have to convert manually to a hashtable.
$package = @{}
$package.Version = $row.Version
$package.URL64 = $row.URL64
$package.Checksum64 = $row.Checksum64
$package.URL32 = $row.URL32
$package.Checksum32 = $row.Checksum32
$package.FileType = $package.URL32 -Replace ".*",""
if ($branch -eq "still") {
$package.PackageName = "libreoffice-still"
$package.Title = "LibreOffice Still"
} else {
$package.PackageName = "libreoffice-fresh"
$package.Title = "LibreOffice Fresh"
}
# Add package to streams. By adding the branch name to the hashtable
# key name, we are hacking the way AU streams are working here
# (bypassing hashtables key unicity) in order to avoid gaps when
# updating LibreOffice versions.
$streams.Add("$($package.Version).$branch", $package)
}
return $streams
}
Log in or click on link to see number of positives.
- libreoffice-still.24.2.5.nupkg (9d9b1ee2045d) - ## / 67
- LibreOffice_24.2.5_Win_x86-64.msi (cad625d119db) - ## / 41
- LibreOffice_24.2.5_Win_x86.msi (d09952f2841f) - ## / 36
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 |
---|---|---|---|---|
LibreOffice Still 24.2.7 | 10089 | Monday, November 18, 2024 | Approved | |
LibreOffice Still 24.2.6 | 76048 | Thursday, September 19, 2024 | Approved | |
LibreOffice Still 24.2.5 | 33993 | Thursday, July 25, 2024 | Approved | |
LibreOffice Still 24.2.4 | 23879 | Tuesday, June 18, 2024 | Approved | |
LibreOffice Still 7.6.6 | 40222 | Thursday, April 18, 2024 | Approved | |
LibreOffice Still 7.6.5 | 40147 | Thursday, February 29, 2024 | Approved | |
LibreOffice Still 7.6.4 | 39 | Thursday, February 29, 2024 | Approved | |
LibreOffice Still 7.6.3 | 43 | Thursday, February 29, 2024 | Approved | |
LibreOffice Still 7.6.2 | 41 | Thursday, February 29, 2024 | Approved | |
LibreOffice Still 7.6.1 | 36 | Thursday, February 29, 2024 | Approved | |
LibreOffice Still 7.6.0 | 38 | Thursday, February 29, 2024 | Approved | |
LibreOffice Still 7.5.9 | 69089 | Friday, December 8, 2023 | Approved | |
LibreOffice Still 7.5.8 | 14927 | Tuesday, November 28, 2023 | Approved | |
LibreOffice Still 7.5.6 | 58222 | Wednesday, September 13, 2023 | Approved | |
LibreOffice Still 7.5.5 | 52 | Wednesday, September 13, 2023 | Approved | |
LibreOffice Still 7.5.4 | 61 | Wednesday, September 13, 2023 | Approved | |
LibreOffice Still 7.5.3 | 47 | Wednesday, September 13, 2023 | Approved | |
LibreOffice Still 7.5.2 | 41 | Wednesday, September 13, 2023 | Approved | |
LibreOffice Still 7.5.1 | 283 | Wednesday, September 13, 2023 | Approved | |
LibreOffice Still 7.5.0 | 86 | Wednesday, September 13, 2023 | Approved | |
LibreOffice Still 7.4.7 | 126489 | Thursday, May 11, 2023 | Approved | |
LibreOffice Still 7.4.6 | 59743 | Thursday, March 16, 2023 | Approved | |
LibreOffice Still 7.4.4 | 24785 | Friday, January 13, 2023 | Approved | |
LibreOffice Still 7.4.3 | 68 | Friday, January 13, 2023 | Approved | |
LibreOffice Still 7.4.2 | 54 | Friday, January 13, 2023 | Approved | |
LibreOffice Still 7.4.1 | 54 | Friday, January 13, 2023 | Approved | |
LibreOffice Still 7.4.0 | 72 | Friday, January 13, 2023 | Approved | |
LibreOffice Still 7.3.7 | 36022 | Thursday, November 24, 2022 | Approved | |
LibreOffice Still 7.3.6 | 22574 | Thursday, September 15, 2022 | Approved | |
LibreOffice Still 7.3.5 | 13452 | Tuesday, August 9, 2022 | Approved | |
LibreOffice Still 7.3.4 | 10768 | Monday, June 27, 2022 | Approved | |
LibreOffice Still 7.3.3 | 65 | Monday, June 27, 2022 | Approved | |
LibreOffice Still 7.3.2 | 67 | Monday, June 27, 2022 | Approved | |
LibreOffice Still 7.3.1 | 84 | Monday, June 27, 2022 | Approved | |
LibreOffice Still 7.3.0 | 90 | Monday, June 27, 2022 | Approved | |
LibreOffice Still 7.2.7 | 24644 | Tuesday, May 17, 2022 | Approved | |
LibreOffice Still 7.2.5 | 20580 | Wednesday, March 9, 2022 | Approved | |
LibreOffice Still 7.2.3 | 84 | Wednesday, March 9, 2022 | Approved | |
LibreOffice Still 7.2.2 | 89 | Wednesday, March 9, 2022 | Approved | |
LibreOffice Still 7.2.1 | 105 | Wednesday, March 9, 2022 | Approved | |
LibreOffice Still 7.2.0 | 109 | Wednesday, March 9, 2022 | Approved | |
LibreOffice Still 7.1.8 | 37821 | Monday, December 6, 2021 | Approved | |
LibreOffice Still 7.1.7 | 13262 | Tuesday, November 16, 2021 | Approved | |
LibreOffice Still 7.1.6 | 14333 | Friday, September 24, 2021 | Approved | |
LibreOffice Still 7.1.5 | 110 | Friday, September 24, 2021 | Approved | |
LibreOffice Still 7.1.4 | 93 | Friday, September 24, 2021 | Approved | |
LibreOffice Still 7.1.3 | 88 | Friday, September 24, 2021 | Approved | |
LibreOffice Still 7.1.2 | 78 | Friday, September 24, 2021 | Approved | |
LibreOffice Still 7.1.1 | 77 | Friday, September 24, 2021 | Approved | |
LibreOffice Still 7.1.0 | 69 | Friday, September 24, 2021 | Approved | |
LibreOffice Still 7.0.6 | 41931 | Thursday, May 20, 2021 | Approved | |
LibreOffice Still 7.0.5 | 22606 | Thursday, March 18, 2021 | Approved | |
LibreOffice Still 7.0.4 | 11593 | Tuesday, January 19, 2021 | Approved | |
LibreOffice Still 7.0.3 | 19492 | Monday, November 30, 2020 | Approved | |
LibreOffice Still 7.0.2 | 125 | Monday, November 30, 2020 | Approved | |
LibreOffice Still 7.0.1 | 143 | Monday, November 30, 2020 | Approved | |
LibreOffice Still 7.0.0 | 120 | Monday, November 30, 2020 | Approved | |
LibreOffice Still 6.4.7 | 13914 | Thursday, November 12, 2020 | Approved | |
LibreOffice Still 6.4.6 | 8898 | Tuesday, October 20, 2020 | Approved | |
LibreOffice Still 6.4.5 | 123 | Tuesday, October 20, 2020 | Approved | |
LibreOffice Still 6.4.4 | 122 | Tuesday, October 20, 2020 | Approved | |
LibreOffice Still 6.4.3 | 137 | Tuesday, October 20, 2020 | Approved | |
LibreOffice Still 6.4.2 | 140 | Tuesday, October 20, 2020 | Approved | |
LibreOffice Still 6.4.1 | 136 | Tuesday, October 20, 2020 | Approved | |
LibreOffice Still 6.4.0 | 138 | Tuesday, October 20, 2020 | Approved | |
LibreOffice Still 6.3.6 | 35207 | Tuesday, May 26, 2020 | Approved | |
LibreOffice Still 6.3.5 | 9536 | Thursday, March 5, 2020 | Approved | |
LibreOffice Still 6.3.4 | 2844 | Wednesday, February 19, 2020 | Approved | |
LibreOffice Still 6.3.3 | 201 | Wednesday, February 19, 2020 | Approved | |
LibreOffice Still 6.3.2 | 164 | Wednesday, February 19, 2020 | Approved | |
LibreOffice Still 6.3.1 | 178 | Wednesday, February 19, 2020 | Approved | |
LibreOffice Still 6.3.0 | 154 | Wednesday, February 19, 2020 | Approved | |
LibreOffice Still 6.2.8 | 8765 | Tuesday, November 12, 2019 | Approved | |
LibreOffice Still 6.2.7 | 2259 | Friday, October 18, 2019 | Approved | |
LibreOffice Still 6.2.6 | 184 | Friday, October 18, 2019 | Approved | |
LibreOffice Still 6.2.5 | 167 | Friday, October 18, 2019 | Approved | |
LibreOffice Still 6.2.4 | 295 | Friday, October 18, 2019 | Approved | |
LibreOffice Still 6.2.3 | 218 | Thursday, November 14, 2019 | Approved | |
LibreOffice Still 6.2.2 | 240 | Friday, October 18, 2019 | Approved | |
LibreOffice Still 6.2.1 | 214 | Friday, October 18, 2019 | Approved | |
LibreOffice Still 6.2.0 | 223 | Friday, October 18, 2019 | Approved | |
LibreOffice Still 6.1.6 | 171 | Friday, October 18, 2019 | Approved | |
LibreOffice Still 6.1.5 | 240 | Thursday, November 14, 2019 | Approved | |
LibreOffice Still 6.1.4 | 210 | Friday, October 18, 2019 | Approved | |
LibreOffice Still 6.1.3 | 174 | Friday, October 18, 2019 | Approved | |
LibreOffice Still 6.1.2 | 188 | Friday, October 18, 2019 | Approved | |
LibreOffice Still 6.1.1 | 168 | Friday, October 18, 2019 | Approved | |
LibreOffice Still 6.1.0 | 265 | Thursday, November 14, 2019 | Approved | |
LibreOffice Still 6.0.7 | 127262 | Monday, November 5, 2018 | Approved | |
LibreOffice Still 6.0.6 | 5081 | Monday, September 3, 2018 | Approved | |
LibreOffice Still 5.4.7 | 6146 | Thursday, May 17, 2018 | Approved | |
LibreOffice Still 5.4.6 | 4582 | Thursday, March 22, 2018 | Approved | |
LibreOffice Still 5.4.5 | 2772 | Thursday, February 8, 2018 | Approved | |
LibreOffice Still 5.4.4 | 515 | Tuesday, February 6, 2018 | Approved | |
LibreOffice Still 5.3.7 | 3739 | Thursday, January 11, 2018 | Approved |
Copyright © 2000-2023 by LibreOffice contributors. All rights reserved.
-
- kb2919355 (≥ 1.0.20160915)
Ground Rules:
- This discussion is only about LibreOffice Still and the LibreOffice Still 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 LibreOffice Still, 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.