Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-15first version of Triggers pluginYann Leboulanger
2011-05-28[milouse] Fix identation errorYann Leboulanger
2011-05-21banner_tweaks plugin. Fixed againDenis Fomin
2011-05-21banner_tweaks plugin. prevent Tb in the gc if 'show_banner_image' is disabledDenis Fomin
2011-05-02new way to handle incominf messages, new notification event.Yann Leboulanger
2011-01-06prevent traceback. Fixes #5978Yann Leboulanger
2010-12-14split long linesDenis Fomin
2010-12-13[Éric Araujo] fix typo un plugins windowYann Leboulanger
2010-12-06coding styleDenis Fomin
2010-11-06include all example plugins in tarballs, but install only someYann Leboulanger
2010-11-05plugins_window.ui - removed unused hboxDenis Fomin
ftp_manager - small gui changes
2010-11-05ftp manager plugin added to the main repositoryDenis Fomin
2010-11-05whiteboard plugin: print disconnection reason in chat controlYann Leboulanger
2010-11-04prevent traceback when a whiteboard closesDenis Fomin
2010-11-04whiteboard plugin: minor tooltip improvmentsYann Leboulanger
2010-11-03whiteboard plugin. added border to the main containerDenis Fomin
2010-11-03whiteboard plugin. small optimizationDenis Fomin
2010-11-03whiteboard plugin. remove the lebels with the buttons and add tooltipsDenis Fomin
2010-11-02rename some varYann Leboulanger
2010-11-02whiteboard plugin. Ability to save imagesDenis Fomin
2010-11-01[whiteboard plugin] raise error when python-pygoocanvas is not installedYann Leboulanger
2010-11-01plugin to add whiteboard feature. Fixes #2970Yann Leboulanger
2010-10-25rename variables in plugins. Fixes #5994Yann Leboulanger
2010-10-19use NEC to handle messages / gc_messagesYann Leboulanger
2010-09-20[Dicson] install manifest.ini files. Fixes #5927Yann Leboulanger
2010-09-19[Dicson] use manifest.ini files in plugins to have a separate file for ↵Yann Leboulanger
plugin's information. Fixes #5920
2010-09-17[Dicson] Fix building Gajim. Fixes #5916Yann Leboulanger
2010-09-17move acronyms expander plugin. see #5906Yann Leboulanger
2010-09-12[Dicson] Handle non-Latin text and errors in google translate plugin. Fixes ↵Yann Leboulanger
#5904
2010-07-29add missing plugins/Makefile.amYann Leboulanger
2010-04-08convert tabs to spaces in source code thanks to reindent.pyÉric Araujo
Also use sed to remove now unneeded Vim lines, 2to3 -f ws_comma to fix some whitespace, and fix some other madness manually.
2010-02-12fix acronyms expander pluginYann Leboulanger
2010-02-12add adjustment to spinbutton in length notifier pluginYann Leboulanger
2010-02-09merge from default branchYann Leboulanger
2009-06-22Fixed bug related to account name in NewEventsExample name. Modified way to ↵Mateusz Biliński
acquire message type.
2009-06-15Fixed log_calls decorator arguments in a few plugins. Fixed Acronyms ↵Mateusz Biliński
Expander plugin (not working due to bad auto-merge). Added few comments.
2009-06-07Merged default branch with plugin-system branch. Not all elements are fullyMateusz Biliński
functional. This should be considered as sync commit.
2009-06-02Moved DBUS interface related variables.Mateusz Biliński
2009-04-16Moved DBus type related instructions to scope which is executed only when ↵Mateusz Biliński
there's a DBus support. No NameError exceptions are thrown anymore. Makes debugging of plugins easier under WingIDE (which does not remember - at least it looks like that - the "ignore exception at this location" option when module is imported 'manually'). This could also be applied to src/remote_control.py .
2008-08-25Google Translation plugin added (proof-of-concept) that translates incoming ↵Mateusz Biliński
chat messages from English to French using Google Translate service. Plugin object that registered new event is accessible in that event now, through self.plugin.
2008-08-18Three core (raw) events (iq, message, presence) go also through Network ↵Mateusz Biliński
Events Controller (layer between network library and Global Events Dispatcher, newly added) and from there they are dispatched through Global Events Dispatcher. Ability to register new incoming network events (based on exisiting one) added. Modify-only network events are possible (eg. add some text each message, but don't create any new global event). Events creation can be chained. Examples of new network events classes are in New Events Example plugin. Events from src/gajim.py now all go through Global Events Dispatcher and only through it (easy to modify, in chain, data passed with them).
2008-08-17Removed exit() from PySnarl so it doesn't terminate Gajim on non-Windows ↵Mateusz Biliński
platforms.
2008-08-17Snarl Notifications plugin initial version added. New events (from current ↵Mateusz Biliński
core) go also through GED.
2008-08-11Changed log_calls parameter to EventsDumpPlugin in that class.Mateusz Biliński
2008-08-11Added Events Dump plugin, that prints out to console info about selected ↵Mateusz Biliński
events when they occur.
2008-08-10Initial version of Global Events Dispatcher.Mateusz Biliński
Events previously generated for D-Bus support in remote_control.py go through Global Events Dispatcher now - this means any plugin can subscribe to them. Implemented D-Bus support plugin based on remote_control.py.
2008-08-03Improvements to GUI extension points handling - added method to remove these ↵Mateusz Biliński
from PluginManager (memory optimization). Removed logging from most of the code.
2008-08-02Banner Tweaks plugin has all (four) options implemented.Mateusz Biliński
2008-07-31Added files with Banner Tweaks plugin (initial version).Mateusz Biliński
Few changes to PluginManager. Added new GUI extension point related to draw_banner in ChatControlBase.
2008-07-29Plugin's configuration is now saved to disk (currently: using UserDict and ↵Mateusz Biliński
shelve modules). Length Notifier Plugin has configuration dialog (added entry with JIDs to be included when plugin is working) - fully usable. Default values of configuration key has been added to GajimPlugin. Some other minor changes/fixes.