aboutsummaryrefslogtreecommitdiffstats
path: root/src/kvilib
Commit message (Expand)AuthorAgeFilesLines
...
* Add KviControlCodes::getExtendedColorGravatar Vladimir Panteleev2019-01-162-0/+101
* Unify KVI_MIRCCOLOR_MAX_FOREGROUND/_BACKGROUND into a single constant•••The distinction is not meaningful. Gravatar Vladimir Panteleev2019-01-161-2/+1
* 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-111-112/+115
* KviTalIconAndRichTextItemDelegate: Fix missing overrideGravatar IceN9ne2019-01-021-1/+1
* Merge branch 'master' into cpp17Gravatar IceN9ne2019-01-012-47/+14
|\
| * Save configuration files atomically so corruption is less likely (#2417)•••* Save configuration files atomically so corruption is less likely * Save configs only if dirty Gravatar Szymon Tomasz Stefanek2018-12-132-47/+14
* | Convert 0s and NULLs to nullptrGravatar IceN9ne2018-12-0322-159/+154
* | Remove reliance Q_DISABLE_COPY macroGravatar IceN9ne2018-11-281-4/+2
* | Remove C-style typedef structsGravatar IceN9ne2018-11-287-16/+16
* | Use override where possible and remove unnecessary usages of the virtual keyw...Gravatar IceN9ne2018-11-2812-22/+22
* | Remove unnecessary usages of the inline keyword per language evolution.Gravatar IceN9ne2018-11-287-124/+124
* | Modernize to C++17Gravatar IceN9ne2018-11-281-2/+2
|/
* KviTranslator: Fix incorrect signature in override of translate.Gravatar IceN9ne2018-11-282-2/+2
* Remove the keyword register from the code.•••* The register keyword doesn't do anything and is deprecated in C++17. Gravatar IceN9ne2018-11-271-6/+6
* Do not track Linux kernel version•••of build system to make reproducible builds easier. See https://reproducible-builds.org/ for why this is good. Gravatar Bernhard M. Wiedemann2018-11-242-30/+0
* SASL: Add support for EXTERNAL method. Closes #2258Gravatar IceN9ne2018-11-224-3/+59
* Apply all modernize-* fixes from clang-tidy except for modernize-use-autoGravatar Alexey Sokolov2018-11-1418-29/+28
* Use C++14Gravatar Alexey Sokolov2018-11-141-2/+2
* KviHttpRequest: Fix potential null pointer dereferenceGravatar IceN9ne2018-09-041-2/+2
* KviHttp: support relative redirects; fix #2398 (#2399)•••* mac: fix plugin installation * c++11: fix some compiler warnings * KviHttp: support relative redirects; fix #2398 KviUrl: permit modification of the url KviHttpRequest: check for relative redirects and change the url's path Gravatar ctrlaltca2018-09-043-3/+79
* Remove usages of Q_FOREACH. Fixes #2385Gravatar IceN9ne2018-05-221-2/+2
* Remove unused/useless codeGravatar IceN9ne2018-04-221-4/+0
* Fix Coverity complaints about uninitialized member variablesGravatar IceN9ne2018-04-144-4/+4
* remove qt5_use_modules for Qt 5.11•••cmake modules for Qt 5.11 don't have that function anymore, so it needs to be replaced with the standard way of library linkage. downside is that the module listing in the Status page isn't looking too fancy anymore. Gravatar Dessa2018-04-141-1/+1
* Support 64-bit X509 certificate serial numbers (#2363)•••Support 64-bit X509 certificate serial numbers Avoid "too large" errors when querying the serial number of a certificate when it doesn't fit in a 32-bit integer. Use strings to query and store certificate serial numbersGravatar Vladimir Panteleev2018-04-112-11/+21
* QRegExp: Enable greedy quantifiers in regex pattern matching.Gravatar IceN9ne2018-02-091-1/+1
* Fix uninitialized variable accessGravatar Szymon Tomasz Stefanek2017-12-281-0/+1
* Better handling of tabs in KviIrcView. Not perfect but at least they aren't f...Gravatar Szymon Tomasz Stefanek2017-12-281-0/+1
* Support OpenSSL 1.1.0 (#2223)•••Fixes #2151.Gravatar Vladimir Panteleev2017-12-111-10/+41
* General code cleanup and coverity fixes - mostly fixes uninitialized membersGravatar IceN9ne2017-10-214-30/+18
* gettimeofday(): Remove timezone argument•••1) Due to timezone and Daylight Savings, it has been abadonded and deprecated 2) It failed to compile under msvc2017 for whatever reason 3) We've never used it anyway Gravatar staticfox2017-09-273-7/+7
* Cmake updates••• * Remove the usage of CMP0026’s LOCATION * fix WANT_STRIP option: fix #2306 * remove WANT_UNIVERSAL_BINARY option (obsolete) * fix bundling of Qt libraries on Osx Gravatar Fabio Bas2017-09-211-2/+13
* Add an option to allow the use of smart nickname colours with no background (...Gravatar wodim2017-09-012-8/+13
* Overriding this misspellingGravatar wodim2017-08-311-1/+1
* Show if the current theme has been overriden with a stylesheetGravatar wodim2017-08-311-1/+3
* KviRuntimeInfo: Fix the Qt theme detection••• * Fixes #2290 Gravatar IceN9ne2017-08-311-1/+2
* Fix wrapping of <pre> in the docs.•••Fixes #2288 Gravatar wodim2017-08-311-6/+6
* Remove lots of redundant line feeds around block elements in the docs.Gravatar wodim2017-08-255-41/+36
* push and pull po{t}s, typo fixesGravatar Dessa2017-05-247-33/+33
* Make Windows code Unicode-aware (#2219)Gravatar wodim2017-05-246-50/+60
* Build also in debug mode for windows (#2192)•••* Build also in debug mode for windows See #2191 * Don't mix /Od and -O2 on windows build. -O2 comes from perl * Reindent perlcore CMakeLists * Fix debug python build on windows * Rearrange environment vars in appveyor * Try to publish pdb files too * install qts and kvirc's debug pdbs in debug config * use TARGET_PDB_FILE instead Gravatar Alexey Sokolov2017-05-241-0/+1
* KviCryptEngine: Fix typoGravatar staticfox2017-02-231-1/+1
* Miscellaneous documentation fixesGravatar OmegaPhil2017-02-231-25/+25
* KviProxy: Make class member data privateGravatar IceN9ne2017-02-093-75/+45
* KviSignalHandler: Be explicit when ignoring return values of certain functionsGravatar IceN9ne2017-02-031-2/+2
* Encryption: A fix and some code cleanup••• * Fixes spelling error in function name that fails to override base class virtual function * Adds const to functions that should have it * Cleans-up some formatting Gravatar IceN9ne2017-02-022-7/+7
* KviCString: Fix bug in hexToBufferGravatar IceN9ne2017-01-161-7/+6
* OS X is dead, long live macOSGravatar staticfox2017-01-152-2/+2
* Remove usage of deprecated QStyle* typedefsGravatar IceN9ne2016-12-021-1/+1
* KviOggTheoraEncoder: Fix incorrect forward declaration of QRgb•••Fixes #2160 Gravatar IceN9ne2016-11-291-1/+2