git: 8cc55088d7c0 - main - irc/kvirc: update to 5.2.4, take maintainership
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 14 May 2024 08:05:21 UTC
The branch main has been updated by vvd: URL: https://cgit.FreeBSD.org/ports/commit/?id=8cc55088d7c033d4e092d3e05a94f4d5b7508b06 commit 8cc55088d7c033d4e092d3e05a94f4d5b7508b06 Author: Vladimir Druzenko <vvd@FreeBSD.org> AuthorDate: 2024-05-14 07:58:30 +0000 Commit: Vladimir Druzenko <vvd@FreeBSD.org> CommitDate: 2024-05-14 08:04:50 +0000 irc/kvirc: update to 5.2.4, take maintainership This release contains changes from the last 5 years of development, including: - Support for the latest version of upstream libraries: Qt5.15/6.6, KDE5/6, OpenSSL 1.x/3.x - Wayland support - Fix for some nasty crash bugs - an improved font rendering engine able to represent complex characters like emojis with ligatures - a reworked tray icon that now follows your OS style - better support for solanum ircd (Libera net) News: https://www.kvirc.net/?id=news&story=2024.01.14.19.25.1.story&dir=latest https://www.kvirc.net/?id=news&story=2024.03.09.12.18.1.story&dir=latest https://www.kvirc.net/?id=news&story=2024.05.11.13.48.1.story&dir=latest Changelog: https://github.com/kvirc/KVIrc/releases/tag/5.2.0 https://github.com/kvirc/KVIrc/releases/tag/5.2.2 https://github.com/kvirc/KVIrc/releases/tag/5.2.4 PR: 278718 Reviewed by: arrowd, makc Approved by: makc (kde), tcberner (kde) Differential Revision: D45025 --- irc/kvirc/Makefile | 108 +- irc/kvirc/distinfo | 6 +- irc/kvirc/files/patch-src_kvilib_CMakeLists.txt | 10 - .../patch-src_modules_iograph_libkviiograph.cpp | 10 - irc/kvirc/pkg-plist | 3445 ++++++++++---------- 5 files changed, 1831 insertions(+), 1748 deletions(-) diff --git a/irc/kvirc/Makefile b/irc/kvirc/Makefile index f67ba017d248..f18603a92ea4 100644 --- a/irc/kvirc/Makefile +++ b/irc/kvirc/Makefile @@ -1,35 +1,99 @@ PORTNAME= KVIrc -DISTVERSION= 5.0.0-102 -DISTVERSIONSUFFIX= -geb3fdd6b1 -PORTREVISION= 5 +DISTVERSION= 5.2.4 CATEGORIES= irc kde -MAINTAINER= kde@FreeBSD.org -COMMENT= IRC client for KDE -WWW= http://www.kvirc.net +MAINTAINER= vvd@FreeBSD.org +COMMENT= IRC client based on the Qt GUI toolkit +WWW= https://www.kvirc.net LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/doc/ABOUT-LICENSE -LIB_DEPENDS= libaudiofile.so:audio/libaudiofile \ - libenchant.so:textproc/enchant - -USES= cmake compiler:c++11-lang cpe desktop-file-utils gettext gnome \ - kde:5 perl5 pkgconfig python qt:5 ssl tar:bzip2 xorg -USE_GNOME= glib20 -USE_PERL5= run build -USE_KDE= auth codecs config configwidgets coreaddons i18n notifications \ - phonon service widgetsaddons windowsystem xmlgui \ - ecm:build -USE_QT= core dbus gui multimedia network printsupport sql svg \ - widgets x11extras xml \ +USES= cmake compiler:c++11-lang cpe desktop-file-utils pkgconfig qt:5 \ + ssl xorg +USE_GITHUB= yes +USE_LDCONFIG= yes +USE_QT= concurrent core declarative gui multimedia network printsupport \ + sql widgets x11extras xml \ buildtools:build qmake:build USE_XORG= ice sm x11 xext xrender xscrnsaver -USE_LDCONFIG= yes -USE_GITHUB= yes -CMAKE_ARGS= -DMANDIR_PREFIX:STRING=share/man +CMAKE_ARGS= -DQT_VERSION_MAJOR=5 +CMAKE_ON= WANT_CRYPT WANT_IPC WANT_IPV6 WANT_OPENSSL WANT_OSS WANT_STRIP \ + WANT_TRANSPARENCY +CMAKE_OFF= WANT_COEXISTENCE WANT_DEBUG WANT_ENV_FLAGS WANT_ESD \ + WANT_IGNORE_SIGALARM WANT_MEMORY_CHECKS WANT_MEMORY_PROFILE + +PLIST_SUB= FULL_VER="${DISTVERSION}" \ + VER="${DISTVERSION:R}" + +OPTIONS_DEFINE= AUDIOFILE DBUS DCC_VIDEO DCC_VOICE DOCS DOXYGEN ENCHANT GSM \ + GTKSTYLE KDE OGG PERL PHONON PYTHON NLS SVG WEBENGINE +OPTIONS_DEFAULT= AUDIOFILE DBUS DCC_VOICE ENCHANT GSM KDE OGG PERL PHONON \ + PYTHON SVG WEBENGINE +OPTIONS_SUB= yes + +DCC_VIDEO_DESC= Direct client video connection support (experimental) +DCC_VOICE_DESC= Direct client voice connection support +GTKSTYLE_DESC= Enable QGtkStyle + +AUDIOFILE_LIB_DEPENDS= libaudiofile.so:audio/libaudiofile +AUDIOFILE_CMAKE_BOOL= WANT_AUDIOFILE + +DBUS_USE= qt=dbus +DBUS_CMAKE_BOOL= WANT_QTDBUS + +DCC_VIDEO_CMAKE_BOOL= WANT_DCC_VIDEO +DCC_VIDEO_BROKEN= qt5 support dropped: https://github.com/kvirc/KVIrc/pull/2628 + +DCC_VOICE_CMAKE_BOOL= WANT_DCC_VOICE + +DOCS_USES= perl5 +DOCS_USE= perl5:build +DOCS_CMAKE_BOOL= WANT_PERL_DOCS + +DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen +DOXYGEN_CMAKE_BOOL= WANT_DOXYGEN + +ENCHANT_LIB_DEPENDS= libenchant-2.so:textproc/enchant2 +ENCHANT_CMAKE_BOOL= WANT_SPELLCHECKER + +# Used via dlopen() +GSM_RUN_DEPENDS= ${LOCALBASE}/lib/libgsm.so:audio/gsm +GSM_CMAKE_BOOL= WANT_GSM + +GTKSTYLE_CMAKE_BOOL= WANT_GTKSTYLE + +KDE_IMPLIES= DBUS +KDE_USES= kde:5 +KDE_USE= kde=auth,codecs,completion,config,configwidgets,coreaddons,i18n \ + kde=jobwidgets,kio,notifications,parts,phonon,service,solid \ + kde=sonnet,textwidgets,widgetsaddons,windowsystem,xmlgui,ecm:build +KDE_CMAKE_BOOL= WANT_KDE + +NLS_USES= gettext-tools +NLS_CMAKE_BOOL= WANT_GETTEXT + +OGG_LIB_DEPENDS= libogg.so:audio/libogg \ + libvorbis.so:audio/libvorbis \ + libtheoradec.so:multimedia/libtheora +OGG_CMAKE_BOOL= WANT_OGG_THEORA + +PERL_USES= perl5 +PERL_USE= perl5:run +PERL_CMAKE_BOOL= WANT_PERL + +PHONON_USES= kde:5 +PHONON_USE= kde=phonon +PHONON_CMAKE_BOOL= WANT_PHONON + +PYTHON_USES= python +PYTHON_CMAKE_BOOL= WANT_PYTHON + +SVG_USE= qt=svg +SVG_CMAKE_BOOL= WANT_QTSVG -PLIST_SUB= VER=5.0 +WEBENGINE_USE= qt=location,webchannel,webengine +WEBENGINE_CMAKE_BOOL= WANT_QTWEBENGINE .include <bsd.port.mk> diff --git a/irc/kvirc/distinfo b/irc/kvirc/distinfo index 196a6a22b479..165cbd0c3ca5 100644 --- a/irc/kvirc/distinfo +++ b/irc/kvirc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1672868502 -SHA256 (KVIrc-KVIrc-5.0.0-102-geb3fdd6b1_GH0.tar.gz) = 33469ddba50c27eacc1e41a4b47c0941ef9dca3e45a392e761eb3873bd3957b3 -SIZE (KVIrc-KVIrc-5.0.0-102-geb3fdd6b1_GH0.tar.gz) = 6168940 +TIMESTAMP = 1715539544 +SHA256 (KVIrc-KVIrc-5.2.4_GH0.tar.gz) = 99bb33d9bd42060dc3dcd8783db036bebd9a23f29c4cef99facf0e0d5cd12d6b +SIZE (KVIrc-KVIrc-5.2.4_GH0.tar.gz) = 6333384 diff --git a/irc/kvirc/files/patch-src_kvilib_CMakeLists.txt b/irc/kvirc/files/patch-src_kvilib_CMakeLists.txt deleted file mode 100644 index d5a961e8de9e..000000000000 --- a/irc/kvirc/files/patch-src_kvilib_CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ ---- src/kvilib/CMakeLists.txt.orig 2020-01-25 22:07:57 UTC -+++ src/kvilib/CMakeLists.txt -@@ -129,6 +129,7 @@ endif() - - add_library(${KVILIB_BINARYNAME} SHARED ${kvilib_SRCS} ${kvilib_MOC_SRCS}) - target_link_libraries(${KVILIB_BINARYNAME} ${LIBS}) -+target_link_libraries(${KVILIB_BINARYNAME} Threads::Threads) - - # Enable C++14 - set_property(TARGET ${KVILIB_BINARYNAME} PROPERTY CXX_STANDARD 14) diff --git a/irc/kvirc/files/patch-src_modules_iograph_libkviiograph.cpp b/irc/kvirc/files/patch-src_modules_iograph_libkviiograph.cpp deleted file mode 100644 index fcd11f3b0541..000000000000 --- a/irc/kvirc/files/patch-src_modules_iograph_libkviiograph.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- src/modules/iograph/libkviiograph.cpp.orig 2020-05-18 14:33:26 UTC -+++ src/modules/iograph/libkviiograph.cpp -@@ -38,1 +38,1 @@ - - #include <QPainter> - #include <QPaintEvent> -+#include <QPainterPath> - - #ifdef COMPILE_PSEUDO_TRANSPARENCY - extern KVIRC_API QPixmap * g_pShadedChildGlobalDesktopBackground; diff --git a/irc/kvirc/pkg-plist b/irc/kvirc/pkg-plist index d519345a9706..3ce7927c24bc 100644 --- a/irc/kvirc/pkg-plist +++ b/irc/kvirc/pkg-plist @@ -38,12 +38,12 @@ lib/kvirc/%%VER%%/modules/libkvinotifier.so lib/kvirc/%%VER%%/modules/libkviobjects.so lib/kvirc/%%VER%%/modules/libkvioptions.so lib/kvirc/%%VER%%/modules/libkvipackage.so -lib/kvirc/%%VER%%/modules/libkviperl.so -lib/kvirc/%%VER%%/modules/libkviperlcore.so +%%PERL%%lib/kvirc/%%VER%%/modules/libkviperl.so +%%PERL%%lib/kvirc/%%VER%%/modules/libkviperlcore.so lib/kvirc/%%VER%%/modules/libkvipopup.so lib/kvirc/%%VER%%/modules/libkvipopupeditor.so lib/kvirc/%%VER%%/modules/libkviproxydb.so -lib/kvirc/%%VER%%/modules/libkvipython.so +%%PYTHON%%lib/kvirc/%%VER%%/modules/libkvipython.so lib/kvirc/%%VER%%/modules/libkvipythoncore.so lib/kvirc/%%VER%%/modules/libkviraweditor.so lib/kvirc/%%VER%%/modules/libkviregchan.so @@ -57,7 +57,7 @@ lib/kvirc/%%VER%%/modules/libkvisharedfileswindow.so lib/kvirc/%%VER%%/modules/libkvisnd.so lib/kvirc/%%VER%%/modules/libkvisocketspy.so lib/kvirc/%%VER%%/modules/libkvispaste.so -lib/kvirc/%%VER%%/modules/libkvispellchecker.so +%%ENCHANT%%lib/kvirc/%%VER%%/modules/libkvispellchecker.so lib/kvirc/%%VER%%/modules/libkvistr.so lib/kvirc/%%VER%%/modules/libkvisystem.so lib/kvirc/%%VER%%/modules/libkviterm.so @@ -75,13 +75,7 @@ lib/kvirc/%%VER%%/modules/libkviuserlist.so lib/kvirc/%%VER%%/modules/libkviwindow.so lib/libkvilib.so lib/libkvilib.so.5 -lib/libkvilib.so.5.0.1 -share/man/de/man1/kvirc.1.gz -share/man/fr/man1/kvirc.1.gz -share/man/it/man1/kvirc.1.gz -share/man/man1/kvirc.1.gz -share/man/pt/man1/kvirc.1.gz -share/man/uk/man1/kvirc.1.gz +lib/libkvilib.so.%%FULL_VER%% share/applications/net.kvirc.KVIrc5.desktop share/icons/hicolor/128x128/apps/kvirc.png share/icons/hicolor/128x128/mimetypes/application-x-kva.png @@ -119,6 +113,7 @@ share/kvirc/%%VER%%/config/modules/libkvitip_cs.kvc share/kvirc/%%VER%%/config/modules/libkvitip_de.kvc share/kvirc/%%VER%%/config/modules/libkvitip_fi.kvc share/kvirc/%%VER%%/config/modules/libkvitip_it.kvc +share/kvirc/%%VER%%/config/modules/libkvitip_pl.kvc share/kvirc/%%VER%%/config/modules/libkvitip_pt.kvc share/kvirc/%%VER%%/config/modules/libkvitip_ru.kvc share/kvirc/%%VER%%/config/modules/libkvitip_uk.kvc @@ -132,1692 +127,1733 @@ share/kvirc/%%VER%%/defscript/default.kvs share/kvirc/%%VER%%/defscript/events.kvs share/kvirc/%%VER%%/defscript/popups.kvs share/kvirc/%%VER%%/defscript/toolbars.kvs -share/kvirc/%%VER%%/help/en/_db_class.idx -share/kvirc/%%VER%%/help/en/_db_command.idx -share/kvirc/%%VER%%/help/en/_db_event.idx -share/kvirc/%%VER%%/help/en/_db_function.idx -share/kvirc/%%VER%%/help/en/_db_generic.idx -share/kvirc/%%VER%%/help/en/_db_keyterms.idx -share/kvirc/%%VER%%/help/en/_db_language.idx -share/kvirc/%%VER%%/help/en/_db_module.idx -share/kvirc/%%VER%%/help/en/_db_widget.idx -share/kvirc/%%VER%%/help/en/class_button.html -share/kvirc/%%VER%%/help/en/class_buttongroup.html -share/kvirc/%%VER%%/help/en/class_checkbox.html -share/kvirc/%%VER%%/help/en/class_colordialog.html -share/kvirc/%%VER%%/help/en/class_combobox.html -share/kvirc/%%VER%%/help/en/class_datetimeedit.html -share/kvirc/%%VER%%/help/en/class_dialog.html -share/kvirc/%%VER%%/help/en/class_dockwindow.html -share/kvirc/%%VER%%/help/en/class_file.html -share/kvirc/%%VER%%/help/en/class_ftp.html -share/kvirc/%%VER%%/help/en/class_groupbox.html -share/kvirc/%%VER%%/help/en/class_hbox.html -share/kvirc/%%VER%%/help/en/class_http.html -share/kvirc/%%VER%%/help/en/class_label.html -share/kvirc/%%VER%%/help/en/class_layout.html -share/kvirc/%%VER%%/help/en/class_lcdnumber.html -share/kvirc/%%VER%%/help/en/class_lineedit.html -share/kvirc/%%VER%%/help/en/class_list.html -share/kvirc/%%VER%%/help/en/class_listbox.html -share/kvirc/%%VER%%/help/en/class_listview.html -share/kvirc/%%VER%%/help/en/class_listviewitem.html -share/kvirc/%%VER%%/help/en/class_mainwindow.html -share/kvirc/%%VER%%/help/en/class_memorybuffer.html -share/kvirc/%%VER%%/help/en/class_menubar.html -share/kvirc/%%VER%%/help/en/class_multilineedit.html -share/kvirc/%%VER%%/help/en/class_object.html -share/kvirc/%%VER%%/help/en/class_painter.html -share/kvirc/%%VER%%/help/en/class_pixmap.html -share/kvirc/%%VER%%/help/en/class_popupmenu.html -share/kvirc/%%VER%%/help/en/class_process.html -share/kvirc/%%VER%%/help/en/class_progressbar.html -share/kvirc/%%VER%%/help/en/class_radiobutton.html -share/kvirc/%%VER%%/help/en/class_slider.html -share/kvirc/%%VER%%/help/en/class_socket.html -share/kvirc/%%VER%%/help/en/class_spinbox.html -share/kvirc/%%VER%%/help/en/class_sql.html -share/kvirc/%%VER%%/help/en/class_tablewidget.html -share/kvirc/%%VER%%/help/en/class_tabwidget.html -share/kvirc/%%VER%%/help/en/class_textbrowser.html -share/kvirc/%%VER%%/help/en/class_toolbar.html -share/kvirc/%%VER%%/help/en/class_toolbutton.html -share/kvirc/%%VER%%/help/en/class_trayicon.html -share/kvirc/%%VER%%/help/en/class_vbox.html -share/kvirc/%%VER%%/help/en/class_webview.html -share/kvirc/%%VER%%/help/en/class_widget.html -share/kvirc/%%VER%%/help/en/class_window.html -share/kvirc/%%VER%%/help/en/class_wizard.html -share/kvirc/%%VER%%/help/en/class_workspace.html -share/kvirc/%%VER%%/help/en/class_wrapper.html -share/kvirc/%%VER%%/help/en/class_xmlreader.html -share/kvirc/%%VER%%/help/en/cmd_about.kvirc.html -share/kvirc/%%VER%%/help/en/cmd_action.create.html -share/kvirc/%%VER%%/help/en/cmd_action.destroy.html -share/kvirc/%%VER%%/help/en/cmd_action.disable.html -share/kvirc/%%VER%%/help/en/cmd_action.enable.html -share/kvirc/%%VER%%/help/en/cmd_action.list.html -share/kvirc/%%VER%%/help/en/cmd_action.trigger.html -share/kvirc/%%VER%%/help/en/cmd_actioneditor.open.html -share/kvirc/%%VER%%/help/en/cmd_addon.configure.html -share/kvirc/%%VER%%/help/en/cmd_addon.dialog.html -share/kvirc/%%VER%%/help/en/cmd_addon.help.html -share/kvirc/%%VER%%/help/en/cmd_addon.install.html -share/kvirc/%%VER%%/help/en/cmd_addon.installfiles.html -share/kvirc/%%VER%%/help/en/cmd_addon.list.html -share/kvirc/%%VER%%/help/en/cmd_addon.pack.html -share/kvirc/%%VER%%/help/en/cmd_addon.register.html -share/kvirc/%%VER%%/help/en/cmd_addon.setconfigurecallback.html -share/kvirc/%%VER%%/help/en/cmd_addon.sethelpcallback.html -share/kvirc/%%VER%%/help/en/cmd_addon.uninstall.html -share/kvirc/%%VER%%/help/en/cmd_admin.html -share/kvirc/%%VER%%/help/en/cmd_ahost.html -share/kvirc/%%VER%%/help/en/cmd_alias.html -share/kvirc/%%VER%%/help/en/cmd_aliaseditor.open.html -share/kvirc/%%VER%%/help/en/cmd_avatar.notify.html -share/kvirc/%%VER%%/help/en/cmd_avatar.query.html -share/kvirc/%%VER%%/help/en/cmd_avatar.set.html -share/kvirc/%%VER%%/help/en/cmd_avatar.unset.html -share/kvirc/%%VER%%/help/en/cmd_away.html -share/kvirc/%%VER%%/help/en/cmd_awhois.html -share/kvirc/%%VER%%/help/en/cmd_back.html -share/kvirc/%%VER%%/help/en/cmd_ban.html -share/kvirc/%%VER%%/help/en/cmd_beep.html -share/kvirc/%%VER%%/help/en/cmd_break.html -share/kvirc/%%VER%%/help/en/cmd_button.html -share/kvirc/%%VER%%/help/en/cmd_buttonctl.html -share/kvirc/%%VER%%/help/en/cmd_cap.html -share/kvirc/%%VER%%/help/en/cmd_chanadmin.html -share/kvirc/%%VER%%/help/en/cmd_channelsjoin.open.html -share/kvirc/%%VER%%/help/en/cmd_chanowner.html -share/kvirc/%%VER%%/help/en/cmd_class.html -share/kvirc/%%VER%%/help/en/cmd_classeditor.open.html -share/kvirc/%%VER%%/help/en/cmd_codepage.html -share/kvirc/%%VER%%/help/en/cmd_codetester.open.html -share/kvirc/%%VER%%/help/en/cmd_config.clear.html -share/kvirc/%%VER%%/help/en/cmd_config.clearsection.html -share/kvirc/%%VER%%/help/en/cmd_config.close.html -share/kvirc/%%VER%%/help/en/cmd_config.flush.html -share/kvirc/%%VER%%/help/en/cmd_config.setsection.html -share/kvirc/%%VER%%/help/en/cmd_config.write.html -share/kvirc/%%VER%%/help/en/cmd_context.clearqueue.html -share/kvirc/%%VER%%/help/en/cmd_continue.html -share/kvirc/%%VER%%/help/en/cmd_ctcp.html -share/kvirc/%%VER%%/help/en/cmd_dcc.abort.html -share/kvirc/%%VER%%/help/en/cmd_dcc.chat.html -share/kvirc/%%VER%%/help/en/cmd_dcc.get.html -share/kvirc/%%VER%%/help/en/cmd_dcc.recv.html -share/kvirc/%%VER%%/help/en/cmd_dcc.rsend.html -share/kvirc/%%VER%%/help/en/cmd_dcc.send.html -share/kvirc/%%VER%%/help/en/cmd_dcc.setbandwidthlimit.html -share/kvirc/%%VER%%/help/en/cmd_dcc.voice.html -share/kvirc/%%VER%%/help/en/cmd_debug.html -share/kvirc/%%VER%%/help/en/cmd_dechanadmin.html -share/kvirc/%%VER%%/help/en/cmd_dechanowner.html -share/kvirc/%%VER%%/help/en/cmd_defpopup.html -share/kvirc/%%VER%%/help/en/cmd_dehalfop.html -share/kvirc/%%VER%%/help/en/cmd_delete.html -share/kvirc/%%VER%%/help/en/cmd_delpopupitem.html -share/kvirc/%%VER%%/help/en/cmd_deop.html -share/kvirc/%%VER%%/help/en/cmd_destroy.html -share/kvirc/%%VER%%/help/en/cmd_deuserop.html -share/kvirc/%%VER%%/help/en/cmd_devoice.html -share/kvirc/%%VER%%/help/en/cmd_dialog.file.html -share/kvirc/%%VER%%/help/en/cmd_dialog.image.html -share/kvirc/%%VER%%/help/en/cmd_dialog.message.html -share/kvirc/%%VER%%/help/en/cmd_dialog.textinput.html -share/kvirc/%%VER%%/help/en/cmd_die.html -share/kvirc/%%VER%%/help/en/cmd_do.html -share/kvirc/%%VER%%/help/en/cmd_echo.html -share/kvirc/%%VER%%/help/en/cmd_echoprivmsg.html -share/kvirc/%%VER%%/help/en/cmd_error.html -share/kvirc/%%VER%%/help/en/cmd_eval.html -share/kvirc/%%VER%%/help/en/cmd_event.html -share/kvirc/%%VER%%/help/en/cmd_eventctl.html -share/kvirc/%%VER%%/help/en/cmd_eventeditor.open.html -share/kvirc/%%VER%%/help/en/cmd_exec.html -share/kvirc/%%VER%%/help/en/cmd_exit.html -share/kvirc/%%VER%%/help/en/cmd_file.addimagepath.html -share/kvirc/%%VER%%/help/en/cmd_file.copy.html -share/kvirc/%%VER%%/help/en/cmd_file.delimagepath.html -share/kvirc/%%VER%%/help/en/cmd_file.mkdir.html -share/kvirc/%%VER%%/help/en/cmd_file.remove.html -share/kvirc/%%VER%%/help/en/cmd_file.rename.html -share/kvirc/%%VER%%/help/en/cmd_file.rmdir.html -share/kvirc/%%VER%%/help/en/cmd_file.write.html -share/kvirc/%%VER%%/help/en/cmd_file.writebytes.html -share/kvirc/%%VER%%/help/en/cmd_file.writelines.html -share/kvirc/%%VER%%/help/en/cmd_filetransferwindow.clear.html -share/kvirc/%%VER%%/help/en/cmd_filetransferwindow.open.html -share/kvirc/%%VER%%/help/en/cmd_for.html -share/kvirc/%%VER%%/help/en/cmd_foreach.html -share/kvirc/%%VER%%/help/en/cmd_function.html -share/kvirc/%%VER%%/help/en/cmd_global.html -share/kvirc/%%VER%%/help/en/cmd_halfop.html -share/kvirc/%%VER%%/help/en/cmd_halt.html -share/kvirc/%%VER%%/help/en/cmd_help.html -share/kvirc/%%VER%%/help/en/cmd_help.open.html -share/kvirc/%%VER%%/help/en/cmd_host.html -share/kvirc/%%VER%%/help/en/cmd_http.asyncget.html -share/kvirc/%%VER%%/help/en/cmd_http.get.html -share/kvirc/%%VER%%/help/en/cmd_ident.start.html -share/kvirc/%%VER%%/help/en/cmd_ident.stop.html -share/kvirc/%%VER%%/help/en/cmd_if.html -share/kvirc/%%VER%%/help/en/cmd_include.html -share/kvirc/%%VER%%/help/en/cmd_info.html -share/kvirc/%%VER%%/help/en/cmd_inject.html -share/kvirc/%%VER%%/help/en/cmd_invite.html -share/kvirc/%%VER%%/help/en/cmd_iograph.open.html -share/kvirc/%%VER%%/help/en/cmd_ison.html -share/kvirc/%%VER%%/help/en/cmd_join.html -share/kvirc/%%VER%%/help/en/cmd_kick.html -share/kvirc/%%VER%%/help/en/cmd_killtimer.html -share/kvirc/%%VER%%/help/en/cmd_leave.html -share/kvirc/%%VER%%/help/en/cmd_links.html -share/kvirc/%%VER%%/help/en/cmd_links.open.html -share/kvirc/%%VER%%/help/en/cmd_list.html -share/kvirc/%%VER%%/help/en/cmd_list.open.html -share/kvirc/%%VER%%/help/en/cmd_listtimers.html -share/kvirc/%%VER%%/help/en/cmd_log.flush.html -share/kvirc/%%VER%%/help/en/cmd_log.start.html -share/kvirc/%%VER%%/help/en/cmd_log.stop.html -share/kvirc/%%VER%%/help/en/cmd_logview.open.html -share/kvirc/%%VER%%/help/en/cmd_lusers.html -share/kvirc/%%VER%%/help/en/cmd_map.html -share/kvirc/%%VER%%/help/en/cmd_me.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.detect.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.hide.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.jumpto.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.minimize.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.mute.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.next.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.pause.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.play.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.playmrl.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.prev.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.quit.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.seteqdata.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.setplayer.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.setplaylistpos.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.setrepeat.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.setshuffle.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.setvol.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.show.html -share/kvirc/%%VER%%/help/en/cmd_mediaplayer.stop.html -share/kvirc/%%VER%%/help/en/cmd_mode.html -share/kvirc/%%VER%%/help/en/cmd_motd.html -share/kvirc/%%VER%%/help/en/cmd_msg.html -share/kvirc/%%VER%%/help/en/cmd_my.startidletimer.html -share/kvirc/%%VER%%/help/en/cmd_my.stopidletimer.html -share/kvirc/%%VER%%/help/en/cmd_nick.html -share/kvirc/%%VER%%/help/en/cmd_notice.html -share/kvirc/%%VER%%/help/en/cmd_notifier.hide.html -share/kvirc/%%VER%%/help/en/cmd_notifier.message.html -share/kvirc/%%VER%%/help/en/cmd_notifier.show.html -share/kvirc/%%VER%%/help/en/cmd_objects.clearobjects.html -share/kvirc/%%VER%%/help/en/cmd_objects.connect.html -share/kvirc/%%VER%%/help/en/cmd_objects.disconnect.html -share/kvirc/%%VER%%/help/en/cmd_objects.killclass.html -share/kvirc/%%VER%%/help/en/cmd_op.html -share/kvirc/%%VER%%/help/en/cmd_openurl.html -share/kvirc/%%VER%%/help/en/cmd_oper.html -share/kvirc/%%VER%%/help/en/cmd_operwall.html -share/kvirc/%%VER%%/help/en/cmd_option.html -share/kvirc/%%VER%%/help/en/cmd_options.close.html -share/kvirc/%%VER%%/help/en/cmd_options.dialog.html -share/kvirc/%%VER%%/help/en/cmd_options.edit.html -share/kvirc/%%VER%%/help/en/cmd_options.pages.html -share/kvirc/%%VER%%/help/en/cmd_options.save.html -share/kvirc/%%VER%%/help/en/cmd_package.extractfield.html -share/kvirc/%%VER%%/help/en/cmd_parse.html -share/kvirc/%%VER%%/help/en/cmd_part.html -share/kvirc/%%VER%%/help/en/cmd_pass.html -share/kvirc/%%VER%%/help/en/cmd_perl.begin.html -share/kvirc/%%VER%%/help/en/cmd_perl.destroy.html -share/kvirc/%%VER%%/help/en/cmd_perl.end.html -share/kvirc/%%VER%%/help/en/cmd_play.html -share/kvirc/%%VER%%/help/en/cmd_popup.addepilogue.html -share/kvirc/%%VER%%/help/en/cmd_popup.addextpopup.html -share/kvirc/%%VER%%/help/en/cmd_popup.additem.html -share/kvirc/%%VER%%/help/en/cmd_popup.addlabel.html -share/kvirc/%%VER%%/help/en/cmd_popup.addprologue.html -share/kvirc/%%VER%%/help/en/cmd_popup.addseparator.html -share/kvirc/%%VER%%/help/en/cmd_popup.addsubpopup.html -share/kvirc/%%VER%%/help/en/cmd_popup.clear.html -share/kvirc/%%VER%%/help/en/cmd_popup.create.html -share/kvirc/%%VER%%/help/en/cmd_popup.delitem.html -share/kvirc/%%VER%%/help/en/cmd_popup.destroy.html -share/kvirc/%%VER%%/help/en/cmd_popup.html -share/kvirc/%%VER%%/help/en/cmd_popup.show.html -share/kvirc/%%VER%%/help/en/cmd_popupeditor.open.html -share/kvirc/%%VER%%/help/en/cmd_privateimpl.html -share/kvirc/%%VER%%/help/en/cmd_privmsg.html -share/kvirc/%%VER%%/help/en/cmd_proxydb.addproxy.html -share/kvirc/%%VER%%/help/en/cmd_proxydb.sethostname.html -share/kvirc/%%VER%%/help/en/cmd_proxydb.setip.html -share/kvirc/%%VER%%/help/en/cmd_proxydb.setipv6.html -share/kvirc/%%VER%%/help/en/cmd_proxydb.setpass.html -share/kvirc/%%VER%%/help/en/cmd_proxydb.setport.html -share/kvirc/%%VER%%/help/en/cmd_proxydb.setprotocol.html -share/kvirc/%%VER%%/help/en/cmd_proxydb.setuser.html -share/kvirc/%%VER%%/help/en/cmd_python.begin.html -share/kvirc/%%VER%%/help/en/cmd_python.destroy.html -share/kvirc/%%VER%%/help/en/cmd_python.end.html -share/kvirc/%%VER%%/help/en/cmd_query.html -share/kvirc/%%VER%%/help/en/cmd_quit.html -share/kvirc/%%VER%%/help/en/cmd_quote.html -share/kvirc/%%VER%%/help/en/cmd_raise.html -share/kvirc/%%VER%%/help/en/cmd_raw.html -share/kvirc/%%VER%%/help/en/cmd_raweditor.open.html -share/kvirc/%%VER%%/help/en/cmd_rebind.html -share/kvirc/%%VER%%/help/en/cmd_regchan.add.html -share/kvirc/%%VER%%/help/en/cmd_regchan.remove.html -share/kvirc/%%VER%%/help/en/cmd_regchan.setproperty.html -share/kvirc/%%VER%%/help/en/cmd_regchan.showlist.html -share/kvirc/%%VER%%/help/en/cmd_reguser.add.html -share/kvirc/%%VER%%/help/en/cmd_reguser.addmask.html -share/kvirc/%%VER%%/help/en/cmd_reguser.delmask.html -share/kvirc/%%VER%%/help/en/cmd_reguser.edit.html -share/kvirc/%%VER%%/help/en/cmd_reguser.remove.html -share/kvirc/%%VER%%/help/en/cmd_reguser.setignoreenabled.html -share/kvirc/%%VER%%/help/en/cmd_reguser.setignoreflags.html -share/kvirc/%%VER%%/help/en/cmd_reguser.setproperty.html -share/kvirc/%%VER%%/help/en/cmd_reguser.showlist.html -share/kvirc/%%VER%%/help/en/cmd_reguser.wizard.html -share/kvirc/%%VER%%/help/en/cmd_return.html -share/kvirc/%%VER%%/help/en/cmd_run.html -share/kvirc/%%VER%%/help/en/cmd_say.html -share/kvirc/%%VER%%/help/en/cmd_server.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.addnetwork.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.addserver.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setnetworkconnectcommand.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setnetworkdescription.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setnetworkencoding.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setnetworkjoinchannels.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setnetworklogincommand.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setnetworknickname.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setnetworkrealname.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setnetworktextencoding.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setnetworkusername.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setserverconnectcommand.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setserverdescription.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setserverencoding.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setserverjoinchannels.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setserverlogincommand.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setservernickname.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setserverrealname.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setservertextencoding.html -share/kvirc/%%VER%%/help/en/cmd_serverdb.setserverusername.html -share/kvirc/%%VER%%/help/en/cmd_service.html -share/kvirc/%%VER%%/help/en/cmd_setmenu.html -share/kvirc/%%VER%%/help/en/cmd_setreturn.html -share/kvirc/%%VER%%/help/en/cmd_sharedfile.add.html -share/kvirc/%%VER%%/help/en/cmd_sharedfile.clear.html -share/kvirc/%%VER%%/help/en/cmd_sharedfile.list.html -share/kvirc/%%VER%%/help/en/cmd_sharedfile.remove.html -share/kvirc/%%VER%%/help/en/cmd_sharedfileswindow.open.html -share/kvirc/%%VER%%/help/en/cmd_snd.mute.html -share/kvirc/%%VER%%/help/en/cmd_snd.play.html -share/kvirc/%%VER%%/help/en/cmd_snd.unmute.html -share/kvirc/%%VER%%/help/en/cmd_sockets.html -share/kvirc/%%VER%%/help/en/cmd_socketspy.open.html -share/kvirc/%%VER%%/help/en/cmd_spaste.clipboard.html -share/kvirc/%%VER%%/help/en/cmd_spaste.file.html -share/kvirc/%%VER%%/help/en/cmd_spaste.list.html -share/kvirc/%%VER%%/help/en/cmd_spaste.setdelay.html -share/kvirc/%%VER%%/help/en/cmd_spaste.stop.html -share/kvirc/%%VER%%/help/en/cmd_spellchecker.reloaddictionaries.html -share/kvirc/%%VER%%/help/en/cmd_squery.html -share/kvirc/%%VER%%/help/en/cmd_squit.html -share/kvirc/%%VER%%/help/en/cmd_srand.html -share/kvirc/%%VER%%/help/en/cmd_stats.html -share/kvirc/%%VER%%/help/en/cmd_str.toclipboard.html -share/kvirc/%%VER%%/help/en/cmd_switch.html -share/kvirc/%%VER%%/help/en/cmd_system.runcmd.html -share/kvirc/%%VER%%/help/en/cmd_system.setclipboard.html -share/kvirc/%%VER%%/help/en/cmd_system.setenv.html -share/kvirc/%%VER%%/help/en/cmd_system.setselection.html -share/kvirc/%%VER%%/help/en/cmd_term.open.html -share/kvirc/%%VER%%/help/en/cmd_texticons.set.html -share/kvirc/%%VER%%/help/en/cmd_theme.apply.html -share/kvirc/%%VER%%/help/en/cmd_theme.dialog.html -share/kvirc/%%VER%%/help/en/cmd_theme.install.html -share/kvirc/%%VER%%/help/en/cmd_theme.pack.html -share/kvirc/%%VER%%/help/en/cmd_theme.screenshot.html -share/kvirc/%%VER%%/help/en/cmd_time.html -share/kvirc/%%VER%%/help/en/cmd_timer.html -share/kvirc/%%VER%%/help/en/cmd_tip.open.html -share/kvirc/%%VER%%/help/en/cmd_tmphighlight.addchannel.html -share/kvirc/%%VER%%/help/en/cmd_tmphighlight.addnick.html -share/kvirc/%%VER%%/help/en/cmd_tmphighlight.removechannel.html -share/kvirc/%%VER%%/help/en/cmd_tmphighlight.removenick.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.additem.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.clear.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.create.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.destroy.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.hide.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.remove.html -share/kvirc/%%VER%%/help/en/cmd_toolbar.show.html -share/kvirc/%%VER%%/help/en/cmd_toolbareditor.open.html -share/kvirc/%%VER%%/help/en/cmd_topic.html -share/kvirc/%%VER%%/help/en/cmd_torrent.announce.html -share/kvirc/%%VER%%/help/en/cmd_torrent.detect.html -share/kvirc/%%VER%%/help/en/cmd_torrent.setclient.html -share/kvirc/%%VER%%/help/en/cmd_torrent.setfilepriority.html -share/kvirc/%%VER%%/help/en/cmd_torrent.setmaxdownloadspeed.html -share/kvirc/%%VER%%/help/en/cmd_torrent.setmaxuploadspeed.html -share/kvirc/%%VER%%/help/en/cmd_torrent.start.html -share/kvirc/%%VER%%/help/en/cmd_torrent.startall.html -share/kvirc/%%VER%%/help/en/cmd_torrent.stop.html -share/kvirc/%%VER%%/help/en/cmd_torrent.stopall.html -share/kvirc/%%VER%%/help/en/cmd_trace.html -share/kvirc/%%VER%%/help/en/cmd_trayicon.hide.html -share/kvirc/%%VER%%/help/en/cmd_trayicon.hidewindow.html -share/kvirc/%%VER%%/help/en/cmd_trayicon.show.html -share/kvirc/%%VER%%/help/en/cmd_trload.html -share/kvirc/%%VER%%/help/en/cmd_trunload.html -share/kvirc/%%VER%%/help/en/cmd_unban.html -share/kvirc/%%VER%%/help/en/cmd_unset.html -share/kvirc/%%VER%%/help/en/cmd_upnp.addportmapping.html -share/kvirc/%%VER%%/help/en/cmd_upnp.delportmapping.html -share/kvirc/%%VER%%/help/en/cmd_upnp.refresh.html -share/kvirc/%%VER%%/help/en/cmd_url.config.html -share/kvirc/%%VER%%/help/en/cmd_url.list.html -share/kvirc/%%VER%%/help/en/cmd_userop.html -share/kvirc/%%VER%%/help/en/cmd_version.html -share/kvirc/%%VER%%/help/en/cmd_voice.html -share/kvirc/%%VER%%/help/en/cmd_wallops.html -share/kvirc/%%VER%%/help/en/cmd_warning.html -share/kvirc/%%VER%%/help/en/cmd_while.html -share/kvirc/%%VER%%/help/en/cmd_who.html -share/kvirc/%%VER%%/help/en/cmd_whois.html -share/kvirc/%%VER%%/help/en/cmd_whowas.html -share/kvirc/%%VER%%/help/en/cmd_window.activate.html -share/kvirc/%%VER%%/help/en/cmd_window.clearoutput.html -share/kvirc/%%VER%%/help/en/cmd_window.close.html -share/kvirc/%%VER%%/help/en/cmd_window.demandattention.html -share/kvirc/%%VER%%/help/en/cmd_window.dock.html -share/kvirc/%%VER%%/help/en/cmd_window.highlight.html -share/kvirc/%%VER%%/help/en/cmd_window.insertininputtext.html -share/kvirc/%%VER%%/help/en/cmd_window.listtypes.html -share/kvirc/%%VER%%/help/en/cmd_window.savepropertiesasdefault.html -share/kvirc/%%VER%%/help/en/cmd_window.setbackground.html -share/kvirc/%%VER%%/help/en/cmd_window.setcryptengine.html -share/kvirc/%%VER%%/help/en/cmd_window.setinputtext.html -share/kvirc/%%VER%%/help/en/cmd_window.setwindowtitle.html -share/kvirc/%%VER%%/help/en/cmd_window.splitview.html -share/kvirc/%%VER%%/help/en/cmd_window.undock.html -share/kvirc/%%VER%%/help/en/cmd_window.unsplitview.html -share/kvirc/%%VER%%/help/en/doc_aliases.html -share/kvirc/%%VER%%/help/en/doc_antispam.html -share/kvirc/%%VER%%/help/en/doc_arrayconcatenation.html -share/kvirc/%%VER%%/help/en/doc_assignment.html -share/kvirc/%%VER%%/help/en/doc_binding.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_class_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_class_index_all.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_command_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_command_index_all.html -share/kvirc/%%VER%%/help/en/doc_command_rebinding.html -share/kvirc/%%VER%%/help/en/doc_commandline.html -share/kvirc/%%VER%%/help/en/doc_connection_dependent_commands.html -share/kvirc/%%VER%%/help/en/doc_crypt_engines.html -share/kvirc/%%VER%%/help/en/doc_ctcp_avatar.html -share/kvirc/%%VER%%/help/en/doc_ctcp_handling.html -share/kvirc/%%VER%%/help/en/doc_ctcpfloodprotectionoptions.html -share/kvirc/%%VER%%/help/en/doc_dcc_connection.html -share/kvirc/%%VER%%/help/en/doc_easyplugins.html -share/kvirc/%%VER%%/help/en/doc_escape_sequences.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_event_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_event_index_all.html -share/kvirc/%%VER%%/help/en/doc_events.html -share/kvirc/%%VER%%/help/en/doc_expressioneval.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_function_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_function_index_all.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_generic_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_generic_index_all.html -share/kvirc/%%VER%%/help/en/doc_image_id.html -share/kvirc/%%VER%%/help/en/doc_incrementdecrement.html -share/kvirc/%%VER%%/help/en/doc_irc_masks.html -share/kvirc/%%VER%%/help/en/doc_ircintro.html -share/kvirc/%%VER%%/help/en/doc_keyboard.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_keyterms_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_keyterms_index_all.html -share/kvirc/%%VER%%/help/en/doc_kvircintro.html -share/kvirc/%%VER%%/help/en/doc_kvs_addons.html -share/kvirc/%%VER%%/help/en/doc_kvs_aliasesandfunctions.html -share/kvirc/%%VER%%/help/en/doc_kvs_basicconcepts.html -share/kvirc/%%VER%%/help/en/doc_kvs_codingtips.html -share/kvirc/%%VER%%/help/en/doc_kvs_datatypes.html -share/kvirc/%%VER%%/help/en/doc_kvs_introduction.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_language_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_language_index_all.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_module_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_module_index_all.html -share/kvirc/%%VER%%/help/en/doc_modules.html -share/kvirc/%%VER%%/help/en/doc_nickserv_proto.html -share/kvirc/%%VER%%/help/en/doc_noblockingdialogs.html -share/kvirc/%%VER%%/help/en/doc_notify_list.html -share/kvirc/%%VER%%/help/en/doc_objects.html -share/kvirc/%%VER%%/help/en/doc_operators.html -share/kvirc/%%VER%%/help/en/doc_perl_and_kvs.html -share/kvirc/%%VER%%/help/en/doc_python_and_kvs.html -share/kvirc/%%VER%%/help/en/doc_registered_users.html -share/kvirc/%%VER%%/help/en/doc_rfc2812.html -share/kvirc/%%VER%%/help/en/doc_rfc2812wrappers.html -share/kvirc/%%VER%%/help/en/doc_script_localization.html -share/kvirc/%%VER%%/help/en/doc_selfarithmetic.html -share/kvirc/%%VER%%/help/en/doc_selfbitwise.html -share/kvirc/%%VER%%/help/en/doc_shared_files.html -share/kvirc/%%VER%%/help/en/doc_stringconcatenation.html -share/kvirc/%%VER%%/help/en/doc_syntactic_rules.html -share/kvirc/%%VER%%/help/en/doc_texticons.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_$.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_a.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_b.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_c.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_d.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_e.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_f.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_g.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_h.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_i.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_j.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_k.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_l.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_m.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_n.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_o.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_p.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_q.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_r.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_s.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_t.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_u.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_v.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_w.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_x.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_y.html -share/kvirc/%%VER%%/help/en/doc_widget_alphabetic_z.html -share/kvirc/%%VER%%/help/en/doc_widget_index_all.html -share/kvirc/%%VER%%/help/en/doc_window_naming_conventions.html -share/kvirc/%%VER%%/help/en/documentation.5.0.1.tag *** 2732 LINES SKIPPED ***