Dr. David Alan Gilbert
074c3dc3c2
debug: Log the script
...
Include the script in the debug. Useful when you're dealing with
a file with lots of different scripts.
3 years ago
Dr. David Alan Gilbert
51737b24e3
JS: Add debug for field values
...
Add debug for field setting:
org.kde.okular.core: fieldSetValue: Field: "Grand_Total_stock_1" Type: "text" Value: "NaN"
and getting:
org.kde.okular.core: fieldGetValue: Field: "Market_price_1" Type: "text" Value: "1"
3 years ago
l10n daemon script
445149a9f5
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
cbf8eec1a9
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
5619924307
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
ccf631de78
GIT_SILENT made messages (after extraction)
3 years ago
l10n daemon script
a3dcb7b124
GIT_SILENT Sync po/docbooks with svn
3 years ago
Albert Astals Cid
c62dc60ead
Fix crash when executing the Save action
...
Detecting aboutToClose is not enough because savingAs doesn't always go
through aboutToClose it can go through swapBackingFile
BUGS: 467603
3 years ago
Albert Astals Cid
09038f4fb5
JS: Make field.value return a number if possible
...
Quoting the Adobe documentation
'for a field with a value of “020”, value returns the integer 20'
BUGS: 467852
3 years ago
l10n daemon script
128a2a778f
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
6257b8199e
GIT_SILENT Sync po/docbooks with svn
3 years ago
Albert Astals Cid
6fbb2555b7
Revert "Update download link"
...
This reverts commit 05d81ac8c2 .
3 years ago
l10n daemon script
2d2bf8d8ba
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
9e171856a5
GIT_SILENT made messages (after extraction)
3 years ago
Kye Potter
05d81ac8c2
Update download link
3 years ago
l10n daemon script
982a857b85
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
4d69eaf30f
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
0b6b87f056
GIT_SILENT Sync po/docbooks with svn
3 years ago
Albert Astals Cid
052264c3e5
Use KIO::OpenUrlJob instead of KRun::runService
...
Works much better in Windows
3 years ago
l10n daemon script
9b97052053
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
dccedf6159
GIT_SILENT made messages (after extraction)
3 years ago
Willyanto Willyanto
647cdc40d0
Perform some initializations in initialization list
...
Fixes some variable is assigned in constructor body. Consider performing
initialization in initialization list. (CWE-398)
3 years ago
l10n daemon script
8a657e6d47
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
ce0d6ec7e6
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
4a91996b52
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
b03d8f9e17
GIT_SILENT Sync po/docbooks with svn
3 years ago
Nate Graham
8c8744f2e3
Re-arrange toolbar buttons by usage frequency
...
When using an LTR language, people scan user interfaces left-to right
and top to bottom. This means that the most frequently-used controls
should be located at the top left, so people see them first.
This commit uses that principle to re-arrange the toolbar a bit, so that
after the "show/hide sidebar button" (which needs to be the left-most
item to connect it with the left sidebar), the left-most items in the
default toolbar are the zoom and view mode controls. These are
viewing-related controls, and Okular is first and foremost a viewer app.
The controls that let you interact with the document (select stuff,
annotate) are moved over to the right side of the toolbar because they
are used for secondary workflows.
The zoom buttons are also grouped together to connect them in the user's
mind.
Finally, the separator lines are re-added to disconnect the "show/hide
sidebar" button from the now-icons-only zoom buttons.
3 years ago
l10n daemon script
5b733fcb73
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
691f5319bc
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
c9cb4ebe94
GIT_SILENT Sync po/docbooks with svn
3 years ago
Albert Astals Cid
7476e3dd28
GIT_SILENT Upgrade release service version to 23.07.70.
3 years ago
l10n daemon script
b8bae77f0b
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
2d69760597
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
8fe4a4bd48
GIT_SILENT made messages (after extraction)
3 years ago
l10n daemon script
c68a027e1d
GIT_SILENT Sync po/docbooks with svn
3 years ago
Friedrich W. H. Kossebau
9de70e2499
Port away from deprecated PurposeWidgets include
...
GIT_SILENT
3 years ago
l10n daemon script
f8fe79f668
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
773e0b89a5
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
2e6dab1553
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
c2ca0c86ea
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
e7f7f7d7af
GIT_SILENT made messages (after extraction)
3 years ago
Heiko Becker
c400b675b6
GIT_SILENT Update Appstream for new release
...
(cherry picked from commit 5138c6ceae )
3 years ago
l10n daemon script
dc345539e6
GIT_SILENT Sync po/docbooks with svn
3 years ago
Max Mueggler
71770ed815
Replace QTime with QDeadlineTimer in DocumentPrivate::getFreeMemory
...
QTime is quite inefficient and getFreeMemory sometimes gets called quite
frequently. I found that upwards of 10% of CPU time was being spent
inside of QTime in some cases. Besides being the recommended thing for
this use case, QDeadlineTimer is a lot more efficient.
3 years ago
Nate Graham
b6c6d906ba
Tweak default toolbar to fit View Mode combobox
...
This is a useful UI element that I find myself using a lot, so quick
access is helpful. Another person just submitted a similar change (see
!689 ) so it would seem there is some demand for this.
In its current form, the toolbar contents would be too long if we added
it, and items would get pushed into the overflow menu. To prevent this,
let's also drop the separator lines and text from the zoom buttons.
3 years ago
l10n daemon script
b7c8c0c850
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
a27a0ae788
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
94fb67d2e6
GIT_SILENT made messages (after extraction)
3 years ago
l10n daemon script
d9bc07fa17
GIT_SILENT Sync po/docbooks with svn
3 years ago
l10n daemon script
3ad1a976c4
GIT_SILENT Sync po/docbooks with svn
3 years ago