Document new version, add a changelog and bump revision
This commit is contained in:
parent
5d27a2084c
commit
ee3819377e
4
README
4
README
|
@ -1,11 +1,11 @@
|
||||||
Terminator 0.2
|
Terminator 0.3
|
||||||
by Chris Jones <cmsj@tenshu.net>
|
by Chris Jones <cmsj@tenshu.net>
|
||||||
|
|
||||||
This is a little python script to give me lots of terminals in a single window, saving me valuable laptop screen space otherwise wasted on window decorations and not quite being able to fill the screen with terminals.
|
This is a little python script to give me lots of terminals in a single window, saving me valuable laptop screen space otherwise wasted on window decorations and not quite being able to fill the screen with terminals.
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
You can create more terminals by right clicking on one and choosing to split it vertically or horizontally. 0.3 will allow you to remote terminals, but you can't yet do that.
|
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,10 @@
|
||||||
|
terminator (0.3-1) gutsy; urgency=low
|
||||||
|
|
||||||
|
* Implemented terminal closing, which correctly reparents its sibling (if
|
||||||
|
any)
|
||||||
|
|
||||||
|
-- Chris Jones <cmsj@tenshu.net> Sun, 29 Jul 2007 17:48:13 +0100
|
||||||
|
|
||||||
terminator (0.2-1) gutsy; urgency=low
|
terminator (0.2-1) gutsy; urgency=low
|
||||||
|
|
||||||
* Support dynamically splitting terminals
|
* Support dynamically splitting terminals
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -3,7 +3,7 @@
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(name='Terminator',
|
setup(name='Terminator',
|
||||||
version='0.2',
|
version='0.3',
|
||||||
description='Terminator, the robot future of terminals',
|
description='Terminator, the robot future of terminals',
|
||||||
author='Chris Jones',
|
author='Chris Jones',
|
||||||
author_email='cmsj@tenshu.net',
|
author_email='cmsj@tenshu.net',
|
||||||
|
|
Loading…
Reference in New Issue