summary refs log tree commit diff stats
path: root/src/common
AgeCommit message (Expand)Author
2012-01-08update xchat to r1499Berke Viktor
2011-12-11some more multiplatform supportBerke Viktor
2011-12-11initial patches for linux compatibilityBerke Viktor
2011-12-01return to original code, this is an unnecessary modificatinoBerke Viktor
2011-12-01fix cfgfiles bug when variable names include each otherBerke Viktor
2011-12-01plugin api conformanceBerke Viktor
2011-11-30refactoringBerke Viktor
2011-11-30make error check possible for xchat_get_plugin_pref_intBerke Viktor
2011-11-30cosmeticsBerke Viktor
2011-11-30plugin config - separate string and int functionsBerke Viktor
2011-11-30cosmeticsBerke Viktor
2011-11-30fix nasty ifdef bugBerke Viktor
2011-11-30plugin config unix compatibility part 1Berke Viktor
2011-11-30fix some memory leaksBerke Viktor
2011-11-30cfg_put_str is not required anymoreBerke Viktor
2011-11-30plugin config save is done via raw file access, now works with multiple varsBerke Viktor
2011-11-29initial plugin config framework, can't save multiple entriesBerke Viktor
2011-11-25disable one instance option in portable modeBerke Viktor
2011-11-25option to allow only one instance xchat to runBerke Viktor
2011-11-23no manual saving, auto-save changes during /setBerke Viktor
2011-11-23the same for outbound /saveconfBerke Viktor
2011-11-23Revert "add option to auto-open a new tab when sending /msg (openSUSE)", /que...Berke Viktor
2011-11-23report back when saving preferences via commandBerke Viktor
2011-11-23remove unused variableBerke Viktor
2011-10-29re-enable transparent backgroundsBerke Viktor
2011-09-07add command for saving the preferencesBerke Viktor
2011-08-15restructuring part2Berke Viktor
2011-08-09add option to auto-open a new tab when sending /msg (openSUSE)berkeviktor@aol.com
2011-08-07recognize all installed dictionaries and select the required ones via spell_l...berkeviktor@aol.com
2011-08-07some sortingberkeviktor@aol.com
2011-06-17add support for Windows 8 in CTCP VERSION replyberkeviktor@aol.com
2011-05-31support for own license textberkeviktor@aol.com
2011-05-30display build type in CTCP VERSION replyberkeviktor@aol.com
2011-05-30move cpu arch stuff to separate functionberkeviktor@aol.com
2011-05-30Merge with defaultberkeviktor@aol.com
2011-05-30update xchat to r1496berkeviktor@aol.com
2011-04-16fix syntax errorberkeviktor@aol.com
2011-04-16Merge with defaultberkeviktor@aol.com
2011-04-16update xchat to r1494berkeviktor@aol.com
2011-02-28add wdk changes to named branchberkeviktor@aol.com
2011-02-24add xchat r1489berkeviktor@aol.com
2011-02-24nuke the repoberkeviktor@aol.com
2011-01-14split dirent.h and more xtray supportberkeviktor@aol.com
2011-01-10make use of /MP (hint from XhmikosR)berkeviktor@aol.com
2010-12-07minor cosmeticsberkeviktor@aol.com
2010-11-12move specific stuff to the proper makefilesberkeviktor@aol.com
2010-10-20convert sha256sum to checksum pluginberkeviktor@aol.com
2010-10-20add sha256sum support codeberkeviktor@aol.com
2010-10-09Backed out changeset: cb5901bb1890berkeviktor@aol.com
2010-10-08Backed out changeset: 21d400e5414fberkeviktor@aol.com
strdup( token ); delimiter = strchr( channel, '/' ); server = NULL; if( delimiter != NULL ) { *delimiter = '\0'; if( strlen( delimiter + 1 ) > 0 ) { server = strdup( delimiter + 1 ); } } /* /Network form */ if( strlen( channel ) == 0 ) { free( channel ); channel = NULL; } /* printf( "channel[%s] server[%s]\n", channel, server );*/ if( (ctx = hexchat_find_context( ph, server, channel ) ) != NULL ) { if( hexchat_set_context( ph, ctx ) ) { hexchat_command( ph, word_eol[3] ); } } if( channel != NULL ) { free( channel ); } if( server != NULL ) { free( server ); } } } return HEXCHAT_EAT_HEXCHAT; } int hexchat_plugin_init( hexchat_plugin * plugin_handle, char **plugin_name, char **plugin_desc, char **plugin_version, char *arg ) { ph = plugin_handle; *plugin_name = "Do At"; *plugin_version = "1.0001"; *plugin_desc = "Perform an arbitrary command on multiple channels"; hexchat_hook_command( ph, "doat", HEXCHAT_PRI_NORM, parse_command, "DOAT [channel,list,/network] [command], perform a command on multiple contexts", NULL ); hexchat_print (ph, "Do At plugin loaded\n"); return 1; } int hexchat_plugin_deinit (void) { hexchat_print (ph, "Do At plugin unloaded\n"); return 1; }