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
2021-11-05Support for wordlists in user configuration directory (#6799)snipfoo
This commit allows users to put alternative wordlists in a `wordlists` subdirectory below their KeePassXC directory (e.g., under Linux, `~/.config/keepassxc/wordlists`). These wordlists will then appear in the dropdown menu in the *Password Generator* widget. In order to differentiate between lists shipped with KeePassXC and user-provided lists, the former appears with a (SYSTEM) prefix.
2021-07-14Optimize includes across code basepeter
2020-10-06Move icon handling from Resources to gui/Icons (#5506)louib
2020-08-17Fix excessive memory usage by iconsJonathan White
* Fixes #5240 * Limit size of icons being loaded to prevent excessive memory usage in some cases * Fix loading database icons, previous method would just overwrite the same pixmap and not actually provide caching.
2020-07-10Reset icon theme name before calling QIcon::fromTheme().Janek Bevendorff
qt5ct randomly resets the active Qt icon theme to "", resulting in empty or wrong icons. See https://sourceforge.net/p/qt5ct/tickets/80/ Fixes #4963
2020-06-04Fix resolving resources when running from build directoryJonathan White
* Copy wordlists to build dir share folder * Change resource path resolution to only test the provided directory, not finding a specific file
2020-06-04Fix loading of tray icon appearance setting.Janek Bevendorff
The tray icon appearance setting is null by default, since we do not want to include OSUtils into Config. As a result, we must take special care to preselect the correct combo box entry on the settings page.
2020-05-31Add option for monochrome tray iconJanek Bevendorff
2020-05-03Implement Caps Lock warningJanek Bevendorff
2020-05-02Refactor Config.Janek Bevendorff
Replaces all string configuration options with enum types that can be checked by the compiler. This prevents spelling errors, in-place configuration definitions, and inconsistent default values. The default value config getter signature was removed in favour of consistently and centrally default-initialised configuration values. Individual default values were adjusted for better security, such as the default password length, which was increased from 16 characters to 32. The already existing config option deprecation map was extended by a general migration procedure using configuration versioning. Settings were split into Roaming and Local settings, which go to their respective AppData locations on Windows. Fixes #2574 Fixes #2193
2020-04-29Fix CategoryListWidget iconsJanek Bevendorff
- Correct colouring of selected icon - Better selection rectangle correction
2020-04-29Fix icon search path on LinuxJanek Bevendorff
2020-03-14Bundle icons using the Qt resource system.Janek Bevendorff
Simplify resource loading logic and enable reproducible builds. Fixes #2582