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:
parent
90ea20f666
commit
16e7c4b25c
2
INSTALL
2
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
|
||||||
|
|
2
README
2
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.
|
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.
|
||||||
|
|
|
@ -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 +1,2 @@
|
||||||
|
AUTHORS
|
||||||
README
|
README
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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'],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue