Prepare for 0.6
This commit is contained in:
parent
747095c870
commit
8e79e8f7fe
2
README
2
README
|
@ -1,4 +1,4 @@
|
||||||
Terminator 0.3
|
Terminator 0.6
|
||||||
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.
|
||||||
|
|
|
@ -1,3 +1,18 @@
|
||||||
|
terminator (0.6-1) gutsy; urgency=low
|
||||||
|
|
||||||
|
* Use new gnome-terminal gconf key to find available profiles
|
||||||
|
* Move a few more hardcoded items to our settings array (not that it can be
|
||||||
|
overridden yet)
|
||||||
|
* Fix handling of exiting child processes to properly track gnome-terminal
|
||||||
|
settings
|
||||||
|
* Add Ctrl-Tab and Ctrl-Shift-Tab as options for switching terminals (patch
|
||||||
|
from Kees Cook)
|
||||||
|
* Stop using parent.show_all() when removing/adding a terminal and instead
|
||||||
|
show the actual widgets that have been created. This prevents scrollbars
|
||||||
|
from re-appearing after they have been hidden
|
||||||
|
|
||||||
|
-- Chris Jones <cmsj@tenshu.net> Wed, 26 Dec 2007 19:54:47 +0000
|
||||||
|
|
||||||
terminator (0.5-1) gutsy; urgency=low
|
terminator (0.5-1) gutsy; urgency=low
|
||||||
|
|
||||||
* The terminator window is now able to resize smaller, thanks to Kees Cook
|
* The terminator window is now able to resize smaller, thanks to Kees Cook
|
||||||
|
|
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.5',
|
version='0.6',
|
||||||
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