Update debian parts

This commit is contained in:
Chris Jones 2007-11-09 00:13:06 -05:00
parent 85f21bec0e
commit 414848a4a7
4 changed files with 21 additions and 4 deletions

6
README
View File

@ -3,9 +3,11 @@ 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.
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 open a single window with one terminal and it 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. 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. ctrl-shift-h and ctrl-shift-v will also effect the splitting.
ctrl-shift-n and ctrl-shift-p will shift focus to the next/previous terminal respectively, and ctrl-shift-c will close the current terminal
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.

16
debian/changelog vendored
View File

@ -1,3 +1,19 @@
terminator (0.5-1) gutsy; urgency=low
* The terminator window is now able to resize smaller, thanks to Kees Cook
for the fix.
* Email addresses are now matched and opened correctly. Closes LP #139015
* Double clicking a URL now selects the whole URL. Closes LP #129533
* The default behaviour is now to open a single 80x24 terminal rather than
four terminals in a maximised window. Closes LP #126219 and should force
me to fix LP #87720
* There are now hotkeys for switching between terminals, splitting terminals
and closing them. Closes LP #149931 and #148622(thanks to Huanghe for
patches for this)
* If there is only one terminal, closing it will not produce a quit message
-- Chris Jones <cmsj@tenshu.net> Fri, 09 Nov 2007 00:03:05 -0500
terminator (0.4-1) gutsy; urgency=low
* Add AUTHORS file

1
debian/dirs vendored
View File

@ -1,2 +1 @@
usr/bin
usr/sbin

View File

@ -3,7 +3,7 @@
from distutils.core import setup
setup(name='Terminator',
version='0.3',
version='0.5',
description='Terminator, the robot future of terminals',
author='Chris Jones',
author_email='cmsj@tenshu.net',