summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-02-21[auth] randomized default passwordMatthias H
2014-02-21[plugin] youtube fixed, added help textMatthias H
Used the httputils api wrongly, had no help text.
2014-02-21[plugin] wow removed, uses broken api.Matthias H
The xml is no longer available. Could be fixed using this: http://us.battle.net/api/wow/realm/status?realm=Hyjal
2014-02-21[plugin] tube removedMatthias H
2014-02-21[plugin] urban fixedMatthias H
2014-02-21[plugin] threat removed, brokenMatthias H
2014-02-20[remote] server imho shouldnt be listen by defaultMatthias H
2014-02-20[plugin] spotify plugin removedMatthias H
2014-02-20[core] unicode plugin that sets server encodingMatthias H
2014-02-20[plugin] imdb small parser fixMatthias H
2014-02-20[registry] daybreak engine small fixMatthias H
2014-02-20[plugin] removed lastm, many things broken.Matthias H
I registered the api key ae97541e36fd005a1cfbad12ce85db39 but even then, there is just too much broken. I don't use lastfm, so no fix from me.
2014-02-20[plugin] removed iplookup, doesnt workMatthias H
2014-02-20[plugin] insult, small fixMatthias H
2014-02-20[plugin] removed grouphug, ceased to existMatthias H
2014-02-20[plugins] random permissions fixMatthias H
2014-02-20[plugin] googlefight fixed regexpMatthias H
2014-02-20[plugin] geoip small fixes, needs more workMatthias H
2014-02-20[plugin] removed freshmeat, doesnt exist anymoreMatthias H
2014-02-20[plugin] fortune: fixed bin/not-foundMatthias H
2014-02-20[plugin] removed forecast, old/unsupported depMatthias H
2014-02-20[plugin] removed digg, broken apiMatthias H
2014-02-20[plugin] fixed chucknorris for 2.0Matthias H
2014-02-20[plugin] removed debugger pluginMatthias H
2014-02-20[plugin] del.icio.us ceased to exist.Matthias H
2014-02-20[plugin] removed dictclient, outdated deps.Matthias H
Uses an outdated and unmaintained ruby gem.
2014-02-20[plugins] fixed oxford only, all others are broken.Matthias H
Removed the broken dicts except for oxford, renamed the plugin.
2014-02-20[registry] improved export/import/migrate script.Matthias H
2014-02-19[registry] registry folder with suffix, added daybreak engineMatthias H
2014-02-19[registry] standalone import/export/migrate scriptMatthias H
2014-02-18log fatal/error messages to stderr, but check if daemonized first!Matthias H
2014-02-18remove old/compat code no longer supportedMatthias H
2014-02-18[registry] removed temp loggingMatthias H
2014-02-18removes bdb&tc registry; adds dbm registryMatthias H
This removes the existing registries, ruby-bdb (Berkeley DB) and tokyocabinet, instead it creates a new registry based on ruby DBM. Ruby-bdb has long since been abandoned in favor for rubys DBM and tokyocabinet also has been ceased development since 2011 (for kyotocabinet).
2013-12-06url: more flexibility with first_parMatthias H
2013-12-06workaround for broken pretty_inspectMatthias H
2013-12-06launch_here: fixed shebangMatthias Hecker
2013-12-06httputil: fixes encoding issues with 1.9+Matthias Hecker
(incompatible with 1.8)
2013-12-04bin/rbot: no verbose warning messagesMatthias H
$VERBOSE includes lots of useless messages that don't really help anyone IMHO
2013-12-04Revert "always print FATAL and ERROR logmessages to STDERR"Matthias Hecker
This reverts commit c4d629ad86aae3b8bb4669650df57875252bea92.
2013-12-04gettext: change depricated and removed setlocaleMatthias Hecker
2013-11-15plugins: improve error handling on loadGiuseppe Bilotta
Support OAuth2::Error braindead extension to StandardError and wrap loading in an outer rescue to catch problems with the error handling.
2013-11-14twitter: filter ret.latest status if non specifiedMatthias Hecker
2013-11-14twitter: changed filter title, to only contain usrMatthias Hecker
2013-11-14twitter: fixes the htmlfilter used by url pluginMatthias Hecker
2013-11-14Merge pull request #20 from 4poc/ssl-verifyOblomov
Implements SSL verification against a configured CA
2013-11-14always print FATAL and ERROR logmessages to STDERRMatthias Hecker
This adds a print to $stderr for log messages with the level ERROR or FATAL. I did this because in the past errors connecting to the server weren't immediately obvious but rather hidden in the logfile. I think it should be right in-your-face when the connection doesn't work. It would probaply be better to extend Logger to print to STDERR but this apparently requires monkeypatching ruby's Logger. Anyhow I think my solution works for now.
2013-11-14allow to verify ssl connections against a CA.Matthias H
This adds three new configuration variables to configure SSL verification against a CA. server.ssl_verify: true if it should verify and disconnect if it fails server.ssl_ca_file: a CA file, is set to the systems CA bundle by default (distri. dependent) server.ssl_ca_path: alternativly path to a directory with CA PEM files I tested it and this seems no longer an issue with >= 1.9.3 https://www.braintreepayments.com/braintrust/sslsocket-verify_mode-doesnt-verify
2013-11-11dict: update oxford urlGiuseppe Bilotta
2013-11-02ruby 2.0.0: better fix for the ThreadErrorMatthias H
I revisited my fix for the ThreadError in ruby 2.0.0 this doesn't use a queue for signals but just starts a thread for each received signal, works much better for me. It also fixes a bug in Bot#reconnect where the SystemExit exception coming from quit is not handled correctly.