aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* CI: check file size when uploading nightlyGravatar Alexey Sokolov2020-06-023-3/+7
* nightly.kvirc.net has moved, update CIGravatar Alexey Sokolov2020-06-011-1/+1
* appveyor: make cmake arguments more readableGravatar Alexey Sokolov2020-05-301-1/+20
* Fix windows spell checker, make errors in CI more apparentGravatar Alexey Sokolov2020-05-301-28/+28
* Update serverdb.kvcGravatar HelLViS692020-04-281-0/+4
* fix spellchecker on windows builds and also update english dictsGravatar Dessa2020-04-241-4/+4
* fixes #2468•••while at it update german kvirc translation and fix a typo in it Gravatar Dessa2020-04-233-3/+48
* pull pos from tx, push pot updatesGravatar Dessa2020-03-3032-4817/+4754
* Add SciFiCenter IRC Network (#2462)Gravatar Klaas Tammling2020-02-171-0/+8
* fixed symbols that slipped into two po files•••some strings in two po files had ↩ symbols instead of \r literals Gravatar wodim2020-01-132-8/+8
* Stop unsetting _DEBUG when including Python.h•••Because of https://stackoverflow.com/questions/59126760/building-a-python-c-extension-on-windows-with-a-debug-python-installation Gravatar Alexey Sokolov2019-12-301-9/+1
* Appveyor: Maybe reinstall of cygwin will fix cygwin issue?•••c:\cygwin\bin\bash : 1 [main] bash (3052) c:\cygwin\bin\bash.exe: *** fatal error - cygheap base mismatch detected - 0x1180408/0xFB0408. Gravatar Alexey Sokolov2019-12-291-0/+2
* Merge branch 'master' into py3Gravatar Alexey Sokolov2019-12-2917-136/+135
|\
| * options/windowList: Add event names to alert level tips•••This should make it more clear what each alert level will trigger on Gravatar Matt Ullman2019-12-021-10/+50
| * Update KviIrcServerParser_literalHandlers.cppGravatar w0osh ~#2019-11-271-6/+6
| * Update KviIrcServerParser_literalHandlers.cppGravatar w0osh ~#2019-11-271-4/+4
| * bump version to 5.0.1Gravatar Benjamin Staneck2019-10-123-6/+6
| * OuchGravatar Fabio Bas2019-09-271-1/+1
| * osx: compile with opensslGravatar Fabio Bas2019-09-271-3/+4
| * perl compilation worksGravatar NicklaTome2019-09-271-1/+1
| * Rework the server list GUI filter. Fixes #2438.•••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. Gravatar Andrio Celos2019-09-082-59/+16
| * kvilib: Fix format specifierGravatar craftwar2019-09-071-1/+1
| * add export for all logs (channel, etc.)•••this line was always commented (since initial impl in 184e489) but this feature seems to be working fineGravatar Alex P2019-09-071-1/+2
| * Change HTTP redirect limit to 20.•••This is the redirect limit used by Chrome. The previous limit of 2 was causing problems with some sites. Gravatar Andrio Celos2019-09-011-1/+1
| * DCC Module: Fix virtualness of member functionsGravatar IceN9ne2019-06-282-3/+3
| * KviSSL: Check SSL_in_init before SSL_shutdownGravatar IceN9ne2019-06-251-2/+4
| * libkviurl: Use "itemActivated" event instead of "itemDoubleClicked"•••Allows opening URLs with the keyboard (by pressing Enter). Gravatar Vladimir Panteleev2019-05-022-3/+3
| * libkviurl: Add "Open" default action to menu•••Does exactly the same as double-clicking. Copies the UI pattern from most graphical file managers. A nice kind of redundancy to have. Gravatar Vladimir Panteleev2019-05-022-2/+14
| * libkviurl: Use Qt's native context menu events instead of emulation•••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. Gravatar Vladimir Panteleev2019-05-022-38/+22
| * libkviurl: Fix showing configuration dialog after closing it with Esc•••Pressing Esc hides the dialog, but does not delete it. Gravatar Vladimir Panteleev2019-05-021-0/+2
* | Replace FindPythonLibs with FindPython3 in CMakeGravatar Alexey Sokolov2019-12-291-6/+6
* | This is not necessary anymoreGravatar wodim2019-04-011-26/+0
* | Merge branch 'master' into python3Gravatar wodim2019-04-01961-69065/+64918
|\|
| * uintUserListMinimumWidth: Reduce minimum due to account for certain combinati...Gravatar IceN9ne2019-01-212-3/+3
| * KviControlCodes.cpp: Remove %16 when parsing colors•••The modulo was already being applied inconsistently (e.g. getColorBytesW vs. getUnicodeColorBytes). It is now unnecessary, as we handle higher color values properly. Gravatar Vladimir Panteleev2019-01-161-4/+4
| * Replace KVI_OPTION_MIRCCOLOR usage with getMircColor•••- 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 Gravatar Vladimir Panteleev2019-01-1610-40/+41
| * KviOptions.h: Add getMircColorGravatar Vladimir Panteleev2019-01-161-0/+10
| * Add KviControlCodes::getExtendedColorGravatar Vladimir Panteleev2019-01-162-0/+101
| * KviOptions.h: Shift KVI_COLOR_EXT_USER_* up by 100•••Make room for extended mIRC colors (16-98). Gravatar Vladimir Panteleev2019-01-161-7/+7
| * KviOptions.h: Define KVI_NUM_MIRCCOLOR_OPTIONS on top of KVI_MIRCCOLOR_MAX•••We will need the KviControlCodes include anyway. Gravatar Vladimir Panteleev2019-01-161-1/+2
| * Unify KVI_MIRCCOLOR_MAX_FOREGROUND/_BACKGROUND into a single constant•••The distinction is not meaningful. Gravatar Vladimir Panteleev2019-01-162-7/+6
| * update nsis plugin, remove pre-windows-7 version detection and add some new ones•••appveyor part mostly refs #2418 for build cache invalidation, update isn't really needed Gravatar Dessa2019-01-112-115/+118
| * Add missing override keywordsGravatar IceN9ne2019-01-042-9/+9
| * KviToolBar: Adjust std::array style for Travis + clang issueGravatar IceN9ne2019-01-041-11/+11
| * Revert "travis: revert clang upgrade and do gcc instead"•••This reverts commit 823203faac64c367b81804f7c9a643ef223d773e. Gravatar IceN9ne2019-01-041-1/+0
| * travis: and another oneGravatar Benjamin Staneck2019-01-031-3/+4
| * travis: fix syntaxGravatar Benjamin Staneck2019-01-031-2/+2
| * travis: add more keyservers and remove CC settingGravatar Benjamin Staneck2019-01-031-2/+7
| * travis: revert clang upgrade and do gcc insteadGravatar Benjamin Staneck2019-01-031-1/+2
| * travis: upgrade to a newer clangGravatar Benjamin Staneck2019-01-031-0/+1