summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Reset submodule main/applications/kdbg/admin to latest HEADAutomated System2020-12-071-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-10-091-0/+0
|
* Reset submodule main/applications/kdbg/admin to latest HEADAutomated System2020-10-091-0/+0
|
* Removed code formatting modelines.Michele Calgaro2020-09-282-26/+0
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-09-201-0/+0
|
* Reset submodule main/applications/kdbg/admin to latest HEADAutomated System2020-09-201-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-09-181-0/+0
|
* Reset submodule main/applications/kdbg/admin to latest HEADAutomated System2020-09-181-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-07-291-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-06-261-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-06-241-0/+0
|
* Reset submodule main/applications/kdbg/admin to latest HEADAutomated System2020-06-241-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-06-141-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-06-141-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-06-121-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-06-071-0/+0
|
* Reset submodule main/applications/kdbg/admin to latest HEADAutomated System2020-06-071-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-05-281-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-05-241-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-05-171-0/+0
|
* Update translation filesTDE Weblate2020-05-1120-60/+60
| | | | | | | Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: applications/kdbg Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdbg/
* Update translation template.Automated System2020-05-111-3/+5
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-05-111-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-05-101-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-05-071-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-04-081-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-04-041-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2020-03-231-0/+0
|
* Translated using Weblate (German)Chris2019-12-211-4/+4
| | | | | | | Currently translated at 100.0% (187 of 187 strings) Translation: applications/kdbg Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdbg/de/
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2019-12-081-0/+0
|
* Switch all submodules to https.Slávek Banko2019-12-081-2/+2
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Translated using Weblate (German)Chris2019-08-281-13/+15
| | | | | | | Currently translated at 100.0% (187 of 187 strings) Translation: applications/kdbg Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdbg/de/
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2019-06-121-0/+0
|
* Update translation filesTDE Weblate2019-06-0220-106/+106
| | | | | | | Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: applications/kdbg Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdbg/
* Update translation template.Automated System2019-06-021-5/+5
|
* Fix call of a member function dependent on a template parameter.Johannes Sixt2019-05-311-1/+1
| | | | | | | We must make the access of 'push_back' dependent, too. Otherwise, name lookup does not find the name. Earlier compilers were more permissive and did find the name. (cherry picked from upstream commit 5f55847d441aba7742417e78c3b4fbe8344acc5e)
* Fix parsing of disassembly produced by gdb 7.1.Johannes Sixt2019-05-311-0/+9
| | | | | | Since gdb 7.1, the address does not start at the beginning of a line, and it can be prefixed by a pointer => that indicates the current instruction. (cherry picked from upstream commit 5c5f34852d30337ef7c23ef4e88d50ecee1c0703)
* Grok gdb 7's <incomplete sequence> marker in strings.Johannes Sixt2019-05-312-1/+32
| | | | | | | | | When a string ends in an incomplete multi-byte sequence, gdb adds an <incomplete sequence...> fragment to the end of the string. Previously, this resulted in a parse error and incomplete variable information. Reported by Kevin Lemay. (cherry picked from upstream commit 03da8a5ec97c8c7b125b2bd453d2f1c3a018d477)
* Fix assembler code display with gdb 7.1 and later.Johannes Sixt2019-05-311-0/+32
| | | | | | | | | | | | The syntax of the 'disassemble' command changed in gdb 7.1: it now requires a comma between the two address expressions. Previously, KDbg showed an error message instead of assembler code when a plus in front of a source code line was clicked. Reported by Gerfried Essler. This reverts part of the previous commit. (cherry picked from upstream commit b6ee6a035abe41f7c0d59fbd830e895b6edeb748)
* Drop gdb versionning.gregory guy2019-05-304-106/+11
| | | | | | | | | | | | | | | | Cherry picked and adapted from commit 0efc808f from the original author of kdbg, code available at https://github.com/j6t/kdbg under GPL 2.0" Quote from the author: In early days of KDbg, it was important to use a suitable command to load a core file. This was before gdb 4.16. To pick the right command, the version number was parsed from gdb's greeting. At least with modern gdb the regular expression does not match anymore. So let's assume that nobody is using ancient gdb anymore, and always use the modern command. Signed-off-by: gregory guy <g-gregory@gmx.fr>
* Translated using Weblate (Italian)stefano2019-05-291-145/+183
| | | | | | | Currently translated at 100.0% (187 of 187 strings) Translation: applications/kdbg Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdbg/it/
* drop some qt2 deprecatedgregory guy2019-05-283-16/+14
| | | | Signed-off-by: gregory guy <g-gregory@gmx.fr>
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2019-04-021-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2019-02-191-0/+0
|
* Reset submodule main/applications/kdbg/admin to latest HEADAutomated System2019-02-191-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2019-02-031-0/+0
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2019-01-281-0/+0
|
* Update translation filesTDE Weblate2019-01-1420-1240/+158
| | | | | | | Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: applications/kdbg Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kdbg/
* Update translation template.Automated System2019-01-141-63/+1
|
* Reset submodule main/applications/kdbg/cmake to latest HEADAutomated System2019-01-131-0/+0
|