Skip to content
Jorgen Schaefer edited this page Mar 1, 2013 · 6 revisions

News

This file documents user-visible changes between releases of Circe. This includes changes to the libraries in Circe: Lui, tracking and lcs.

New in version 1.1, released 2013-03-01

  • If a user leaves the channel and rejoins within a short time under the same nick, Circe will now remember the active/lurker state of that user.
  • Circe now can also set a user as "lurker" again if they haven't been speaking for a while. This is disabled by default. See circe-active-users-timeout for more information.
  • The heuristic to identify whether lisp symbol in the channel buffer is a function or a variable has slightly improved.
  • The variable tracking-ignored-buffers allows functions in addition to regular expressions now.
  • Newer versions of bitlbee are now supported out of the box.
  • Additionally, there were various bugfixes.

Thanks to Taylan Ulrich B and John Foerch for their contributions. Circe wouldn't be where it is without you.

New in version 1.0 (since 0.5), released 2012-12-01

Circe's version history is a bit confusing. Old versions from CVS had a time stamp as a version. The commit messages at some point talked about "Circe 2", but that never got finished. There never was an official release of Circe 1.0.

The author of Circe, Jorgen Schäfer, had a lengthy break sometime from 2006 to 2012. We define the state of Circe on Januar 1st, 2007 as version 0.5.

The following lists user-visible changes since then.

All

  • We are now on github. As you already noticed, as you are reading this.
  • Circe, Lui, tracking and lcs are now all on the Marmalade repository, so you can install them with M-x package-install

Circe

  • Circe now uses a completely different way to configure and set up the client. The circe command takes a network name and additional options. Further options for this network are looked up in circe-network-options (for user configuration) and circe-networks (Circe's default configuration). This incorporates nickserv and autojoin settings. See circe-network-options for a list of possible options.
  • circe-server-auto-join-channels is the new unified auto join list (set via the options described above), which can be used to set channels to be joined immediately on connect, after successfull authentification, or after regaining our preferred nick.
  • Circe now does cycle completion of nicks by default. Nicks are sorted by recent activity, so you should get correct completions on the first try most of the time. Completing on an empty string even completes the last active user.
  • Circe can now protect against lurker spam. When circe-reduce-lurker-spam is set to a true value, Circe will not show JOIN, PART, QUIT or NICK messages for a user until the first time they actually talk on a channel. When they do, Circe will add a note on how long ago they had joined the channel.
  • Nicks in the current channel are now always considered correctly spelled by flyspell.
  • Circe can now regain a preferred nick via NickServ's GHOST command. See circe-nickserv-ghost-style for more information.
  • The fool system has been extended to allow setting of any property or face. See circe-default-properties.
  • When auto-joining channels, Circe can now optionally avoid popping up channel windows. See circe-new-buffer-behavior-ignore-auto-joins for how this works.
  • New user command: circe-reconnect-all. Calls circe-reconnect in all server buffers.
  • New IRC commands: /FOOL and /UNFOOL.
  • IRC color support is now enabled by default.
  • Circe now supports Bitlbee for automatic authentication.
  • TLS encrypted connections to IRC servers are now supported.
  • New supported numerics: 020 (please wait), 042 (unique ID is), 310 (WHOIS available for help), 328 (channel homepage), 329 (topic set on), 330 (WHOIS logged in as), 470 (channel forwarding), 671 (WHOIS secure connection)
  • build.sh replaces the old Makefile to create byte-compiled lisp files and a corresponding autoloads file.
  • Circe now does non-blocking connects by default, speeding up connection speed.
  • Documentation is now not in texinfo anymore, but can be found on the github wiki.

Extensions

  • New commands in circe-chanop.el: /BANS
  • circe-color-nicks.el is a new extension which allows to automatically assign colors to nicks to make it easier to follow a busy channel.
  • circe-lagmon.el is a new extension that adds a lag monitor to Circe, including automatic reconnect after some time of no response from the server.
  • circe-log.el has been removed because its functionality was broken. Use lui-logging.el.

Lui

  • Lui can now place time stamps in the margin. To use this, set lui-time-stamp-position to left-margin or right-margin.
  • The completion framework has been removed in favor of the new Emacs-wide standard completion-at-point functionality. If you set lui-completion-function by hand, nothing should change, but you should consider switching.
  • Scrolling options have been expanded considerably to accomodate bad support by Emacs. See lui-scroll-behavior for more information.
  • Overlays have been replaced with text properties for everything but buttons. This should improve speed considerably.
  • lui-format now can take formatting options. (lui-format "{pi:.2f}" 3.14159) is equivalent to (format "%.2f" 3.14159).
  • lui-logging.el has been reworked to allow a queue of messages to be written to disk, to avoid continuous disk strain on very busy channels.
  • lui-autopaste.el is a new extension that will (after user confirmation) use an external paste service if the input is too long.

tracking

  • Setting the variable tracking-most-recent-first will add new entries to the front instead of the end of the list.