Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-02Set password input field font correctly. (#8732)release/2.7.xJanek Bevendorff
Also update member variable names to describe their contents better. Fixes #8709
2022-10-30Fix appdata.xml formattingJonathan White
2022-10-30Fix SSH Agent Build on MSYS Windows (#8708)Jonathan White
2022-10-30Fix realpath error on macOS 13 (#8707)Janek Bevendorff
2022-10-29Update translationslatest2.7.4Jonathan White
2022-10-29Fix typo in release-tool.ps1Jonathan White
2022-10-29Browser: second fix for linked socket pathJonathan White
* Fix #8702
2022-10-29Version bump to 2.7.4Jonathan White
2022-10-29Fix powershell merge with no changes to translationsJonathan White
2022-10-29Fix launching proxy service with FlatpakJonathan White
* Fixes #8655
2022-10-29Prevent expired entries search if no results returnedJonathan White
* Fixes #8626 * Also remove old feature to set the title of a new entry to the current search text. This only made sense before advanced searching was made available.
2022-10-29Point INSTALL.md checkout reference to latest tag (#8470)Maurizio Pasquinelli
2022-10-29CLI: Add Unicode support on Windows (#8618)Matthew Donoughe
2022-10-29Revert async Access Confirm DialogSami Vänttinen
2022-10-29Fix deleting existing socket file before making a new symbolic linkvarjolintu
2022-10-29SSH Agent: Fix CreateFileMappingA Parameter (#8619)YAMASAKI Masahide
The last argument of CreateFileMappingA is of type string.
2022-10-29Add entry 2 months to preset menu (#8687)Hoai-Thu Vuong
2022-10-29Fix clicking links in entry preview panelJonathan White
* Fixes #8636
2022-10-29Fix crash on macOS when unlocking databaseJonathan White
* Fix #8639
2022-10-29Fix display of passwords in preview panelJonathan White
* Fix #8627 - don't HTML escape plain text... * Fix #8624 - ensure use of monospace font when displaying passwords in preview panel
2022-10-23Update translations2.7.3Janek Bevendorff
2022-10-23Fix creating tag with powershell release toolJonathan White
* The original method dumped the changelog lines into the command which overflowed the command line length. This method uses a temporary file for the tag message.
2022-10-23Update minimum macOS deployment target to 10.15Janek Bevendorff
Fixes compilation warnings about some macOS APIs not being available in 10.13.
2022-10-23Fix macOS window activation issuesJanek Bevendorff
Reverts part of 34b7d08a5, which introduced a regression.
2022-10-23Bump version numberJanek Bevendorff
2022-10-23Update translations2.7.2Jonathan White
2022-10-23Bump version to 2.7.2Jonathan White
2022-10-23Fix typos in docs (#8612)tocic
2022-10-20Add a URL that preserves the URL path when trying to resolve favicons. (#8565)Patrick Klein
2022-10-19Fix potential deadlock in UI when savingJonathan White
This was noted as a problem in several issues and it finally occurred to me and I traced it to the fact that a timing issue sometimes allowed the file watcher to trigger a "file changed" alert right when saving starts. I fixed this by moving where the mutex lock is made for saving and preventing database reload during a save operation.
2022-10-19Hide usernames in preview panel when hidden in entry viewJonathan White
* Fix #6306
2022-10-19Allow picking tags from completion menu with keyboardJonathan White
* Also fixes the hiding and display of the completion menu to be more natural and less annoying. * Fixes #7939
2022-10-18Add CFBundleVersion, fixes #8454 (#8602)Janek Bevendorff
2022-10-18Update macOS provisioning profile (#8600)Janek Bevendorff
2022-10-17Fix use of WITH_XC_X11 build flagJonathan White
2022-10-17Allow for homebrew prefix location to handle both x64 and arm macs (#8593)Vijay Aravamudhan
Allow for Homebrew prefix location to handle both x64 and arm macs
2022-10-17Enable dark title bar on windows when accent color is not usedJonathan White
* Fix #6775
2022-10-17Improve PowerShell Release ToolJonathan White
* -Vcpkg variable now points to the base directory for VCPKG and not the vcpkg.cmake file (which is always in the same subfolder) * Place custom CMakeOptions at the end of the options list so they can override default options.
2022-10-17Fix focus trapsJonathan White
* Fix focus issues with new PasswordWidget * Fix focus wrapping when DatabaseTabWidget is not showing the tab bar * Fix focus wrapping in EditWidget views to move between category list and contents. This is not a perfect fix, but Qt has a mind of its own with these complex widgets. This will be fixed in future Ui improvements that move away from the category widget.
2022-10-17Fix crash when application is unfocused during savesJonathan White
* Fix #8504
2022-10-17Fix newlines when copying from DatabaseWidgetOwen Wang
2022-10-17[CLI] Add a db-edit command (#8400)louib
2022-10-17Add option to display passwords in color in preview panelWolfram Rösler
Closes #4099 * Fixed bug in Application that did not set the dark theme flag when the theme was changed from dark to light.
2022-10-17Add XML Export option to GUI. (#8524)Patrick Klein
* Add XML Export option to GUI. * Update database export screenshot.
2022-10-17Increase entropy required for a "good" rating to 75.Patrick Sean Klein
2022-10-17Add German translation to AppdataJakobDev
2022-10-17Remove --no-add-neededAlex Xu (Hello71)
--no-add-needed is the default behavior since binutils 2.22, released in 2011. This option also breaks lld compatibility.
2022-10-17Fix dark mode detection on Linuxfelipdsa21
Fixes #7817
2022-10-17Remove old --pw / --parent-window option from man pageArnavion
This was removed from the code in 9886b1075fbddca0d4ef564c1bb481afcc199c3f
2022-09-23Fix crash when deleting items in recycle bin while searching (#8117)Jonathan White
* Fix #8099 * Clean up code that connects groups to the entry view. Instead of connecting ALL groups from ALL databases, we only need to connect the groups that entries actually belong to. This solves the bug and also reduces overhead.