Felix Geyer
|
18337927f5
|
Fix includes for ptrace(PT_DENY_ATTACH, ...).
|
2012-10-23 17:06:50 +02:00 |
|
Felix Geyer
|
59847f4f30
|
Make QSaveFile work on Windows when the target file already exists.
|
2012-10-22 17:48:13 +02:00 |
|
Florian Geyer
|
92bf7c94d0
|
Whitespace separated search terms are AND concatenated.
|
2012-10-21 21:09:27 +02:00 |
|
Felix Geyer
|
4d263a09db
|
Include config-keepassx.h in Tools.cpp for the HAVE_* defines.
|
2012-10-21 19:24:17 +02:00 |
|
Felix Geyer
|
169e6327ea
|
Disable core dumps and tracing on *nix.
But only when built in release mode.
Closes #4
|
2012-10-21 12:33:00 +02:00 |
|
Felix Geyer
|
7286b1847d
|
Add Database::verifyKey().
And make Database::hasKey() const.
|
2012-10-12 12:10:41 +02:00 |
|
Florian Geyer
|
de1a94ff61
|
Add presets for expire date.
Closes #44
|
2012-08-18 17:33:41 +02:00 |
|
Florian Geyer
|
6c695e3fd0
|
Remember show toolbar option.
Closes #43
|
2012-08-15 19:50:31 +02:00 |
|
Felix Geyer
|
0bac9752ba
|
Use QTime instead of QElapsedTimer with Qt 4.6.
The latter has been introduced in Qt 4.7.
|
2012-08-05 19:19:01 +02:00 |
|
Felix Geyer
|
8fb2f9db7c
|
Move inline keyword to function definition.
|
2012-08-04 22:06:41 +02:00 |
|
Felix Geyer
|
668103a00f
|
Show group and entry view context menus from MainWindow.
This allows us to drop the duplicate actions in DatabaseWidget.
|
2012-08-04 22:06:41 +02:00 |
|
Felix Geyer
|
e9a96ff80a
|
Mark m_pixmapCacheKey as mutable so we don't have to const_cast.
|
2012-07-25 12:18:16 +02:00 |
|
Felix Geyer
|
92efb3d20b
|
Move autoTypeSequence() and windowMatches() to the AutoType class.
|
2012-07-23 18:06:04 +02:00 |
|
Felix Geyer
|
ecea101962
|
Return Q_NULLPTR instead of 0 when the return type is a pointer.
|
2012-07-23 14:58:57 +02:00 |
|
Felix Geyer
|
7820bf2510
|
For global auto-type use the default sequence of the entry before the group.
|
2012-07-23 12:56:00 +02:00 |
|
Felix Geyer
|
33b4cd8636
|
Don't add new entries to EntryModel when in search mode.
Only allow moving entries from one group to the other.
|
2012-07-21 22:21:49 +02:00 |
|
Florian Geyer
|
f6e1af30b3
|
Move recycle bin creation method to Group class.
|
2012-07-21 11:58:00 +02:00 |
|
Felix Geyer
|
a50d2709e7
|
Replace EntryAttachments and EntryAttributes operator=() with copyDataFrom().
QObjects are not supposed to have assignment operators.
|
2012-07-20 12:15:19 +02:00 |
|
Felix Geyer
|
ef579cbe3c
|
Refactor Entry::truncateHistory().
This allows us to drop Entry::getSize() and EntryAttachments::attachmentsSize()
which have weird semantics.
|
2012-07-20 00:45:34 +02:00 |
|
Felix Geyer
|
0c1fecfb2b
|
const_cast "this" instead of the member variable.
|
2012-07-19 23:32:31 +02:00 |
|
Felix Geyer
|
308d3ad84b
|
Use constructor initialization lists where possible.
|
2012-07-19 19:42:14 +02:00 |
|
Felix Geyer
|
4152e93bb7
|
Add a cache for FilePath::icon().
|
2012-07-18 21:22:36 +02:00 |
|
Felix Geyer
|
f01076856b
|
Don't add double "/" to paths.
|
2012-07-18 21:22:36 +02:00 |
|
Felix Geyer
|
2a45f57386
|
Support proper plugin finding.
So we don't have to hardcode the location anymore.
|
2012-07-18 21:22:36 +02:00 |
|
Felix Geyer
|
7fef3bd701
|
Rename DataPath to FilePath.
|
2012-07-18 21:22:26 +02:00 |
|
Felix Geyer
|
490414716d
|
Generate new random transform seed when changing transform rounds.
|
2012-07-17 10:57:08 +02:00 |
|
Felix Geyer
|
66422437d3
|
Regenerate key in Database::setTransformRounds().
Merge Database::updateKey() into Database::setTransformRounds() and
regenerate the key if the database already has a key.
Closes #34
|
2012-07-17 10:33:54 +02:00 |
|
Felix Geyer
|
965dba63d7
|
Use Q_OS_MAC instead of the nonexistent Q_OS_MACOS.
Thanks to Richard Johnson for spotting this.
Closes #33
|
2012-07-16 17:49:12 +02:00 |
|
Felix Geyer
|
7db6850528
|
Add AutoTypeAssociations::removeEmpty().
|
2012-07-16 17:37:18 +02:00 |
|
Felix Geyer
|
7abaf0e215
|
Fix bug in Entry::autoTypeSequence() with default window sequences.
When using the default sequence autoTypeSequence() returned an empty string.
|
2012-07-16 17:34:19 +02:00 |
|
Felix Geyer
|
f98d834edb
|
Move Auto-Type associations handling from Entry into an own class.
|
2012-07-16 09:54:04 +02:00 |
|
Felix Geyer
|
f4a4930f42
|
Entry::autoTypeSequence() returns null string when no window matches.
Return QString() when a windowTitle is passed but doesn't match any
auto-type association.
|
2012-07-15 11:30:30 +02:00 |
|
Felix Geyer
|
bc207714da
|
Add initial auto-type implementation.
The platform dependent bits are separated in plugins.
A plugin for X11 using Xlib is already done.
|
2012-07-12 22:33:20 +02:00 |
|
Felix Geyer
|
073f3f9dfc
|
Add ListDeleter class.
A class that deletes all elements of a QList when it goes out of scope.
|
2012-07-12 22:28:44 +02:00 |
|
Felix Geyer
|
549c3ce598
|
Fix memory leak in QSaveFile.
|
2012-07-12 21:30:37 +02:00 |
|
Felix Geyer
|
9de4cbbbd6
|
Use Q_OS_* defines instead of Q_WS_*.
|
2012-07-12 13:58:40 +02:00 |
|
Felix Geyer
|
13eb1f6330
|
Add Tools::sleep() and Tools::wait().
|
2012-07-12 13:51:50 +02:00 |
|
Felix Geyer
|
2f98d95b66
|
Import QSaveFile from libkdeqt5staging.
It's planned to become part of Qt 5.1.
|
2012-07-06 14:36:04 +02:00 |
|
Felix Geyer
|
d826ae5daf
|
Add assert to make sure the temp file could be opened successfully.
|
2012-07-03 12:39:03 +02:00 |
|
Felix Geyer
|
6ca3b8aa81
|
Make google cpplint happy.
|
2012-07-02 20:00:06 +02:00 |
|
Felix Geyer
|
1b9c2bb16b
|
Improve array size assert.
|
2012-07-01 22:21:49 +02:00 |
|
Felix Geyer
|
782223a643
|
Coding style fixes.
|
2012-07-01 21:58:45 +02:00 |
|
Felix Geyer
|
c844c6b712
|
Convert icon filename QVector to a plain char* array.
|
2012-07-01 21:35:07 +02:00 |
|
Felix Geyer
|
85031658d1
|
Add Q_STATIC_ASSERT macro, backported from Qt 5.
|
2012-07-01 21:27:11 +02:00 |
|
Felix Geyer
|
6ce53b142d
|
clang: Use __has_feature() to detect C++11 features.
|
2012-07-01 20:24:43 +02:00 |
|
Felix Geyer
|
ee3bc89a54
|
Coding style fixes.
|
2012-06-30 00:22:07 +02:00 |
|
Felix Geyer
|
baa5a74ba0
|
Convert iconCount() and expiredIconIndex() to constants.
|
2012-06-29 15:22:43 +02:00 |
|
Felix Geyer
|
4e6cf15a09
|
Fix compiler warning about __GXX_EXPERIMENTAL_CXX0X__ being undefined.
|
2012-06-29 14:34:17 +02:00 |
|
Felix Geyer
|
2287250a07
|
Define COMPILER_EXPLICIT_OVERRIDES when using gcc >= 4.7.
|
2012-06-29 14:18:12 +02:00 |
|
Felix Geyer
|
68155e8f89
|
Make use of Q_NULLPTR.
|
2012-06-29 14:15:16 +02:00 |
|