diff --git a/INSTALL b/INSTALL index 653062d7..2a582d29 100644 --- a/INSTALL +++ b/INSTALL @@ -1 +1 @@ -install python vte bindings ("python-vte" on Debian/ubuntu) and run terminator.py +install python vte bindings ("python-vte" on Debian/ubuntu) and run terminator diff --git a/README b/README index e733309f..68f693e6 100644 --- a/README +++ b/README @@ -5,8 +5,6 @@ This is a little python script to give me lots of terminals in a single window, Right now it will create four terminals in a single window and they will (to some degree) mirror the settings of your default gnome-terminal profile in gconf. Eventually this will be extended and improved to offer profile selection per-terminal, configuration thereof and the ability to alter the number of terminals and save meta-profiles. -NOTE: I only use it with bash as my shell. It appears to cause zsh to segfault, if that is your flavour of choice. See https://bugs.launchpad.net/terminator/+bug/129104 - You can create more terminals by right clicking on one and choosing to split it vertically or horizontally. You can get rid of a terminal by right clicking on it and choosing Close One other obvious gotcha - I am experimenting a bit with the URL matching, so at the moment you can match just the domain or the full URL. Let me know if you love/hate this. diff --git a/debian/changelog b/debian/changelog index 5c1fccb5..f1a9a920 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +terminator (0.4-1) gutsy; urgency=low + + * Add AUTHORS file + * Rename script to drop the .py + * Handle the gnome-terminal profile better by offering command options + * Fudge around some resizing issues + * Fix child spawning to avoid segfaulting zsh + * Misc. code formatting/style improvements + * Refactor terminal splitting into one axis agnostic function + * Flesh out setup.py a tiny bit more + + -- Chris Jones Tue, 11 Sep 2007 22:42:00 +0100 + terminator (0.3-1) gutsy; urgency=low * Implemented terminal closing, which correctly reparents its sibling (if diff --git a/debian/docs b/debian/docs index e845566c..6f12db50 100644 --- a/debian/docs +++ b/debian/docs @@ -1 +1,2 @@ +AUTHORS README diff --git a/setup.py b/setup.py index 0997b0f5..04d9471c 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup(name='Terminator', author='Chris Jones', author_email='cmsj@tenshu.net', url='http://www.tenshu.net/terminator/', - licence='GPL v2', + license='GPL v2', scripts=['terminator'], )