├── .clang-format ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── cmake └── modules │ ├── COPYING-CMAKE-SCRIPTS │ └── FindPsiPluginsApi.cmake ├── deprecated ├── gnome3supportplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── gnome3support.png │ ├── gnome3supportplugin.cpp │ ├── gnome3supportplugin.pro │ └── resources.qrc ├── httpuploadplugin │ ├── CMakeLists.txt │ ├── currentupload.h │ ├── httpuploadplugin.cpp │ ├── httpuploadplugin.pro │ ├── httpuploadplugin.qrc │ ├── previewfiledialog.cpp │ ├── previewfiledialog.h │ ├── upload_file.png │ ├── upload_image.png │ ├── uploadservice.cpp │ └── uploadservice.h ├── screenshotplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── controller.cpp │ ├── controller.h │ ├── defines.h │ ├── editserverdlg.cpp │ ├── editserverdlg.h │ ├── editserverdlg.ui │ ├── icons │ │ ├── copy.png │ │ ├── crop.png │ │ ├── draw.png │ │ ├── frame.png │ │ ├── palette.png │ │ ├── paste.png │ │ ├── print.png │ │ ├── screenshot.png │ │ └── undo.png │ ├── options.cpp │ ├── options.h │ ├── optionsdlg.cpp │ ├── optionsdlg.h │ ├── optionsdlg.ui │ ├── optionswidget.cpp │ ├── optionswidget.h │ ├── optionswidget.ui │ ├── pixmapwidget.cpp │ ├── pixmapwidget.h │ ├── proxysettingsdlg.cpp │ ├── proxysettingsdlg.h │ ├── proxysettingsdlg.ui │ ├── psiplugin.json │ ├── qxt │ │ ├── LICENSE │ │ ├── core │ │ │ ├── qxtglobal.cpp │ │ │ └── qxtglobal.h │ │ └── gui │ │ │ ├── qxtwindowsystem.cpp │ │ │ ├── qxtwindowsystem.h │ │ │ ├── qxtwindowsystem_mac.cpp │ │ │ ├── qxtwindowsystem_mac.h │ │ │ ├── qxtwindowsystem_win.cpp │ │ │ ├── qxtwindowsystem_x11.cpp │ │ │ ├── x11info.cpp │ │ │ └── x11info.h │ ├── screenshot.cpp │ ├── screenshot.h │ ├── screenshot.ui │ ├── screenshoticonset.cpp │ ├── screenshoticonset.h │ ├── screenshotoptions.cpp │ ├── screenshotoptions.h │ ├── screenshotoptions.ui │ ├── screenshotplugin.cpp │ ├── screenshotplugin.png │ ├── screenshotplugin.pro │ ├── screenshotplugin.qrc │ ├── server.cpp │ ├── server.h │ ├── toolbar.cpp │ └── toolbar.h └── yandexnarodplugin │ ├── authmanager.cpp │ ├── authmanager.h │ ├── changelog.txt │ ├── common.cpp │ ├── common.h │ ├── icons │ ├── clipboard.png │ ├── close.png │ ├── delete.png │ ├── prolongate.png │ ├── reload.png │ ├── upload.png │ ├── yandexnarod-icons-files.png │ ├── yandexnarodlogo.png │ └── yandexnarodplugin.png │ ├── options.cpp │ ├── options.h │ ├── requestauthdialog.cpp │ ├── requestauthdialog.h │ ├── requestauthdialog.ui │ ├── uploaddialog.cpp │ ├── uploaddialog.h │ ├── uploaddialog.ui │ ├── uploadmanager.cpp │ ├── uploadmanager.h │ ├── yandexnarod.cpp │ ├── yandexnarod.h │ ├── yandexnarod.qrc │ ├── yandexnarodmanage.cpp │ ├── yandexnarodmanage.h │ ├── yandexnarodmanage.ui │ ├── yandexnarodnetman.cpp │ ├── yandexnarodnetman.h │ ├── yandexnarodplugin.pro │ ├── yandexnarodsettings.cpp │ ├── yandexnarodsettings.h │ └── yandexnarodsettings.ui ├── dev ├── CMakeLists.txt ├── battleshipgameplugin │ ├── CMakeLists.txt │ ├── battleshipgameplugin.cpp │ ├── battleshipgameplugin.h │ ├── battleshipgameplugin.pro │ ├── battleshipgameplugin.qrc │ ├── boarddelegate.cpp │ ├── boarddelegate.h │ ├── boardmodel.cpp │ ├── boardmodel.h │ ├── boardview.cpp │ ├── boardview.h │ ├── changelog.txt │ ├── gamemodel.cpp │ ├── gamemodel.h │ ├── gamesessions.cpp │ ├── gamesessions.h │ ├── img │ │ ├── battleship.svg │ │ └── battleship256.png │ ├── invitationdialog.ui │ ├── invitedialog.cpp │ ├── invitedialog.h │ ├── invitedialog.ui │ ├── options.cpp │ ├── options.h │ ├── options.ui │ ├── pluginwindow.cpp │ ├── pluginwindow.h │ ├── pluginwindow.ui │ └── psiplugin.json ├── noughtsandcrossesplugin │ ├── CMakeLists.txt │ ├── icon.png │ ├── noughtsandcrossesplugin.cpp │ ├── psiplugin.json │ ├── tictac.cpp │ └── tictac.h └── redirectorplugin │ ├── CMakeLists.txt │ ├── options.ui │ ├── psiplugin.json │ ├── redirectorplugin.cpp │ ├── redirectorplugin.h │ └── redirectorplugin.pro ├── generic ├── CMakeLists.txt ├── attentionplugin │ ├── CMakeLists.txt │ ├── attentionplugin.cpp │ ├── attentionplugin.png │ ├── attentionplugin.pro │ ├── changelog.txt │ ├── options.ui │ └── psiplugin.json ├── autoreplyplugin │ ├── CMakeLists.txt │ ├── autoreplyplugin.cpp │ ├── autoreplyplugin.png │ ├── autoreplyplugin.pro │ ├── changelog.txt │ └── psiplugin.json ├── birthdayreminderplugin │ ├── CMakeLists.txt │ ├── birthdayreminderplugin.cpp │ ├── birthdayreminderplugin.png │ ├── birthdayreminderplugin.pro │ ├── birthdayreminderplugin.qrc │ ├── changelog.txt │ ├── options.ui │ └── psiplugin.json ├── chessplugin │ ├── CMakeLists.txt │ ├── boarddelegate.cpp │ ├── boarddelegate.h │ ├── boardmodel.cpp │ ├── boardmodel.h │ ├── boardview.cpp │ ├── boardview.h │ ├── changelog.txt │ ├── chess.png │ ├── chessplugin.cpp │ ├── chessplugin.png │ ├── chessplugin.pro │ ├── chessplugin.qrc │ ├── figure.cpp │ ├── figure.h │ ├── figures │ │ ├── Black_king_2d.png │ │ ├── Black_queen_2d.png │ │ ├── Chess.png │ │ ├── Chess_board.png │ │ ├── black_bishop.png │ │ ├── black_castle.png │ │ ├── black_king.png │ │ ├── black_knight.png │ │ ├── black_pawn.png │ │ ├── black_queen.png │ │ ├── white_bishop.png │ │ ├── white_castle.png │ │ ├── white_king.png │ │ ├── white_knight.png │ │ ├── white_pawn.png │ │ └── white_queen.png │ ├── invitationdialog.ui │ ├── invitedialog.cpp │ ├── invitedialog.h │ ├── invitedialog.ui │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── options.ui │ ├── psiplugin.json │ └── request.h ├── cleanerplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── cleaner.cpp │ ├── cleaner.h │ ├── cleaner.png │ ├── cleaner.ui │ ├── cleanerplugin.cpp │ ├── cleanerplugin.h │ ├── cleanerplugin.png │ ├── cleanerplugin.pro │ ├── cleanerplugin.qrc │ ├── clearingtab.ui │ ├── common.cpp │ ├── common.h │ ├── default.xml │ ├── models.cpp │ ├── models.h │ ├── optionsparser.cpp │ ├── optionsparser.h │ ├── psiplugin.json │ ├── viewers.cpp │ └── viewers.h ├── clientswitcherplugin │ ├── CMakeLists.txt │ ├── accountsettings.cpp │ ├── accountsettings.h │ ├── changelog.txt │ ├── clientswitcherplugin.cpp │ ├── clientswitcherplugin.h │ ├── clientswitcherplugin.png │ ├── clientswitcherplugin.pro │ ├── options.ui │ └── psiplugin.json ├── conferenceloggerplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── conferenceloggerplugin.cpp │ ├── conferenceloggerplugin.png │ ├── conferenceloggerplugin.pro │ ├── conferenceloggerplugin.qrc │ ├── psiplugin.json │ ├── typeaheadfind.cpp │ ├── typeaheadfind.h │ ├── viewer.cpp │ └── viewer.h ├── contentdownloaderplugin │ ├── CMakeLists.txt │ ├── README │ ├── cditemmodel.cpp │ ├── cditemmodel.h │ ├── changelog.txt │ ├── contentdownloader.cpp │ ├── contentdownloader.h │ ├── contentdownloaderplugin.png │ ├── contentdownloaderplugin.pro │ ├── contentitem.cpp │ ├── contentitem.h │ ├── form.cpp │ ├── form.h │ ├── form.ui │ ├── psiplugin.json │ └── test.html ├── enummessagesplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── defines.h │ ├── enummessagesplugin.cpp │ ├── enummessagesplugin.h │ ├── enummessagesplugin.png │ ├── enummessagesplugin.pro │ ├── options.ui │ └── psiplugin.json ├── extendedmenuplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── extendedmenu.png │ ├── extendedmenuplugin.cpp │ ├── extendedmenuplugin.png │ ├── extendedmenuplugin.pro │ ├── extendedmenuplugin.qrc │ ├── icons │ │ ├── copyjid.png │ │ ├── copynick.png │ │ ├── copystatusmsg.png │ │ └── ping.png │ ├── options.ui │ └── psiplugin.json ├── extendedoptionsplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── extendedoptionsplugin.cpp │ ├── extendedoptionsplugin.png │ ├── extendedoptionsplugin.pro │ ├── psiplugin.json │ ├── syntaxhighlighter.cpp │ └── syntaxhighlighter.h ├── generic.pro ├── gomokugameplugin │ ├── CMakeLists.txt │ ├── boarddelegate.cpp │ ├── boarddelegate.h │ ├── boardmodel.cpp │ ├── boardmodel.h │ ├── boardview.cpp │ ├── boardview.h │ ├── changelog.txt │ ├── common.h │ ├── gameelement.cpp │ ├── gameelement.h │ ├── gamemodel.cpp │ ├── gamemodel.h │ ├── gamesessions.cpp │ ├── gamesessions.h │ ├── gomokugameplugin.cpp │ ├── gomokugameplugin.h │ ├── gomokugameplugin.png │ ├── gomokugameplugin.pro │ ├── gomokugameplugin.qrc │ ├── img │ │ ├── black-stone.png │ │ ├── goban1.png │ │ ├── gomoku.png │ │ └── white-stone.png │ ├── invatedialog.cpp │ ├── invatedialog.h │ ├── invatedialog.ui │ ├── invitationdialog.ui │ ├── options.cpp │ ├── options.h │ ├── options.ui │ ├── pluginwindow.cpp │ ├── pluginwindow.h │ ├── pluginwindow.ui │ └── psiplugin.json ├── historykeeperplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── historykeeperplugin.cpp │ ├── historykeeperplugin.png │ ├── historykeeperplugin.pro │ └── psiplugin.json ├── imageplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── imageplugin.cpp │ ├── imageplugin.gif │ ├── imageplugin.pro │ ├── imageplugin.qrc │ └── psiplugin.json ├── imagepreviewplugin │ ├── CMakeLists.txt │ ├── ScrollKeeper.cpp │ ├── ScrollKeeper.h │ ├── imagepreviewplugin.cpp │ ├── imagepreviewplugin.png │ ├── imagepreviewplugin.pro │ ├── options.cpp │ ├── options.h │ ├── options.ui │ └── psiplugin.json ├── jabberdiskplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── jabberdiskcontroller.cpp │ ├── jabberdiskcontroller.h │ ├── jabberdiskplugin.cpp │ ├── jabberdiskplugin.h │ ├── jabberdiskplugin.png │ ├── jabberdiskplugin.pro │ ├── jd_commands.cpp │ ├── jd_commands.h │ ├── jd_item.cpp │ ├── jd_item.h │ ├── jd_mainwin.cpp │ ├── jd_mainwin.h │ ├── jd_mainwin.ui │ ├── jd_view.cpp │ ├── jd_view.h │ ├── model.cpp │ ├── model.h │ ├── options.ui │ └── psiplugin.json ├── juickplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── defines.h │ ├── juickdownloader.cpp │ ├── juickdownloader.h │ ├── juickjidlist.cpp │ ├── juickjidlist.h │ ├── juickjidlist.ui │ ├── juickparser.cpp │ ├── juickparser.h │ ├── juickplugin.cpp │ ├── juickplugin.h │ ├── juickplugin.png │ ├── juickplugin.pro │ ├── psiplugin.json │ └── settings.ui ├── messagefilterplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── list-add.png │ ├── list-remove.png │ ├── messagefilter.cpp │ ├── messagefilter.h │ ├── messagefilterplugin.png │ ├── messagefilterplugin.pro │ ├── options.cpp │ ├── options.h │ ├── options.ui │ ├── psiplugin.json │ └── resources.qrc ├── omemoplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── cmake │ │ ├── FindOMEMO_C.cmake │ │ └── omemo_c.cmake │ ├── omemoplugin.qrc │ ├── resources │ │ ├── omemo.png │ │ └── omemo@2x.png │ └── src │ │ ├── configwidget.cpp │ │ ├── configwidget.h │ │ ├── crypto.cpp │ │ ├── crypto.h │ │ ├── crypto_ossl.cpp │ │ ├── crypto_ossl.h │ │ ├── crypto_qca.cpp │ │ ├── omemo.cpp │ │ ├── omemo.h │ │ ├── omemoplugin.cpp │ │ ├── omemoplugin.h │ │ ├── psiplugin.json │ │ ├── signal.cpp │ │ ├── signal.h │ │ ├── storage.cpp │ │ └── storage.h ├── openpgpplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── openpgpplugin.pro │ ├── resources │ │ ├── calendar.png │ │ ├── clean.png │ │ ├── key.png │ │ ├── openpgp.png │ │ ├── openpgp__old.png │ │ └── resources.qrc │ └── src │ │ ├── addkeydlg.cpp │ │ ├── addkeydlg.h │ │ ├── addkeydlg.ui │ │ ├── datewidget.cpp │ │ ├── datewidget.h │ │ ├── gpgprocess.cpp │ │ ├── gpgprocess.h │ │ ├── gpgtransaction.cpp │ │ ├── gpgtransaction.h │ │ ├── lineeditwidget.cpp │ │ ├── lineeditwidget.h │ │ ├── model.cpp │ │ ├── model.h │ │ ├── openpgpmessaging.cpp │ │ ├── openpgpmessaging.h │ │ ├── openpgpplugin.cpp │ │ ├── openpgpplugin.h │ │ ├── options.cpp │ │ ├── options.h │ │ ├── options.ui │ │ ├── pgpkey.ui │ │ ├── pgpkeydlg.cpp │ │ ├── pgpkeydlg.h │ │ ├── pgputil.cpp │ │ ├── pgputil.h │ │ ├── psiplugin.json │ │ ├── showtextdlg.cpp │ │ └── showtextdlg.h ├── otrplugin │ ├── CMakeLists.txt │ ├── COPYING │ ├── INSTALL │ ├── README │ ├── changelog.txt │ ├── cmake │ │ ├── FindLIBGCRYPT.cmake │ │ ├── FindLIBGPGERROR.cmake │ │ ├── FindLIBOTR.cmake │ │ └── FindLIBTIDY.cmake │ ├── otrplugin.pro │ ├── otrplugin.qrc │ ├── resources │ │ ├── otr_no.png │ │ ├── otr_unverified.png │ │ └── otr_yes.png │ └── src │ │ ├── htmltidy.cpp │ │ ├── htmltidy.h │ │ ├── otrinternal.cpp │ │ ├── otrinternal.h │ │ ├── otrlextensions.c │ │ ├── otrlextensions.h │ │ ├── otrmessaging.cpp │ │ ├── otrmessaging.h │ │ ├── psiotrclosure.cpp │ │ ├── psiotrclosure.h │ │ ├── psiotrconfig.cpp │ │ ├── psiotrconfig.h │ │ ├── psiotrplugin.cpp │ │ ├── psiotrplugin.h │ │ └── psiplugin.json ├── pepchangenotifyplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── options.ui │ ├── pepchangenotifyplugin.cpp │ ├── pepchangenotifyplugin.png │ ├── pepchangenotifyplugin.pro │ └── psiplugin.json ├── qipxstatusesplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── psiplugin.json │ ├── qipxstatusesplugin.cpp │ ├── qipxstatusesplugin.png │ └── qipxstatusesplugin.pro ├── skinsplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── defskin.skn │ ├── getskinname.ui │ ├── optionsparser.cpp │ ├── optionsparser.h │ ├── previewer.ui │ ├── psiplugin.json │ ├── skin.cpp │ ├── skin.h │ ├── skins.png │ ├── skinsplugin.cpp │ ├── skinsplugin.pro │ ├── skinsplugin.qrc │ └── skinsplugin.ui ├── stopspamplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── deferredstanzasender.cpp │ ├── deferredstanzasender.h │ ├── model.cpp │ ├── model.h │ ├── options.ui │ ├── psiplugin.json │ ├── stopspamplugin.cpp │ ├── stopspamplugin.png │ ├── stopspamplugin.pro │ ├── typeaheadfind.cpp │ ├── typeaheadfind.h │ ├── view.cpp │ ├── view.h │ ├── viewer.cpp │ └── viewer.h ├── storagenotesplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── editnote.cpp │ ├── editnote.h │ ├── editnote.ui │ ├── notes.cpp │ ├── notes.h │ ├── notes.ui │ ├── notescontroller.cpp │ ├── notescontroller.h │ ├── notesviewdelegate.cpp │ ├── notesviewdelegate.h │ ├── psiplugin.json │ ├── storagenotesplugin.cpp │ ├── storagenotesplugin.h │ ├── storagenotesplugin.png │ ├── storagenotesplugin.pro │ ├── storagenotesplugin.qrc │ ├── tagsmodel.cpp │ └── tagsmodel.h ├── translateplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── psiplugin.json │ ├── translateplugin.cpp │ ├── translateplugin.png │ └── translateplugin.pro ├── videostatusplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── cmake │ │ └── FindXCB.cmake │ ├── options.ui │ ├── psiplugin.json │ ├── videostatusplugin.cpp │ ├── videostatusplugin.png │ ├── videostatusplugin.pro │ ├── x11info.cpp │ └── x11info.h └── watcherplugin │ ├── CMakeLists.txt │ ├── changelog.txt │ ├── delegate.cpp │ ├── delegate.h │ ├── edititemdlg.cpp │ ├── edititemdlg.h │ ├── edititemdlg.ui │ ├── model.cpp │ ├── model.h │ ├── options.ui │ ├── psiplugin.json │ ├── resources.qrc │ ├── view.cpp │ ├── view.h │ ├── watcheditem.cpp │ ├── watcheditem.h │ ├── watcher.png │ ├── watcher_on.png │ ├── watcherplugin.cpp │ ├── watcherplugin.png │ └── watcherplugin.pro ├── tests └── travis-ci │ ├── build-and-test.sh │ ├── build-for-windows.sh │ ├── build-in-macos.sh │ ├── build-in-ubuntu.sh │ ├── homebrew-toolchain.cmake │ └── install-build-depends.sh └── unix └── CMakeLists.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/cmake/modules/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /cmake/modules/FindPsiPluginsApi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/cmake/modules/FindPsiPluginsApi.cmake -------------------------------------------------------------------------------- /deprecated/gnome3supportplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/gnome3supportplugin/CMakeLists.txt -------------------------------------------------------------------------------- /deprecated/gnome3supportplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/gnome3supportplugin/changelog.txt -------------------------------------------------------------------------------- /deprecated/gnome3supportplugin/gnome3support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/gnome3supportplugin/gnome3support.png -------------------------------------------------------------------------------- /deprecated/gnome3supportplugin/gnome3supportplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/gnome3supportplugin/gnome3supportplugin.cpp -------------------------------------------------------------------------------- /deprecated/gnome3supportplugin/gnome3supportplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/gnome3supportplugin/gnome3supportplugin.pro -------------------------------------------------------------------------------- /deprecated/gnome3supportplugin/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/gnome3supportplugin/resources.qrc -------------------------------------------------------------------------------- /deprecated/httpuploadplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/httpuploadplugin/CMakeLists.txt -------------------------------------------------------------------------------- /deprecated/httpuploadplugin/currentupload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/httpuploadplugin/currentupload.h -------------------------------------------------------------------------------- /deprecated/httpuploadplugin/httpuploadplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/httpuploadplugin/httpuploadplugin.cpp -------------------------------------------------------------------------------- /deprecated/httpuploadplugin/httpuploadplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/httpuploadplugin/httpuploadplugin.pro -------------------------------------------------------------------------------- /deprecated/httpuploadplugin/httpuploadplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/httpuploadplugin/httpuploadplugin.qrc -------------------------------------------------------------------------------- /deprecated/httpuploadplugin/previewfiledialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/httpuploadplugin/previewfiledialog.cpp -------------------------------------------------------------------------------- /deprecated/httpuploadplugin/previewfiledialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/httpuploadplugin/previewfiledialog.h -------------------------------------------------------------------------------- /deprecated/httpuploadplugin/upload_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/httpuploadplugin/upload_file.png -------------------------------------------------------------------------------- /deprecated/httpuploadplugin/upload_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/httpuploadplugin/upload_image.png -------------------------------------------------------------------------------- /deprecated/httpuploadplugin/uploadservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/httpuploadplugin/uploadservice.cpp -------------------------------------------------------------------------------- /deprecated/httpuploadplugin/uploadservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/httpuploadplugin/uploadservice.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/CMakeLists.txt -------------------------------------------------------------------------------- /deprecated/screenshotplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/changelog.txt -------------------------------------------------------------------------------- /deprecated/screenshotplugin/controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/controller.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/controller.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/defines.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/editserverdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/editserverdlg.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/editserverdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/editserverdlg.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/editserverdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/editserverdlg.ui -------------------------------------------------------------------------------- /deprecated/screenshotplugin/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/icons/copy.png -------------------------------------------------------------------------------- /deprecated/screenshotplugin/icons/crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/icons/crop.png -------------------------------------------------------------------------------- /deprecated/screenshotplugin/icons/draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/icons/draw.png -------------------------------------------------------------------------------- /deprecated/screenshotplugin/icons/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/icons/frame.png -------------------------------------------------------------------------------- /deprecated/screenshotplugin/icons/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/icons/palette.png -------------------------------------------------------------------------------- /deprecated/screenshotplugin/icons/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/icons/paste.png -------------------------------------------------------------------------------- /deprecated/screenshotplugin/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/icons/print.png -------------------------------------------------------------------------------- /deprecated/screenshotplugin/icons/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/icons/screenshot.png -------------------------------------------------------------------------------- /deprecated/screenshotplugin/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/icons/undo.png -------------------------------------------------------------------------------- /deprecated/screenshotplugin/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/options.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/options.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/optionsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/optionsdlg.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/optionsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/optionsdlg.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/optionsdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/optionsdlg.ui -------------------------------------------------------------------------------- /deprecated/screenshotplugin/optionswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/optionswidget.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/optionswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/optionswidget.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/optionswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/optionswidget.ui -------------------------------------------------------------------------------- /deprecated/screenshotplugin/pixmapwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/pixmapwidget.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/pixmapwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/pixmapwidget.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/proxysettingsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/proxysettingsdlg.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/proxysettingsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/proxysettingsdlg.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/proxysettingsdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/proxysettingsdlg.ui -------------------------------------------------------------------------------- /deprecated/screenshotplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/psiplugin.json -------------------------------------------------------------------------------- /deprecated/screenshotplugin/qxt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/qxt/LICENSE -------------------------------------------------------------------------------- /deprecated/screenshotplugin/qxt/core/qxtglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/qxt/core/qxtglobal.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/qxt/core/qxtglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/qxt/core/qxtglobal.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/qxt/gui/qxtwindowsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/qxt/gui/qxtwindowsystem.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/qxt/gui/qxtwindowsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/qxt/gui/qxtwindowsystem.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/qxt/gui/qxtwindowsystem_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/qxt/gui/qxtwindowsystem_mac.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/qxt/gui/qxtwindowsystem_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/qxt/gui/qxtwindowsystem_mac.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/qxt/gui/qxtwindowsystem_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/qxt/gui/qxtwindowsystem_win.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/qxt/gui/qxtwindowsystem_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/qxt/gui/qxtwindowsystem_x11.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/qxt/gui/x11info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/qxt/gui/x11info.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/qxt/gui/x11info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/qxt/gui/x11info.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/screenshot.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/screenshot.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/screenshot.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/screenshot.ui -------------------------------------------------------------------------------- /deprecated/screenshotplugin/screenshoticonset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/screenshoticonset.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/screenshoticonset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/screenshoticonset.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/screenshotoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/screenshotoptions.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/screenshotoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/screenshotoptions.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/screenshotoptions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/screenshotoptions.ui -------------------------------------------------------------------------------- /deprecated/screenshotplugin/screenshotplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/screenshotplugin.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/screenshotplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/screenshotplugin.png -------------------------------------------------------------------------------- /deprecated/screenshotplugin/screenshotplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/screenshotplugin.pro -------------------------------------------------------------------------------- /deprecated/screenshotplugin/screenshotplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/screenshotplugin.qrc -------------------------------------------------------------------------------- /deprecated/screenshotplugin/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/server.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/server.h -------------------------------------------------------------------------------- /deprecated/screenshotplugin/toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/toolbar.cpp -------------------------------------------------------------------------------- /deprecated/screenshotplugin/toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/screenshotplugin/toolbar.h -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/authmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/authmanager.cpp -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/authmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/authmanager.h -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/changelog.txt -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/common.cpp -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/common.h -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/icons/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/icons/clipboard.png -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/icons/close.png -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/icons/delete.png -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/icons/prolongate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/icons/prolongate.png -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/icons/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/icons/reload.png -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/icons/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/icons/upload.png -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/icons/yandexnarod-icons-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/icons/yandexnarod-icons-files.png -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/icons/yandexnarodlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/icons/yandexnarodlogo.png -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/icons/yandexnarodplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/icons/yandexnarodplugin.png -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/options.cpp -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/options.h -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/requestauthdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/requestauthdialog.cpp -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/requestauthdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/requestauthdialog.h -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/requestauthdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/requestauthdialog.ui -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/uploaddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/uploaddialog.cpp -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/uploaddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/uploaddialog.h -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/uploaddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/uploaddialog.ui -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/uploadmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/uploadmanager.cpp -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/uploadmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/uploadmanager.h -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/yandexnarod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/yandexnarod.cpp -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/yandexnarod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/yandexnarod.h -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/yandexnarod.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/yandexnarod.qrc -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/yandexnarodmanage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/yandexnarodmanage.cpp -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/yandexnarodmanage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/yandexnarodmanage.h -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/yandexnarodmanage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/yandexnarodmanage.ui -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/yandexnarodnetman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/yandexnarodnetman.cpp -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/yandexnarodnetman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/yandexnarodnetman.h -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/yandexnarodplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/yandexnarodplugin.pro -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/yandexnarodsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/yandexnarodsettings.cpp -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/yandexnarodsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/yandexnarodsettings.h -------------------------------------------------------------------------------- /deprecated/yandexnarodplugin/yandexnarodsettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/deprecated/yandexnarodplugin/yandexnarodsettings.ui -------------------------------------------------------------------------------- /dev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/CMakeLists.txt -------------------------------------------------------------------------------- /dev/battleshipgameplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/CMakeLists.txt -------------------------------------------------------------------------------- /dev/battleshipgameplugin/battleshipgameplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/battleshipgameplugin.cpp -------------------------------------------------------------------------------- /dev/battleshipgameplugin/battleshipgameplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/battleshipgameplugin.h -------------------------------------------------------------------------------- /dev/battleshipgameplugin/battleshipgameplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/battleshipgameplugin.pro -------------------------------------------------------------------------------- /dev/battleshipgameplugin/battleshipgameplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/battleshipgameplugin.qrc -------------------------------------------------------------------------------- /dev/battleshipgameplugin/boarddelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/boarddelegate.cpp -------------------------------------------------------------------------------- /dev/battleshipgameplugin/boarddelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/boarddelegate.h -------------------------------------------------------------------------------- /dev/battleshipgameplugin/boardmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/boardmodel.cpp -------------------------------------------------------------------------------- /dev/battleshipgameplugin/boardmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/boardmodel.h -------------------------------------------------------------------------------- /dev/battleshipgameplugin/boardview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/boardview.cpp -------------------------------------------------------------------------------- /dev/battleshipgameplugin/boardview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/boardview.h -------------------------------------------------------------------------------- /dev/battleshipgameplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/changelog.txt -------------------------------------------------------------------------------- /dev/battleshipgameplugin/gamemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/gamemodel.cpp -------------------------------------------------------------------------------- /dev/battleshipgameplugin/gamemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/gamemodel.h -------------------------------------------------------------------------------- /dev/battleshipgameplugin/gamesessions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/gamesessions.cpp -------------------------------------------------------------------------------- /dev/battleshipgameplugin/gamesessions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/gamesessions.h -------------------------------------------------------------------------------- /dev/battleshipgameplugin/img/battleship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/img/battleship.svg -------------------------------------------------------------------------------- /dev/battleshipgameplugin/img/battleship256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/img/battleship256.png -------------------------------------------------------------------------------- /dev/battleshipgameplugin/invitationdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/invitationdialog.ui -------------------------------------------------------------------------------- /dev/battleshipgameplugin/invitedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/invitedialog.cpp -------------------------------------------------------------------------------- /dev/battleshipgameplugin/invitedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/invitedialog.h -------------------------------------------------------------------------------- /dev/battleshipgameplugin/invitedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/invitedialog.ui -------------------------------------------------------------------------------- /dev/battleshipgameplugin/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/options.cpp -------------------------------------------------------------------------------- /dev/battleshipgameplugin/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/options.h -------------------------------------------------------------------------------- /dev/battleshipgameplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/options.ui -------------------------------------------------------------------------------- /dev/battleshipgameplugin/pluginwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/pluginwindow.cpp -------------------------------------------------------------------------------- /dev/battleshipgameplugin/pluginwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/pluginwindow.h -------------------------------------------------------------------------------- /dev/battleshipgameplugin/pluginwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/pluginwindow.ui -------------------------------------------------------------------------------- /dev/battleshipgameplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/battleshipgameplugin/psiplugin.json -------------------------------------------------------------------------------- /dev/noughtsandcrossesplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/noughtsandcrossesplugin/CMakeLists.txt -------------------------------------------------------------------------------- /dev/noughtsandcrossesplugin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/noughtsandcrossesplugin/icon.png -------------------------------------------------------------------------------- /dev/noughtsandcrossesplugin/noughtsandcrossesplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/noughtsandcrossesplugin/noughtsandcrossesplugin.cpp -------------------------------------------------------------------------------- /dev/noughtsandcrossesplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/noughtsandcrossesplugin/psiplugin.json -------------------------------------------------------------------------------- /dev/noughtsandcrossesplugin/tictac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/noughtsandcrossesplugin/tictac.cpp -------------------------------------------------------------------------------- /dev/noughtsandcrossesplugin/tictac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/noughtsandcrossesplugin/tictac.h -------------------------------------------------------------------------------- /dev/redirectorplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/redirectorplugin/CMakeLists.txt -------------------------------------------------------------------------------- /dev/redirectorplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/redirectorplugin/options.ui -------------------------------------------------------------------------------- /dev/redirectorplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/redirectorplugin/psiplugin.json -------------------------------------------------------------------------------- /dev/redirectorplugin/redirectorplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/redirectorplugin/redirectorplugin.cpp -------------------------------------------------------------------------------- /dev/redirectorplugin/redirectorplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/redirectorplugin/redirectorplugin.h -------------------------------------------------------------------------------- /dev/redirectorplugin/redirectorplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/dev/redirectorplugin/redirectorplugin.pro -------------------------------------------------------------------------------- /generic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/CMakeLists.txt -------------------------------------------------------------------------------- /generic/attentionplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/attentionplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/attentionplugin/attentionplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/attentionplugin/attentionplugin.cpp -------------------------------------------------------------------------------- /generic/attentionplugin/attentionplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/attentionplugin/attentionplugin.png -------------------------------------------------------------------------------- /generic/attentionplugin/attentionplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/attentionplugin/attentionplugin.pro -------------------------------------------------------------------------------- /generic/attentionplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/attentionplugin/changelog.txt -------------------------------------------------------------------------------- /generic/attentionplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/attentionplugin/options.ui -------------------------------------------------------------------------------- /generic/attentionplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/attentionplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/autoreplyplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/autoreplyplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/autoreplyplugin/autoreplyplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/autoreplyplugin/autoreplyplugin.cpp -------------------------------------------------------------------------------- /generic/autoreplyplugin/autoreplyplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/autoreplyplugin/autoreplyplugin.png -------------------------------------------------------------------------------- /generic/autoreplyplugin/autoreplyplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/autoreplyplugin/autoreplyplugin.pro -------------------------------------------------------------------------------- /generic/autoreplyplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/autoreplyplugin/changelog.txt -------------------------------------------------------------------------------- /generic/autoreplyplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/autoreplyplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/birthdayreminderplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/birthdayreminderplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/birthdayreminderplugin/birthdayreminderplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/birthdayreminderplugin/birthdayreminderplugin.cpp -------------------------------------------------------------------------------- /generic/birthdayreminderplugin/birthdayreminderplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/birthdayreminderplugin/birthdayreminderplugin.png -------------------------------------------------------------------------------- /generic/birthdayreminderplugin/birthdayreminderplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/birthdayreminderplugin/birthdayreminderplugin.pro -------------------------------------------------------------------------------- /generic/birthdayreminderplugin/birthdayreminderplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/birthdayreminderplugin/birthdayreminderplugin.qrc -------------------------------------------------------------------------------- /generic/birthdayreminderplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/birthdayreminderplugin/changelog.txt -------------------------------------------------------------------------------- /generic/birthdayreminderplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/birthdayreminderplugin/options.ui -------------------------------------------------------------------------------- /generic/birthdayreminderplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/birthdayreminderplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/chessplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/chessplugin/boarddelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/boarddelegate.cpp -------------------------------------------------------------------------------- /generic/chessplugin/boarddelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/boarddelegate.h -------------------------------------------------------------------------------- /generic/chessplugin/boardmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/boardmodel.cpp -------------------------------------------------------------------------------- /generic/chessplugin/boardmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/boardmodel.h -------------------------------------------------------------------------------- /generic/chessplugin/boardview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/boardview.cpp -------------------------------------------------------------------------------- /generic/chessplugin/boardview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/boardview.h -------------------------------------------------------------------------------- /generic/chessplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/changelog.txt -------------------------------------------------------------------------------- /generic/chessplugin/chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/chess.png -------------------------------------------------------------------------------- /generic/chessplugin/chessplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/chessplugin.cpp -------------------------------------------------------------------------------- /generic/chessplugin/chessplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/chessplugin.png -------------------------------------------------------------------------------- /generic/chessplugin/chessplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/chessplugin.pro -------------------------------------------------------------------------------- /generic/chessplugin/chessplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/chessplugin.qrc -------------------------------------------------------------------------------- /generic/chessplugin/figure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figure.cpp -------------------------------------------------------------------------------- /generic/chessplugin/figure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figure.h -------------------------------------------------------------------------------- /generic/chessplugin/figures/Black_king_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/Black_king_2d.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/Black_queen_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/Black_queen_2d.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/Chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/Chess.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/Chess_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/Chess_board.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/black_bishop.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/black_castle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/black_castle.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/black_king.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/black_knight.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/black_pawn.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/black_queen.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/white_bishop.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/white_castle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/white_castle.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/white_king.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/white_knight.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/white_pawn.png -------------------------------------------------------------------------------- /generic/chessplugin/figures/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/figures/white_queen.png -------------------------------------------------------------------------------- /generic/chessplugin/invitationdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/invitationdialog.ui -------------------------------------------------------------------------------- /generic/chessplugin/invitedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/invitedialog.cpp -------------------------------------------------------------------------------- /generic/chessplugin/invitedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/invitedialog.h -------------------------------------------------------------------------------- /generic/chessplugin/invitedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/invitedialog.ui -------------------------------------------------------------------------------- /generic/chessplugin/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/mainwindow.cpp -------------------------------------------------------------------------------- /generic/chessplugin/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/mainwindow.h -------------------------------------------------------------------------------- /generic/chessplugin/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/mainwindow.ui -------------------------------------------------------------------------------- /generic/chessplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/options.ui -------------------------------------------------------------------------------- /generic/chessplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/chessplugin/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/chessplugin/request.h -------------------------------------------------------------------------------- /generic/cleanerplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/cleanerplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/changelog.txt -------------------------------------------------------------------------------- /generic/cleanerplugin/cleaner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/cleaner.cpp -------------------------------------------------------------------------------- /generic/cleanerplugin/cleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/cleaner.h -------------------------------------------------------------------------------- /generic/cleanerplugin/cleaner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/cleaner.png -------------------------------------------------------------------------------- /generic/cleanerplugin/cleaner.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/cleaner.ui -------------------------------------------------------------------------------- /generic/cleanerplugin/cleanerplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/cleanerplugin.cpp -------------------------------------------------------------------------------- /generic/cleanerplugin/cleanerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/cleanerplugin.h -------------------------------------------------------------------------------- /generic/cleanerplugin/cleanerplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/cleanerplugin.png -------------------------------------------------------------------------------- /generic/cleanerplugin/cleanerplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/cleanerplugin.pro -------------------------------------------------------------------------------- /generic/cleanerplugin/cleanerplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/cleanerplugin.qrc -------------------------------------------------------------------------------- /generic/cleanerplugin/clearingtab.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/clearingtab.ui -------------------------------------------------------------------------------- /generic/cleanerplugin/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/common.cpp -------------------------------------------------------------------------------- /generic/cleanerplugin/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/common.h -------------------------------------------------------------------------------- /generic/cleanerplugin/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/default.xml -------------------------------------------------------------------------------- /generic/cleanerplugin/models.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/models.cpp -------------------------------------------------------------------------------- /generic/cleanerplugin/models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/models.h -------------------------------------------------------------------------------- /generic/cleanerplugin/optionsparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/optionsparser.cpp -------------------------------------------------------------------------------- /generic/cleanerplugin/optionsparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/optionsparser.h -------------------------------------------------------------------------------- /generic/cleanerplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/cleanerplugin/viewers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/viewers.cpp -------------------------------------------------------------------------------- /generic/cleanerplugin/viewers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/cleanerplugin/viewers.h -------------------------------------------------------------------------------- /generic/clientswitcherplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/clientswitcherplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/clientswitcherplugin/accountsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/clientswitcherplugin/accountsettings.cpp -------------------------------------------------------------------------------- /generic/clientswitcherplugin/accountsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/clientswitcherplugin/accountsettings.h -------------------------------------------------------------------------------- /generic/clientswitcherplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/clientswitcherplugin/changelog.txt -------------------------------------------------------------------------------- /generic/clientswitcherplugin/clientswitcherplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/clientswitcherplugin/clientswitcherplugin.cpp -------------------------------------------------------------------------------- /generic/clientswitcherplugin/clientswitcherplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/clientswitcherplugin/clientswitcherplugin.h -------------------------------------------------------------------------------- /generic/clientswitcherplugin/clientswitcherplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/clientswitcherplugin/clientswitcherplugin.png -------------------------------------------------------------------------------- /generic/clientswitcherplugin/clientswitcherplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/clientswitcherplugin/clientswitcherplugin.pro -------------------------------------------------------------------------------- /generic/clientswitcherplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/clientswitcherplugin/options.ui -------------------------------------------------------------------------------- /generic/clientswitcherplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/clientswitcherplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/conferenceloggerplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/conferenceloggerplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/conferenceloggerplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/conferenceloggerplugin/changelog.txt -------------------------------------------------------------------------------- /generic/conferenceloggerplugin/conferenceloggerplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/conferenceloggerplugin/conferenceloggerplugin.cpp -------------------------------------------------------------------------------- /generic/conferenceloggerplugin/conferenceloggerplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/conferenceloggerplugin/conferenceloggerplugin.png -------------------------------------------------------------------------------- /generic/conferenceloggerplugin/conferenceloggerplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/conferenceloggerplugin/conferenceloggerplugin.pro -------------------------------------------------------------------------------- /generic/conferenceloggerplugin/conferenceloggerplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/conferenceloggerplugin/conferenceloggerplugin.qrc -------------------------------------------------------------------------------- /generic/conferenceloggerplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/conferenceloggerplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/conferenceloggerplugin/typeaheadfind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/conferenceloggerplugin/typeaheadfind.cpp -------------------------------------------------------------------------------- /generic/conferenceloggerplugin/typeaheadfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/conferenceloggerplugin/typeaheadfind.h -------------------------------------------------------------------------------- /generic/conferenceloggerplugin/viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/conferenceloggerplugin/viewer.cpp -------------------------------------------------------------------------------- /generic/conferenceloggerplugin/viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/conferenceloggerplugin/viewer.h -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/README -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/cditemmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/cditemmodel.cpp -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/cditemmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/cditemmodel.h -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/changelog.txt -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/contentdownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/contentdownloader.cpp -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/contentdownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/contentdownloader.h -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/contentdownloaderplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/contentdownloaderplugin.png -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/contentdownloaderplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/contentdownloaderplugin.pro -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/contentitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/contentitem.cpp -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/contentitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/contentitem.h -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/form.cpp -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/form.h -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/form.ui -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/contentdownloaderplugin/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/contentdownloaderplugin/test.html -------------------------------------------------------------------------------- /generic/enummessagesplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/enummessagesplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/enummessagesplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/enummessagesplugin/changelog.txt -------------------------------------------------------------------------------- /generic/enummessagesplugin/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/enummessagesplugin/defines.h -------------------------------------------------------------------------------- /generic/enummessagesplugin/enummessagesplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/enummessagesplugin/enummessagesplugin.cpp -------------------------------------------------------------------------------- /generic/enummessagesplugin/enummessagesplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/enummessagesplugin/enummessagesplugin.h -------------------------------------------------------------------------------- /generic/enummessagesplugin/enummessagesplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/enummessagesplugin/enummessagesplugin.png -------------------------------------------------------------------------------- /generic/enummessagesplugin/enummessagesplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/enummessagesplugin/enummessagesplugin.pro -------------------------------------------------------------------------------- /generic/enummessagesplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/enummessagesplugin/options.ui -------------------------------------------------------------------------------- /generic/enummessagesplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/enummessagesplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/extendedmenuplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/extendedmenuplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/changelog.txt -------------------------------------------------------------------------------- /generic/extendedmenuplugin/extendedmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/extendedmenu.png -------------------------------------------------------------------------------- /generic/extendedmenuplugin/extendedmenuplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/extendedmenuplugin.cpp -------------------------------------------------------------------------------- /generic/extendedmenuplugin/extendedmenuplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/extendedmenuplugin.png -------------------------------------------------------------------------------- /generic/extendedmenuplugin/extendedmenuplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/extendedmenuplugin.pro -------------------------------------------------------------------------------- /generic/extendedmenuplugin/extendedmenuplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/extendedmenuplugin.qrc -------------------------------------------------------------------------------- /generic/extendedmenuplugin/icons/copyjid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/icons/copyjid.png -------------------------------------------------------------------------------- /generic/extendedmenuplugin/icons/copynick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/icons/copynick.png -------------------------------------------------------------------------------- /generic/extendedmenuplugin/icons/copystatusmsg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/icons/copystatusmsg.png -------------------------------------------------------------------------------- /generic/extendedmenuplugin/icons/ping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/icons/ping.png -------------------------------------------------------------------------------- /generic/extendedmenuplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/options.ui -------------------------------------------------------------------------------- /generic/extendedmenuplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedmenuplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/extendedoptionsplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedoptionsplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/extendedoptionsplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedoptionsplugin/changelog.txt -------------------------------------------------------------------------------- /generic/extendedoptionsplugin/extendedoptionsplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedoptionsplugin/extendedoptionsplugin.cpp -------------------------------------------------------------------------------- /generic/extendedoptionsplugin/extendedoptionsplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedoptionsplugin/extendedoptionsplugin.png -------------------------------------------------------------------------------- /generic/extendedoptionsplugin/extendedoptionsplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedoptionsplugin/extendedoptionsplugin.pro -------------------------------------------------------------------------------- /generic/extendedoptionsplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedoptionsplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/extendedoptionsplugin/syntaxhighlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedoptionsplugin/syntaxhighlighter.cpp -------------------------------------------------------------------------------- /generic/extendedoptionsplugin/syntaxhighlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/extendedoptionsplugin/syntaxhighlighter.h -------------------------------------------------------------------------------- /generic/generic.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/generic.pro -------------------------------------------------------------------------------- /generic/gomokugameplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/gomokugameplugin/boarddelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/boarddelegate.cpp -------------------------------------------------------------------------------- /generic/gomokugameplugin/boarddelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/boarddelegate.h -------------------------------------------------------------------------------- /generic/gomokugameplugin/boardmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/boardmodel.cpp -------------------------------------------------------------------------------- /generic/gomokugameplugin/boardmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/boardmodel.h -------------------------------------------------------------------------------- /generic/gomokugameplugin/boardview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/boardview.cpp -------------------------------------------------------------------------------- /generic/gomokugameplugin/boardview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/boardview.h -------------------------------------------------------------------------------- /generic/gomokugameplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/changelog.txt -------------------------------------------------------------------------------- /generic/gomokugameplugin/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/common.h -------------------------------------------------------------------------------- /generic/gomokugameplugin/gameelement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/gameelement.cpp -------------------------------------------------------------------------------- /generic/gomokugameplugin/gameelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/gameelement.h -------------------------------------------------------------------------------- /generic/gomokugameplugin/gamemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/gamemodel.cpp -------------------------------------------------------------------------------- /generic/gomokugameplugin/gamemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/gamemodel.h -------------------------------------------------------------------------------- /generic/gomokugameplugin/gamesessions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/gamesessions.cpp -------------------------------------------------------------------------------- /generic/gomokugameplugin/gamesessions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/gamesessions.h -------------------------------------------------------------------------------- /generic/gomokugameplugin/gomokugameplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/gomokugameplugin.cpp -------------------------------------------------------------------------------- /generic/gomokugameplugin/gomokugameplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/gomokugameplugin.h -------------------------------------------------------------------------------- /generic/gomokugameplugin/gomokugameplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/gomokugameplugin.png -------------------------------------------------------------------------------- /generic/gomokugameplugin/gomokugameplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/gomokugameplugin.pro -------------------------------------------------------------------------------- /generic/gomokugameplugin/gomokugameplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/gomokugameplugin.qrc -------------------------------------------------------------------------------- /generic/gomokugameplugin/img/black-stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/img/black-stone.png -------------------------------------------------------------------------------- /generic/gomokugameplugin/img/goban1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/img/goban1.png -------------------------------------------------------------------------------- /generic/gomokugameplugin/img/gomoku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/img/gomoku.png -------------------------------------------------------------------------------- /generic/gomokugameplugin/img/white-stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/img/white-stone.png -------------------------------------------------------------------------------- /generic/gomokugameplugin/invatedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/invatedialog.cpp -------------------------------------------------------------------------------- /generic/gomokugameplugin/invatedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/invatedialog.h -------------------------------------------------------------------------------- /generic/gomokugameplugin/invatedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/invatedialog.ui -------------------------------------------------------------------------------- /generic/gomokugameplugin/invitationdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/invitationdialog.ui -------------------------------------------------------------------------------- /generic/gomokugameplugin/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/options.cpp -------------------------------------------------------------------------------- /generic/gomokugameplugin/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/options.h -------------------------------------------------------------------------------- /generic/gomokugameplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/options.ui -------------------------------------------------------------------------------- /generic/gomokugameplugin/pluginwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/pluginwindow.cpp -------------------------------------------------------------------------------- /generic/gomokugameplugin/pluginwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/pluginwindow.h -------------------------------------------------------------------------------- /generic/gomokugameplugin/pluginwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/pluginwindow.ui -------------------------------------------------------------------------------- /generic/gomokugameplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/gomokugameplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/historykeeperplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/historykeeperplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/historykeeperplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/historykeeperplugin/changelog.txt -------------------------------------------------------------------------------- /generic/historykeeperplugin/historykeeperplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/historykeeperplugin/historykeeperplugin.cpp -------------------------------------------------------------------------------- /generic/historykeeperplugin/historykeeperplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/historykeeperplugin/historykeeperplugin.png -------------------------------------------------------------------------------- /generic/historykeeperplugin/historykeeperplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/historykeeperplugin/historykeeperplugin.pro -------------------------------------------------------------------------------- /generic/historykeeperplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/historykeeperplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/imageplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imageplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/imageplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imageplugin/changelog.txt -------------------------------------------------------------------------------- /generic/imageplugin/imageplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imageplugin/imageplugin.cpp -------------------------------------------------------------------------------- /generic/imageplugin/imageplugin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imageplugin/imageplugin.gif -------------------------------------------------------------------------------- /generic/imageplugin/imageplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imageplugin/imageplugin.pro -------------------------------------------------------------------------------- /generic/imageplugin/imageplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imageplugin/imageplugin.qrc -------------------------------------------------------------------------------- /generic/imageplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imageplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/imagepreviewplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imagepreviewplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/imagepreviewplugin/ScrollKeeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imagepreviewplugin/ScrollKeeper.cpp -------------------------------------------------------------------------------- /generic/imagepreviewplugin/ScrollKeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imagepreviewplugin/ScrollKeeper.h -------------------------------------------------------------------------------- /generic/imagepreviewplugin/imagepreviewplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imagepreviewplugin/imagepreviewplugin.cpp -------------------------------------------------------------------------------- /generic/imagepreviewplugin/imagepreviewplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imagepreviewplugin/imagepreviewplugin.png -------------------------------------------------------------------------------- /generic/imagepreviewplugin/imagepreviewplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imagepreviewplugin/imagepreviewplugin.pro -------------------------------------------------------------------------------- /generic/imagepreviewplugin/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imagepreviewplugin/options.cpp -------------------------------------------------------------------------------- /generic/imagepreviewplugin/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imagepreviewplugin/options.h -------------------------------------------------------------------------------- /generic/imagepreviewplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imagepreviewplugin/options.ui -------------------------------------------------------------------------------- /generic/imagepreviewplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/imagepreviewplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/jabberdiskplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/jabberdiskplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/changelog.txt -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jabberdiskcontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jabberdiskcontroller.cpp -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jabberdiskcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jabberdiskcontroller.h -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jabberdiskplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jabberdiskplugin.cpp -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jabberdiskplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jabberdiskplugin.h -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jabberdiskplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jabberdiskplugin.png -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jabberdiskplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jabberdiskplugin.pro -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jd_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jd_commands.cpp -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jd_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jd_commands.h -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jd_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jd_item.cpp -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jd_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jd_item.h -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jd_mainwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jd_mainwin.cpp -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jd_mainwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jd_mainwin.h -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jd_mainwin.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jd_mainwin.ui -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jd_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jd_view.cpp -------------------------------------------------------------------------------- /generic/jabberdiskplugin/jd_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/jd_view.h -------------------------------------------------------------------------------- /generic/jabberdiskplugin/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/model.cpp -------------------------------------------------------------------------------- /generic/jabberdiskplugin/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/model.h -------------------------------------------------------------------------------- /generic/jabberdiskplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/options.ui -------------------------------------------------------------------------------- /generic/jabberdiskplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/jabberdiskplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/juickplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/juickplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/changelog.txt -------------------------------------------------------------------------------- /generic/juickplugin/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/defines.h -------------------------------------------------------------------------------- /generic/juickplugin/juickdownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/juickdownloader.cpp -------------------------------------------------------------------------------- /generic/juickplugin/juickdownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/juickdownloader.h -------------------------------------------------------------------------------- /generic/juickplugin/juickjidlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/juickjidlist.cpp -------------------------------------------------------------------------------- /generic/juickplugin/juickjidlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/juickjidlist.h -------------------------------------------------------------------------------- /generic/juickplugin/juickjidlist.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/juickjidlist.ui -------------------------------------------------------------------------------- /generic/juickplugin/juickparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/juickparser.cpp -------------------------------------------------------------------------------- /generic/juickplugin/juickparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/juickparser.h -------------------------------------------------------------------------------- /generic/juickplugin/juickplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/juickplugin.cpp -------------------------------------------------------------------------------- /generic/juickplugin/juickplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/juickplugin.h -------------------------------------------------------------------------------- /generic/juickplugin/juickplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/juickplugin.png -------------------------------------------------------------------------------- /generic/juickplugin/juickplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/juickplugin.pro -------------------------------------------------------------------------------- /generic/juickplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/juickplugin/settings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/juickplugin/settings.ui -------------------------------------------------------------------------------- /generic/messagefilterplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/messagefilterplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/changelog.txt -------------------------------------------------------------------------------- /generic/messagefilterplugin/list-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/list-add.png -------------------------------------------------------------------------------- /generic/messagefilterplugin/list-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/list-remove.png -------------------------------------------------------------------------------- /generic/messagefilterplugin/messagefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/messagefilter.cpp -------------------------------------------------------------------------------- /generic/messagefilterplugin/messagefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/messagefilter.h -------------------------------------------------------------------------------- /generic/messagefilterplugin/messagefilterplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/messagefilterplugin.png -------------------------------------------------------------------------------- /generic/messagefilterplugin/messagefilterplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/messagefilterplugin.pro -------------------------------------------------------------------------------- /generic/messagefilterplugin/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/options.cpp -------------------------------------------------------------------------------- /generic/messagefilterplugin/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/options.h -------------------------------------------------------------------------------- /generic/messagefilterplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/options.ui -------------------------------------------------------------------------------- /generic/messagefilterplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/messagefilterplugin/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/messagefilterplugin/resources.qrc -------------------------------------------------------------------------------- /generic/omemoplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/omemoplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/changelog.txt -------------------------------------------------------------------------------- /generic/omemoplugin/cmake/FindOMEMO_C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/cmake/FindOMEMO_C.cmake -------------------------------------------------------------------------------- /generic/omemoplugin/cmake/omemo_c.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/cmake/omemo_c.cmake -------------------------------------------------------------------------------- /generic/omemoplugin/omemoplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/omemoplugin.qrc -------------------------------------------------------------------------------- /generic/omemoplugin/resources/omemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/resources/omemo.png -------------------------------------------------------------------------------- /generic/omemoplugin/resources/omemo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/resources/omemo@2x.png -------------------------------------------------------------------------------- /generic/omemoplugin/src/configwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/configwidget.cpp -------------------------------------------------------------------------------- /generic/omemoplugin/src/configwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/configwidget.h -------------------------------------------------------------------------------- /generic/omemoplugin/src/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/crypto.cpp -------------------------------------------------------------------------------- /generic/omemoplugin/src/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/crypto.h -------------------------------------------------------------------------------- /generic/omemoplugin/src/crypto_ossl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/crypto_ossl.cpp -------------------------------------------------------------------------------- /generic/omemoplugin/src/crypto_ossl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/crypto_ossl.h -------------------------------------------------------------------------------- /generic/omemoplugin/src/crypto_qca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/crypto_qca.cpp -------------------------------------------------------------------------------- /generic/omemoplugin/src/omemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/omemo.cpp -------------------------------------------------------------------------------- /generic/omemoplugin/src/omemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/omemo.h -------------------------------------------------------------------------------- /generic/omemoplugin/src/omemoplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/omemoplugin.cpp -------------------------------------------------------------------------------- /generic/omemoplugin/src/omemoplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/omemoplugin.h -------------------------------------------------------------------------------- /generic/omemoplugin/src/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/psiplugin.json -------------------------------------------------------------------------------- /generic/omemoplugin/src/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/signal.cpp -------------------------------------------------------------------------------- /generic/omemoplugin/src/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/signal.h -------------------------------------------------------------------------------- /generic/omemoplugin/src/storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/storage.cpp -------------------------------------------------------------------------------- /generic/omemoplugin/src/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/omemoplugin/src/storage.h -------------------------------------------------------------------------------- /generic/openpgpplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/openpgpplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/changelog.txt -------------------------------------------------------------------------------- /generic/openpgpplugin/openpgpplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/openpgpplugin.pro -------------------------------------------------------------------------------- /generic/openpgpplugin/resources/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/resources/calendar.png -------------------------------------------------------------------------------- /generic/openpgpplugin/resources/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/resources/clean.png -------------------------------------------------------------------------------- /generic/openpgpplugin/resources/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/resources/key.png -------------------------------------------------------------------------------- /generic/openpgpplugin/resources/openpgp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/resources/openpgp.png -------------------------------------------------------------------------------- /generic/openpgpplugin/resources/openpgp__old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/resources/openpgp__old.png -------------------------------------------------------------------------------- /generic/openpgpplugin/resources/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/resources/resources.qrc -------------------------------------------------------------------------------- /generic/openpgpplugin/src/addkeydlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/addkeydlg.cpp -------------------------------------------------------------------------------- /generic/openpgpplugin/src/addkeydlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/addkeydlg.h -------------------------------------------------------------------------------- /generic/openpgpplugin/src/addkeydlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/addkeydlg.ui -------------------------------------------------------------------------------- /generic/openpgpplugin/src/datewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/datewidget.cpp -------------------------------------------------------------------------------- /generic/openpgpplugin/src/datewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/datewidget.h -------------------------------------------------------------------------------- /generic/openpgpplugin/src/gpgprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/gpgprocess.cpp -------------------------------------------------------------------------------- /generic/openpgpplugin/src/gpgprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/gpgprocess.h -------------------------------------------------------------------------------- /generic/openpgpplugin/src/gpgtransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/gpgtransaction.cpp -------------------------------------------------------------------------------- /generic/openpgpplugin/src/gpgtransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/gpgtransaction.h -------------------------------------------------------------------------------- /generic/openpgpplugin/src/lineeditwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/lineeditwidget.cpp -------------------------------------------------------------------------------- /generic/openpgpplugin/src/lineeditwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/lineeditwidget.h -------------------------------------------------------------------------------- /generic/openpgpplugin/src/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/model.cpp -------------------------------------------------------------------------------- /generic/openpgpplugin/src/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/model.h -------------------------------------------------------------------------------- /generic/openpgpplugin/src/openpgpmessaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/openpgpmessaging.cpp -------------------------------------------------------------------------------- /generic/openpgpplugin/src/openpgpmessaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/openpgpmessaging.h -------------------------------------------------------------------------------- /generic/openpgpplugin/src/openpgpplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/openpgpplugin.cpp -------------------------------------------------------------------------------- /generic/openpgpplugin/src/openpgpplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/openpgpplugin.h -------------------------------------------------------------------------------- /generic/openpgpplugin/src/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/options.cpp -------------------------------------------------------------------------------- /generic/openpgpplugin/src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/options.h -------------------------------------------------------------------------------- /generic/openpgpplugin/src/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/options.ui -------------------------------------------------------------------------------- /generic/openpgpplugin/src/pgpkey.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/pgpkey.ui -------------------------------------------------------------------------------- /generic/openpgpplugin/src/pgpkeydlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/pgpkeydlg.cpp -------------------------------------------------------------------------------- /generic/openpgpplugin/src/pgpkeydlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/pgpkeydlg.h -------------------------------------------------------------------------------- /generic/openpgpplugin/src/pgputil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/pgputil.cpp -------------------------------------------------------------------------------- /generic/openpgpplugin/src/pgputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/pgputil.h -------------------------------------------------------------------------------- /generic/openpgpplugin/src/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/psiplugin.json -------------------------------------------------------------------------------- /generic/openpgpplugin/src/showtextdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/showtextdlg.cpp -------------------------------------------------------------------------------- /generic/openpgpplugin/src/showtextdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/openpgpplugin/src/showtextdlg.h -------------------------------------------------------------------------------- /generic/otrplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/otrplugin/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/COPYING -------------------------------------------------------------------------------- /generic/otrplugin/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/INSTALL -------------------------------------------------------------------------------- /generic/otrplugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/README -------------------------------------------------------------------------------- /generic/otrplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/changelog.txt -------------------------------------------------------------------------------- /generic/otrplugin/cmake/FindLIBGCRYPT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/cmake/FindLIBGCRYPT.cmake -------------------------------------------------------------------------------- /generic/otrplugin/cmake/FindLIBGPGERROR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/cmake/FindLIBGPGERROR.cmake -------------------------------------------------------------------------------- /generic/otrplugin/cmake/FindLIBOTR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/cmake/FindLIBOTR.cmake -------------------------------------------------------------------------------- /generic/otrplugin/cmake/FindLIBTIDY.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/cmake/FindLIBTIDY.cmake -------------------------------------------------------------------------------- /generic/otrplugin/otrplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/otrplugin.pro -------------------------------------------------------------------------------- /generic/otrplugin/otrplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/otrplugin.qrc -------------------------------------------------------------------------------- /generic/otrplugin/resources/otr_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/resources/otr_no.png -------------------------------------------------------------------------------- /generic/otrplugin/resources/otr_unverified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/resources/otr_unverified.png -------------------------------------------------------------------------------- /generic/otrplugin/resources/otr_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/resources/otr_yes.png -------------------------------------------------------------------------------- /generic/otrplugin/src/htmltidy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/htmltidy.cpp -------------------------------------------------------------------------------- /generic/otrplugin/src/htmltidy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/htmltidy.h -------------------------------------------------------------------------------- /generic/otrplugin/src/otrinternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/otrinternal.cpp -------------------------------------------------------------------------------- /generic/otrplugin/src/otrinternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/otrinternal.h -------------------------------------------------------------------------------- /generic/otrplugin/src/otrlextensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/otrlextensions.c -------------------------------------------------------------------------------- /generic/otrplugin/src/otrlextensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/otrlextensions.h -------------------------------------------------------------------------------- /generic/otrplugin/src/otrmessaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/otrmessaging.cpp -------------------------------------------------------------------------------- /generic/otrplugin/src/otrmessaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/otrmessaging.h -------------------------------------------------------------------------------- /generic/otrplugin/src/psiotrclosure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/psiotrclosure.cpp -------------------------------------------------------------------------------- /generic/otrplugin/src/psiotrclosure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/psiotrclosure.h -------------------------------------------------------------------------------- /generic/otrplugin/src/psiotrconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/psiotrconfig.cpp -------------------------------------------------------------------------------- /generic/otrplugin/src/psiotrconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/psiotrconfig.h -------------------------------------------------------------------------------- /generic/otrplugin/src/psiotrplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/psiotrplugin.cpp -------------------------------------------------------------------------------- /generic/otrplugin/src/psiotrplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/psiotrplugin.h -------------------------------------------------------------------------------- /generic/otrplugin/src/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/otrplugin/src/psiplugin.json -------------------------------------------------------------------------------- /generic/pepchangenotifyplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/pepchangenotifyplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/pepchangenotifyplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/pepchangenotifyplugin/changelog.txt -------------------------------------------------------------------------------- /generic/pepchangenotifyplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/pepchangenotifyplugin/options.ui -------------------------------------------------------------------------------- /generic/pepchangenotifyplugin/pepchangenotifyplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/pepchangenotifyplugin/pepchangenotifyplugin.cpp -------------------------------------------------------------------------------- /generic/pepchangenotifyplugin/pepchangenotifyplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/pepchangenotifyplugin/pepchangenotifyplugin.png -------------------------------------------------------------------------------- /generic/pepchangenotifyplugin/pepchangenotifyplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/pepchangenotifyplugin/pepchangenotifyplugin.pro -------------------------------------------------------------------------------- /generic/pepchangenotifyplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/pepchangenotifyplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/qipxstatusesplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/qipxstatusesplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/qipxstatusesplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/qipxstatusesplugin/changelog.txt -------------------------------------------------------------------------------- /generic/qipxstatusesplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/qipxstatusesplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/qipxstatusesplugin/qipxstatusesplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/qipxstatusesplugin/qipxstatusesplugin.cpp -------------------------------------------------------------------------------- /generic/qipxstatusesplugin/qipxstatusesplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/qipxstatusesplugin/qipxstatusesplugin.png -------------------------------------------------------------------------------- /generic/qipxstatusesplugin/qipxstatusesplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/qipxstatusesplugin/qipxstatusesplugin.pro -------------------------------------------------------------------------------- /generic/skinsplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/skinsplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/changelog.txt -------------------------------------------------------------------------------- /generic/skinsplugin/defskin.skn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/defskin.skn -------------------------------------------------------------------------------- /generic/skinsplugin/getskinname.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/getskinname.ui -------------------------------------------------------------------------------- /generic/skinsplugin/optionsparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/optionsparser.cpp -------------------------------------------------------------------------------- /generic/skinsplugin/optionsparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/optionsparser.h -------------------------------------------------------------------------------- /generic/skinsplugin/previewer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/previewer.ui -------------------------------------------------------------------------------- /generic/skinsplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/skinsplugin/skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/skin.cpp -------------------------------------------------------------------------------- /generic/skinsplugin/skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/skin.h -------------------------------------------------------------------------------- /generic/skinsplugin/skins.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generic/skinsplugin/skinsplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/skinsplugin.cpp -------------------------------------------------------------------------------- /generic/skinsplugin/skinsplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/skinsplugin.pro -------------------------------------------------------------------------------- /generic/skinsplugin/skinsplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/skinsplugin.qrc -------------------------------------------------------------------------------- /generic/skinsplugin/skinsplugin.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/skinsplugin/skinsplugin.ui -------------------------------------------------------------------------------- /generic/stopspamplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/stopspamplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/changelog.txt -------------------------------------------------------------------------------- /generic/stopspamplugin/deferredstanzasender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/deferredstanzasender.cpp -------------------------------------------------------------------------------- /generic/stopspamplugin/deferredstanzasender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/deferredstanzasender.h -------------------------------------------------------------------------------- /generic/stopspamplugin/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/model.cpp -------------------------------------------------------------------------------- /generic/stopspamplugin/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/model.h -------------------------------------------------------------------------------- /generic/stopspamplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/options.ui -------------------------------------------------------------------------------- /generic/stopspamplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/stopspamplugin/stopspamplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/stopspamplugin.cpp -------------------------------------------------------------------------------- /generic/stopspamplugin/stopspamplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/stopspamplugin.png -------------------------------------------------------------------------------- /generic/stopspamplugin/stopspamplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/stopspamplugin.pro -------------------------------------------------------------------------------- /generic/stopspamplugin/typeaheadfind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/typeaheadfind.cpp -------------------------------------------------------------------------------- /generic/stopspamplugin/typeaheadfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/typeaheadfind.h -------------------------------------------------------------------------------- /generic/stopspamplugin/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/view.cpp -------------------------------------------------------------------------------- /generic/stopspamplugin/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/view.h -------------------------------------------------------------------------------- /generic/stopspamplugin/viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/viewer.cpp -------------------------------------------------------------------------------- /generic/stopspamplugin/viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/stopspamplugin/viewer.h -------------------------------------------------------------------------------- /generic/storagenotesplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/storagenotesplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/changelog.txt -------------------------------------------------------------------------------- /generic/storagenotesplugin/editnote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/editnote.cpp -------------------------------------------------------------------------------- /generic/storagenotesplugin/editnote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/editnote.h -------------------------------------------------------------------------------- /generic/storagenotesplugin/editnote.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/editnote.ui -------------------------------------------------------------------------------- /generic/storagenotesplugin/notes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/notes.cpp -------------------------------------------------------------------------------- /generic/storagenotesplugin/notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/notes.h -------------------------------------------------------------------------------- /generic/storagenotesplugin/notes.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/notes.ui -------------------------------------------------------------------------------- /generic/storagenotesplugin/notescontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/notescontroller.cpp -------------------------------------------------------------------------------- /generic/storagenotesplugin/notescontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/notescontroller.h -------------------------------------------------------------------------------- /generic/storagenotesplugin/notesviewdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/notesviewdelegate.cpp -------------------------------------------------------------------------------- /generic/storagenotesplugin/notesviewdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/notesviewdelegate.h -------------------------------------------------------------------------------- /generic/storagenotesplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/storagenotesplugin/storagenotesplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/storagenotesplugin.cpp -------------------------------------------------------------------------------- /generic/storagenotesplugin/storagenotesplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/storagenotesplugin.h -------------------------------------------------------------------------------- /generic/storagenotesplugin/storagenotesplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/storagenotesplugin.png -------------------------------------------------------------------------------- /generic/storagenotesplugin/storagenotesplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/storagenotesplugin.pro -------------------------------------------------------------------------------- /generic/storagenotesplugin/storagenotesplugin.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/storagenotesplugin.qrc -------------------------------------------------------------------------------- /generic/storagenotesplugin/tagsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/tagsmodel.cpp -------------------------------------------------------------------------------- /generic/storagenotesplugin/tagsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/storagenotesplugin/tagsmodel.h -------------------------------------------------------------------------------- /generic/translateplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/translateplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/translateplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/translateplugin/changelog.txt -------------------------------------------------------------------------------- /generic/translateplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/translateplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/translateplugin/translateplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/translateplugin/translateplugin.cpp -------------------------------------------------------------------------------- /generic/translateplugin/translateplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/translateplugin/translateplugin.png -------------------------------------------------------------------------------- /generic/translateplugin/translateplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/translateplugin/translateplugin.pro -------------------------------------------------------------------------------- /generic/videostatusplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/videostatusplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/videostatusplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/videostatusplugin/changelog.txt -------------------------------------------------------------------------------- /generic/videostatusplugin/cmake/FindXCB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/videostatusplugin/cmake/FindXCB.cmake -------------------------------------------------------------------------------- /generic/videostatusplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/videostatusplugin/options.ui -------------------------------------------------------------------------------- /generic/videostatusplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/videostatusplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/videostatusplugin/videostatusplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/videostatusplugin/videostatusplugin.cpp -------------------------------------------------------------------------------- /generic/videostatusplugin/videostatusplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/videostatusplugin/videostatusplugin.png -------------------------------------------------------------------------------- /generic/videostatusplugin/videostatusplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/videostatusplugin/videostatusplugin.pro -------------------------------------------------------------------------------- /generic/videostatusplugin/x11info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/videostatusplugin/x11info.cpp -------------------------------------------------------------------------------- /generic/videostatusplugin/x11info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/videostatusplugin/x11info.h -------------------------------------------------------------------------------- /generic/watcherplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/CMakeLists.txt -------------------------------------------------------------------------------- /generic/watcherplugin/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/changelog.txt -------------------------------------------------------------------------------- /generic/watcherplugin/delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/delegate.cpp -------------------------------------------------------------------------------- /generic/watcherplugin/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/delegate.h -------------------------------------------------------------------------------- /generic/watcherplugin/edititemdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/edititemdlg.cpp -------------------------------------------------------------------------------- /generic/watcherplugin/edititemdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/edititemdlg.h -------------------------------------------------------------------------------- /generic/watcherplugin/edititemdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/edititemdlg.ui -------------------------------------------------------------------------------- /generic/watcherplugin/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/model.cpp -------------------------------------------------------------------------------- /generic/watcherplugin/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/model.h -------------------------------------------------------------------------------- /generic/watcherplugin/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/options.ui -------------------------------------------------------------------------------- /generic/watcherplugin/psiplugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/psiplugin.json -------------------------------------------------------------------------------- /generic/watcherplugin/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/resources.qrc -------------------------------------------------------------------------------- /generic/watcherplugin/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/view.cpp -------------------------------------------------------------------------------- /generic/watcherplugin/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/view.h -------------------------------------------------------------------------------- /generic/watcherplugin/watcheditem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/watcheditem.cpp -------------------------------------------------------------------------------- /generic/watcherplugin/watcheditem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/watcheditem.h -------------------------------------------------------------------------------- /generic/watcherplugin/watcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/watcher.png -------------------------------------------------------------------------------- /generic/watcherplugin/watcher_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/watcher_on.png -------------------------------------------------------------------------------- /generic/watcherplugin/watcherplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/watcherplugin.cpp -------------------------------------------------------------------------------- /generic/watcherplugin/watcherplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/watcherplugin.png -------------------------------------------------------------------------------- /generic/watcherplugin/watcherplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/generic/watcherplugin/watcherplugin.pro -------------------------------------------------------------------------------- /tests/travis-ci/build-and-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/tests/travis-ci/build-and-test.sh -------------------------------------------------------------------------------- /tests/travis-ci/build-for-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/tests/travis-ci/build-for-windows.sh -------------------------------------------------------------------------------- /tests/travis-ci/build-in-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/tests/travis-ci/build-in-macos.sh -------------------------------------------------------------------------------- /tests/travis-ci/build-in-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/tests/travis-ci/build-in-ubuntu.sh -------------------------------------------------------------------------------- /tests/travis-ci/homebrew-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/tests/travis-ci/homebrew-toolchain.cmake -------------------------------------------------------------------------------- /tests/travis-ci/install-build-depends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/tests/travis-ci/install-build-depends.sh -------------------------------------------------------------------------------- /unix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-im/plugins/HEAD/unix/CMakeLists.txt --------------------------------------------------------------------------------