Skip to content

Commit

Permalink
AU: 1 updated - keepassxc
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Aug 24, 2018
1 parent 571d892 commit c68a7f9
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 16 deletions.
33 changes: 29 additions & 4 deletions automatic/keepassxc/keepassxc.nuspec
Original file line number Diff line number Diff line change
@@ -1,16 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek
uppercase omega letter enclosed in quotation marks, you should use an
editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>keepassxc-desktop</id>
<id>keepassxc</id>
<title>KeePassXC</title>
<version>2.3.3</version>
<version>2.3.4</version>
<authors>https://github.com/keepassxreboot/keepassxc/graphs/contributors</authors>
<owners>wget, hans0</owners>
<summary>KeePassXC is a community fork of KeePassX which aims to incorporate stalled pull requests, features, and bug fixes that have never made it into the main KeePassX repository.</summary>
<description></description>
<description><![CDATA[KeePassXC is a fork of [KeePassX](https://www.keepassx.org/) that [aims to incorporate stalled pull requests, features, and bug fixes that have never made it into the main KeePassX repository](https://github.com/keepassxreboot/keepassx/issues/43).
# Features
These are the additional features compared to KeePassX:
- Auto-Type on all three major platforms (Linux, Windows, macOS)
- Twofish encryption
- YubiKey challenge-response support
- TOTP generation
- CSV import
- Command line interface
- DEP and ASLR hardening
- Stand-alone password and passphrase generator
- Password strength meter
- Using website favicons as entry icons
- Merging of databases
- Automatic reload when the database changed on disk
- Browser integration with KeePassHTTP-Connector for Mozilla Firefox and Google Chrome or Chromium, and passafari in Safari.
- Browser integration with KeePassXC-Browser using native messaging for Mozilla Firefox and Google Chrome or Chromium.
## Notes
N/A
![KeepassXC screenshot](https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/f2cfda756d8ab847b9d65ce394de18c6a090666b/automatic/keepassxc/screenshot.png)
]]></description>
<projectUrl>https://keepassxc.org/</projectUrl>
<tags>keepassxc keepass keepassx keepassreboot keepassx multiplatform password safe foss cross-platform</tags>
<copyright>2016-2017 KeePassXC Team</copyright>
Expand Down
12 changes: 6 additions & 6 deletions automatic/keepassxc/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ The installer have been downloaded from the Github release page <https://github.
and can be verified like this:

1. Download the following installers:
32-Bit: <>
64-Bit: <>
32-Bit: <https://github.com/keepassxreboot/keepassxc/releases/download/2.3.4/KeePassXC-2.3.4-Win32.msi>
64-Bit: <https://github.com/keepassxreboot/keepassxc/releases/download/2.3.4/KeePassXC-2.3.4-Win64.msi>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type:
checksum32:
checksum64:
checksum type: sha256
checksum32: 2E9EB1AA0592E7CE135188C91FE404E075F138FD3F48A95552EC1B75D72798C5
checksum64: A3DB8244E4EA142EB79FEDDA7EFCFBD738E7C9E05407B8A25F35948D17D1F63D

File 'LICENSE.txt' is obtained from <https://github.com/keepassxreboot/keepassxc/blob/470a74ee24793eaccab0ae371a7ee970b95bfeb9/COPYING>
File 'LICENSE.txt' is obtained from <https://github.com/keepassxreboot/keepassxc/blob/470a74ee24793eaccab0ae371a7ee970b95bfeb9/COPYING>
10 changes: 5 additions & 5 deletions automatic/keepassxc/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ $packageArgs = @{
packageName = 'keepassxc'
softwareName = 'KeePassXC'
fileType = 'msi'
file = "$toolsDir\"
file64 = "$toolsDir\"
checksum = ''
file = "$toolsDir\KeePassXC-2.3.4-Win32.msi"
file64 = "$toolsDir\KeePassXC-2.3.4-Win64.msi"
checksum = '2E9EB1AA0592E7CE135188C91FE404E075F138FD3F48A95552EC1B75D72798C5'
checksumType = 'sha256'
checksum64 = ''
checksum64 = 'A3DB8244E4EA142EB79FEDDA7EFCFBD738E7C9E05407B8A25F35948D17D1F63D'
checksumType64 = 'sha256'

# MSI
Expand All @@ -21,4 +21,4 @@ $packageArgs = @{
Install-ChocolateyPackage @packageArgs

# Lets remove the installer and ignore files as there is no more need for them
Get-ChildItem $toolsDir\*.$fileType | ForEach-Object { Remove-Item $_ -ea 0; if (Test-Path $_) { Set-Content "$_.ignore" '' } }
Get-ChildItem $toolsDir\*.$fileType | ForEach-Object { Remove-Item $_ -ea 0; if (Test-Path $_) { Set-Content "$_.ignore" '' } }
2 changes: 1 addition & 1 deletion automatic/keepassxc/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ if ($key.Count -eq 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 | % {Write-Warning "- $_.DisplayName"}
$key | ForEach-Object {Write-Warning "- $_.DisplayName"}
}

0 comments on commit c68a7f9

Please sign in to comment.