aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/dcc
Commit message (Collapse)AuthorAgeFilesLines
* FileTransferWindow: use current theme palette to draw items; (#2717)Gravatar ctrlaltca2025-10-101-3/+6
| | | fix #2714
* port dcc video to qt6 (#2628)Gravatar ctrlaltca2024-04-052-99/+145
|
* Fix build with Qt5 and WANT_DCC_VIDEO (#2592)Gravatar Aleksei Bavshin2024-01-192-13/+3
| | | | | | ``` src/modules/dcc/DccVideoWindow.cpp: In member function ‘virtual const QString& DccVideoWindow::target()’: src/modules/dcc/DccVideoWindow.cpp:660:40: error: cannot convert ‘QString’ to ‘QString*’ in assignment ```
* SSL updates (#2575)Gravatar ctrlaltca2023-12-041-0/+4
|
* Mass rename of margin -> contentsMarginsGravatar Fabio Bas2023-10-182-3/+3
|
* Port to (and require) Qt 5.15. Drop KDE4 support, fix KDE5 (#2541)Gravatar ctrlaltca2023-07-087-19/+19
| | | | | | * Port to (and require) Qt 5.15. Drop KDE4 support, implement KDE5 support where needed. --------- Co-authored-by: Fabio Bas <fabio.bas@officineinformatiche.net>
* DCC Module: Fix virtualness of member functionsGravatar IceN9ne2019-06-282-3/+3
|
* Add missing override keywordsGravatar IceN9ne2019-01-041-8/+8
|
* Convert 0s and NULLs to nullptrGravatar IceN9ne2018-12-037-39/+39
|
* Remove C-style typedef structsGravatar IceN9ne2018-11-286-14/+14
|
* Use override where possible and remove unnecessary usages of the virtual ↵Gravatar IceN9ne2018-11-288-57/+57
| | | | keyword.
* Remove unnecessary usages of the inline keyword per language evolution.Gravatar IceN9ne2018-11-281-1/+1
|
* Remove Q_UNUSED macrosGravatar IceN9ne2018-11-281-2/+1
|
* Apply all modernize-* fixes from clang-tidy except for modernize-use-autoGravatar Alexey Sokolov2018-11-146-11/+9
|
* Remove dead and useless codeGravatar IceN9ne2018-04-221-13/+0
|
* DccChatWindow: Fix error handlingGravatar IceN9ne2018-04-221-2/+2
|
* Fix Coverity complaints about uninitialized member variablesGravatar IceN9ne2018-04-141-2/+2
|
* fix typo in libkvidcc.cppGravatar wodim2018-01-111-1/+1
|
* Fix #2240Gravatar Szymon Tomasz Stefanek2017-12-281-4/+11
|
* Fix invalid IP integer for DCC RSEND request (#2252)Gravatar Kevin Mian Kraiker2017-09-101-1/+1
| | | * Fix invalid IP integer for RSEND
* Add OwnAction, OwnActionCrypted and TopicCrypted message types.Gravatar wodim2017-08-293-3/+3
| | | | | | | | | | For our existing themes, I have copied the action style over to the own action and own crypted action styles, and the topic style over to the topic crypted style. But the authors of those themes can change them if they want. I have also used the action icon for the own action and own action crypted icons.
* Remove lots of redundant line feeds around block elements in the docs.Gravatar wodim2017-08-251-39/+27
|
* ran "pngcrush -ow -rem allb -reduce"Gravatar Dessa2017-06-291-0/+0
|
* push and pull po{t}s, typo fixesGravatar Dessa2017-05-241-1/+1
|
* ran optipng -o9 on all png filesGravatar wodim2017-02-171-0/+0
|
* Fix quirk in a5932bf on some compilersGravatar IceN9ne2016-11-161-1/+1
|
* Default DCC Send console confirmation links to use stringUrlFileCommand ↵Gravatar IceN9ne2016-11-161-1/+2
| | | | | | | instead of hardcoded play command * Also changes default of stringUrlFileCommand to be RUN_THE_BROWSER instead of play * Fixes #1989
* Cleanup included filesGravatar IceN9ne2016-10-284-2/+4
|
* DccFileTransfer: no need to use abreviationsGravatar un1versal2016-08-161-3/+3
|
* DccChatWindow: Fix possible issue in tryFlushOutBuffers()Gravatar staticfox2016-08-081-1/+3
|
* Remove KviParameterListGravatar staticfox2016-08-072-2/+0
| | | | It wasn't used anyway ^^
* DccChatWindow: Move to deque and unique pointersGravatar staticfox2016-08-072-14/+7
|
* DccCanvasWindow: fix icon assignmentGravatar un1versal2016-06-161-1/+1
| | | | | | KVI_SMALLICON_* method dies in KVIrc 3.x Not that it matters since DCC canvas is not built for a long time.
* DccBroker: remove Auto-saving tooltip and clickable actionGravatar un1versal2016-06-061-1/+1
| | | | | | | | | | Clicking this (if it worked as intended) would open the file and play it. Problem is, this is first created when a file is accepted and is saved onto disk and here at this stage the file is not complete and could be in progress or interrupted or canceled (we just dont know). So if this ever works as intended we dont want conflicts or cause possible corruption by trying to open a file that is possibly in progress or is incomplete. Aside from this, the play $0 is hardcoded and not all file types can be played so this is wrong no matter how you look at it. This commit makes this part sane at least.
* Fix display of DCC send success notificationGravatar wodim2016-06-011-1/+1
|
* various cosmetic: consistent comment formatGravatar un1versal2016-05-176-83/+71
| | | | + remove separators to make it consistent.
* cleanup: remove more ancient commented code p3Gravatar un1versal2016-05-085-84/+2
|
* Cleanup random separators with no commentsGravatar un1versal2016-05-064-79/+76
|
* cleanup duplicate includesGravatar un1versal2016-05-044-4/+0
|
* various: remove remaining <nobr>Gravatar un1versal2016-05-041-2/+2
|
* DccFileTransfer: remove duplicate includeGravatar un1versal2016-05-031-1/+0
|
* modules dcc: minor capitalization fixesGravatar un1versal2016-05-032-21/+9
|
* Merge pull request #1962 from DarthGandalf/modernizeGravatar Alexey Sokolov2016-05-0112-117/+109
|\ | | | | Apply several fixes of clang-tidy
| * Apply clang-tidy: modernize-loop-convertGravatar Alexey Sokolov2016-04-301-3/+3
| |
| * Apply clang-tidy: modernize-use-defaultGravatar Alexey Sokolov2016-04-303-14/+7
| |
| * Apply clang-tidy: modernize-use-nullptrGravatar Alexey Sokolov2016-04-3011-98/+98
| |
| * Update my clang-format to 3.8.0Gravatar Alexey Sokolov2016-04-301-2/+1
| | | | | | | | Don't sort includes
* | libkvidcc: fix $dcc.currentSpeed documentation add missing @short and fix ↵Gravatar un1versal2016-05-011-1/+3
|/ | | | | | | right @title These docs had what should have been the @short defined as @title and no @short whatsoever. also update help text instant -> current done by @TheReign recently.
* Apply clang-formatGravatar Alexey Sokolov2016-04-2934-4527/+5140
|
* Protect several hand-crafted blocks from clang-formatGravatar Alexey Sokolov2016-04-291-0/+2
|