aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Collapse)AuthorAgeFilesLines
* misc updates: (#2587)Gravatar Dessa2023-12-292-995/+2779
| | | | | - update dictionaries to newer versions - enable AlignConsecutiveAssignments and AlignConsecutiveDeclarations so they can be re-tested once we are ready to do so, its been fixed since clang 5 apparently. - update to Devel::PPPort 3.71 (cover more perl versions) and ExtUtils::ParseXS 3.51 (minimal changes)
* Fix build with KDE Frameworks 6 (#2585)Gravatar Aleksei Bavshin2023-12-251-3/+3
| | | | | | | | | | | * KF6: adapt to new KNotificationAction API Use correct versioned location for the notifyrc. * KF6: correct includes for KWindowInfo * KF6: add KF6::StatusNotifierItem component KStatusNotifierItem was split from KNotifications in KF6.
* Remove raw event when it has no handlers. fix #2427 (#2583)Gravatar ctrlaltca2023-12-241-3/+3
|
* Tray icon fixes (#2581)Gravatar ctrlaltca2023-12-2419-58/+105
| | | | | | | | | * tray icon: add different icons for light/dark theme, fix #1840 fix #1358 * Tray icon: fix tooltip not showing up on linux; fix #2339 * Tray icon: add support for rich text tooptips on linux using kde's appnotifier * Do not output html tooltips on win, mac
* SSL updates (#2575)Gravatar ctrlaltca2023-12-041-0/+4
|
* Remove QWebEngine usage in core. Rewrite web package manager (#2570)Gravatar ctrlaltca2023-11-2814-267/+24
| | | | | | | * Remove use of QWebEngine from help module * Rewrite the WebPackageManagementDialog to use an http/json API instead of a webpage; drop QWebEngine usage * Edited repository urls to https://kvirc.github.io/
* Remove references to kvirc.de and kvirc.ru (#2559)Gravatar ctrlaltca2023-10-211-2/+2
| | | | | * Remove reference to kvirc.de and kvirc.ru * Fix directive #23
* Migrate almost all QMessagebox to qt6-friendly version.Gravatar Fabio Bas2023-10-1822-193/+169
|
* Address feedback for XmlFunctions.cppGravatar Fabio Bas2023-10-181-4/+1
|
* Changes that will need to be reworked.Gravatar Fabio Bas2023-10-183-4/+28
| | | | | QFont changed the weight scale in Qt6, in order to use them we'd need to fix all configuration files in all themes. QStreamConverter only supports Utf8/16/32 and Latin1 before Qt6.5. Stick to qt5compat's QTextCodec by now
* Misc Qt6 port for slightly changed class names and method signaturesGravatar Fabio Bas2023-10-1812-16/+53
|
* Make shortcuts compatible with qt6; remove unused KviShortcut constructor ↵Gravatar Fabio Bas2023-10-181-1/+1
| | | | since it creates ambiguity with the previous
* Remove unused calls to viewOptions()Gravatar Fabio Bas2023-10-182-2/+0
|
* Port from QRegExp (unavailable on qt6) to KviRegExp, based on QRegularExpressionGravatar Fabio Bas2023-10-1828-109/+164
| | | | Method str_kvs_fnc_split() had to be replaced with the original version, since the newer one relied on Qt5's QStringRef
* Qt6 is stricter when casting numericals and chars. Add an explicit ↵Gravatar Fabio Bas2023-10-185-8/+8
| | | | | | cast/conversion to better digest them cast
* Port QDateTime::setTime_t() to setSecsSinceEpoch()Gravatar Fabio Bas2023-10-181-2/+2
|
* Port QDateTime::toTime_t() to toSecsSinceEpoch(); it's a quint64, but it ↵Gravatar Fabio Bas2023-10-182-2/+2
| | | | should cast to time_t safely until year 2106
* Mass rename of margin -> contentsMarginsGravatar Fabio Bas2023-10-1824-65/+65
|
* Qt6: QStringList is a typedef now, avoid forward declarationsGravatar Fabio Bas2023-10-182-2/+2
|
* Rename COMPILE_WEBKIT_SUPPORT to COMPILE_WEBENGINE_SUPPORTGravatar Fabio Bas2023-10-1817-57/+57
|
* Replace WtWbKit with QtWebEngine (#2554)Gravatar ctrlaltca2023-09-197-883/+284
|
* Port the mediaplayer mpris interface to mpris 2.2; fix #1912 (#2552)Gravatar ctrlaltca2023-08-313-353/+165
| | | | | * Port the mediaplayer mpris interface to mpris 2.2 * Mpris: add strawberry and a generic fallback for other players
* Batch export logs (#2485)Gravatar Chris MacLeod2023-08-0510-309/+441
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Implement most basic functional batch export For the future: * The loop still needs to be made asynchronous so the process doesn't hang. * Ideally, there should be some sort of progress window. * There is redundant code that should be reduced. * Make batch export asynchronous Reminder: The comment about overwrite protection no longer applies Todo: Progress dialog * Avoid possible dangling pointer, improve type safety and const correctness in the process In reality, the log exporting code has no reason to be in the GUI class to begin with. `exportLog` makes sense as a Qt slot, but `createLog` should be a member function of the `LogFile` class and operate on `this` rather than a `LogFile` argument. A future commit should amend this, but for now I will avoid changing anything unnecessary until a working progress dialog is in place and I have tested the finished feature thoroughly. * Add progress dialog * Make LogViewWindow::createLog a member function of LogFile * Reduce memory usage by sharing `LogFile`s with the GUI thread * Correct progress dialog modality * Collect log files directly instead of reiterating through view items later Also adds a little documentation * Fix batch export for paths with reserved characters * avoid sigsegv * fix tags removal before nickname in html export * Fix directory selection and output path for icons in html export --------- Co-authored-by: ctrlaltca <ctrlaltca@gmail.com>
* Avoid compilation warning on Python >=3.7 (#2543)Gravatar ctrlaltca2023-07-091-0/+2
| | | Co-authored-by: Fabio Bas <fabio.bas@officineinformatiche.net>
* Port to (and require) Qt 5.15. Drop KDE4 support, fix KDE5 (#2541)Gravatar ctrlaltca2023-07-0855-358/+237
| | | | | | * Port to (and require) Qt 5.15. Drop KDE4 support, implement KDE5 support where needed. --------- Co-authored-by: Fabio Bas <fabio.bas@officineinformatiche.net>
* editor: Fix crash when editing empty network listGravatar Matt2023-06-161-0/+4
|
* Fix includes, QProcess is used not only without KDEGravatar Alexey Sokolov2023-05-271-3/+4
| | | | https://bugs.gentoo.org/906940
* QString::null is deprecated (#2526)Gravatar nmariusp2022-06-291-3/+3
|
* Fixed up to build on MacOS 11.6 and restore SSL and Python support (#2518)Gravatar Thomas Horsten2021-11-261-1/+1
|
* Update URL to kvirc.netGravatar Alexey Sokolov2021-07-022-2/+2
| | | | See https://github.com/kvirc/kvirc-www/pull/28
* Switch default channel from freenode to liberaGravatar Alexey Sokolov2021-05-2610-48/+48
|
* Stop using deprecated KWindowSystem::windowInfo()Gravatar Alexey Sokolov2021-05-161-1/+1
| | | | Fix #2504 Patch by Andreas Sturmlechner
* KVS quit command aborts delayed reconnect (#2461)Gravatar Andrio Celos2020-07-151-1/+1
|
* Fix build with Qt 5.15+Gravatar Balló György2020-06-041-0/+1
|
* fixes #2468Gravatar Dessa2020-04-232-3/+31
| | | | while at it update german kvirc translation and fix a typo in it
* Stop unsetting _DEBUG when including Python.hGravatar Alexey Sokolov2019-12-301-9/+1
| | | | Because of https://stackoverflow.com/questions/59126760/building-a-python-c-extension-on-windows-with-a-debug-python-installation
* Merge branch 'master' into py3Gravatar Alexey Sokolov2019-12-298-114/+110
|\
| * options/windowList: Add event names to alert level tipsGravatar Matt Ullman2019-12-021-10/+50
| | | | | | | | This should make it more clear what each alert level will trigger on
| * Rework the server list GUI filter. Fixes #2438.Gravatar Andrio Celos2019-09-082-59/+16
| | | | | | | | The filter now works as an AND arrangement: servers will be shown if they match both the text filter *and* the favorites filter (if applicable). Previously one was not respected when the other was updated. The favorites filter no longer hides empty networks when disabled.
| * add export for all logs (channel, etc.)Gravatar Alex P2019-09-071-1/+2
| | | | | | | | this line was always commented (since initial impl in 184e489) but this feature seems to be working fine
| * DCC Module: Fix virtualness of member functionsGravatar IceN9ne2019-06-282-3/+3
| |
| * libkviurl: Use "itemActivated" event instead of "itemDoubleClicked"Gravatar Vladimir Panteleev2019-05-022-3/+3
| | | | | | | | Allows opening URLs with the keyboard (by pressing Enter).
| * libkviurl: Add "Open" default action to menuGravatar Vladimir Panteleev2019-05-022-2/+14
| | | | | | | | | | | | | | Does exactly the same as double-clicking. Copies the UI pattern from most graphical file managers. A nice kind of redundancy to have.
| * libkviurl: Use Qt's native context menu events instead of emulationGravatar Vladimir Panteleev2019-05-022-38/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use Qt's customContextMenuRequested signal + setContextMenuPolicy, and unify UrlDialog::popup with UrlDialog::contextMenu, to fix: - Pressing the Menu key on the keyboard did not pop up a menu. - The right-clicked item was not selected before the context menu was displayed, thus, the selected action applied to the old selection. The selection changed to the right-clicked item after the context menu was closed. - If there was no room left, it was not possible to summon the context menu that held the "Configure" option.
| * libkviurl: Fix showing configuration dialog after closing it with EscGravatar Vladimir Panteleev2019-05-021-0/+2
| | | | | | | | Pressing Esc hides the dialog, but does not delete it.
* | This is not necessary anymoreGravatar wodim2019-04-011-26/+0
| |
* | Merge branch 'master' into python3Gravatar wodim2019-04-01243-2113/+1956
|\|
| * uintUserListMinimumWidth: Reduce minimum due to account for certain ↵Gravatar IceN9ne2019-01-211-1/+1
| | | | | | | | combinations of font and dpi
| * Replace KVI_OPTION_MIRCCOLOR usage with getMircColorGravatar Vladimir Panteleev2019-01-162-12/+12
| | | | | | | | | | | | | | | | | | - Replace occurrences in IRC-related views, and message type references - Don't replace occurrences dealing with the color picker or the configurable low (0-15) colors - Also replace hard-coded references to the maximum color index (15/16) with KVI_EXTCOLOR_MAX
| * Add missing override keywordsGravatar IceN9ne2019-01-042-9/+9
| |