├── .clang-format ├── .github ├── psi-plus-config.nix └── workflows │ └── nix.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .qmake.cache.in ├── .qmake.conf ├── .travis.yml ├── 3rdparty ├── CMakeLists.txt ├── http-parser │ ├── .mailmap │ ├── .travis.yml │ ├── AUTHORS │ ├── LICENSE-MIT │ ├── Makefile │ ├── README.md │ ├── bench.c │ ├── contrib │ │ ├── parsertrace.c │ │ └── url_parser.c │ ├── fuzzers │ │ ├── fuzz_parser.c │ │ └── fuzz_url.c │ ├── http_parser.c │ ├── http_parser.gyp │ ├── http_parser.h │ └── test.c ├── qhttp.cmake ├── qhttp │ ├── LICENSE │ ├── README.md │ ├── commondir.pri │ ├── example │ │ ├── basic-server │ │ │ ├── README.md │ │ │ ├── basic-server.pro │ │ │ └── main.cpp │ │ ├── example.pro │ │ ├── helloworld │ │ │ ├── README.md │ │ │ ├── helloworld.pro │ │ │ └── main.cpp │ │ ├── include │ │ │ ├── ticktock.hxx │ │ │ └── unixcatcher.hpp │ │ ├── keep-alive │ │ │ ├── README.md │ │ │ ├── keep-alive.pro │ │ │ └── main.cpp │ │ └── postcollector │ │ │ ├── README.md │ │ │ ├── main.cpp │ │ │ └── postcollector.pro │ ├── qhttp.pro │ ├── qompoter.json │ ├── qompoter.pri │ ├── src │ │ ├── private │ │ │ ├── httpparser.hxx │ │ │ ├── httpreader.hxx │ │ │ ├── httpwriter.hxx │ │ │ ├── qhttpbase.hpp │ │ │ ├── qhttpclient_private.hpp │ │ │ ├── qhttpclientrequest_private.hpp │ │ │ ├── qhttpclientresponse_private.hpp │ │ │ ├── qhttpserver_private.hpp │ │ │ ├── qhttpserverconnection_private.hpp │ │ │ ├── qhttpserverrequest_private.hpp │ │ │ ├── qhttpserverresponse_private.hpp │ │ │ └── qsocket.hpp │ │ ├── qhttpabstracts.cpp │ │ ├── qhttpabstracts.hpp │ │ ├── qhttpclient.cpp │ │ ├── qhttpclient.hpp │ │ ├── qhttpclientrequest.cpp │ │ ├── qhttpclientrequest.hpp │ │ ├── qhttpclientresponse.cpp │ │ ├── qhttpclientresponse.hpp │ │ ├── qhttpfwd.hpp │ │ ├── qhttpserver.cpp │ │ ├── qhttpserver.hpp │ │ ├── qhttpserverconnection.cpp │ │ ├── qhttpserverconnection.hpp │ │ ├── qhttpserverrequest.cpp │ │ ├── qhttpserverrequest.hpp │ │ ├── qhttpserverresponse.cpp │ │ ├── qhttpserverresponse.hpp │ │ └── src.pro │ └── utils.sh └── qite │ ├── .clang-format │ ├── .pre-commit-config.yaml │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── libqite │ ├── CMakeLists.txt │ ├── libqite.cmake │ ├── libqite.pri │ ├── libqite.pro │ ├── qite.cpp │ ├── qite.h │ ├── qiteaudio.cpp │ ├── qiteaudio.h │ ├── qiteaudiorecorder.cpp │ ├── qiteaudiorecorder.h │ ├── qiteprogress.cpp │ └── qiteprogress.h │ ├── main.cpp │ ├── main.qrc │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── qite.pro │ └── recorder-microphone.png ├── CHANGELOG ├── CMakeLists.txt ├── COPYING ├── INSTALL.md ├── README ├── README.html ├── Readme-cmake-ru.md ├── Readme-cmake.md ├── Readme-dev-cmake-en.txt ├── Readme-dev-cmake-ru.txt ├── TODO ├── admin ├── apply_version.sh ├── build │ ├── Makefile │ ├── README │ ├── build_package.sh │ ├── devconfig.sh │ ├── gstbundle_gstplugins_mac │ ├── gstbundle_gstplugins_win │ ├── gstbundle_libs_mac │ ├── gstbundle_libs_win │ ├── pack_dmg.sh │ ├── package_info │ └── prep_dist.sh ├── bundle_qca.sh ├── emoji.py ├── fetch.sh ├── git_revnumber.sh ├── iccfix.sh ├── merge_release_to_master.sh ├── prune.sh ├── psi-plus-nightly-version ├── psibuild_mac.sh ├── update_iconsets.sh └── update_options_ts.py ├── certs └── README ├── client_icons.txt ├── cmake └── modules │ ├── COPYING-CMAKE-SCRIPTS │ ├── FindEnchant.cmake │ ├── FindHttpParser.cmake │ ├── FindHunspell.cmake │ ├── FindMINIZIP.cmake │ ├── FindPsiPluginsApi.cmake │ ├── FindQca.cmake │ ├── FindSparkle.cmake │ ├── FindXCB.cmake │ ├── fix-codestyle.cmake │ ├── generate_desktopfile.cmake │ ├── get-version.cmake │ ├── policyRules.cmake │ ├── psi-cmake-functions.cmake │ ├── qtkeychain-bundled.cmake │ ├── win32-prepare-deps.cmake │ └── win32_definitions.cmake ├── default.nix ├── doc ├── Doxyfile.private ├── Doxyfile.public ├── Makefile ├── doxygen.css ├── doxygen.footer.html └── doxygen.header.html ├── generate-single-repo.sh ├── icondef.xml.in ├── iconsets.qrc.in ├── iconsets ├── activities │ └── default │ │ ├── doing_chores.png │ │ ├── doing_chores_buying_groceries.png │ │ ├── doing_chores_cleaning.png │ │ ├── doing_chores_cooking.png │ │ ├── doing_chores_doing_maintenance.png │ │ ├── doing_chores_doing_the_dishes.png │ │ ├── doing_chores_doing_the_laundry.png │ │ ├── doing_chores_gardening.png │ │ ├── doing_chores_running_an_errand.png │ │ ├── doing_chores_walking_the_dog.png │ │ ├── drinking.png │ │ ├── drinking_having_a_beer.png │ │ ├── drinking_having_coffee.png │ │ ├── drinking_having_tea.png │ │ ├── eating.png │ │ ├── eating_having_a_snack.png │ │ ├── eating_having_breakfast.png │ │ ├── eating_having_dinner.png │ │ ├── eating_having_lunch.png │ │ ├── exercising.png │ │ ├── exercising_cycling.png │ │ ├── exercising_dancing.png │ │ ├── exercising_hiking.png │ │ ├── exercising_jogging.png │ │ ├── exercising_playing_sports.png │ │ ├── exercising_running.png │ │ ├── exercising_skiing.png │ │ ├── exercising_swimming.png │ │ ├── exercising_working_out.png │ │ ├── grooming.png │ │ ├── grooming_at_the_spa.png │ │ ├── grooming_brushing_teeth.png │ │ ├── grooming_getting_a_haircut.png │ │ ├── grooming_shaving.png │ │ ├── grooming_taking_a_bath.png │ │ ├── grooming_taking_a_shower.png │ │ ├── having_appointment.png │ │ ├── icondef.xml │ │ ├── inactive.png │ │ ├── inactive_day_off.png │ │ ├── inactive_hanging_out.png │ │ ├── inactive_hiding.png │ │ ├── inactive_on_vacation.png │ │ ├── inactive_praying.png │ │ ├── inactive_scheduled_holiday.png │ │ ├── inactive_sleeping.png │ │ ├── inactive_thinking.png │ │ ├── relaxing.png │ │ ├── relaxing_fishing.png │ │ ├── relaxing_gaming.png │ │ ├── relaxing_going_out.png │ │ ├── relaxing_partying.png │ │ ├── relaxing_reading.png │ │ ├── relaxing_rehearsing.png │ │ ├── relaxing_shopping.png │ │ ├── relaxing_smoking.png │ │ ├── relaxing_socializing.png │ │ ├── relaxing_sunbathing.png │ │ ├── relaxing_watching_a_movie.png │ │ ├── relaxing_watching_tv.png │ │ ├── talking.png │ │ ├── talking_in_real_life.png │ │ ├── talking_on_the_phone.png │ │ ├── talking_on_video_phone.png │ │ ├── traveling.png │ │ ├── traveling_commuting.png │ │ ├── traveling_cycling.png │ │ ├── traveling_driving.png │ │ ├── traveling_in_a_car.png │ │ ├── traveling_on_a_bus.png │ │ ├── traveling_on_a_plane.png │ │ ├── traveling_on_a_train.png │ │ ├── traveling_on_a_trip.png │ │ ├── traveling_walking.png │ │ ├── unknown.png │ │ ├── working_coding.png │ │ ├── working_in_a_meeting.png │ │ ├── working_studying.png │ │ ├── working_working.png │ │ └── working_writing.png ├── affiliations │ └── default │ │ ├── admin.png │ │ ├── icondef.xml │ │ ├── member.png │ │ ├── noaffiliation.png │ │ ├── outcast.png │ │ └── owner.png ├── clients │ └── default │ │ ├── .directory │ │ ├── README.md │ │ ├── adium.png │ │ ├── bitlbee.png │ │ ├── bot.png │ │ ├── cheogram.png │ │ ├── conv6ations.png │ │ ├── conversations.png │ │ ├── dino.png │ │ ├── gajim.png │ │ ├── icondef.xml │ │ ├── isida-bot.png │ │ ├── jtalk.png │ │ ├── kopete.png │ │ ├── leechcraft-azoth.png │ │ ├── mcabber.png │ │ ├── miranda-ng.png │ │ ├── miranda.png │ │ ├── monocles.png │ │ ├── movim.png │ │ ├── pidgin.png │ │ ├── pix-art.png │ │ ├── poezio.png │ │ ├── profanity.png │ │ ├── psi.png │ │ ├── qip.png │ │ ├── qutim.png │ │ ├── spark.png │ │ ├── swift.png │ │ ├── tkabber.png │ │ ├── vacuum.png │ │ ├── vk4xmpp.png │ │ ├── xabber.png │ │ └── yaxim.png ├── emoticons │ └── default │ │ ├── angry.png │ │ ├── beer.png │ │ ├── broken-heart.png │ │ ├── coffee.png │ │ ├── country-by.png │ │ ├── country-kz.png │ │ ├── country-ru.png │ │ ├── country-ua.png │ │ ├── cry.png │ │ ├── fingerdown.png │ │ ├── fingerleft.png │ │ ├── fingerright.png │ │ ├── fingerup.png │ │ ├── fire.png │ │ ├── flower.png │ │ ├── frow.png │ │ ├── grinning.png │ │ ├── heart.png │ │ ├── hi.png │ │ ├── icondef.xml │ │ ├── joy.png │ │ ├── kiss.png │ │ ├── music.png │ │ ├── neutral.png │ │ ├── no.png │ │ ├── phone.png │ │ ├── police.png │ │ ├── signofthehorns.png │ │ ├── smile.png │ │ ├── star.png │ │ ├── sun.png │ │ ├── thinking.png │ │ ├── tongue.png │ │ ├── unhappy.png │ │ ├── victory.png │ │ ├── wink.png │ │ └── yes.png ├── moods │ └── default │ │ ├── Afraid.png │ │ ├── Amazed.png │ │ ├── Amorous.png │ │ ├── Angry.png │ │ ├── Annoyed.png │ │ ├── Anxious.png │ │ ├── Aroused.png │ │ ├── Ashamed.png │ │ ├── Bored.png │ │ ├── Brave.png │ │ ├── Calm.png │ │ ├── Cautious.png │ │ ├── Cold.png │ │ ├── Confident.png │ │ ├── Confused.png │ │ ├── Contemplative.png │ │ ├── Contented.png │ │ ├── Cranky.png │ │ ├── Crazy.png │ │ ├── Creative.png │ │ ├── Curious.png │ │ ├── Dejected.png │ │ ├── Depressed.png │ │ ├── Disappointed.png │ │ ├── Disgusted.png │ │ ├── Dismayed.png │ │ ├── Distracted.png │ │ ├── Embarrassed.png │ │ ├── Envious.png │ │ ├── Excited.png │ │ ├── Flirtatious.png │ │ ├── Frustrated.png │ │ ├── Grumpy.png │ │ ├── Guilty.png │ │ ├── Happy.png │ │ ├── Hopeful.png │ │ ├── Hot.png │ │ ├── Humbled.png │ │ ├── Humiliated.png │ │ ├── Hungry.png │ │ ├── Hurt.png │ │ ├── Impressed.png │ │ ├── In_awe.png │ │ ├── In_love.png │ │ ├── Indignant.png │ │ ├── Interested.png │ │ ├── Intoxicated.png │ │ ├── Invincible.png │ │ ├── Jealous.png │ │ ├── Lonely.png │ │ ├── Lucky.png │ │ ├── Mean.png │ │ ├── Moody.png │ │ ├── Nervous.png │ │ ├── Neutral.png │ │ ├── Offended.png │ │ ├── Outraged.png │ │ ├── Playful.png │ │ ├── Proud.png │ │ ├── Readme.txt │ │ ├── Relaxed.png │ │ ├── Relieved.png │ │ ├── Remorseful.png │ │ ├── Restless.png │ │ ├── Sad.png │ │ ├── Sarcastic.png │ │ ├── Serious.png │ │ ├── Shocked.png │ │ ├── Shy.png │ │ ├── Sick.png │ │ ├── Sleepy.png │ │ ├── Spontaneous.png │ │ ├── Stressed.png │ │ ├── Strong.png │ │ ├── Surprised.png │ │ ├── Thankful.png │ │ ├── Thirsty.png │ │ ├── Tired.png │ │ ├── Undefined.png │ │ ├── Weak.png │ │ ├── Worried.png │ │ └── icondef.xml ├── roster │ ├── README │ ├── crystal-gadu.jisp │ ├── crystal-roster.jisp │ ├── crystal-service.jisp │ ├── crystal-sms.jisp │ ├── default │ │ ├── ask.png │ │ ├── away.png │ │ ├── call.png │ │ ├── chat.fading.png │ │ ├── chatty.png │ │ ├── dnd.png │ │ ├── file.fading.png │ │ ├── groupclose.png │ │ ├── groupopen.png │ │ ├── headline.png │ │ ├── icondef.xml │ │ ├── invisible.png │ │ ├── message.fading.png │ │ ├── noauth.png │ │ ├── offline.png │ │ ├── online-christmas.png │ │ ├── online.dimming.png │ │ ├── online.png │ │ ├── perr.png │ │ ├── system.png │ │ ├── typing.png │ │ └── xa.png │ └── stellar-1.jisp └── system │ ├── README │ └── default │ ├── account.png │ ├── action_button_send.png │ ├── action_contacts_manager.png │ ├── action_direct_presence.png │ ├── action_muc_hide.png │ ├── action_muc_leave.png │ ├── action_muc_show.png │ ├── action_paste_and_send.png │ ├── action_templates.png │ ├── action_templates_edit.png │ ├── activity.png │ ├── add.png │ ├── addx.png │ ├── advanced-plus.png │ ├── advanced.png │ ├── appearance.png │ ├── arrow_down.png │ ├── arrow_left.png │ ├── arrow_right.png │ ├── arrow_up.png │ ├── autojid.png │ ├── avcall.png │ ├── bookmark_add.png │ ├── bookmark_remove.png │ ├── bookmarks.png │ ├── browse.png │ ├── cancel.png │ ├── changeacc.png │ ├── chatclear.png │ ├── close.png │ ├── closetab.png │ ├── cm_check.png │ ├── cm_export.png │ ├── cm_import.png │ ├── cm_invertcheck.png │ ├── cm_uncheck.png │ ├── command.png │ ├── configure-room.png │ ├── configure_toolbars.png │ ├── crop.png │ ├── default_avatar.png │ ├── disco.png │ ├── download.png │ ├── draw.png │ ├── enable-groups.png │ ├── events.png │ ├── export.png │ ├── eye_blue.png │ ├── filemanager.png │ ├── frame.png │ ├── geolocation.png │ ├── groupchat.png │ ├── gstreamer-logo-50.png │ ├── help.png │ ├── history.png │ ├── icondef.xml │ ├── ignore_global_actions.png │ ├── import.png │ ├── info.png │ ├── jabber.png │ ├── key.png │ ├── key_bad.png │ ├── key_unknown.png │ ├── keys_64.png │ ├── logo_128.png │ ├── logo_16.png │ ├── logo_32.png │ ├── logo_48.png │ ├── logo_64.png │ ├── manage_contact.png │ ├── mic.png │ ├── mic_rec.png │ ├── mood.png │ ├── notification_chat_delivery_ok.png │ ├── notification_chat_delivery_ok_encrypted.png │ ├── notification_chat_info.png │ ├── notification_chat_receive.png │ ├── notification_chat_receive_encrypted.png │ ├── notification_chat_send.png │ ├── notification_chat_send_encrypted.png │ ├── notification_chat_time.png │ ├── ok.png │ ├── options.png │ ├── palette.png │ ├── pgp.png │ ├── pin.png │ ├── play.png │ ├── play_sounds.png │ ├── plugins.png │ ├── print.png │ ├── psilogo.png │ ├── psimain.png │ ├── psiplus │ ├── action_vcard_restore.png │ ├── action_vcard_save_as.png │ ├── doublebackarrow.png │ ├── doublenextarrow.png │ ├── logo_128.png │ ├── logo_16.png │ ├── logo_32.png │ ├── logo_48.png │ ├── logo_64.png │ ├── psilogo.png │ ├── psiplus_icon.png │ └── psiplus_logo.png │ ├── publish_tune.png │ ├── quit.png │ ├── register.png │ ├── reload.png │ ├── remove.png │ ├── roster_icon.png │ ├── search.png │ ├── self.png │ ├── send.png │ ├── share_file.png │ ├── shortcuts.png │ ├── show_away.png │ ├── show_hidden.png │ ├── show_offline.png │ ├── smile.png │ ├── ssl_no.png │ ├── ssl_yes.png │ ├── start-chat.png │ ├── status.png │ ├── stop.png │ ├── text.png │ ├── throbber.png │ ├── time.png │ ├── topic.svg │ ├── tune.png │ ├── undo.png │ ├── upload.png │ ├── url.png │ ├── vcard.png │ ├── whiteboarding │ ├── add_image.png │ ├── add_text.png │ ├── bring_forwards.png │ ├── bring_to_front.png │ ├── draw_circles.png │ ├── draw_ellipses.png │ ├── draw_lines.png │ ├── draw_paths.png │ ├── draw_rectangles.png │ ├── erase.png │ ├── group.png │ ├── rotate.png │ ├── save.png │ ├── scale.png │ ├── scroll.png │ ├── select.png │ ├── send_backwards.png │ ├── send_to_back.png │ ├── translate.png │ ├── ungroup.png │ └── whiteboard.png │ ├── xml.png │ └── xmpp.svg ├── iris ├── .clang-format ├── .pre-commit-config.yaml ├── 3rdparty │ └── stringprep │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── README.md │ │ ├── gen-stringprep-tables.pl │ │ ├── profiles.cpp │ │ ├── qstringprep.h │ │ ├── rfc3454.cpp │ │ ├── rfc3454.h │ │ ├── rfc3454.txt │ │ └── stringprep.cpp ├── CMakeLists.txt ├── COPYING ├── IrisConfig.cmake.in ├── IrisConfigVersion.cmake.in ├── README.md ├── TODO ├── cmake │ └── modules │ │ ├── COPYING-CMAKE-SCRIPTS │ │ ├── FindB2.cmake │ │ ├── FindQJDns.cmake │ │ ├── FindQca.cmake │ │ ├── FindUsrSCTP.cmake │ │ ├── IrisQCA.cmake │ │ ├── IrisSCTP.cmake │ │ ├── debug-definitions.cmake │ │ ├── fix-codestyle.cmake │ │ ├── policyRules.cmake │ │ └── usrsctp.patch ├── cmake_uninstall.cmake.in ├── include │ └── iris │ │ ├── addressresolver.h │ │ ├── bsocket.h │ │ ├── bytestream.h │ │ ├── dtls.h │ │ ├── filetransfer.h │ │ ├── httpconnect.h │ │ ├── httpfileupload.h │ │ ├── httppoll.h │ │ ├── ice176.h │ │ ├── iceabstractstundisco.h │ │ ├── iceagent.h │ │ ├── im.h │ │ ├── irisnetexport.h │ │ ├── irisnetglobal.h │ │ ├── irisnetplugin.h │ │ ├── jingle-application.h │ │ ├── jingle-ft.h │ │ ├── jingle-ice.h │ │ ├── jingle-nstransportslist.h │ │ ├── jingle-s5b.h │ │ ├── jingle-session.h │ │ ├── jingle-transport.h │ │ ├── jingle.h │ │ ├── ndns.h │ │ ├── netavailability.h │ │ ├── netinterface.h │ │ ├── netnames.h │ │ ├── objectsession.h │ │ ├── processquit.h │ │ ├── s5b.h │ │ ├── socks.h │ │ ├── srvresolver.h │ │ ├── stunallocate.h │ │ ├── stunbinding.h │ │ ├── stunmessage.h │ │ ├── stuntransaction.h │ │ ├── tcpportreserver.h │ │ ├── turnclient.h │ │ ├── udpportreserver.h │ │ ├── xmpp.h │ │ ├── xmpp_address.h │ │ ├── xmpp_agentitem.h │ │ ├── xmpp_bitsofbinary.h │ │ ├── xmpp_bytestream.h │ │ ├── xmpp_caps.h │ │ ├── xmpp_captcha.h │ │ ├── xmpp_carbons.h │ │ ├── xmpp_chatstate.h │ │ ├── xmpp_client.h │ │ ├── xmpp_clientstream.h │ │ ├── xmpp_discoinfotask.h │ │ ├── xmpp_discoitem.h │ │ ├── xmpp_encryption.h │ │ ├── xmpp_encryptionhandler.h │ │ ├── xmpp_features.h │ │ ├── xmpp_form.h │ │ ├── xmpp_forwarding.h │ │ ├── xmpp_hash.h │ │ ├── xmpp_htmlelement.h │ │ ├── xmpp_httpauthrequest.h │ │ ├── xmpp_jid.h │ │ ├── xmpp_liveroster.h │ │ ├── xmpp_liverosteritem.h │ │ ├── xmpp_mammanager.h │ │ ├── xmpp_mamtask.h │ │ ├── xmpp_message.h │ │ ├── xmpp_muc.h │ │ ├── xmpp_pubsubitem.h │ │ ├── xmpp_pubsubretraction.h │ │ ├── xmpp_reference.h │ │ ├── xmpp_resource.h │ │ ├── xmpp_resourcelist.h │ │ ├── xmpp_roster.h │ │ ├── xmpp_rosteritem.h │ │ ├── xmpp_rosterx.h │ │ ├── xmpp_serverinfomanager.h │ │ ├── xmpp_stanza.h │ │ ├── xmpp_status.h │ │ ├── xmpp_stream.h │ │ ├── xmpp_subsets.h │ │ ├── xmpp_task.h │ │ ├── xmpp_tasks.h │ │ ├── xmpp_thumbs.h │ │ ├── xmpp_url.h │ │ ├── xmpp_vcard.h │ │ ├── xmpp_vcard4.h │ │ ├── xmpp_xdata.h │ │ └── xmpp_xmlcommon.h ├── iris.pc.in ├── src │ ├── irisnet │ │ ├── CMakeLists.txt │ │ ├── appledns │ │ │ ├── appledns.cpp │ │ │ ├── qdnssd.cpp │ │ │ ├── qdnssd.h │ │ │ └── sdtest.cpp │ │ ├── corelib │ │ │ ├── addressresolver.cpp │ │ │ ├── addressresolver.h │ │ │ ├── irisnetexport.h │ │ │ ├── irisnetglobal.cpp │ │ │ ├── irisnetglobal.h │ │ │ ├── irisnetglobal_p.h │ │ │ ├── irisnetplugin.cpp │ │ │ ├── irisnetplugin.h │ │ │ ├── netavailability.cpp │ │ │ ├── netavailability.h │ │ │ ├── netinterface.cpp │ │ │ ├── netinterface.h │ │ │ ├── netinterface_qtname.cpp │ │ │ ├── netinterface_qtnet.cpp │ │ │ ├── netinterface_unix.cpp │ │ │ ├── netnames.cpp │ │ │ ├── netnames.h │ │ │ ├── netnames_jdns.cpp │ │ │ ├── objectsession.cpp │ │ │ └── objectsession.h │ │ └── noncore │ │ │ ├── cutestuff │ │ │ ├── bsocket.cpp │ │ │ ├── bsocket.h │ │ │ ├── bytestream.cpp │ │ │ ├── bytestream.h │ │ │ ├── httpconnect.cpp │ │ │ ├── httpconnect.h │ │ │ ├── httppoll.cpp │ │ │ ├── httppoll.h │ │ │ ├── socks.cpp │ │ │ └── socks.h │ │ │ ├── dtls.cpp │ │ │ ├── dtls.h │ │ │ ├── ice176.cpp │ │ │ ├── ice176.h │ │ │ ├── iceabstractstundisco.h │ │ │ ├── iceagent.cpp │ │ │ ├── iceagent.h │ │ │ ├── icecomponent.cpp │ │ │ ├── icecomponent.h │ │ │ ├── icelocaltransport.cpp │ │ │ ├── icelocaltransport.h │ │ │ ├── icetransport.cpp │ │ │ ├── icetransport.h │ │ │ ├── iceturntransport.cpp │ │ │ ├── iceturntransport.h │ │ │ ├── legacy │ │ │ ├── ndns.cpp │ │ │ ├── ndns.h │ │ │ ├── srvresolver.cpp │ │ │ └── srvresolver.h │ │ │ ├── processquit.cpp │ │ │ ├── processquit.h │ │ │ ├── sctp │ │ │ ├── DepUsrSCTP.cpp │ │ │ ├── DepUsrSCTP.hpp │ │ │ ├── LICENSE │ │ │ ├── Logger.hpp │ │ │ ├── MediaSoupErrors.hpp │ │ │ ├── README.md │ │ │ ├── RTC │ │ │ │ ├── DataConsumer.hpp │ │ │ │ ├── DataProducer.hpp │ │ │ │ └── SctpParameters.hpp │ │ │ ├── SctpAssociation.cpp │ │ │ └── SctpAssociation.hpp │ │ │ ├── stunallocate.cpp │ │ │ ├── stunallocate.h │ │ │ ├── stunbinding.cpp │ │ │ ├── stunbinding.h │ │ │ ├── stunmessage.cpp │ │ │ ├── stunmessage.h │ │ │ ├── stuntransaction.cpp │ │ │ ├── stuntransaction.h │ │ │ ├── stuntypes.cpp │ │ │ ├── stuntypes.h │ │ │ ├── stunutil.cpp │ │ │ ├── stunutil.h │ │ │ ├── tcpportreserver.cpp │ │ │ ├── tcpportreserver.h │ │ │ ├── transportaddress.h │ │ │ ├── turnclient.cpp │ │ │ ├── turnclient.h │ │ │ ├── udpportreserver.cpp │ │ │ └── udpportreserver.h │ ├── jdns.cmake │ ├── jdns │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── JDnsConfig.cmake.in │ │ ├── JDnsConfigVersion.cmake.in │ │ ├── QJDnsConfig.cmake.in │ │ ├── QJDnsConfigVersion.cmake.in │ │ ├── README.md │ │ ├── TODO │ │ ├── cmake_uninstall.cmake.in │ │ ├── include │ │ │ └── jdns │ │ │ │ ├── jdns.h │ │ │ │ ├── jdns_export.h │ │ │ │ ├── qjdns.h │ │ │ │ └── qjdnsshared.h │ │ ├── jdns.pc.in │ │ ├── jdns.pri │ │ ├── package.sh │ │ ├── qjdns.pc.in │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── jdns │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── jdns.c │ │ │ │ ├── jdns_mdnsd.c │ │ │ │ ├── jdns_mdnsd.h │ │ │ │ ├── jdns_p.h │ │ │ │ ├── jdns_packet.c │ │ │ │ ├── jdns_packet.h │ │ │ │ ├── jdns_sys.c │ │ │ │ └── jdns_util.c │ │ │ └── qjdns │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── qjdns.cpp │ │ │ │ ├── qjdns_p.h │ │ │ │ ├── qjdns_sock.cpp │ │ │ │ ├── qjdns_sock.h │ │ │ │ ├── qjdnsshared.cpp │ │ │ │ └── qjdnsshared_p.h │ │ └── tools │ │ │ └── jdns │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ └── main.h │ └── xmpp │ │ ├── CMakeLists.txt │ │ ├── base │ │ ├── timezone.cpp │ │ └── timezone.h │ │ ├── blake2 │ │ ├── README.md │ │ ├── blake2-impl.h │ │ ├── blake2.h │ │ ├── blake2b-ref.c │ │ ├── blake2qt.cpp │ │ ├── blake2qt.h │ │ └── blake2s-ref.c │ │ ├── jid │ │ ├── jid.cpp │ │ ├── jid.h │ │ └── unittest │ │ │ └── jidtest.cpp │ │ ├── qa │ │ ├── README │ │ ├── qttestutil │ │ │ ├── example │ │ │ │ ├── myfirstclasstest.cpp │ │ │ │ └── mysecondclasstest.cpp │ │ │ ├── qttestutil.h │ │ │ ├── simplechecker.cpp │ │ │ ├── testregistration.h │ │ │ ├── testregistry.cpp │ │ │ └── testregistry.h │ │ └── unittest.template │ │ │ └── myclasstest.cpp │ │ ├── sasl │ │ ├── digestmd5proplist.cpp │ │ ├── digestmd5proplist.h │ │ ├── digestmd5response.cpp │ │ ├── digestmd5response.h │ │ ├── plainmessage.cpp │ │ ├── plainmessage.h │ │ ├── scramsha1message.cpp │ │ ├── scramsha1message.h │ │ ├── scramsha1response.cpp │ │ ├── scramsha1response.h │ │ ├── scramsha1signature.cpp │ │ ├── scramsha1signature.h │ │ └── unittest │ │ │ ├── digestmd5responsetest.cpp │ │ │ ├── plainmessagetest.cpp │ │ │ ├── scramsha1messagetest.cpp │ │ │ └── scramsha1responsetest.cpp │ │ ├── xmpp-core │ │ ├── compressionhandler.cpp │ │ ├── compressionhandler.h │ │ ├── connector.cpp │ │ ├── parser.cpp │ │ ├── parser.h │ │ ├── protocol.cpp │ │ ├── protocol.h │ │ ├── securestream.cpp │ │ ├── securestream.h │ │ ├── simplesasl.cpp │ │ ├── simplesasl.h │ │ ├── sm.cpp │ │ ├── sm.h │ │ ├── stream.cpp │ │ ├── td.h │ │ ├── tlshandler.cpp │ │ ├── xmlprotocol.cpp │ │ ├── xmlprotocol.h │ │ ├── xmpp.h │ │ ├── xmpp_clientstream.h │ │ ├── xmpp_stanza.cpp │ │ ├── xmpp_stanza.h │ │ └── xmpp_stream.h │ │ ├── xmpp-im │ │ ├── client.cpp │ │ ├── filetransfer.cpp │ │ ├── filetransfer.h │ │ ├── httpfileupload.cpp │ │ ├── httpfileupload.h │ │ ├── im.h │ │ ├── jingle-application.cpp │ │ ├── jingle-application.h │ │ ├── jingle-connection.cpp │ │ ├── jingle-connection.h │ │ ├── jingle-file.cpp │ │ ├── jingle-file.h │ │ ├── jingle-ft.cpp │ │ ├── jingle-ft.h │ │ ├── jingle-ibb.cpp │ │ ├── jingle-ibb.h │ │ ├── jingle-ice.cpp │ │ ├── jingle-ice.h │ │ ├── jingle-nstransportslist.cpp │ │ ├── jingle-nstransportslist.h │ │ ├── jingle-s5b.cpp │ │ ├── jingle-s5b.h │ │ ├── jingle-sctp-association_p.cpp │ │ ├── jingle-sctp-association_p.h │ │ ├── jingle-sctp.cpp │ │ ├── jingle-sctp.h │ │ ├── jingle-session.cpp │ │ ├── jingle-session.h │ │ ├── jingle-transport.cpp │ │ ├── jingle-transport.h │ │ ├── jingle-webrtc-datachannel_p.cpp │ │ ├── jingle-webrtc-datachannel_p.h │ │ ├── jingle.cpp │ │ ├── jingle.h │ │ ├── s5b.cpp │ │ ├── s5b.h │ │ ├── stundisco.cpp │ │ ├── stundisco.h │ │ ├── types.cpp │ │ ├── xmpp_address.h │ │ ├── xmpp_agentitem.h │ │ ├── xmpp_bitsofbinary.cpp │ │ ├── xmpp_bitsofbinary.h │ │ ├── xmpp_bytestream.cpp │ │ ├── xmpp_bytestream.h │ │ ├── xmpp_caps.cpp │ │ ├── xmpp_caps.h │ │ ├── xmpp_captcha.h │ │ ├── xmpp_carbons.cpp │ │ ├── xmpp_carbons.h │ │ ├── xmpp_chatstate.h │ │ ├── xmpp_client.h │ │ ├── xmpp_discoinfotask.cpp │ │ ├── xmpp_discoinfotask.h │ │ ├── xmpp_discoitem.cpp │ │ ├── xmpp_discoitem.h │ │ ├── xmpp_encryption.cpp │ │ ├── xmpp_encryption.h │ │ ├── xmpp_encryptionhandler.h │ │ ├── xmpp_externalservicediscovery.cpp │ │ ├── xmpp_externalservicediscovery.h │ │ ├── xmpp_features.cpp │ │ ├── xmpp_features.h │ │ ├── xmpp_form.h │ │ ├── xmpp_forwarding.cpp │ │ ├── xmpp_forwarding.h │ │ ├── xmpp_hash.cpp │ │ ├── xmpp_hash.h │ │ ├── xmpp_htmlelement.h │ │ ├── xmpp_httpauthrequest.h │ │ ├── xmpp_ibb.cpp │ │ ├── xmpp_ibb.h │ │ ├── xmpp_liveroster.h │ │ ├── xmpp_liverosteritem.h │ │ ├── xmpp_mammanager.cpp │ │ ├── xmpp_mammanager.h │ │ ├── xmpp_mamtask.cpp │ │ ├── xmpp_mamtask.h │ │ ├── xmpp_message.h │ │ ├── xmpp_muc.h │ │ ├── xmpp_pubsubitem.h │ │ ├── xmpp_pubsubretraction.h │ │ ├── xmpp_receipts.h │ │ ├── xmpp_reference.cpp │ │ ├── xmpp_reference.h │ │ ├── xmpp_resource.h │ │ ├── xmpp_resourcelist.h │ │ ├── xmpp_roster.h │ │ ├── xmpp_rosteritem.h │ │ ├── xmpp_rosterx.h │ │ ├── xmpp_serverinfomanager.cpp │ │ ├── xmpp_serverinfomanager.h │ │ ├── xmpp_status.h │ │ ├── xmpp_subsets.cpp │ │ ├── xmpp_subsets.h │ │ ├── xmpp_task.cpp │ │ ├── xmpp_task.h │ │ ├── xmpp_tasks.cpp │ │ ├── xmpp_tasks.h │ │ ├── xmpp_thumbs.h │ │ ├── xmpp_url.h │ │ ├── xmpp_vcard.cpp │ │ ├── xmpp_vcard.h │ │ ├── xmpp_vcard4.cpp │ │ ├── xmpp_vcard4.h │ │ ├── xmpp_xdata.cpp │ │ ├── xmpp_xdata.h │ │ ├── xmpp_xmlcommon.cpp │ │ └── xmpp_xmlcommon.h │ │ └── zlib │ │ ├── common.h │ │ ├── zlibcompressor.cpp │ │ ├── zlibcompressor.h │ │ ├── zlibdecompressor.cpp │ │ └── zlibdecompressor.h └── tools │ ├── CMakeLists.txt │ ├── icetunnel │ ├── CMakeLists.txt │ └── main.cpp │ ├── nettool │ └── main.cpp │ └── xmpptest │ ├── test.ui │ └── xmpptest.cpp ├── linux ├── build-in-ubuntu.sh ├── com.psi_plus.Psi_plus.json ├── org.psi_im.Psi.json ├── psi-extra-action1.desktop ├── psi-plus.appdata.xml ├── psi.appdata.xml └── psi.desktop ├── mac ├── Info.plist.in ├── Makefile ├── Makefile.jingle ├── Psi+.portable ├── Psi.portable ├── application-plus.icns ├── application.icns ├── build-using-homebrew.sh ├── homebrew-toolchain.cmake └── macos_definitions.cmake ├── options ├── default.xml ├── macosx.xml ├── newprofile.xml └── windows.xml ├── plugins ├── .clang-format ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── cmake │ └── modules │ │ ├── COPYING-CMAKE-SCRIPTS │ │ ├── FindPsiPluginsApi.cmake │ │ └── variables.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 │ ├── psimedia │ │ ├── .clang-format │ │ ├── .pre-commit-config.yaml │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── README.html │ │ ├── README.md │ │ ├── TODO │ │ ├── cmake │ │ │ └── modules │ │ │ │ └── FindPsiPluginsApi.cmake │ │ ├── demo │ │ │ ├── CMakeLists.txt │ │ │ ├── config.ui │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ └── mainwin.ui │ │ ├── gstplugin │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── gstplugin.cpp │ │ ├── gstprovider │ │ │ ├── CMakeLists.txt │ │ │ ├── alsalatency │ │ │ │ ├── Makefile │ │ │ │ └── alsalatency.c │ │ │ ├── bins.cpp │ │ │ ├── bins.h │ │ │ ├── devices.cpp │ │ │ ├── devices.h │ │ │ ├── devices │ │ │ │ ├── README │ │ │ │ ├── deviceenum_mac.cpp │ │ │ │ ├── deviceenum_unix.cpp │ │ │ │ └── deviceenum_win.cpp │ │ │ ├── gstaudiorecordercontext.cpp │ │ │ ├── gstaudiorecordercontext.h │ │ │ ├── gstfeaturescontext.cpp │ │ │ ├── gstfeaturescontext.h │ │ │ ├── gstprovider.cpp │ │ │ ├── gstprovider.h │ │ │ ├── gstrecorder.cpp │ │ │ ├── gstrecorder.h │ │ │ ├── gstrtpchannel.cpp │ │ │ ├── gstrtpchannel.h │ │ │ ├── gstrtpsessioncontext.cpp │ │ │ ├── gstrtpsessioncontext.h │ │ │ ├── gstthread.cpp │ │ │ ├── gstthread.h │ │ │ ├── gstvideowidget.cpp │ │ │ ├── gstvideowidget.h │ │ │ ├── modes.cpp │ │ │ ├── modes.h │ │ │ ├── payloadinfo.cpp │ │ │ ├── payloadinfo.h │ │ │ ├── pipeline.cpp │ │ │ ├── pipeline.h │ │ │ ├── rtpworker.cpp │ │ │ ├── rtpworker.h │ │ │ ├── rwcontrol.cpp │ │ │ └── rwcontrol.h │ │ ├── psimedia │ │ │ ├── README.md │ │ │ ├── psimedia.cpp │ │ │ ├── psimedia.h │ │ │ ├── psimedia_p.h │ │ │ └── psimediaprovider.h │ │ ├── psiplugin │ │ │ ├── CMakeLists.txt │ │ │ ├── opt_avcall.cpp │ │ │ ├── opt_avcall.h │ │ │ ├── opt_avcall.ui │ │ │ ├── psiplugin.cpp │ │ │ └── psiplugin.json │ │ └── tests │ │ │ └── travis-ci │ │ │ ├── build-and-test.sh │ │ │ ├── build-in-macos.sh │ │ │ ├── build-in-ubuntu.sh │ │ │ ├── homebrew-toolchain.cmake │ │ │ └── install-build-depends.sh │ ├── 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 ├── include │ ├── accountinfoaccessinghost.h │ ├── accountinfoaccessor.h │ ├── activetabaccessinghost.h │ ├── activetabaccessor.h │ ├── applicationinfoaccessinghost.h │ ├── applicationinfoaccessor.h │ ├── chattabaccessor.h │ ├── commandexecutor.h │ ├── contactinfoaccessinghost.h │ ├── contactinfoaccessor.h │ ├── contactstateaccessinghost.h │ ├── contactstateaccessor.h │ ├── encryptionsupport.h │ ├── eventcreatinghost.h │ ├── eventcreator.h │ ├── eventfilter.h │ ├── gctoolbariconaccessor.h │ ├── iconfactoryaccessinghost.h │ ├── iconfactoryaccessor.h │ ├── iqfilter.h │ ├── iqfilteringhost.h │ ├── iqnamespacefilter.h │ ├── menuaccessor.h │ ├── optionaccessinghost.h │ ├── optionaccessor.h │ ├── pluginaccessinghost.h │ ├── pluginaccessor.h │ ├── plugininfoprovider.h │ ├── popupaccessinghost.h │ ├── popupaccessor.h │ ├── psiaccountcontroller.h │ ├── psiaccountcontrollinghost.h │ ├── psimediaaccessor.h │ ├── psimediahost.h │ ├── psimediaprovider.h │ ├── psiplugin.h │ ├── shortcutaccessinghost.h │ ├── shortcutaccessor.h │ ├── soundaccessinghost.h │ ├── soundaccessor.h │ ├── stanzafilter.h │ ├── stanzasender.h │ ├── stanzasendinghost.h │ ├── toolbariconaccessor.h │ ├── webkitaccessinghost.h │ └── webkitaccessor.h ├── plugins.cmake ├── plugins.pri ├── pluginsconf.pri ├── pluginsconf.pri.cmake.in ├── psiplugin.pri ├── 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 └── variables.cmake.in ├── psi.doap ├── psi.qrc ├── qa ├── guitest │ ├── guitest.cpp │ ├── guitest.h │ ├── guitest.pro │ ├── guitestmanager.cpp │ └── guitestmanager.h ├── integration │ ├── config.rb │ ├── psi-data │ │ ├── profiles │ │ │ └── default │ │ │ │ ├── accounts.xml │ │ │ │ └── options.xml │ │ └── psirc │ ├── psi.rb │ ├── reset.rb │ └── suite_Psi │ │ ├── envvars │ │ ├── objects.map │ │ ├── suite.conf │ │ ├── tst_contactlist │ │ └── test.js │ │ └── tst_manage_accounts │ │ └── test.js ├── oldtest │ ├── checkall │ ├── mac_qt_debug.rb │ ├── tests.txt │ ├── unittest-main.pri │ ├── unittest.pri │ ├── unittest.pro │ └── update.rb └── valgrind │ ├── valgrind-main.pri │ ├── valgrind.pri │ └── valgrind.supp ├── skins ├── default.png ├── default.skn ├── mac │ ├── brushed_metal │ │ ├── brushed_metal.png │ │ ├── brushed_metal.skn │ │ └── images │ │ │ ├── brush.png │ │ │ └── inf.png │ └── native_mac │ │ ├── NativeMac_tb.png │ │ ├── NativeMac_tb.skn │ │ ├── NativeMac_tt.png │ │ ├── NativeMac_tt.skn │ │ └── images │ │ ├── b_topframe.png │ │ ├── b_topframe_no_active.png │ │ ├── c_toolbutton │ │ ├── c_tb_all_no_active.png │ │ ├── c_tb_close.png │ │ ├── c_tb_close_hover.png │ │ ├── c_tb_close_pressed.png │ │ ├── c_tb_hide.png │ │ ├── c_tb_hide_hover.png │ │ ├── c_tb_hide_pressed.png │ │ ├── c_tb_maximize.png │ │ ├── c_tb_maximize_hover.png │ │ └── c_tb_maximize_pressed.png │ │ ├── find_user.png │ │ ├── g_toolbutton │ │ ├── c_tb_all_no_active.png │ │ ├── g_tb_close.png │ │ ├── g_tb_close_hover.png │ │ ├── g_tb_close_pressed.png │ │ ├── g_tb_hide.png │ │ ├── g_tb_hide_hover.png │ │ ├── g_tb_hide_pressed.png │ │ ├── g_tb_maximize.png │ │ ├── g_tb_maximize_hover.png │ │ └── g_tb_maximize_pressed.png │ │ ├── logo_active.png │ │ ├── logo_no_active.png │ │ ├── psi_filter_active.png │ │ ├── psi_filter_no_active.png │ │ ├── qcombobox.png │ │ ├── res_active.png │ │ ├── res_no_active.png │ │ ├── topframe.png │ │ └── topframe_no_active.png └── universal │ ├── LunnaCat │ ├── LunnaCat.png │ ├── LunnaCat.skn │ └── images │ │ ├── BranchEnd.png │ │ ├── BranchMore.png │ │ ├── ChatEdit.png │ │ ├── ChatLog.png │ │ ├── ChatTopFrame.png │ │ ├── CloseButton.png │ │ ├── CloseButtonHover.png │ │ ├── CloseButtonPressed.png │ │ ├── Dot.png │ │ ├── MaximizeButton.png │ │ ├── MaximizeButtonHover.png │ │ ├── MaximizeButtonPressed.png │ │ ├── MinimizeButton.png │ │ ├── MinimizeButtonHover.png │ │ ├── MinimizeButtonPressed.png │ │ ├── RadioButton.png │ │ ├── RadioButtonHover.png │ │ ├── RadioButtonUnchecked.png │ │ ├── RadioButtonUncheckedHover.png │ │ ├── Roster.png │ │ ├── ScrollBarArrowDown.png │ │ ├── ScrollBarArrowLeft.png │ │ ├── ScrollBarArrowRight.png │ │ ├── ScrollBarArrowUp.png │ │ ├── SplitterH.png │ │ ├── SplitterHH.png │ │ ├── SplitterHP.png │ │ ├── SplitterV.png │ │ ├── SplitterVH.png │ │ ├── SplitterVP.png │ │ ├── TabBar.png │ │ ├── TabCloseButton.png │ │ ├── TabCloseButtonHover.png │ │ ├── TabCloseButtonPressed.png │ │ └── Tooltip.png │ ├── black │ ├── black.png │ └── black.skn │ ├── blue │ ├── blue.png │ └── blue.skn │ ├── breath_dark │ ├── breath_dark.png │ └── breath_dark.skn │ ├── dark │ ├── dark.png │ └── dark.skn │ ├── night │ ├── images │ │ ├── bottom.png │ │ ├── bottom_press.png │ │ ├── gr.png │ │ ├── gree.png │ │ ├── green.png │ │ ├── left.png │ │ ├── left_press.png │ │ ├── logo.png │ │ ├── right.png │ │ ├── right_press.png │ │ ├── tb_close.png │ │ ├── tb_close_hover.png │ │ ├── tb_close_pressed.png │ │ ├── tb_hide.png │ │ ├── tb_hide_hover.png │ │ ├── tb_hide_pressed.png │ │ ├── tb_maximize.png │ │ ├── tb_maximize_hover.png │ │ ├── tb_maximize_pressed.png │ │ ├── top.png │ │ └── top_press.png │ ├── night.png │ └── night.skn │ ├── orange │ ├── images │ │ ├── chat.png │ │ ├── down.png │ │ ├── down_pres.png │ │ ├── left.png │ │ ├── left_pres.png │ │ ├── menu.png │ │ ├── orange.png │ │ ├── psi.png │ │ ├── right.png │ │ ├── right_pres.png │ │ ├── splitter_hor.png │ │ ├── splitter_ver.png │ │ ├── tbar.png │ │ ├── tooltip.png │ │ ├── up.png │ │ └── up_pres.png │ ├── orange.png │ └── orange.skn │ ├── qip_infium │ ├── qip_infium.png │ └── qip_infium.skn │ ├── sky │ ├── sky.png │ └── sky.skn │ └── tkabber │ ├── tkabber.png │ └── tkabber.skn ├── sound ├── attention.wav ├── chat1.wav ├── chat2.wav ├── chess_error.wav ├── chess_finish.wav ├── chess_move.wav ├── chess_start.wav ├── email.wav ├── ft_complete.wav ├── ft_incoming.wav ├── offline.wav ├── online.wav ├── pepnotify.wav ├── reminder.wav ├── send.wav └── watcher.wav ├── src ├── AutoUpdater │ ├── AutoUpdater.cpp │ ├── AutoUpdater.h │ ├── AutoUpdater.pri │ ├── CMakeLists.txt │ ├── SparkleAutoUpdater.h │ ├── SparkleAutoUpdater.mm │ └── guitest │ │ ├── guitest.pro │ │ ├── testapp-2.0 │ │ ├── main.cpp │ │ └── testapp-2.0.pro │ │ └── testapp │ │ ├── Info.plist │ │ ├── main.cpp │ │ ├── testapp.pro │ │ └── testapp.qrc ├── BasicXMLSyntaxHighlighter │ ├── BasicXMLSyntaxHighlighter.cmake │ ├── BasicXMLSyntaxHighlighter.cpp │ ├── BasicXMLSyntaxHighlighter.h │ └── README.md ├── CMakeLists.txt ├── Certificates │ ├── CMakeLists.txt │ ├── CertificateDisplay.ui │ ├── CertificateDisplayDialog.cpp │ ├── CertificateDisplayDialog.h │ ├── CertificateErrorDialog.cpp │ ├── CertificateErrorDialog.h │ ├── CertificateHelpers.cpp │ ├── CertificateHelpers.h │ ├── Certificates.pri │ ├── guitest │ │ ├── cert.pem │ │ ├── guitest.pro │ │ ├── guitest.qrc │ │ └── main.cpp │ └── unittest │ │ ├── CertificateHelpersTest.cpp │ │ ├── unittest.pri │ │ └── unittest.pro ├── CocoaUtilities │ ├── CMakeLists.txt │ ├── CocoaInitializer.h │ ├── CocoaInitializer.mm │ ├── CocoaTrayClick.cpp │ ├── CocoaTrayClick.h │ ├── CocoaUtilities.pri │ ├── cocoacommon.h │ └── cocoacommon.mm ├── MockQCA │ ├── MockQCA.cpp │ ├── QtCrypto │ └── QtCrypto.h ├── about.ui ├── aboutdlg.cpp ├── aboutdlg.h ├── abstracttreeitem.cpp ├── abstracttreeitem.h ├── abstracttreemodel.cpp ├── abstracttreemodel.h ├── accountadd.ui ├── accountadddlg.cpp ├── accountadddlg.h ├── accountlabel.cpp ├── accountlabel.h ├── accountmanage.ui ├── accountmanagedlg.cpp ├── accountmanagedlg.h ├── accountmodify.ui ├── accountmodifydlg.cpp ├── accountmodifydlg.h ├── accountreg.ui ├── accountregdlg.cpp ├── accountregdlg.h ├── accountremove.ui ├── accountscombobox.cpp ├── accountscombobox.h ├── accountstatusmenu.cpp ├── accountstatusmenu.h ├── actionlist.cpp ├── actionlist.h ├── activecontactsmenu.cpp ├── activecontactsmenu.h ├── activeprofiles.cpp ├── activeprofiles.h ├── activeprofiles_dbus.cpp ├── activeprofiles_stub.cpp ├── activeprofiles_win.cpp ├── activity.cpp ├── activity.h ├── activity.ui ├── activitycatalog.cpp ├── activitycatalog.h ├── activitydlg.cpp ├── activitydlg.h ├── addurl.ui ├── adduser.ui ├── adduserdlg.cpp ├── adduserdlg.h ├── adhoc_fileserver.cpp ├── adhoc_fileserver.h ├── ahcexecutetask.cpp ├── ahcexecutetask.h ├── ahcformdlg.cpp ├── ahcformdlg.h ├── ahcformdlg.ui ├── ahcommand.cpp ├── ahcommand.h ├── ahcommanddlg.cpp ├── ahcommanddlg.h ├── ahcommanddlg.ui ├── ahcommandserver.cpp ├── ahcommandserver.h ├── ahcservermanager.cpp ├── ahcservermanager.h ├── alertable.cpp ├── alertable.h ├── alerticon.cpp ├── alerticon.h ├── alertmanager.cpp ├── alertmanager.h ├── applicationinfo.cpp ├── applicationinfo.h ├── avatars.cpp ├── avatars.h ├── avcall │ ├── CMakeLists.txt │ ├── avcall.cpp │ ├── avcall.h │ ├── call.ui │ ├── calldlg.cpp │ ├── calldlg.h │ ├── jinglertp.cpp │ ├── jinglertp.h │ ├── jinglertptasks.cpp │ ├── jinglertptasks.h │ ├── mediadevicewatcher.cpp │ └── mediadevicewatcher.h ├── bobfilecache.cpp ├── bobfilecache.h ├── bookmarkmanage.ui ├── bookmarkmanagedlg.cpp ├── bookmarkmanagedlg.h ├── bookmarkmanager.cpp ├── bookmarkmanager.h ├── bosskey.cpp ├── bosskey.h ├── bytearrayreply.cpp ├── bytearrayreply.h ├── captchadlg.cpp ├── captchadlg.h ├── captchadlg.ui ├── changepw.ui ├── changepwdlg.cpp ├── changepwdlg.h ├── chatdlg.cpp ├── chatdlg.h ├── chatdlg.ui ├── chateditproxy.cpp ├── chateditproxy.h ├── chatsplitter.cpp ├── chatsplitter.h ├── chatview.h ├── chatview_te.cpp ├── chatview_te.h ├── chatview_webkit.cpp ├── chatview_webkit.h ├── chatviewcommon.cpp ├── chatviewcommon.h ├── chatviewtheme.cpp ├── chatviewtheme.h ├── chatviewtheme_p.h ├── chatviewthemeprovider.cpp ├── chatviewthemeprovider.h ├── chatviewthemeprovider_priv.cpp ├── chatviewthemeprovider_priv.h ├── coloropt.cpp ├── coloropt.h ├── common.cpp ├── common.h ├── conferencebookmark.cpp ├── conferencebookmark.h ├── contactlistaccountmenu.cpp ├── contactlistaccountmenu.h ├── contactlistdragmodel.cpp ├── contactlistdragmodel.h ├── contactlistdragview.cpp ├── contactlistdragview.h ├── contactlistgroupmenu.cpp ├── contactlistgroupmenu.h ├── contactlistgroupmenu_p.h ├── contactlistitem.cpp ├── contactlistitem.h ├── contactlistitemmenu.cpp ├── contactlistitemmenu.h ├── contactlistmodel.cpp ├── contactlistmodel.h ├── contactlistmodel_p.h ├── contactlistmodelselection.cpp ├── contactlistmodelselection.h ├── contactlistproxymodel.cpp ├── contactlistproxymodel.h ├── contactlistview.cpp ├── contactlistview.h ├── contactlistviewdelegate.cpp ├── contactlistviewdelegate.h ├── contactlistviewdelegate_p.h ├── contactmanager │ ├── CMakeLists.txt │ ├── contactmanager.pri │ ├── contactmanagerdlg.cpp │ ├── contactmanagerdlg.h │ ├── contactmanagerdlg.ui │ ├── contactmanagermodel.cpp │ ├── contactmanagermodel.h │ ├── contactmanagerview.cpp │ └── contactmanagerview.h ├── contactupdatesmanager.cpp ├── contactupdatesmanager.h ├── dbus.cpp ├── dbus.h ├── debug.cpp ├── debug.h ├── desktoputil.cpp ├── desktoputil.h ├── disco.ui ├── discodlg.cpp ├── discodlg.h ├── dummystream.cpp ├── dummystream.h ├── edbflatfile.cpp ├── edbflatfile.h ├── edbsqlite.cpp ├── edbsqlite.h ├── eventdb.cpp ├── eventdb.h ├── eventdlg.cpp ├── eventdlg.h ├── filecache.cpp ├── filecache.h ├── filesharedlg.cpp ├── filesharedlg.h ├── filesharedlg.ui ├── filesharingdownloader.cpp ├── filesharingdownloader.h ├── filesharingitem.cpp ├── filesharingitem.h ├── filesharingmanager.cpp ├── filesharingmanager.h ├── filesharingproxy.cpp ├── filesharingproxy.h ├── filetrans.ui ├── filetransdlg.cpp ├── filetransdlg.h ├── fileutil.cpp ├── fileutil.h ├── gcuserview.cpp ├── gcuserview.h ├── geolocation.cpp ├── geolocation.h ├── geolocation.ui ├── geolocationdlg.cpp ├── geolocationdlg.h ├── globaleventqueue.cpp ├── globaleventqueue.h ├── globalstatusmenu.cpp ├── globalstatusmenu.h ├── googleftmanager.cpp ├── googleftmanager.h ├── gpgprocess.cpp ├── gpgprocess.h ├── gpgtransaction.cpp ├── gpgtransaction.h ├── groupchatdlg.cpp ├── groupchatdlg.h ├── groupchatdlg.ui ├── groupchattopicaddlang.ui ├── groupchattopicdlg.cpp ├── groupchattopicdlg.h ├── groupchattopicdlg.ui ├── groupmenu.cpp ├── groupmenu.h ├── history.ui ├── historycontactlistmodel.cpp ├── historycontactlistmodel.h ├── historydlg.cpp ├── historydlg.h ├── historyimp.cpp ├── historyimp.h ├── hoverabletreeview.cpp ├── hoverabletreeview.h ├── htmltextcontroller.cpp ├── htmltextcontroller.h ├── httpauthmanager.cpp ├── httpauthmanager.h ├── httputil.cpp ├── httputil.h ├── info.ui ├── infodlg.cpp ├── infodlg.h ├── infodlg.ui ├── invitetogroupchatmenu.cpp ├── invitetogroupchatmenu.h ├── irisprotocol │ ├── iris_discoinfoquerier.cpp │ ├── iris_discoinfoquerier.h │ └── irisprotocol.cmake ├── jidutil.cpp ├── jidutil.h ├── jinglevoicecaller.cpp ├── jinglevoicecaller.h ├── jsutil.cpp ├── jsutil.h ├── lastactivitytask.cpp ├── lastactivitytask.h ├── libpsi │ ├── .pre-commit-config.yaml │ ├── COPYING │ ├── README │ └── widgets │ │ ├── groupchatbrowsewindow.cpp │ │ ├── groupchatbrowsewindow.h │ │ └── groupchatbrowsewindow.ui ├── main.cpp ├── main.h ├── mainwin.cpp ├── mainwin.h ├── mainwin_p.cpp ├── mainwin_p.h ├── mcmdcompletion.cpp ├── mcmdcompletion.h ├── mcmdmanager.cpp ├── mcmdmanager.h ├── mcmdsimplesite.cpp ├── mcmdsimplesite.h ├── messageview.cpp ├── messageview.h ├── miniclient.cpp ├── miniclient.h ├── minicmd.h ├── mood.cpp ├── mood.h ├── mood.ui ├── moodcatalog.cpp ├── moodcatalog.h ├── mooddlg.cpp ├── mooddlg.h ├── msgmle.cpp ├── msgmle.h ├── mucaffiliationsmodel.cpp ├── mucaffiliationsmodel.h ├── mucaffiliationsproxymodel.cpp ├── mucaffiliationsproxymodel.h ├── mucaffiliationsview.cpp ├── mucaffiliationsview.h ├── mucconfig.ui ├── mucconfigdlg.cpp ├── mucconfigdlg.h ├── mucinfo.ui ├── mucjoin.ui ├── mucjoindlg.cpp ├── mucjoindlg.h ├── mucmanager.cpp ├── mucmanager.h ├── mucreasonseditor.cpp ├── mucreasonseditor.h ├── mucreasonseditor.ui ├── multifiletransferdelegate.cpp ├── multifiletransferdelegate.h ├── multifiletransferdlg.cpp ├── multifiletransferdlg.h ├── multifiletransferdlg.ui ├── multifiletransferitem.cpp ├── multifiletransferitem.h ├── multifiletransfermodel.cpp ├── multifiletransfermodel.h ├── networkaccessmanager.cpp ├── networkaccessmanager.h ├── optioneditor.ui ├── options │ ├── CMakeLists.txt │ ├── opt_accounts.cpp │ ├── opt_accounts.h │ ├── opt_advanced.cpp │ ├── opt_advanced.h │ ├── opt_advanced.ui │ ├── opt_appearance.cpp │ ├── opt_appearance.h │ ├── opt_appearance.ui │ ├── opt_appearance_misc.ui │ ├── opt_application.cpp │ ├── opt_application.h │ ├── opt_application.ui │ ├── opt_chat.cpp │ ├── opt_chat.h │ ├── opt_chat.ui │ ├── opt_events.cpp │ ├── opt_events.h │ ├── opt_events.ui │ ├── opt_general_groupchat.ui │ ├── opt_groupchat.cpp │ ├── opt_groupchat.h │ ├── opt_iconset.cpp │ ├── opt_iconset.h │ ├── opt_iconset_activity.ui │ ├── opt_iconset_affiliation.ui │ ├── opt_iconset_client.ui │ ├── opt_iconset_emo.ui │ ├── opt_iconset_mood.ui │ ├── opt_iconset_roster.ui │ ├── opt_iconset_system.ui │ ├── opt_input.cpp │ ├── opt_input.h │ ├── opt_input.ui │ ├── opt_lookfeel_toolbars.ui │ ├── opt_messages.cpp │ ├── opt_messages.h │ ├── opt_messages_common.cpp │ ├── opt_messages_common.h │ ├── opt_messages_common.ui │ ├── opt_plugins.cpp │ ├── opt_plugins.h │ ├── opt_plugins.ui │ ├── opt_pluginwrapper.cpp │ ├── opt_pluginwrapper.h │ ├── opt_popups.cpp │ ├── opt_popups.h │ ├── opt_popups.ui │ ├── opt_roster.cpp │ ├── opt_roster.h │ ├── opt_roster_main.cpp │ ├── opt_roster_main.h │ ├── opt_roster_main.ui │ ├── opt_roster_muc.cpp │ ├── opt_roster_muc.h │ ├── opt_roster_muc.ui │ ├── opt_shortcuts.cpp │ ├── opt_shortcuts.h │ ├── opt_shortcuts.ui │ ├── opt_sound.cpp │ ├── opt_sound.h │ ├── opt_sound.ui │ ├── opt_status.cpp │ ├── opt_status.h │ ├── opt_statusauto.cpp │ ├── opt_statusauto.h │ ├── opt_statusauto.ui │ ├── opt_statusgeneral.cpp │ ├── opt_statusgeneral.h │ ├── opt_statusgeneral.ui │ ├── opt_statuspep.cpp │ ├── opt_statuspep.h │ ├── opt_statuspep.ui │ ├── opt_theme.cpp │ ├── opt_theme.h │ ├── opt_theme.ui │ ├── opt_toolbars.cpp │ ├── opt_toolbars.h │ ├── opt_tree.cpp │ ├── opt_tree.h │ ├── optionsdlg.cpp │ ├── optionsdlg.h │ ├── optionsdlgbase.cpp │ ├── optionsdlgbase.h │ ├── optionsdlgiface.h │ ├── optionstab.cpp │ ├── optionstab.h │ ├── plugininfodialog.ui │ ├── ui_isdetails.ui │ └── ui_options.ui ├── passdialog.cpp ├── passdialog.h ├── password.ui ├── pepmanager.cpp ├── pepmanager.h ├── pgpkey.ui ├── pgpkeydlg.cpp ├── pgpkeydlg.h ├── pgputil.cpp ├── pgputil.h ├── pixmaputil.cpp ├── pixmaputil.h ├── pluginhost.cpp ├── pluginhost.h ├── pluginmanager.cpp ├── pluginmanager.h ├── popupmanager.cpp ├── popupmanager.h ├── privacy │ ├── CMakeLists.txt │ ├── guitest │ │ ├── guitest.pri │ │ ├── mockprivacymanager.cpp │ │ ├── mockprivacymanager.h │ │ ├── privacydlgtest.cpp │ │ └── privacyruledlgtest.cpp │ ├── privacy.pri │ ├── privacy.ui │ ├── privacydlg.cpp │ ├── privacydlg.h │ ├── privacylist.cpp │ ├── privacylist.h │ ├── privacylistblockedmodel.cpp │ ├── privacylistblockedmodel.h │ ├── privacylistitem.cpp │ ├── privacylistitem.h │ ├── privacylistmodel.cpp │ ├── privacylistmodel.h │ ├── privacymanager.h │ ├── privacyrule.ui │ ├── privacyruledlg.cpp │ ├── privacyruledlg.h │ ├── psiprivacymanager.cpp │ ├── psiprivacymanager.h │ └── unittest │ │ ├── privacylistitemtest.cpp │ │ ├── unittest.pri │ │ └── unittest.pro ├── profiledlg.cpp ├── profiledlg.h ├── profilemanage.ui ├── profilenew.ui ├── profileopen.ui ├── profiles.h ├── protocol │ ├── discoinfoquerier.h │ └── protocol.cmake ├── proxy.cpp ├── proxy.h ├── proxy.ui ├── psi_config.h.in ├── psi_profiles.cpp ├── psiaccount.cpp ├── psiaccount.h ├── psiactionlist.cpp ├── psiactionlist.h ├── psiactions.h ├── psiapplication.cpp ├── psiapplication.h ├── psicapsregsitry.cpp ├── psicapsregsitry.h ├── psichatdlg.cpp ├── psichatdlg.h ├── psicli.h ├── psicon.cpp ├── psicon.h ├── psicontact.cpp ├── psicontact.h ├── psicontactlist.cpp ├── psicontactlist.h ├── psicontactlistview.cpp ├── psicontactlistview.h ├── psicontactmenu.cpp ├── psicontactmenu.h ├── psicontactmenu_p.h ├── psidbusnotifier.cpp ├── psidbusnotifier.h ├── psievent.cpp ├── psievent.h ├── psifilteredcontactlistview.cpp ├── psifilteredcontactlistview.h ├── psigrowlnotifier.cpp ├── psigrowlnotifier.h ├── psihttpauthrequest.h ├── psiiconset.cpp ├── psiiconset.h ├── psimedia │ ├── CMakeLists.txt │ ├── psimedia.cpp │ ├── psimedia.h │ └── psimedia_p.h ├── psioptions.cpp ├── psioptions.h ├── psioptionseditor.cpp ├── psioptionseditor.h ├── psipopup.cpp ├── psipopup.h ├── psipopupinterface.cpp ├── psipopupinterface.h ├── psirosterwidget.cpp ├── psirosterwidget.h ├── psiselfcontact.h ├── psithememanager.cpp ├── psithememanager.h ├── psithememodel.cpp ├── psithememodel.h ├── psithemeprovider.cpp ├── psithemeprovider.h ├── psitoolbar.cpp ├── psitoolbar.h ├── psitrayicon.cpp ├── psitrayicon.h ├── pubsubsubscription.cpp ├── pubsubsubscription.h ├── qwextend.cpp ├── qwextend.h ├── rc.cpp ├── rc.h ├── registrationdlg.cpp ├── registrationdlg.h ├── resourcemenu.cpp ├── resourcemenu.h ├── rosteravatarframe.cpp ├── rosteravatarframe.h ├── rosteravatarframe.ui ├── rosteritemexchangetask.cpp ├── rosteritemexchangetask.h ├── rtparse.cpp ├── rtparse.h ├── search.ui ├── searchdlg.cpp ├── searchdlg.h ├── sendbuttonmenu.cpp ├── sendbuttonmenu.h ├── sendbuttontemplateseditor.ui ├── serverlistquerier.cpp ├── serverlistquerier.h ├── shortcutmanager.cpp ├── shortcutmanager.h ├── showtextdlg.cpp ├── showtextdlg.h ├── showtextdlg.ui ├── src.cmake ├── statuscombobox.cpp ├── statuscombobox.h ├── statusdlg.cpp ├── statusdlg.h ├── statusmenu.cpp ├── statusmenu.h ├── statuspreset.cpp ├── statuspreset.h ├── svgiconengine.cpp ├── svgiconengine.h ├── sxe │ ├── CMakeLists.txt │ ├── sxeedit.cpp │ ├── sxeedit.h │ ├── sxemanager.cpp │ ├── sxemanager.h │ ├── sxenewedit.cpp │ ├── sxenewedit.h │ ├── sxerecord.cpp │ ├── sxerecord.h │ ├── sxerecordedit.cpp │ ├── sxerecordedit.h │ ├── sxeremoveedit.cpp │ ├── sxeremoveedit.h │ ├── sxesession.cpp │ └── sxesession.h ├── systeminfo.cpp ├── systeminfo.h ├── tabcompletion.cpp ├── tabcompletion.h ├── tabs │ ├── CMakeLists.txt │ ├── tabbablewidget.cpp │ ├── tabbablewidget.h │ ├── tabdlg.cpp │ ├── tabdlg.h │ ├── tabmanager.cpp │ └── tabmanager.h ├── tasklist.h ├── textutil.cpp ├── textutil.h ├── theme.cpp ├── theme.h ├── theme_p.cpp ├── theme_p.h ├── tipdlg.cpp ├── tools │ ├── CMakeLists.txt │ ├── advwidget │ │ ├── advwidget.cpp │ │ ├── advwidget.h │ │ ├── advwidget.pri │ │ └── movetest │ │ │ ├── main.cpp │ │ │ └── test.pro │ ├── atomicxmlfile │ │ ├── atomicxmlfile.cpp │ │ └── atomicxmlfile.h │ ├── crash │ │ ├── crash.cpp │ │ ├── crash.h │ │ ├── crash.pri │ │ ├── crash_dummy.cpp │ │ ├── crash_kde.cpp │ │ ├── crash_sigsegv.cpp │ │ └── crash_sigsegv.h │ ├── emojimodel.cpp │ ├── emojimodel.h │ ├── globalshortcut │ │ ├── NDKeyboardLayout.h │ │ ├── NDKeyboardLayout.m │ │ ├── globalshortcutmanager.cpp │ │ ├── globalshortcutmanager.h │ │ ├── globalshortcutmanager_haiku.cpp │ │ ├── globalshortcutmanager_mac.mm │ │ ├── globalshortcutmanager_stub.cpp │ │ ├── globalshortcutmanager_win.cpp │ │ ├── globalshortcutmanager_x11.cpp │ │ └── globalshortcuttrigger.h │ ├── growlnotifier │ │ ├── ChangeLog │ │ ├── growlnotifier.cpp │ │ ├── growlnotifier.h │ │ ├── growlnotifier.mm │ │ └── growltest.cpp │ ├── iconset │ │ ├── ICONSET-HOWTO.md │ │ ├── anim.cpp │ │ ├── anim.h │ │ ├── iconset.cpp │ │ ├── iconset.h │ │ ├── iconset.pri │ │ └── unittest │ │ │ ├── iconsets │ │ │ ├── emoticons │ │ │ │ └── puz.jisp │ │ │ ├── roster │ │ │ │ ├── default.jisp │ │ │ │ └── small.jisp │ │ │ └── system │ │ │ │ └── crystal_system.jisp │ │ │ ├── testiconset.cpp │ │ │ └── testiconset.pro │ ├── idle │ │ ├── idle.cpp │ │ ├── idle.h │ │ ├── idle_mac.cpp │ │ ├── idle_win.cpp │ │ └── idle_x11.cpp │ ├── iodeviceopener.cpp │ ├── iodeviceopener.h │ ├── languagemanager.cpp │ ├── languagemanager.h │ ├── libpsi_tools.cmake │ ├── mac_dock │ │ ├── docktest.cpp │ │ ├── mac_dock.h │ │ ├── mac_dock.mm │ │ ├── privateqt_mac.h │ │ └── privateqt_mac.mm │ ├── maybe.h │ ├── optionstree │ │ ├── optionstest │ │ │ ├── optionstest.cpp │ │ │ └── optionstest.pro │ │ ├── optionstree.cpp │ │ ├── optionstree.h │ │ ├── optionstree.pri │ │ ├── optionstreemodel.cpp │ │ ├── optionstreemodel.h │ │ ├── optionstreereader.cpp │ │ ├── optionstreereader.h │ │ ├── optionstreeviewtest │ │ │ ├── optionstreeviewtest.cpp │ │ │ └── optionstreeviewtest.pro │ │ ├── optionstreewriter.cpp │ │ ├── optionstreewriter.h │ │ ├── unittest │ │ │ ├── OptionsTreeMainTest.cpp │ │ │ ├── unittest.pri │ │ │ ├── unittest.pro │ │ │ └── untitled.pri │ │ ├── varianttree.cpp │ │ └── varianttree.h │ ├── priorityvalidator.cpp │ ├── priorityvalidator.h │ ├── simplecli │ │ ├── simplecli.cpp │ │ └── simplecli.h │ ├── spellchecker │ │ ├── aspellchecker.cpp │ │ ├── aspellchecker.h │ │ ├── enchantchecker.cpp │ │ ├── enchantchecker.h │ │ ├── hunspellchecker.cpp │ │ ├── hunspellchecker.h │ │ ├── macspellchecker.h │ │ ├── macspellchecker.mm │ │ ├── spellchecker.cpp │ │ ├── spellchecker.h │ │ ├── spellhighlighter.cpp │ │ └── spellhighlighter.h │ ├── systemwatch │ │ ├── systemwatch.cpp │ │ ├── systemwatch.h │ │ ├── systemwatch_mac.cpp │ │ ├── systemwatch_mac.h │ │ ├── systemwatch_unix.cpp │ │ ├── systemwatch_unix.h │ │ ├── systemwatch_win.cpp │ │ └── systemwatch_win.h │ ├── tunecontroller │ │ ├── aimptunecontroller.cpp │ │ ├── aimptunecontroller.h │ │ ├── combinedtunecontroller.cpp │ │ ├── combinedtunecontroller.h │ │ ├── filetunecontroller.cpp │ │ ├── filetunecontroller.h │ │ ├── itunestunecontroller.cpp │ │ ├── itunestunecontroller.h │ │ ├── mpristunecontroller.cpp │ │ ├── mpristunecontroller.h │ │ ├── plugins │ │ │ ├── aimp │ │ │ │ ├── aimpplugin.cpp │ │ │ │ └── third-party │ │ │ │ │ └── apiRemote.h │ │ │ ├── itunes │ │ │ │ └── itunesplugin.cpp │ │ │ ├── mpris │ │ │ │ └── mprisplugin.cpp │ │ │ ├── psifile │ │ │ │ ├── psifileplugin.cpp │ │ │ │ └── psifileplugin.h │ │ │ └── winamp │ │ │ │ ├── third-party │ │ │ │ └── wa_ipc.h │ │ │ │ ├── winampplugin.cpp │ │ │ │ └── winampplugin.h │ │ ├── pollingtunecontroller.cpp │ │ ├── pollingtunecontroller.h │ │ ├── tune.h │ │ ├── tunecontroller.h │ │ ├── tunecontroller.pri │ │ ├── tunecontrollerinterface.h │ │ ├── tunecontrollermanager.cpp │ │ ├── tunecontrollermanager.h │ │ ├── tunecontrollerplugin.h │ │ ├── winamptunecontroller.cpp │ │ └── winamptunecontroller.h │ ├── unittest │ │ └── iodeviceopenertest.cpp │ └── zip │ │ ├── CMakeLists.txt │ │ ├── minizip │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── MiniZip64_Changes.txt │ │ ├── MiniZip64_info.txt │ │ ├── configure.ac │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── miniunz.c │ │ ├── miniunzip.1 │ │ ├── minizip.1 │ │ ├── minizip.c │ │ ├── minizip.pc.in │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ │ ├── zip.cpp │ │ └── zip.h ├── translationmanager.cpp ├── translationmanager.h ├── unittest │ ├── commontest.cpp │ ├── half_of_psi.pri │ ├── psiiconset │ │ ├── testpsiiconset.cpp │ │ └── testpsiiconset.pro │ ├── psipopup │ │ ├── testpsipopup.cpp │ │ └── testpsipopup.pro │ ├── unittest.pri │ └── unittest.pro ├── urlbookmark.cpp ├── urlbookmark.h ├── userlist.cpp ├── userlist.h ├── varlist.cpp ├── varlist.h ├── vcardfactory.cpp ├── vcardfactory.h ├── vcardphotodlg.cpp ├── vcardphotodlg.h ├── voicecall.ui ├── voicecalldlg.cpp ├── voicecalldlg.h ├── voicecaller.h ├── webserver.cpp ├── webserver.h ├── webview.cpp ├── webview.h ├── whiteboarding │ ├── CMakeLists.txt │ ├── wbdlg.cpp │ ├── wbdlg.h │ ├── wbitem.cpp │ ├── wbitem.h │ ├── wbmanager.cpp │ ├── wbmanager.h │ ├── wbnewimage.cpp │ ├── wbnewimage.h │ ├── wbnewitem.cpp │ ├── wbnewitem.h │ ├── wbnewpath.cpp │ ├── wbnewpath.h │ ├── wbscene.cpp │ ├── wbscene.h │ ├── wbwidget.cpp │ └── wbwidget.h ├── widgets │ ├── CMakeLists.txt │ ├── actionlineedit.cpp │ ├── actionlineedit.h │ ├── busywidget.cpp │ ├── busywidget.h │ ├── emojidb.h │ ├── emojiregistry.cpp │ ├── emojiregistry.h │ ├── eventnotifier.cpp │ ├── eventnotifier.h │ ├── fancylabel.cpp │ ├── fancylabel.h │ ├── fancypopup.cpp │ ├── fancypopup.h │ ├── fancypopup.ui │ ├── fancypopuplist.h │ ├── grepshortcutkeydialog.cpp │ ├── grepshortcutkeydialog.h │ ├── grepshortcutkeydialog.ui │ ├── iconaction.cpp │ ├── iconaction.h │ ├── iconbutton.h │ ├── iconlabel.h │ ├── iconselect.cpp │ ├── iconselect.h │ ├── iconsetdisplay.h │ ├── iconsetselect.h │ ├── icontoolbutton.h │ ├── iconwidget.cpp │ ├── iconwidget.h │ ├── pixmapratiolabel.cpp │ ├── pixmapratiolabel.h │ ├── private │ │ └── qeffects_p.h │ ├── psirichtext.cpp │ ├── psirichtext.h │ ├── psitabbar.cpp │ ├── psitabbar.h │ ├── psitabwidget.cpp │ ├── psitabwidget.h │ ├── psitextview.cpp │ ├── psitextview.h │ ├── psitiplabel.cpp │ ├── psitiplabel.h │ ├── psitooltip.cpp │ ├── psitooltip.h │ ├── psiwidgets.cpp │ ├── psiwidgets.h │ ├── stretchwidget.h │ ├── tabbar.cpp │ ├── tabbar.h │ ├── taskbarnotifier.cpp │ ├── taskbarnotifier.h │ ├── typeaheadfind.cpp │ ├── typeaheadfind.h │ ├── unittest │ │ ├── iconaction │ │ │ ├── iconaction.pro │ │ │ └── testiconaction.cpp │ │ └── richtext │ │ │ ├── main.cpp │ │ │ └── richtext.pro │ ├── updatingcombobox.h │ ├── urllabel.cpp │ ├── urllabel.h │ ├── urlobject.cpp │ ├── urlobject.h │ ├── widgets.pri │ └── widgets.pro ├── x11windowsystem.cpp ├── x11windowsystem.h ├── xdata_widget.cpp ├── xdata_widget.h ├── xmlconsole.cpp ├── xmlconsole.h └── xmlconsole.ui ├── tests └── travis-ci │ ├── build-and-test.sh │ └── install-build-depends.sh ├── themes ├── chatview.qrc └── chatview │ ├── adium │ ├── Template.html │ └── adapter.js │ ├── moment-with-locales.js │ ├── psi │ ├── LunnaCat_Classic │ │ ├── images │ │ │ ├── ChatLog.png │ │ │ ├── HR.png │ │ │ ├── ScrollBarArrowDown.png │ │ │ └── ScrollBarArrowUp.png │ │ ├── index.html │ │ ├── load.js │ │ └── screenshot.png │ ├── adapter.js │ ├── bubble │ │ ├── Dark.css │ │ ├── index.html │ │ └── load.js │ ├── classic │ │ ├── index.html │ │ └── load.js │ ├── new_classic │ │ ├── index.html │ │ ├── load.js │ │ └── screenshot.png │ ├── psi.css │ └── stylized_classic │ │ ├── index.html │ │ ├── load.js │ │ └── screenshot.png │ └── util.js ├── tools └── toolbars_state.rb ├── version └── win32 ├── app-plus.ico ├── app.ico ├── psi.manifest.in ├── psi_win.rc.in └── qt.conf /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/psi-plus-config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/.github/psi-plus-config.nix -------------------------------------------------------------------------------- /.github/workflows/nix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/.github/workflows/nix.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.qmake.cache.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/.qmake.cache.in -------------------------------------------------------------------------------- /.qmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/.qmake.conf -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/.travis.yml -------------------------------------------------------------------------------- /3rdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/http-parser/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/http-parser/.mailmap -------------------------------------------------------------------------------- /3rdparty/http-parser/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/http-parser/AUTHORS -------------------------------------------------------------------------------- /3rdparty/http-parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/http-parser/Makefile -------------------------------------------------------------------------------- /3rdparty/http-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/http-parser/README.md -------------------------------------------------------------------------------- /3rdparty/http-parser/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/http-parser/bench.c -------------------------------------------------------------------------------- /3rdparty/http-parser/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/http-parser/test.c -------------------------------------------------------------------------------- /3rdparty/qhttp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qhttp.cmake -------------------------------------------------------------------------------- /3rdparty/qhttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qhttp/LICENSE -------------------------------------------------------------------------------- /3rdparty/qhttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qhttp/README.md -------------------------------------------------------------------------------- /3rdparty/qhttp/commondir.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qhttp/commondir.pri -------------------------------------------------------------------------------- /3rdparty/qhttp/qhttp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qhttp/qhttp.pro -------------------------------------------------------------------------------- /3rdparty/qhttp/qompoter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qhttp/qompoter.json -------------------------------------------------------------------------------- /3rdparty/qhttp/qompoter.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qhttp/qompoter.pri -------------------------------------------------------------------------------- /3rdparty/qhttp/src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qhttp/src/src.pro -------------------------------------------------------------------------------- /3rdparty/qhttp/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qhttp/utils.sh -------------------------------------------------------------------------------- /3rdparty/qite/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qite/.clang-format -------------------------------------------------------------------------------- /3rdparty/qite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qite/LICENSE -------------------------------------------------------------------------------- /3rdparty/qite/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qite/NOTICE -------------------------------------------------------------------------------- /3rdparty/qite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qite/README.md -------------------------------------------------------------------------------- /3rdparty/qite/libqite/qite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qite/libqite/qite.cpp -------------------------------------------------------------------------------- /3rdparty/qite/libqite/qite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qite/libqite/qite.h -------------------------------------------------------------------------------- /3rdparty/qite/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qite/main.cpp -------------------------------------------------------------------------------- /3rdparty/qite/main.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qite/main.qrc -------------------------------------------------------------------------------- /3rdparty/qite/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qite/mainwindow.cpp -------------------------------------------------------------------------------- /3rdparty/qite/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qite/mainwindow.h -------------------------------------------------------------------------------- /3rdparty/qite/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qite/mainwindow.ui -------------------------------------------------------------------------------- /3rdparty/qite/qite.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/3rdparty/qite/qite.pro -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/INSTALL.md -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/README -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/README.html -------------------------------------------------------------------------------- /Readme-cmake-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/Readme-cmake-ru.md -------------------------------------------------------------------------------- /Readme-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/Readme-cmake.md -------------------------------------------------------------------------------- /Readme-dev-cmake-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/Readme-dev-cmake-en.txt -------------------------------------------------------------------------------- /Readme-dev-cmake-ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/Readme-dev-cmake-ru.txt -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/TODO -------------------------------------------------------------------------------- /admin/apply_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/apply_version.sh -------------------------------------------------------------------------------- /admin/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/build/Makefile -------------------------------------------------------------------------------- /admin/build/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/build/README -------------------------------------------------------------------------------- /admin/build/build_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/build/build_package.sh -------------------------------------------------------------------------------- /admin/build/devconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/build/devconfig.sh -------------------------------------------------------------------------------- /admin/build/gstbundle_libs_mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/build/gstbundle_libs_mac -------------------------------------------------------------------------------- /admin/build/gstbundle_libs_win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/build/gstbundle_libs_win -------------------------------------------------------------------------------- /admin/build/pack_dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/build/pack_dmg.sh -------------------------------------------------------------------------------- /admin/build/package_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/build/package_info -------------------------------------------------------------------------------- /admin/build/prep_dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/build/prep_dist.sh -------------------------------------------------------------------------------- /admin/bundle_qca.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/bundle_qca.sh -------------------------------------------------------------------------------- /admin/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/emoji.py -------------------------------------------------------------------------------- /admin/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/fetch.sh -------------------------------------------------------------------------------- /admin/git_revnumber.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/git_revnumber.sh -------------------------------------------------------------------------------- /admin/iccfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/iccfix.sh -------------------------------------------------------------------------------- /admin/prune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/prune.sh -------------------------------------------------------------------------------- /admin/psi-plus-nightly-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/psi-plus-nightly-version -------------------------------------------------------------------------------- /admin/psibuild_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/psibuild_mac.sh -------------------------------------------------------------------------------- /admin/update_iconsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/update_iconsets.sh -------------------------------------------------------------------------------- /admin/update_options_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/admin/update_options_ts.py -------------------------------------------------------------------------------- /certs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/certs/README -------------------------------------------------------------------------------- /client_icons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/client_icons.txt -------------------------------------------------------------------------------- /cmake/modules/FindQca.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/cmake/modules/FindQca.cmake -------------------------------------------------------------------------------- /cmake/modules/FindXCB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/cmake/modules/FindXCB.cmake -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/default.nix -------------------------------------------------------------------------------- /doc/Doxyfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/doc/Doxyfile.private -------------------------------------------------------------------------------- /doc/Doxyfile.public: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/doc/Doxyfile.public -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/doc/doxygen.css -------------------------------------------------------------------------------- /doc/doxygen.footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/doc/doxygen.footer.html -------------------------------------------------------------------------------- /doc/doxygen.header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/doc/doxygen.header.html -------------------------------------------------------------------------------- /generate-single-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/generate-single-repo.sh -------------------------------------------------------------------------------- /icondef.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/icondef.xml.in -------------------------------------------------------------------------------- /iconsets.qrc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iconsets.qrc.in -------------------------------------------------------------------------------- /iconsets/clients/default/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2017,5,1,23,42,48 4 | Version=4 5 | -------------------------------------------------------------------------------- /iconsets/moods/default/Hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iconsets/moods/default/Hot.png -------------------------------------------------------------------------------- /iconsets/moods/default/Sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iconsets/moods/default/Sad.png -------------------------------------------------------------------------------- /iconsets/moods/default/Shy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iconsets/moods/default/Shy.png -------------------------------------------------------------------------------- /iconsets/roster/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iconsets/roster/README -------------------------------------------------------------------------------- /iconsets/roster/default/xa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iconsets/roster/default/xa.png -------------------------------------------------------------------------------- /iconsets/roster/stellar-1.jisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iconsets/roster/stellar-1.jisp -------------------------------------------------------------------------------- /iconsets/system/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iconsets/system/README -------------------------------------------------------------------------------- /iconsets/system/default/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iconsets/system/default/ok.png -------------------------------------------------------------------------------- /iris/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/.clang-format -------------------------------------------------------------------------------- /iris/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/.pre-commit-config.yaml -------------------------------------------------------------------------------- /iris/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/CMakeLists.txt -------------------------------------------------------------------------------- /iris/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/COPYING -------------------------------------------------------------------------------- /iris/IrisConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/IrisConfig.cmake.in -------------------------------------------------------------------------------- /iris/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/README.md -------------------------------------------------------------------------------- /iris/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/TODO -------------------------------------------------------------------------------- /iris/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /iris/include/iris/addressresolver.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/corelib/addressresolver.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/bsocket.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/cutestuff/bsocket.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/bytestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/bytestream.h -------------------------------------------------------------------------------- /iris/include/iris/dtls.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/dtls.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/httpconnect.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/cutestuff/httpconnect.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/httppoll.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/cutestuff/httppoll.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/ice176.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/ice176.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/iceabstractstundisco.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/iceabstractstundisco.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/iceagent.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/iceagent.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/im.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/im.h -------------------------------------------------------------------------------- /iris/include/iris/jingle-ft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/jingle-ft.h -------------------------------------------------------------------------------- /iris/include/iris/jingle-ice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/jingle-ice.h -------------------------------------------------------------------------------- /iris/include/iris/jingle-s5b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/jingle-s5b.h -------------------------------------------------------------------------------- /iris/include/iris/jingle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/jingle.h -------------------------------------------------------------------------------- /iris/include/iris/ndns.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/legacy/ndns.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/netavailability.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/corelib/netavailability.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/netinterface.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/corelib/netinterface.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/netnames.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/corelib/netnames.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/objectsession.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/corelib/objectsession.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/processquit.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/processquit.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/s5b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/s5b.h -------------------------------------------------------------------------------- /iris/include/iris/socks.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/cutestuff/socks.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/srvresolver.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/legacy/srvresolver.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/stunallocate.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/stunallocate.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/stunbinding.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/stunbinding.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/stunmessage.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/stunmessage.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/stuntransaction.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/stuntransaction.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/tcpportreserver.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/tcpportreserver.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/turnclient.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/turnclient.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/udpportreserver.h: -------------------------------------------------------------------------------- 1 | #include "irisnet/noncore/udpportreserver.h" 2 | -------------------------------------------------------------------------------- /iris/include/iris/xmpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/xmpp.h -------------------------------------------------------------------------------- /iris/include/iris/xmpp_caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/xmpp_caps.h -------------------------------------------------------------------------------- /iris/include/iris/xmpp_form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/xmpp_form.h -------------------------------------------------------------------------------- /iris/include/iris/xmpp_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/xmpp_hash.h -------------------------------------------------------------------------------- /iris/include/iris/xmpp_jid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/xmpp_jid.h -------------------------------------------------------------------------------- /iris/include/iris/xmpp_muc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/xmpp_muc.h -------------------------------------------------------------------------------- /iris/include/iris/xmpp_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/xmpp_task.h -------------------------------------------------------------------------------- /iris/include/iris/xmpp_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/xmpp_tasks.h -------------------------------------------------------------------------------- /iris/include/iris/xmpp_url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/xmpp_url.h -------------------------------------------------------------------------------- /iris/include/iris/xmpp_vcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/xmpp_vcard.h -------------------------------------------------------------------------------- /iris/include/iris/xmpp_xdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/include/iris/xmpp_xdata.h -------------------------------------------------------------------------------- /iris/iris.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/iris.pc.in -------------------------------------------------------------------------------- /iris/src/jdns.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/jdns.cmake -------------------------------------------------------------------------------- /iris/src/jdns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/jdns/CMakeLists.txt -------------------------------------------------------------------------------- /iris/src/jdns/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/jdns/COPYING -------------------------------------------------------------------------------- /iris/src/jdns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/jdns/README.md -------------------------------------------------------------------------------- /iris/src/jdns/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/jdns/TODO -------------------------------------------------------------------------------- /iris/src/jdns/jdns.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/jdns/jdns.pc.in -------------------------------------------------------------------------------- /iris/src/jdns/jdns.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/jdns/jdns.pri -------------------------------------------------------------------------------- /iris/src/jdns/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/jdns/package.sh -------------------------------------------------------------------------------- /iris/src/jdns/qjdns.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/jdns/qjdns.pc.in -------------------------------------------------------------------------------- /iris/src/jdns/src/jdns/jdns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/jdns/src/jdns/jdns.c -------------------------------------------------------------------------------- /iris/src/xmpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/CMakeLists.txt -------------------------------------------------------------------------------- /iris/src/xmpp/base/timezone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/base/timezone.h -------------------------------------------------------------------------------- /iris/src/xmpp/blake2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/blake2/README.md -------------------------------------------------------------------------------- /iris/src/xmpp/blake2/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/blake2/blake2.h -------------------------------------------------------------------------------- /iris/src/xmpp/jid/jid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/jid/jid.cpp -------------------------------------------------------------------------------- /iris/src/xmpp/jid/jid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/jid/jid.h -------------------------------------------------------------------------------- /iris/src/xmpp/qa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/qa/README -------------------------------------------------------------------------------- /iris/src/xmpp/xmpp-core/sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/xmpp-core/sm.cpp -------------------------------------------------------------------------------- /iris/src/xmpp/xmpp-core/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/xmpp-core/sm.h -------------------------------------------------------------------------------- /iris/src/xmpp/xmpp-core/td.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/xmpp-core/td.h -------------------------------------------------------------------------------- /iris/src/xmpp/xmpp-core/xmpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/xmpp-core/xmpp.h -------------------------------------------------------------------------------- /iris/src/xmpp/xmpp-im/im.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/xmpp-im/im.h -------------------------------------------------------------------------------- /iris/src/xmpp/xmpp-im/jingle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/xmpp-im/jingle.h -------------------------------------------------------------------------------- /iris/src/xmpp/xmpp-im/s5b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/xmpp-im/s5b.cpp -------------------------------------------------------------------------------- /iris/src/xmpp/xmpp-im/s5b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/xmpp-im/s5b.h -------------------------------------------------------------------------------- /iris/src/xmpp/zlib/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/src/xmpp/zlib/common.h -------------------------------------------------------------------------------- /iris/tools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(icetunnel) 2 | -------------------------------------------------------------------------------- /iris/tools/icetunnel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/tools/icetunnel/main.cpp -------------------------------------------------------------------------------- /iris/tools/nettool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/tools/nettool/main.cpp -------------------------------------------------------------------------------- /iris/tools/xmpptest/test.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/iris/tools/xmpptest/test.ui -------------------------------------------------------------------------------- /linux/build-in-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/linux/build-in-ubuntu.sh -------------------------------------------------------------------------------- /linux/org.psi_im.Psi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/linux/org.psi_im.Psi.json -------------------------------------------------------------------------------- /linux/psi-plus.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/linux/psi-plus.appdata.xml -------------------------------------------------------------------------------- /linux/psi.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/linux/psi.appdata.xml -------------------------------------------------------------------------------- /linux/psi.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/linux/psi.desktop -------------------------------------------------------------------------------- /mac/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/mac/Info.plist.in -------------------------------------------------------------------------------- /mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/mac/Makefile -------------------------------------------------------------------------------- /mac/Makefile.jingle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/mac/Makefile.jingle -------------------------------------------------------------------------------- /mac/Psi+.portable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/mac/Psi+.portable -------------------------------------------------------------------------------- /mac/Psi.portable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/mac/Psi.portable -------------------------------------------------------------------------------- /mac/application-plus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/mac/application-plus.icns -------------------------------------------------------------------------------- /mac/application.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/mac/application.icns -------------------------------------------------------------------------------- /mac/build-using-homebrew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/mac/build-using-homebrew.sh -------------------------------------------------------------------------------- /mac/homebrew-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/mac/homebrew-toolchain.cmake -------------------------------------------------------------------------------- /mac/macos_definitions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/mac/macos_definitions.cmake -------------------------------------------------------------------------------- /options/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/options/default.xml -------------------------------------------------------------------------------- /options/macosx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/options/macosx.xml -------------------------------------------------------------------------------- /options/newprofile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/options/newprofile.xml -------------------------------------------------------------------------------- /options/windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/options/windows.xml -------------------------------------------------------------------------------- /plugins/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/.clang-format -------------------------------------------------------------------------------- /plugins/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/.travis.yml -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/dev/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/dev/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/generic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/generic/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/generic/generic.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/generic/generic.pro -------------------------------------------------------------------------------- /plugins/generic/psimedia/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/generic/psimedia/TODO -------------------------------------------------------------------------------- /plugins/generic/skinsplugin/skins.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/include/eventcreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/include/eventcreator.h -------------------------------------------------------------------------------- /plugins/include/eventfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/include/eventfilter.h -------------------------------------------------------------------------------- /plugins/include/iqfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/include/iqfilter.h -------------------------------------------------------------------------------- /plugins/include/menuaccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/include/menuaccessor.h -------------------------------------------------------------------------------- /plugins/include/psimediahost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/include/psimediahost.h -------------------------------------------------------------------------------- /plugins/include/psiplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/include/psiplugin.h -------------------------------------------------------------------------------- /plugins/include/stanzafilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/include/stanzafilter.h -------------------------------------------------------------------------------- /plugins/include/stanzasender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/include/stanzasender.h -------------------------------------------------------------------------------- /plugins/plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/plugins.cmake -------------------------------------------------------------------------------- /plugins/plugins.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/plugins.pri -------------------------------------------------------------------------------- /plugins/pluginsconf.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/pluginsconf.pri -------------------------------------------------------------------------------- /plugins/psiplugin.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/psiplugin.pri -------------------------------------------------------------------------------- /plugins/unix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/unix/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/variables.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/plugins/variables.cmake.in -------------------------------------------------------------------------------- /psi.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/psi.doap -------------------------------------------------------------------------------- /psi.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/psi.qrc -------------------------------------------------------------------------------- /qa/guitest/guitest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/guitest/guitest.cpp -------------------------------------------------------------------------------- /qa/guitest/guitest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/guitest/guitest.h -------------------------------------------------------------------------------- /qa/guitest/guitest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/guitest/guitest.pro -------------------------------------------------------------------------------- /qa/guitest/guitestmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/guitest/guitestmanager.cpp -------------------------------------------------------------------------------- /qa/guitest/guitestmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/guitest/guitestmanager.h -------------------------------------------------------------------------------- /qa/integration/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/integration/config.rb -------------------------------------------------------------------------------- /qa/integration/psi-data/psirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/integration/psi-data/psirc -------------------------------------------------------------------------------- /qa/integration/psi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/integration/psi.rb -------------------------------------------------------------------------------- /qa/integration/reset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/integration/reset.rb -------------------------------------------------------------------------------- /qa/integration/suite_Psi/envvars: -------------------------------------------------------------------------------- 1 | PSIDATADIR=/Users/mblsha/src/psi/qa/integration/psi-data 2 | SQUISH_ENABLED=true 3 | -------------------------------------------------------------------------------- /qa/oldtest/checkall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/oldtest/checkall -------------------------------------------------------------------------------- /qa/oldtest/mac_qt_debug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/oldtest/mac_qt_debug.rb -------------------------------------------------------------------------------- /qa/oldtest/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/oldtest/tests.txt -------------------------------------------------------------------------------- /qa/oldtest/unittest-main.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/oldtest/unittest-main.pri -------------------------------------------------------------------------------- /qa/oldtest/unittest.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/oldtest/unittest.pri -------------------------------------------------------------------------------- /qa/oldtest/unittest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/oldtest/unittest.pro -------------------------------------------------------------------------------- /qa/oldtest/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/oldtest/update.rb -------------------------------------------------------------------------------- /qa/valgrind/valgrind-main.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/valgrind/valgrind-main.pri -------------------------------------------------------------------------------- /qa/valgrind/valgrind.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/valgrind/valgrind.pri -------------------------------------------------------------------------------- /qa/valgrind/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/qa/valgrind/valgrind.supp -------------------------------------------------------------------------------- /skins/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/skins/default.png -------------------------------------------------------------------------------- /skins/default.skn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/skins/default.skn -------------------------------------------------------------------------------- /skins/universal/blue/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/skins/universal/blue/blue.png -------------------------------------------------------------------------------- /skins/universal/blue/blue.skn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/skins/universal/blue/blue.skn -------------------------------------------------------------------------------- /skins/universal/dark/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/skins/universal/dark/dark.png -------------------------------------------------------------------------------- /skins/universal/dark/dark.skn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/skins/universal/dark/dark.skn -------------------------------------------------------------------------------- /skins/universal/sky/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/skins/universal/sky/sky.png -------------------------------------------------------------------------------- /skins/universal/sky/sky.skn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/skins/universal/sky/sky.skn -------------------------------------------------------------------------------- /sound/attention.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/attention.wav -------------------------------------------------------------------------------- /sound/chat1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/chat1.wav -------------------------------------------------------------------------------- /sound/chat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/chat2.wav -------------------------------------------------------------------------------- /sound/chess_error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/chess_error.wav -------------------------------------------------------------------------------- /sound/chess_finish.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/chess_finish.wav -------------------------------------------------------------------------------- /sound/chess_move.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/chess_move.wav -------------------------------------------------------------------------------- /sound/chess_start.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/chess_start.wav -------------------------------------------------------------------------------- /sound/email.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/email.wav -------------------------------------------------------------------------------- /sound/ft_complete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/ft_complete.wav -------------------------------------------------------------------------------- /sound/ft_incoming.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/ft_incoming.wav -------------------------------------------------------------------------------- /sound/offline.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/offline.wav -------------------------------------------------------------------------------- /sound/online.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/online.wav -------------------------------------------------------------------------------- /sound/pepnotify.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/pepnotify.wav -------------------------------------------------------------------------------- /sound/reminder.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/reminder.wav -------------------------------------------------------------------------------- /sound/send.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/send.wav -------------------------------------------------------------------------------- /sound/watcher.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/sound/watcher.wav -------------------------------------------------------------------------------- /src/AutoUpdater/AutoUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/AutoUpdater/AutoUpdater.h -------------------------------------------------------------------------------- /src/AutoUpdater/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/AutoUpdater/CMakeLists.txt -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Certificates/unittest/unittest.pri: -------------------------------------------------------------------------------- 1 | SOURCES += \ 2 | $$PWD/CertificateHelpersTest.cpp 3 | -------------------------------------------------------------------------------- /src/MockQCA/MockQCA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/MockQCA/MockQCA.cpp -------------------------------------------------------------------------------- /src/MockQCA/QtCrypto: -------------------------------------------------------------------------------- 1 | #include "QtCrypto.h" 2 | -------------------------------------------------------------------------------- /src/MockQCA/QtCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/MockQCA/QtCrypto.h -------------------------------------------------------------------------------- /src/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/about.ui -------------------------------------------------------------------------------- /src/aboutdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/aboutdlg.cpp -------------------------------------------------------------------------------- /src/aboutdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/aboutdlg.h -------------------------------------------------------------------------------- /src/abstracttreeitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/abstracttreeitem.cpp -------------------------------------------------------------------------------- /src/abstracttreeitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/abstracttreeitem.h -------------------------------------------------------------------------------- /src/abstracttreemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/abstracttreemodel.cpp -------------------------------------------------------------------------------- /src/abstracttreemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/abstracttreemodel.h -------------------------------------------------------------------------------- /src/accountadd.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountadd.ui -------------------------------------------------------------------------------- /src/accountadddlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountadddlg.cpp -------------------------------------------------------------------------------- /src/accountadddlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountadddlg.h -------------------------------------------------------------------------------- /src/accountlabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountlabel.cpp -------------------------------------------------------------------------------- /src/accountlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountlabel.h -------------------------------------------------------------------------------- /src/accountmanage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountmanage.ui -------------------------------------------------------------------------------- /src/accountmanagedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountmanagedlg.cpp -------------------------------------------------------------------------------- /src/accountmanagedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountmanagedlg.h -------------------------------------------------------------------------------- /src/accountmodify.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountmodify.ui -------------------------------------------------------------------------------- /src/accountmodifydlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountmodifydlg.cpp -------------------------------------------------------------------------------- /src/accountmodifydlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountmodifydlg.h -------------------------------------------------------------------------------- /src/accountreg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountreg.ui -------------------------------------------------------------------------------- /src/accountregdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountregdlg.cpp -------------------------------------------------------------------------------- /src/accountregdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountregdlg.h -------------------------------------------------------------------------------- /src/accountremove.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountremove.ui -------------------------------------------------------------------------------- /src/accountscombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountscombobox.cpp -------------------------------------------------------------------------------- /src/accountscombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountscombobox.h -------------------------------------------------------------------------------- /src/accountstatusmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountstatusmenu.cpp -------------------------------------------------------------------------------- /src/accountstatusmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/accountstatusmenu.h -------------------------------------------------------------------------------- /src/actionlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/actionlist.cpp -------------------------------------------------------------------------------- /src/actionlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/actionlist.h -------------------------------------------------------------------------------- /src/activecontactsmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activecontactsmenu.cpp -------------------------------------------------------------------------------- /src/activecontactsmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activecontactsmenu.h -------------------------------------------------------------------------------- /src/activeprofiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activeprofiles.cpp -------------------------------------------------------------------------------- /src/activeprofiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activeprofiles.h -------------------------------------------------------------------------------- /src/activeprofiles_dbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activeprofiles_dbus.cpp -------------------------------------------------------------------------------- /src/activeprofiles_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activeprofiles_stub.cpp -------------------------------------------------------------------------------- /src/activeprofiles_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activeprofiles_win.cpp -------------------------------------------------------------------------------- /src/activity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activity.cpp -------------------------------------------------------------------------------- /src/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activity.h -------------------------------------------------------------------------------- /src/activity.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activity.ui -------------------------------------------------------------------------------- /src/activitycatalog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activitycatalog.cpp -------------------------------------------------------------------------------- /src/activitycatalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activitycatalog.h -------------------------------------------------------------------------------- /src/activitydlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activitydlg.cpp -------------------------------------------------------------------------------- /src/activitydlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/activitydlg.h -------------------------------------------------------------------------------- /src/addurl.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/addurl.ui -------------------------------------------------------------------------------- /src/adduser.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/adduser.ui -------------------------------------------------------------------------------- /src/adduserdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/adduserdlg.cpp -------------------------------------------------------------------------------- /src/adduserdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/adduserdlg.h -------------------------------------------------------------------------------- /src/adhoc_fileserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/adhoc_fileserver.cpp -------------------------------------------------------------------------------- /src/adhoc_fileserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/adhoc_fileserver.h -------------------------------------------------------------------------------- /src/ahcexecutetask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcexecutetask.cpp -------------------------------------------------------------------------------- /src/ahcexecutetask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcexecutetask.h -------------------------------------------------------------------------------- /src/ahcformdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcformdlg.cpp -------------------------------------------------------------------------------- /src/ahcformdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcformdlg.h -------------------------------------------------------------------------------- /src/ahcformdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcformdlg.ui -------------------------------------------------------------------------------- /src/ahcommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcommand.cpp -------------------------------------------------------------------------------- /src/ahcommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcommand.h -------------------------------------------------------------------------------- /src/ahcommanddlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcommanddlg.cpp -------------------------------------------------------------------------------- /src/ahcommanddlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcommanddlg.h -------------------------------------------------------------------------------- /src/ahcommanddlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcommanddlg.ui -------------------------------------------------------------------------------- /src/ahcommandserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcommandserver.cpp -------------------------------------------------------------------------------- /src/ahcommandserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcommandserver.h -------------------------------------------------------------------------------- /src/ahcservermanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcservermanager.cpp -------------------------------------------------------------------------------- /src/ahcservermanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/ahcservermanager.h -------------------------------------------------------------------------------- /src/alertable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/alertable.cpp -------------------------------------------------------------------------------- /src/alertable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/alertable.h -------------------------------------------------------------------------------- /src/alerticon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/alerticon.cpp -------------------------------------------------------------------------------- /src/alerticon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/alerticon.h -------------------------------------------------------------------------------- /src/alertmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/alertmanager.cpp -------------------------------------------------------------------------------- /src/alertmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/alertmanager.h -------------------------------------------------------------------------------- /src/applicationinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/applicationinfo.cpp -------------------------------------------------------------------------------- /src/applicationinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/applicationinfo.h -------------------------------------------------------------------------------- /src/avatars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/avatars.cpp -------------------------------------------------------------------------------- /src/avatars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/avatars.h -------------------------------------------------------------------------------- /src/avcall/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/avcall/CMakeLists.txt -------------------------------------------------------------------------------- /src/avcall/avcall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/avcall/avcall.cpp -------------------------------------------------------------------------------- /src/avcall/avcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/avcall/avcall.h -------------------------------------------------------------------------------- /src/avcall/call.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/avcall/call.ui -------------------------------------------------------------------------------- /src/avcall/calldlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/avcall/calldlg.cpp -------------------------------------------------------------------------------- /src/avcall/calldlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/avcall/calldlg.h -------------------------------------------------------------------------------- /src/avcall/jinglertp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/avcall/jinglertp.cpp -------------------------------------------------------------------------------- /src/avcall/jinglertp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/avcall/jinglertp.h -------------------------------------------------------------------------------- /src/avcall/jinglertptasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/avcall/jinglertptasks.cpp -------------------------------------------------------------------------------- /src/avcall/jinglertptasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/avcall/jinglertptasks.h -------------------------------------------------------------------------------- /src/bobfilecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/bobfilecache.cpp -------------------------------------------------------------------------------- /src/bobfilecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/bobfilecache.h -------------------------------------------------------------------------------- /src/bookmarkmanage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/bookmarkmanage.ui -------------------------------------------------------------------------------- /src/bookmarkmanagedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/bookmarkmanagedlg.cpp -------------------------------------------------------------------------------- /src/bookmarkmanagedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/bookmarkmanagedlg.h -------------------------------------------------------------------------------- /src/bookmarkmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/bookmarkmanager.cpp -------------------------------------------------------------------------------- /src/bookmarkmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/bookmarkmanager.h -------------------------------------------------------------------------------- /src/bosskey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/bosskey.cpp -------------------------------------------------------------------------------- /src/bosskey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/bosskey.h -------------------------------------------------------------------------------- /src/bytearrayreply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/bytearrayreply.cpp -------------------------------------------------------------------------------- /src/bytearrayreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/bytearrayreply.h -------------------------------------------------------------------------------- /src/captchadlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/captchadlg.cpp -------------------------------------------------------------------------------- /src/captchadlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/captchadlg.h -------------------------------------------------------------------------------- /src/captchadlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/captchadlg.ui -------------------------------------------------------------------------------- /src/changepw.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/changepw.ui -------------------------------------------------------------------------------- /src/changepwdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/changepwdlg.cpp -------------------------------------------------------------------------------- /src/changepwdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/changepwdlg.h -------------------------------------------------------------------------------- /src/chatdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatdlg.cpp -------------------------------------------------------------------------------- /src/chatdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatdlg.h -------------------------------------------------------------------------------- /src/chatdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatdlg.ui -------------------------------------------------------------------------------- /src/chateditproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chateditproxy.cpp -------------------------------------------------------------------------------- /src/chateditproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chateditproxy.h -------------------------------------------------------------------------------- /src/chatsplitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatsplitter.cpp -------------------------------------------------------------------------------- /src/chatsplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatsplitter.h -------------------------------------------------------------------------------- /src/chatview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatview.h -------------------------------------------------------------------------------- /src/chatview_te.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatview_te.cpp -------------------------------------------------------------------------------- /src/chatview_te.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatview_te.h -------------------------------------------------------------------------------- /src/chatview_webkit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatview_webkit.cpp -------------------------------------------------------------------------------- /src/chatview_webkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatview_webkit.h -------------------------------------------------------------------------------- /src/chatviewcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatviewcommon.cpp -------------------------------------------------------------------------------- /src/chatviewcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatviewcommon.h -------------------------------------------------------------------------------- /src/chatviewtheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatviewtheme.cpp -------------------------------------------------------------------------------- /src/chatviewtheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatviewtheme.h -------------------------------------------------------------------------------- /src/chatviewtheme_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatviewtheme_p.h -------------------------------------------------------------------------------- /src/chatviewthemeprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatviewthemeprovider.cpp -------------------------------------------------------------------------------- /src/chatviewthemeprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/chatviewthemeprovider.h -------------------------------------------------------------------------------- /src/coloropt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/coloropt.cpp -------------------------------------------------------------------------------- /src/coloropt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/coloropt.h -------------------------------------------------------------------------------- /src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/common.cpp -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/common.h -------------------------------------------------------------------------------- /src/conferencebookmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/conferencebookmark.cpp -------------------------------------------------------------------------------- /src/conferencebookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/conferencebookmark.h -------------------------------------------------------------------------------- /src/contactlistaccountmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistaccountmenu.cpp -------------------------------------------------------------------------------- /src/contactlistaccountmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistaccountmenu.h -------------------------------------------------------------------------------- /src/contactlistdragmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistdragmodel.cpp -------------------------------------------------------------------------------- /src/contactlistdragmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistdragmodel.h -------------------------------------------------------------------------------- /src/contactlistdragview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistdragview.cpp -------------------------------------------------------------------------------- /src/contactlistdragview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistdragview.h -------------------------------------------------------------------------------- /src/contactlistgroupmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistgroupmenu.cpp -------------------------------------------------------------------------------- /src/contactlistgroupmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistgroupmenu.h -------------------------------------------------------------------------------- /src/contactlistgroupmenu_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistgroupmenu_p.h -------------------------------------------------------------------------------- /src/contactlistitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistitem.cpp -------------------------------------------------------------------------------- /src/contactlistitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistitem.h -------------------------------------------------------------------------------- /src/contactlistitemmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistitemmenu.cpp -------------------------------------------------------------------------------- /src/contactlistitemmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistitemmenu.h -------------------------------------------------------------------------------- /src/contactlistmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistmodel.cpp -------------------------------------------------------------------------------- /src/contactlistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistmodel.h -------------------------------------------------------------------------------- /src/contactlistmodel_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistmodel_p.h -------------------------------------------------------------------------------- /src/contactlistproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistproxymodel.cpp -------------------------------------------------------------------------------- /src/contactlistproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistproxymodel.h -------------------------------------------------------------------------------- /src/contactlistview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistview.cpp -------------------------------------------------------------------------------- /src/contactlistview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistview.h -------------------------------------------------------------------------------- /src/contactlistviewdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactlistviewdelegate.h -------------------------------------------------------------------------------- /src/contactupdatesmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactupdatesmanager.cpp -------------------------------------------------------------------------------- /src/contactupdatesmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/contactupdatesmanager.h -------------------------------------------------------------------------------- /src/dbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/dbus.cpp -------------------------------------------------------------------------------- /src/dbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/dbus.h -------------------------------------------------------------------------------- /src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/debug.cpp -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/desktoputil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/desktoputil.cpp -------------------------------------------------------------------------------- /src/desktoputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/desktoputil.h -------------------------------------------------------------------------------- /src/disco.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/disco.ui -------------------------------------------------------------------------------- /src/discodlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/discodlg.cpp -------------------------------------------------------------------------------- /src/discodlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/discodlg.h -------------------------------------------------------------------------------- /src/dummystream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/dummystream.cpp -------------------------------------------------------------------------------- /src/dummystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/dummystream.h -------------------------------------------------------------------------------- /src/edbflatfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/edbflatfile.cpp -------------------------------------------------------------------------------- /src/edbflatfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/edbflatfile.h -------------------------------------------------------------------------------- /src/edbsqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/edbsqlite.cpp -------------------------------------------------------------------------------- /src/edbsqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/edbsqlite.h -------------------------------------------------------------------------------- /src/eventdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/eventdb.cpp -------------------------------------------------------------------------------- /src/eventdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/eventdb.h -------------------------------------------------------------------------------- /src/eventdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/eventdlg.cpp -------------------------------------------------------------------------------- /src/eventdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/eventdlg.h -------------------------------------------------------------------------------- /src/filecache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filecache.cpp -------------------------------------------------------------------------------- /src/filecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filecache.h -------------------------------------------------------------------------------- /src/filesharedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filesharedlg.cpp -------------------------------------------------------------------------------- /src/filesharedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filesharedlg.h -------------------------------------------------------------------------------- /src/filesharedlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filesharedlg.ui -------------------------------------------------------------------------------- /src/filesharingdownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filesharingdownloader.cpp -------------------------------------------------------------------------------- /src/filesharingdownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filesharingdownloader.h -------------------------------------------------------------------------------- /src/filesharingitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filesharingitem.cpp -------------------------------------------------------------------------------- /src/filesharingitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filesharingitem.h -------------------------------------------------------------------------------- /src/filesharingmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filesharingmanager.cpp -------------------------------------------------------------------------------- /src/filesharingmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filesharingmanager.h -------------------------------------------------------------------------------- /src/filesharingproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filesharingproxy.cpp -------------------------------------------------------------------------------- /src/filesharingproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filesharingproxy.h -------------------------------------------------------------------------------- /src/filetrans.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filetrans.ui -------------------------------------------------------------------------------- /src/filetransdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filetransdlg.cpp -------------------------------------------------------------------------------- /src/filetransdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/filetransdlg.h -------------------------------------------------------------------------------- /src/fileutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/fileutil.cpp -------------------------------------------------------------------------------- /src/fileutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/fileutil.h -------------------------------------------------------------------------------- /src/gcuserview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/gcuserview.cpp -------------------------------------------------------------------------------- /src/gcuserview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/gcuserview.h -------------------------------------------------------------------------------- /src/geolocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/geolocation.cpp -------------------------------------------------------------------------------- /src/geolocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/geolocation.h -------------------------------------------------------------------------------- /src/geolocation.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/geolocation.ui -------------------------------------------------------------------------------- /src/geolocationdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/geolocationdlg.cpp -------------------------------------------------------------------------------- /src/geolocationdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/geolocationdlg.h -------------------------------------------------------------------------------- /src/globaleventqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/globaleventqueue.cpp -------------------------------------------------------------------------------- /src/globaleventqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/globaleventqueue.h -------------------------------------------------------------------------------- /src/globalstatusmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/globalstatusmenu.cpp -------------------------------------------------------------------------------- /src/globalstatusmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/globalstatusmenu.h -------------------------------------------------------------------------------- /src/googleftmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/googleftmanager.cpp -------------------------------------------------------------------------------- /src/googleftmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/googleftmanager.h -------------------------------------------------------------------------------- /src/gpgprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/gpgprocess.cpp -------------------------------------------------------------------------------- /src/gpgprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/gpgprocess.h -------------------------------------------------------------------------------- /src/gpgtransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/gpgtransaction.cpp -------------------------------------------------------------------------------- /src/gpgtransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/gpgtransaction.h -------------------------------------------------------------------------------- /src/groupchatdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/groupchatdlg.cpp -------------------------------------------------------------------------------- /src/groupchatdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/groupchatdlg.h -------------------------------------------------------------------------------- /src/groupchatdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/groupchatdlg.ui -------------------------------------------------------------------------------- /src/groupchattopicaddlang.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/groupchattopicaddlang.ui -------------------------------------------------------------------------------- /src/groupchattopicdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/groupchattopicdlg.cpp -------------------------------------------------------------------------------- /src/groupchattopicdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/groupchattopicdlg.h -------------------------------------------------------------------------------- /src/groupchattopicdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/groupchattopicdlg.ui -------------------------------------------------------------------------------- /src/groupmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/groupmenu.cpp -------------------------------------------------------------------------------- /src/groupmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/groupmenu.h -------------------------------------------------------------------------------- /src/history.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/history.ui -------------------------------------------------------------------------------- /src/historycontactlistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/historycontactlistmodel.h -------------------------------------------------------------------------------- /src/historydlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/historydlg.cpp -------------------------------------------------------------------------------- /src/historydlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/historydlg.h -------------------------------------------------------------------------------- /src/historyimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/historyimp.cpp -------------------------------------------------------------------------------- /src/historyimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/historyimp.h -------------------------------------------------------------------------------- /src/hoverabletreeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/hoverabletreeview.cpp -------------------------------------------------------------------------------- /src/hoverabletreeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/hoverabletreeview.h -------------------------------------------------------------------------------- /src/htmltextcontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/htmltextcontroller.cpp -------------------------------------------------------------------------------- /src/htmltextcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/htmltextcontroller.h -------------------------------------------------------------------------------- /src/httpauthmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/httpauthmanager.cpp -------------------------------------------------------------------------------- /src/httpauthmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/httpauthmanager.h -------------------------------------------------------------------------------- /src/httputil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/httputil.cpp -------------------------------------------------------------------------------- /src/httputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/httputil.h -------------------------------------------------------------------------------- /src/info.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/info.ui -------------------------------------------------------------------------------- /src/infodlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/infodlg.cpp -------------------------------------------------------------------------------- /src/infodlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/infodlg.h -------------------------------------------------------------------------------- /src/infodlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/infodlg.ui -------------------------------------------------------------------------------- /src/invitetogroupchatmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/invitetogroupchatmenu.cpp -------------------------------------------------------------------------------- /src/invitetogroupchatmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/invitetogroupchatmenu.h -------------------------------------------------------------------------------- /src/jidutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/jidutil.cpp -------------------------------------------------------------------------------- /src/jidutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/jidutil.h -------------------------------------------------------------------------------- /src/jinglevoicecaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/jinglevoicecaller.cpp -------------------------------------------------------------------------------- /src/jinglevoicecaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/jinglevoicecaller.h -------------------------------------------------------------------------------- /src/jsutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/jsutil.cpp -------------------------------------------------------------------------------- /src/jsutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/jsutil.h -------------------------------------------------------------------------------- /src/lastactivitytask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/lastactivitytask.cpp -------------------------------------------------------------------------------- /src/lastactivitytask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/lastactivitytask.h -------------------------------------------------------------------------------- /src/libpsi/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/libpsi/COPYING -------------------------------------------------------------------------------- /src/libpsi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/libpsi/README -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/main.h -------------------------------------------------------------------------------- /src/mainwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mainwin.cpp -------------------------------------------------------------------------------- /src/mainwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mainwin.h -------------------------------------------------------------------------------- /src/mainwin_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mainwin_p.cpp -------------------------------------------------------------------------------- /src/mainwin_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mainwin_p.h -------------------------------------------------------------------------------- /src/mcmdcompletion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mcmdcompletion.cpp -------------------------------------------------------------------------------- /src/mcmdcompletion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mcmdcompletion.h -------------------------------------------------------------------------------- /src/mcmdmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mcmdmanager.cpp -------------------------------------------------------------------------------- /src/mcmdmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mcmdmanager.h -------------------------------------------------------------------------------- /src/mcmdsimplesite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mcmdsimplesite.cpp -------------------------------------------------------------------------------- /src/mcmdsimplesite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mcmdsimplesite.h -------------------------------------------------------------------------------- /src/messageview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/messageview.cpp -------------------------------------------------------------------------------- /src/messageview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/messageview.h -------------------------------------------------------------------------------- /src/miniclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/miniclient.cpp -------------------------------------------------------------------------------- /src/miniclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/miniclient.h -------------------------------------------------------------------------------- /src/minicmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/minicmd.h -------------------------------------------------------------------------------- /src/mood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mood.cpp -------------------------------------------------------------------------------- /src/mood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mood.h -------------------------------------------------------------------------------- /src/mood.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mood.ui -------------------------------------------------------------------------------- /src/moodcatalog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/moodcatalog.cpp -------------------------------------------------------------------------------- /src/moodcatalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/moodcatalog.h -------------------------------------------------------------------------------- /src/mooddlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mooddlg.cpp -------------------------------------------------------------------------------- /src/mooddlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mooddlg.h -------------------------------------------------------------------------------- /src/msgmle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/msgmle.cpp -------------------------------------------------------------------------------- /src/msgmle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/msgmle.h -------------------------------------------------------------------------------- /src/mucaffiliationsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucaffiliationsmodel.cpp -------------------------------------------------------------------------------- /src/mucaffiliationsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucaffiliationsmodel.h -------------------------------------------------------------------------------- /src/mucaffiliationsview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucaffiliationsview.cpp -------------------------------------------------------------------------------- /src/mucaffiliationsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucaffiliationsview.h -------------------------------------------------------------------------------- /src/mucconfig.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucconfig.ui -------------------------------------------------------------------------------- /src/mucconfigdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucconfigdlg.cpp -------------------------------------------------------------------------------- /src/mucconfigdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucconfigdlg.h -------------------------------------------------------------------------------- /src/mucinfo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucinfo.ui -------------------------------------------------------------------------------- /src/mucjoin.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucjoin.ui -------------------------------------------------------------------------------- /src/mucjoindlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucjoindlg.cpp -------------------------------------------------------------------------------- /src/mucjoindlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucjoindlg.h -------------------------------------------------------------------------------- /src/mucmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucmanager.cpp -------------------------------------------------------------------------------- /src/mucmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucmanager.h -------------------------------------------------------------------------------- /src/mucreasonseditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucreasonseditor.cpp -------------------------------------------------------------------------------- /src/mucreasonseditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucreasonseditor.h -------------------------------------------------------------------------------- /src/mucreasonseditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/mucreasonseditor.ui -------------------------------------------------------------------------------- /src/multifiletransferdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/multifiletransferdlg.cpp -------------------------------------------------------------------------------- /src/multifiletransferdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/multifiletransferdlg.h -------------------------------------------------------------------------------- /src/multifiletransferdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/multifiletransferdlg.ui -------------------------------------------------------------------------------- /src/multifiletransferitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/multifiletransferitem.cpp -------------------------------------------------------------------------------- /src/multifiletransferitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/multifiletransferitem.h -------------------------------------------------------------------------------- /src/multifiletransfermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/multifiletransfermodel.cpp -------------------------------------------------------------------------------- /src/multifiletransfermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/multifiletransfermodel.h -------------------------------------------------------------------------------- /src/networkaccessmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/networkaccessmanager.cpp -------------------------------------------------------------------------------- /src/networkaccessmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/networkaccessmanager.h -------------------------------------------------------------------------------- /src/optioneditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/optioneditor.ui -------------------------------------------------------------------------------- /src/options/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/CMakeLists.txt -------------------------------------------------------------------------------- /src/options/opt_accounts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_accounts.cpp -------------------------------------------------------------------------------- /src/options/opt_accounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_accounts.h -------------------------------------------------------------------------------- /src/options/opt_advanced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_advanced.cpp -------------------------------------------------------------------------------- /src/options/opt_advanced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_advanced.h -------------------------------------------------------------------------------- /src/options/opt_advanced.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_advanced.ui -------------------------------------------------------------------------------- /src/options/opt_appearance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_appearance.cpp -------------------------------------------------------------------------------- /src/options/opt_appearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_appearance.h -------------------------------------------------------------------------------- /src/options/opt_appearance.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_appearance.ui -------------------------------------------------------------------------------- /src/options/opt_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_application.h -------------------------------------------------------------------------------- /src/options/opt_application.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_application.ui -------------------------------------------------------------------------------- /src/options/opt_chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_chat.cpp -------------------------------------------------------------------------------- /src/options/opt_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_chat.h -------------------------------------------------------------------------------- /src/options/opt_chat.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_chat.ui -------------------------------------------------------------------------------- /src/options/opt_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_events.cpp -------------------------------------------------------------------------------- /src/options/opt_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_events.h -------------------------------------------------------------------------------- /src/options/opt_events.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_events.ui -------------------------------------------------------------------------------- /src/options/opt_groupchat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_groupchat.cpp -------------------------------------------------------------------------------- /src/options/opt_groupchat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_groupchat.h -------------------------------------------------------------------------------- /src/options/opt_iconset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_iconset.cpp -------------------------------------------------------------------------------- /src/options/opt_iconset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_iconset.h -------------------------------------------------------------------------------- /src/options/opt_iconset_emo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_iconset_emo.ui -------------------------------------------------------------------------------- /src/options/opt_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_input.cpp -------------------------------------------------------------------------------- /src/options/opt_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_input.h -------------------------------------------------------------------------------- /src/options/opt_input.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_input.ui -------------------------------------------------------------------------------- /src/options/opt_messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_messages.cpp -------------------------------------------------------------------------------- /src/options/opt_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_messages.h -------------------------------------------------------------------------------- /src/options/opt_plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_plugins.cpp -------------------------------------------------------------------------------- /src/options/opt_plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_plugins.h -------------------------------------------------------------------------------- /src/options/opt_plugins.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_plugins.ui -------------------------------------------------------------------------------- /src/options/opt_popups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_popups.cpp -------------------------------------------------------------------------------- /src/options/opt_popups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_popups.h -------------------------------------------------------------------------------- /src/options/opt_popups.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_popups.ui -------------------------------------------------------------------------------- /src/options/opt_roster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_roster.cpp -------------------------------------------------------------------------------- /src/options/opt_roster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_roster.h -------------------------------------------------------------------------------- /src/options/opt_roster_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_roster_main.h -------------------------------------------------------------------------------- /src/options/opt_roster_main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_roster_main.ui -------------------------------------------------------------------------------- /src/options/opt_roster_muc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_roster_muc.cpp -------------------------------------------------------------------------------- /src/options/opt_roster_muc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_roster_muc.h -------------------------------------------------------------------------------- /src/options/opt_roster_muc.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_roster_muc.ui -------------------------------------------------------------------------------- /src/options/opt_shortcuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_shortcuts.cpp -------------------------------------------------------------------------------- /src/options/opt_shortcuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_shortcuts.h -------------------------------------------------------------------------------- /src/options/opt_shortcuts.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_shortcuts.ui -------------------------------------------------------------------------------- /src/options/opt_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_sound.cpp -------------------------------------------------------------------------------- /src/options/opt_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_sound.h -------------------------------------------------------------------------------- /src/options/opt_sound.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_sound.ui -------------------------------------------------------------------------------- /src/options/opt_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_status.cpp -------------------------------------------------------------------------------- /src/options/opt_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_status.h -------------------------------------------------------------------------------- /src/options/opt_statuspep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_statuspep.h -------------------------------------------------------------------------------- /src/options/opt_theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_theme.cpp -------------------------------------------------------------------------------- /src/options/opt_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_theme.h -------------------------------------------------------------------------------- /src/options/opt_theme.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_theme.ui -------------------------------------------------------------------------------- /src/options/opt_toolbars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_toolbars.h -------------------------------------------------------------------------------- /src/options/opt_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_tree.cpp -------------------------------------------------------------------------------- /src/options/opt_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/opt_tree.h -------------------------------------------------------------------------------- /src/options/optionsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/optionsdlg.cpp -------------------------------------------------------------------------------- /src/options/optionsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/optionsdlg.h -------------------------------------------------------------------------------- /src/options/optionstab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/optionstab.cpp -------------------------------------------------------------------------------- /src/options/optionstab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/optionstab.h -------------------------------------------------------------------------------- /src/options/ui_isdetails.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/ui_isdetails.ui -------------------------------------------------------------------------------- /src/options/ui_options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/options/ui_options.ui -------------------------------------------------------------------------------- /src/passdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/passdialog.cpp -------------------------------------------------------------------------------- /src/passdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/passdialog.h -------------------------------------------------------------------------------- /src/password.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/password.ui -------------------------------------------------------------------------------- /src/pepmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pepmanager.cpp -------------------------------------------------------------------------------- /src/pepmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pepmanager.h -------------------------------------------------------------------------------- /src/pgpkey.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pgpkey.ui -------------------------------------------------------------------------------- /src/pgpkeydlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pgpkeydlg.cpp -------------------------------------------------------------------------------- /src/pgpkeydlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pgpkeydlg.h -------------------------------------------------------------------------------- /src/pgputil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pgputil.cpp -------------------------------------------------------------------------------- /src/pgputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pgputil.h -------------------------------------------------------------------------------- /src/pixmaputil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pixmaputil.cpp -------------------------------------------------------------------------------- /src/pixmaputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pixmaputil.h -------------------------------------------------------------------------------- /src/pluginhost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pluginhost.cpp -------------------------------------------------------------------------------- /src/pluginhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pluginhost.h -------------------------------------------------------------------------------- /src/pluginmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pluginmanager.cpp -------------------------------------------------------------------------------- /src/pluginmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pluginmanager.h -------------------------------------------------------------------------------- /src/popupmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/popupmanager.cpp -------------------------------------------------------------------------------- /src/popupmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/popupmanager.h -------------------------------------------------------------------------------- /src/privacy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/privacy/CMakeLists.txt -------------------------------------------------------------------------------- /src/privacy/privacy.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/privacy/privacy.pri -------------------------------------------------------------------------------- /src/privacy/privacy.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/privacy/privacy.ui -------------------------------------------------------------------------------- /src/privacy/privacydlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/privacy/privacydlg.cpp -------------------------------------------------------------------------------- /src/privacy/privacydlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/privacy/privacydlg.h -------------------------------------------------------------------------------- /src/privacy/privacylist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/privacy/privacylist.cpp -------------------------------------------------------------------------------- /src/privacy/privacylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/privacy/privacylist.h -------------------------------------------------------------------------------- /src/privacy/privacyrule.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/privacy/privacyrule.ui -------------------------------------------------------------------------------- /src/privacy/unittest/unittest.pri: -------------------------------------------------------------------------------- 1 | SOURCES += \ 2 | $$PWD/privacylistitemtest.cpp 3 | -------------------------------------------------------------------------------- /src/profiledlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/profiledlg.cpp -------------------------------------------------------------------------------- /src/profiledlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/profiledlg.h -------------------------------------------------------------------------------- /src/profilemanage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/profilemanage.ui -------------------------------------------------------------------------------- /src/profilenew.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/profilenew.ui -------------------------------------------------------------------------------- /src/profileopen.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/profileopen.ui -------------------------------------------------------------------------------- /src/profiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/profiles.h -------------------------------------------------------------------------------- /src/protocol/protocol.cmake: -------------------------------------------------------------------------------- 1 | list(APPEND HEADERS 2 | protocol/discoinfoquerier.h 3 | ) 4 | -------------------------------------------------------------------------------- /src/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/proxy.cpp -------------------------------------------------------------------------------- /src/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/proxy.h -------------------------------------------------------------------------------- /src/proxy.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/proxy.ui -------------------------------------------------------------------------------- /src/psi_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psi_config.h.in -------------------------------------------------------------------------------- /src/psi_profiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psi_profiles.cpp -------------------------------------------------------------------------------- /src/psiaccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psiaccount.cpp -------------------------------------------------------------------------------- /src/psiaccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psiaccount.h -------------------------------------------------------------------------------- /src/psiactionlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psiactionlist.cpp -------------------------------------------------------------------------------- /src/psiactionlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psiactionlist.h -------------------------------------------------------------------------------- /src/psiactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psiactions.h -------------------------------------------------------------------------------- /src/psiapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psiapplication.cpp -------------------------------------------------------------------------------- /src/psiapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psiapplication.h -------------------------------------------------------------------------------- /src/psicapsregsitry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicapsregsitry.cpp -------------------------------------------------------------------------------- /src/psicapsregsitry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicapsregsitry.h -------------------------------------------------------------------------------- /src/psichatdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psichatdlg.cpp -------------------------------------------------------------------------------- /src/psichatdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psichatdlg.h -------------------------------------------------------------------------------- /src/psicli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicli.h -------------------------------------------------------------------------------- /src/psicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicon.cpp -------------------------------------------------------------------------------- /src/psicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicon.h -------------------------------------------------------------------------------- /src/psicontact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicontact.cpp -------------------------------------------------------------------------------- /src/psicontact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicontact.h -------------------------------------------------------------------------------- /src/psicontactlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicontactlist.cpp -------------------------------------------------------------------------------- /src/psicontactlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicontactlist.h -------------------------------------------------------------------------------- /src/psicontactlistview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicontactlistview.cpp -------------------------------------------------------------------------------- /src/psicontactlistview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicontactlistview.h -------------------------------------------------------------------------------- /src/psicontactmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicontactmenu.cpp -------------------------------------------------------------------------------- /src/psicontactmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicontactmenu.h -------------------------------------------------------------------------------- /src/psicontactmenu_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psicontactmenu_p.h -------------------------------------------------------------------------------- /src/psidbusnotifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psidbusnotifier.cpp -------------------------------------------------------------------------------- /src/psidbusnotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psidbusnotifier.h -------------------------------------------------------------------------------- /src/psievent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psievent.cpp -------------------------------------------------------------------------------- /src/psievent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psievent.h -------------------------------------------------------------------------------- /src/psigrowlnotifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psigrowlnotifier.cpp -------------------------------------------------------------------------------- /src/psigrowlnotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psigrowlnotifier.h -------------------------------------------------------------------------------- /src/psihttpauthrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psihttpauthrequest.h -------------------------------------------------------------------------------- /src/psiiconset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psiiconset.cpp -------------------------------------------------------------------------------- /src/psiiconset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psiiconset.h -------------------------------------------------------------------------------- /src/psimedia/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psimedia/CMakeLists.txt -------------------------------------------------------------------------------- /src/psimedia/psimedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psimedia/psimedia.cpp -------------------------------------------------------------------------------- /src/psimedia/psimedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psimedia/psimedia.h -------------------------------------------------------------------------------- /src/psimedia/psimedia_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psimedia/psimedia_p.h -------------------------------------------------------------------------------- /src/psioptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psioptions.cpp -------------------------------------------------------------------------------- /src/psioptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psioptions.h -------------------------------------------------------------------------------- /src/psioptionseditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psioptionseditor.cpp -------------------------------------------------------------------------------- /src/psioptionseditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psioptionseditor.h -------------------------------------------------------------------------------- /src/psipopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psipopup.cpp -------------------------------------------------------------------------------- /src/psipopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psipopup.h -------------------------------------------------------------------------------- /src/psipopupinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psipopupinterface.cpp -------------------------------------------------------------------------------- /src/psipopupinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psipopupinterface.h -------------------------------------------------------------------------------- /src/psirosterwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psirosterwidget.cpp -------------------------------------------------------------------------------- /src/psirosterwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psirosterwidget.h -------------------------------------------------------------------------------- /src/psiselfcontact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psiselfcontact.h -------------------------------------------------------------------------------- /src/psithememanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psithememanager.cpp -------------------------------------------------------------------------------- /src/psithememanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psithememanager.h -------------------------------------------------------------------------------- /src/psithememodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psithememodel.cpp -------------------------------------------------------------------------------- /src/psithememodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psithememodel.h -------------------------------------------------------------------------------- /src/psithemeprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psithemeprovider.cpp -------------------------------------------------------------------------------- /src/psithemeprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psithemeprovider.h -------------------------------------------------------------------------------- /src/psitoolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psitoolbar.cpp -------------------------------------------------------------------------------- /src/psitoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psitoolbar.h -------------------------------------------------------------------------------- /src/psitrayicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psitrayicon.cpp -------------------------------------------------------------------------------- /src/psitrayicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/psitrayicon.h -------------------------------------------------------------------------------- /src/pubsubsubscription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pubsubsubscription.cpp -------------------------------------------------------------------------------- /src/pubsubsubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/pubsubsubscription.h -------------------------------------------------------------------------------- /src/qwextend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/qwextend.cpp -------------------------------------------------------------------------------- /src/qwextend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/qwextend.h -------------------------------------------------------------------------------- /src/rc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/rc.cpp -------------------------------------------------------------------------------- /src/rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/rc.h -------------------------------------------------------------------------------- /src/registrationdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/registrationdlg.cpp -------------------------------------------------------------------------------- /src/registrationdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/registrationdlg.h -------------------------------------------------------------------------------- /src/resourcemenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/resourcemenu.cpp -------------------------------------------------------------------------------- /src/resourcemenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/resourcemenu.h -------------------------------------------------------------------------------- /src/rosteravatarframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/rosteravatarframe.cpp -------------------------------------------------------------------------------- /src/rosteravatarframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/rosteravatarframe.h -------------------------------------------------------------------------------- /src/rosteravatarframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/rosteravatarframe.ui -------------------------------------------------------------------------------- /src/rtparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/rtparse.cpp -------------------------------------------------------------------------------- /src/rtparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/rtparse.h -------------------------------------------------------------------------------- /src/search.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/search.ui -------------------------------------------------------------------------------- /src/searchdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/searchdlg.cpp -------------------------------------------------------------------------------- /src/searchdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/searchdlg.h -------------------------------------------------------------------------------- /src/sendbuttonmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sendbuttonmenu.cpp -------------------------------------------------------------------------------- /src/sendbuttonmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sendbuttonmenu.h -------------------------------------------------------------------------------- /src/serverlistquerier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/serverlistquerier.cpp -------------------------------------------------------------------------------- /src/serverlistquerier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/serverlistquerier.h -------------------------------------------------------------------------------- /src/shortcutmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/shortcutmanager.cpp -------------------------------------------------------------------------------- /src/shortcutmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/shortcutmanager.h -------------------------------------------------------------------------------- /src/showtextdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/showtextdlg.cpp -------------------------------------------------------------------------------- /src/showtextdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/showtextdlg.h -------------------------------------------------------------------------------- /src/showtextdlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/showtextdlg.ui -------------------------------------------------------------------------------- /src/src.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/src.cmake -------------------------------------------------------------------------------- /src/statuscombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/statuscombobox.cpp -------------------------------------------------------------------------------- /src/statuscombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/statuscombobox.h -------------------------------------------------------------------------------- /src/statusdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/statusdlg.cpp -------------------------------------------------------------------------------- /src/statusdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/statusdlg.h -------------------------------------------------------------------------------- /src/statusmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/statusmenu.cpp -------------------------------------------------------------------------------- /src/statusmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/statusmenu.h -------------------------------------------------------------------------------- /src/statuspreset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/statuspreset.cpp -------------------------------------------------------------------------------- /src/statuspreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/statuspreset.h -------------------------------------------------------------------------------- /src/svgiconengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/svgiconengine.cpp -------------------------------------------------------------------------------- /src/svgiconengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/svgiconengine.h -------------------------------------------------------------------------------- /src/sxe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/CMakeLists.txt -------------------------------------------------------------------------------- /src/sxe/sxeedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxeedit.cpp -------------------------------------------------------------------------------- /src/sxe/sxeedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxeedit.h -------------------------------------------------------------------------------- /src/sxe/sxemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxemanager.cpp -------------------------------------------------------------------------------- /src/sxe/sxemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxemanager.h -------------------------------------------------------------------------------- /src/sxe/sxenewedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxenewedit.cpp -------------------------------------------------------------------------------- /src/sxe/sxenewedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxenewedit.h -------------------------------------------------------------------------------- /src/sxe/sxerecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxerecord.cpp -------------------------------------------------------------------------------- /src/sxe/sxerecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxerecord.h -------------------------------------------------------------------------------- /src/sxe/sxerecordedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxerecordedit.cpp -------------------------------------------------------------------------------- /src/sxe/sxerecordedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxerecordedit.h -------------------------------------------------------------------------------- /src/sxe/sxeremoveedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxeremoveedit.cpp -------------------------------------------------------------------------------- /src/sxe/sxeremoveedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxeremoveedit.h -------------------------------------------------------------------------------- /src/sxe/sxesession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxesession.cpp -------------------------------------------------------------------------------- /src/sxe/sxesession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/sxe/sxesession.h -------------------------------------------------------------------------------- /src/systeminfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/systeminfo.cpp -------------------------------------------------------------------------------- /src/systeminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/systeminfo.h -------------------------------------------------------------------------------- /src/tabcompletion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tabcompletion.cpp -------------------------------------------------------------------------------- /src/tabcompletion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tabcompletion.h -------------------------------------------------------------------------------- /src/tabs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tabs/CMakeLists.txt -------------------------------------------------------------------------------- /src/tabs/tabbablewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tabs/tabbablewidget.cpp -------------------------------------------------------------------------------- /src/tabs/tabbablewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tabs/tabbablewidget.h -------------------------------------------------------------------------------- /src/tabs/tabdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tabs/tabdlg.cpp -------------------------------------------------------------------------------- /src/tabs/tabdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tabs/tabdlg.h -------------------------------------------------------------------------------- /src/tabs/tabmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tabs/tabmanager.cpp -------------------------------------------------------------------------------- /src/tabs/tabmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tabs/tabmanager.h -------------------------------------------------------------------------------- /src/tasklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tasklist.h -------------------------------------------------------------------------------- /src/textutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/textutil.cpp -------------------------------------------------------------------------------- /src/textutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/textutil.h -------------------------------------------------------------------------------- /src/theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/theme.cpp -------------------------------------------------------------------------------- /src/theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/theme.h -------------------------------------------------------------------------------- /src/theme_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/theme_p.cpp -------------------------------------------------------------------------------- /src/theme_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/theme_p.h -------------------------------------------------------------------------------- /src/tipdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tipdlg.cpp -------------------------------------------------------------------------------- /src/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/crash/crash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/crash/crash.cpp -------------------------------------------------------------------------------- /src/tools/crash/crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/crash/crash.h -------------------------------------------------------------------------------- /src/tools/crash/crash.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/crash/crash.pri -------------------------------------------------------------------------------- /src/tools/emojimodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/emojimodel.cpp -------------------------------------------------------------------------------- /src/tools/emojimodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/emojimodel.h -------------------------------------------------------------------------------- /src/tools/growlnotifier/growlnotifier.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tools/iconset/anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/iconset/anim.cpp -------------------------------------------------------------------------------- /src/tools/iconset/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/iconset/anim.h -------------------------------------------------------------------------------- /src/tools/iconset/iconset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/iconset/iconset.h -------------------------------------------------------------------------------- /src/tools/idle/idle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/idle/idle.cpp -------------------------------------------------------------------------------- /src/tools/idle/idle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/idle/idle.h -------------------------------------------------------------------------------- /src/tools/idle/idle_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/idle/idle_mac.cpp -------------------------------------------------------------------------------- /src/tools/idle/idle_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/idle/idle_win.cpp -------------------------------------------------------------------------------- /src/tools/idle/idle_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/idle/idle_x11.cpp -------------------------------------------------------------------------------- /src/tools/iodeviceopener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/iodeviceopener.h -------------------------------------------------------------------------------- /src/tools/languagemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/languagemanager.h -------------------------------------------------------------------------------- /src/tools/maybe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/maybe.h -------------------------------------------------------------------------------- /src/tools/zip/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/zip/minizip/zip.c -------------------------------------------------------------------------------- /src/tools/zip/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/zip/minizip/zip.h -------------------------------------------------------------------------------- /src/tools/zip/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/zip/zip.cpp -------------------------------------------------------------------------------- /src/tools/zip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/tools/zip/zip.h -------------------------------------------------------------------------------- /src/translationmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/translationmanager.cpp -------------------------------------------------------------------------------- /src/translationmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/translationmanager.h -------------------------------------------------------------------------------- /src/unittest/commontest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/unittest/commontest.cpp -------------------------------------------------------------------------------- /src/unittest/unittest.pri: -------------------------------------------------------------------------------- 1 | SOURCES += \ 2 | $$PWD/commontest.cpp 3 | -------------------------------------------------------------------------------- /src/unittest/unittest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/unittest/unittest.pro -------------------------------------------------------------------------------- /src/urlbookmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/urlbookmark.cpp -------------------------------------------------------------------------------- /src/urlbookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/urlbookmark.h -------------------------------------------------------------------------------- /src/userlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/userlist.cpp -------------------------------------------------------------------------------- /src/userlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/userlist.h -------------------------------------------------------------------------------- /src/varlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/varlist.cpp -------------------------------------------------------------------------------- /src/varlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/varlist.h -------------------------------------------------------------------------------- /src/vcardfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/vcardfactory.cpp -------------------------------------------------------------------------------- /src/vcardfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/vcardfactory.h -------------------------------------------------------------------------------- /src/vcardphotodlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/vcardphotodlg.cpp -------------------------------------------------------------------------------- /src/vcardphotodlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/vcardphotodlg.h -------------------------------------------------------------------------------- /src/voicecall.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/voicecall.ui -------------------------------------------------------------------------------- /src/voicecalldlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/voicecalldlg.cpp -------------------------------------------------------------------------------- /src/voicecalldlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/voicecalldlg.h -------------------------------------------------------------------------------- /src/voicecaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/voicecaller.h -------------------------------------------------------------------------------- /src/webserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/webserver.cpp -------------------------------------------------------------------------------- /src/webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/webserver.h -------------------------------------------------------------------------------- /src/webview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/webview.cpp -------------------------------------------------------------------------------- /src/webview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/webview.h -------------------------------------------------------------------------------- /src/whiteboarding/wbdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/whiteboarding/wbdlg.cpp -------------------------------------------------------------------------------- /src/whiteboarding/wbdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/whiteboarding/wbdlg.h -------------------------------------------------------------------------------- /src/whiteboarding/wbitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/whiteboarding/wbitem.h -------------------------------------------------------------------------------- /src/whiteboarding/wbscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/whiteboarding/wbscene.h -------------------------------------------------------------------------------- /src/widgets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/CMakeLists.txt -------------------------------------------------------------------------------- /src/widgets/busywidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/busywidget.cpp -------------------------------------------------------------------------------- /src/widgets/busywidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/busywidget.h -------------------------------------------------------------------------------- /src/widgets/emojidb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/emojidb.h -------------------------------------------------------------------------------- /src/widgets/emojiregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/emojiregistry.h -------------------------------------------------------------------------------- /src/widgets/eventnotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/eventnotifier.h -------------------------------------------------------------------------------- /src/widgets/fancylabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/fancylabel.cpp -------------------------------------------------------------------------------- /src/widgets/fancylabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/fancylabel.h -------------------------------------------------------------------------------- /src/widgets/fancypopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/fancypopup.cpp -------------------------------------------------------------------------------- /src/widgets/fancypopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/fancypopup.h -------------------------------------------------------------------------------- /src/widgets/fancypopup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/fancypopup.ui -------------------------------------------------------------------------------- /src/widgets/iconaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/iconaction.cpp -------------------------------------------------------------------------------- /src/widgets/iconaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/iconaction.h -------------------------------------------------------------------------------- /src/widgets/iconbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/iconbutton.h -------------------------------------------------------------------------------- /src/widgets/iconlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/iconlabel.h -------------------------------------------------------------------------------- /src/widgets/iconselect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/iconselect.cpp -------------------------------------------------------------------------------- /src/widgets/iconselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/iconselect.h -------------------------------------------------------------------------------- /src/widgets/iconsetselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/iconsetselect.h -------------------------------------------------------------------------------- /src/widgets/iconwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/iconwidget.cpp -------------------------------------------------------------------------------- /src/widgets/iconwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/iconwidget.h -------------------------------------------------------------------------------- /src/widgets/psirichtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psirichtext.cpp -------------------------------------------------------------------------------- /src/widgets/psirichtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psirichtext.h -------------------------------------------------------------------------------- /src/widgets/psitabbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psitabbar.cpp -------------------------------------------------------------------------------- /src/widgets/psitabbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psitabbar.h -------------------------------------------------------------------------------- /src/widgets/psitabwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psitabwidget.h -------------------------------------------------------------------------------- /src/widgets/psitextview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psitextview.cpp -------------------------------------------------------------------------------- /src/widgets/psitextview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psitextview.h -------------------------------------------------------------------------------- /src/widgets/psitiplabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psitiplabel.cpp -------------------------------------------------------------------------------- /src/widgets/psitiplabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psitiplabel.h -------------------------------------------------------------------------------- /src/widgets/psitooltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psitooltip.cpp -------------------------------------------------------------------------------- /src/widgets/psitooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psitooltip.h -------------------------------------------------------------------------------- /src/widgets/psiwidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psiwidgets.cpp -------------------------------------------------------------------------------- /src/widgets/psiwidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/psiwidgets.h -------------------------------------------------------------------------------- /src/widgets/stretchwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/stretchwidget.h -------------------------------------------------------------------------------- /src/widgets/tabbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/tabbar.cpp -------------------------------------------------------------------------------- /src/widgets/tabbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/tabbar.h -------------------------------------------------------------------------------- /src/widgets/typeaheadfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/typeaheadfind.h -------------------------------------------------------------------------------- /src/widgets/urllabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/urllabel.cpp -------------------------------------------------------------------------------- /src/widgets/urllabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/urllabel.h -------------------------------------------------------------------------------- /src/widgets/urlobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/urlobject.cpp -------------------------------------------------------------------------------- /src/widgets/urlobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/urlobject.h -------------------------------------------------------------------------------- /src/widgets/widgets.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/widgets.pri -------------------------------------------------------------------------------- /src/widgets/widgets.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/widgets/widgets.pro -------------------------------------------------------------------------------- /src/x11windowsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/x11windowsystem.cpp -------------------------------------------------------------------------------- /src/x11windowsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/x11windowsystem.h -------------------------------------------------------------------------------- /src/xdata_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/xdata_widget.cpp -------------------------------------------------------------------------------- /src/xdata_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/xdata_widget.h -------------------------------------------------------------------------------- /src/xmlconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/xmlconsole.cpp -------------------------------------------------------------------------------- /src/xmlconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/xmlconsole.h -------------------------------------------------------------------------------- /src/xmlconsole.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/src/xmlconsole.ui -------------------------------------------------------------------------------- /themes/chatview.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/themes/chatview.qrc -------------------------------------------------------------------------------- /themes/chatview/psi/new_classic/load.js: -------------------------------------------------------------------------------- 1 | srvLoader.setMetaData({name: "New Classic"}); 2 | -------------------------------------------------------------------------------- /themes/chatview/psi/psi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/themes/chatview/psi/psi.css -------------------------------------------------------------------------------- /themes/chatview/psi/stylized_classic/load.js: -------------------------------------------------------------------------------- 1 | srvLoader.setMetaData({name: "Stylized Classic"}); 2 | -------------------------------------------------------------------------------- /themes/chatview/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/themes/chatview/util.js -------------------------------------------------------------------------------- /tools/toolbars_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/tools/toolbars_state.rb -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 1.5.2128 (2025-11-24, 48d26464) 2 | -------------------------------------------------------------------------------- /win32/app-plus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/win32/app-plus.ico -------------------------------------------------------------------------------- /win32/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/win32/app.ico -------------------------------------------------------------------------------- /win32/psi.manifest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/win32/psi.manifest.in -------------------------------------------------------------------------------- /win32/psi_win.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/win32/psi_win.rc.in -------------------------------------------------------------------------------- /win32/qt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psi-plus/psi-plus-snapshots/HEAD/win32/qt.conf --------------------------------------------------------------------------------