Fix setup.py field. Add AUTHORS to docs. Update ChangeLog for 0.4. Update INSTALL and README to reflect the new world order

This commit is contained in:
cmsj@canonical.com 2007-09-11 23:37:31 +01:00
parent 90ea20f666
commit 16e7c4b25c
5 changed files with 16 additions and 4 deletions

View File

@ -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

2
README
View File

@ -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. 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 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. 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.

13
debian/changelog vendored
View File

@ -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 <cmsj@tenshu.net> Tue, 11 Sep 2007 22:42:00 +0100
terminator (0.3-1) gutsy; urgency=low terminator (0.3-1) gutsy; urgency=low
* Implemented terminal closing, which correctly reparents its sibling (if * Implemented terminal closing, which correctly reparents its sibling (if

1
debian/docs vendored
View File

@ -1 +1,2 @@
AUTHORS
README README

View File

@ -8,7 +8,7 @@ setup(name='Terminator',
author='Chris Jones', author='Chris Jones',
author_email='cmsj@tenshu.net', author_email='cmsj@tenshu.net',
url='http://www.tenshu.net/terminator/', url='http://www.tenshu.net/terminator/',
licence='GPL v2', license='GPL v2',
scripts=['terminator'], scripts=['terminator'],
) )