wmiirc-rumai

git clone git://oldgit.suckless.org/wmiirc-rumai/
Log | Files | Refs | README | LICENSE

commit cdaf073608aac3edeb2823b13c43478db9ab6fd7
parent 0fc287ef046b6f734f70fbc3f7f464b9395642c0
Author: Suraj N. Kurapati <sunaku@gmail.com>
Date:   Tue, 12 Sep 2006 23:27:03 -0700

[project @ db60f9a2adb9249fe7f6a3929a6ceb26b81aad32]

[project @ 83]
add history file

Diffstat:
HISTORY | 46++++++++++++++++++++++++++++++++++++++++++++++
Rakefile | 4++--
2 files changed, 48 insertions(+), 2 deletions(-)

diff --git a/HISTORY b/HISTORY @@ -0,0 +1,46 @@ += History + +This is a history of major changes to {my wmii configuration}[http://people.ucsc.edu/~skurapat/wmii.html]. + += 2006-09-12 + +* Event loop now uses Ixp#read instead of wmiir. + + += 2006-09-11 + +* Added exception logging and recovery mechanism. + * wmiirc is now split into a loader file (wmiirc) and a configuration file (wmiirc-config.rb), just like in the ruby-wmii project. + +* +IXPException+s are no longer hidden away inside Ixp. + +* Moved support for destructive area-operations from Wmii#with_selection into Array#each so that it is generally available. + + += 2006-09-10 + +* Added wmiish--an interactive Ruby shell for controlling wmii. + +* Lots of major refactoring in Ixp and Wmii. + * Moved utility methods from wmiirc into rc.rb. + + += 2006-09-09 + +* Cleaned up IXP abstraction... now multiple levels of method_missing works, and so does self[sub_path] + +* Wmii#with_selection now supports destructive area-operations. + +* Update for compliance with new unique-client-id in filesystem patch. + + += 2006-08-31 + +* Added facility which sends the selection to temporary view or switches back again. + + += 2006-08-30 + +* Add Wmii#with_selection method for operating on all clients in selection. + + diff --git a/Rakefile b/Rakefile @@ -12,12 +12,12 @@ task :web do end Rake::RDocTask.new(:doc) do |t| - t.rdoc_files.include('wmiirc', 'wmiish', '*.rb') + t.rdoc_files.include('HISTORY', 'wmiirc', 'wmiish', '*.rb') t.rdoc_dir = 'doc' t.main = 'Wmii' end Rake::PackageTask.new('snk_wmiirc', :noversion) do |p| p.need_tar_gz = true - p.package_files.include('COPYING', 'wmiirc', 'wmiish', '*.rb', 'ruby-ixp/**/*', 'doc/**/*') + p.package_files.include('COPYING', 'HISTORY', 'wmiirc', 'wmiish', '*.rb', 'ruby-ixp/**/*', 'doc/**/*') end