aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Update version to 5.1.1 and extract translations (#2577) 5.2.0-beta1Gravatar ctrlaltca2023-12-0724-2298/+2151
* SSL updates (#2575)Gravatar ctrlaltca2023-12-044-4/+47
* Attempt at fixinf font width size by enable full font hinting, aka forcing gl...Gravatar ctrlaltca2023-11-303-0/+3
* KviCString::getToken(): add option to skip empty elements (default off) (#2574)Gravatar ctrlaltca2023-11-303-5/+13
* Removed unused travis files and 10-years-not-updated changelog. (#2572)Gravatar ctrlaltca2023-11-288-3084/+0
* 2569: fix mouse selection of mixed text: normal and surrogate pairsGravatar Fabio Bas2023-11-281-1/+1
* Remove QWebEngine usage in core. Rewrite web package manager (#2570)•••* 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/Gravatar ctrlaltca2023-11-2817-431/+287
* Ircview: Fix out of bound memory read when a line ends with a tab; fix #2377Gravatar Fabio Bas2023-11-281-1/+0
* InputEditor: consider surrogate pairs when moving cursor, deleting a char or ...Gravatar Fabio Bas2023-11-281-82/+66
* Ircview: consider surrogate pairs when calculating block widths, wraps, and s...Gravatar Fabio Bas2023-11-281-20/+121
* Settings: include styleName in font (#2568)Gravatar ctrlaltca2023-11-231-17/+17
* Avoid sending a spurious null byte to the server at the end of raw commands (...Gravatar ctrlaltca2023-11-211-4/+2
* Do not leak each created KviInputEditorSpellCheckerBlock (#2563)•••Objects allocated by splitTextIntoSpellCheckerBlocks into buffer vector are never freed. Fix this by turning vector of pointers into vector of objects.Gravatar Igor V. Kovalenko2023-11-132-25/+19
* Fix KviTopicWidget label shifted down and clipped (#2562)•••KviThemedLabel has margin set to 4. While sizing topic widget this is not taken into account. This causes rendered topic label text to be shifted down and clipped at the bottom. Fix this by setting KviThemedLabel margin to zero and using stylesheet left and right margin properties instead. While at it, simplify management of editor widget lifecycle and widget size. Instead of doing that by hand on events, create QStackedWidget to operate visibility and size of label and editing widgets. Create all objects at once in KviTopicWidget constructor, attach label widget at index 0 and a KViTaiHbox with line editor and 3 buttons at index 1. Only operate visibility by switching current stacked widget index and let QStackedWidget resize it's contents as needed.Gravatar Igor V. Kovalenko2023-11-136-63/+66
* Fix text[idx] out of bounds assertion in KviTopicWidget::paintColoredText (#2...Gravatar Igor V. Kovalenko2023-11-131-5/+23
* Make macos dmg nightlies more orderable (#2560)•••* Make macos dmg nightlies more orderable Without any tags in the downloaded history, git doesn't know how many commits happened since latest tag * Get rid of the custom sftp upload which doesn't work Rename artifact to .dmg to make it easier to find the correct artifact to download by custom scriptGravatar Alexey Sokolov2023-10-241-20/+2
* Almost thereGravatar Alexey Sokolov2023-10-221-1/+1
* Forgot to write fileGravatar Alexey Sokolov2023-10-221-2/+2
* Pass user through ssh configGravatar Alexey Sokolov2023-10-221-3/+7
* Yet another timeGravatar Alexey Sokolov2023-10-221-3/+2
* Next attemptGravatar Alexey Sokolov2023-10-221-2/+1
* Try to upload to sftp manually...Gravatar Alexey Sokolov2023-10-221-13/+10
* Switch to yet another sftp upload actionGravatar Alexey Sokolov2023-10-221-7/+11
* Don't delete from sftpGravatar Alexey Sokolov2023-10-221-1/+1
* Use another action to upload sftpGravatar Alexey Sokolov2023-10-221-9/+6
* Fix yaml syntaxGravatar Alexey Sokolov2023-10-221-1/+1
* Try to upload nightly .dmgGravatar Alexey Sokolov2023-10-221-0/+18
* Remove references to kvirc.de and kvirc.ru (#2559)•••* Remove reference to kvirc.de and kvirc.ru * Fix directive #23Gravatar ctrlaltca2023-10-218-29/+6
* Console window: fix server selection from comboboxGravatar Fabio Bas2023-10-181-1/+1
* Qt6: fix font rendering on help windowGravatar Fabio Bas2023-10-181-0/+3
* Migrate almost all QMessagebox to qt6-friendly version.Gravatar Fabio Bas2023-10-1828-216/+193
* Address feedback for XmlFunctions.cppGravatar Fabio Bas2023-10-181-4/+1
* Changes that will need to be reworked.•••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 Gravatar Fabio Bas2023-10-186-12/+60
* Misc Qt6 port for slightly changed class names and method signaturesGravatar Fabio Bas2023-10-1817-18/+68
* Make shortcuts compatible with qt6; remove unused KviShortcut constructor sin...Gravatar Fabio Bas2023-10-186-59/+67
* Remove unused calls to viewOptions()Gravatar Fabio Bas2023-10-183-3/+0
* Use qMin, qMax, .. instead of std equivalents as they better deal with qt int...Gravatar Fabio Bas2023-10-182-5/+5
* Drop QApplication::globalStrut() usage (unavailable on qt6)Gravatar Fabio Bas2023-10-184-12/+9
* Port from QRegExp (unavailable on qt6) to KviRegExp, based on QRegularExpression•••Method str_kvs_fnc_split() had to be replaced with the original version, since the newer one relied on Qt5's QStringRef Gravatar Fabio Bas2023-10-1851-174/+387
* Qt6 is stricter when casting numericals and chars. Add an explicit cast/conve...•••cast Gravatar Fabio Bas2023-10-1815-48/+48
* Port QDateTime::setTime_t() to setSecsSinceEpoch()Gravatar Fabio Bas2023-10-185-9/+9
* Port QDateTime::toTime_t() to toSecsSinceEpoch(); it's a quint64, but it shou...Gravatar Fabio Bas2023-10-185-7/+7
* Qt6: required Qt5 compatibility module; needed by QRegExpGravatar Fabio Bas2023-10-181-0/+9
* Mass rename of margin -> contentsMarginsGravatar Fabio Bas2023-10-1840-93/+93
* Qt6: QStringList is a typedef now, avoid forward declarationsGravatar Fabio Bas2023-10-1810-10/+10
* cmake: add support for qt6Gravatar Fabio Bas2023-10-184-85/+79
* Rename COMPILE_WEBKIT_SUPPORT to COMPILE_WEBENGINE_SUPPORTGravatar Fabio Bas2023-10-1823-73/+74
* README.md: replace travis badge with github actionsGravatar ctrlaltca2023-10-181-1/+2
* Replace WtWbKit with QtWebEngine (#2554)Gravatar ctrlaltca2023-09-1910-961/+364
* Port the mediaplayer mpris interface to mpris 2.2; fix #1912 (#2552)•••* Port the mediaplayer mpris interface to mpris 2.2 * Mpris: add strawberry and a generic fallback for other playersGravatar ctrlaltca2023-08-313-353/+165