Preparations for 0.8
This commit is contained in:
parent
446d41ae14
commit
788ecceaa2
5
README
5
README
|
@ -1,4 +1,4 @@
|
||||||
Terminator 0.6
|
Terminator 0.8
|
||||||
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.
|
||||||
|
@ -9,8 +9,6 @@ You can create more terminals by right clicking on one and choosing to split it
|
||||||
|
|
||||||
ctrl-shift-n and ctrl-shift-p will shift focus to the next/previous terminal respectively, and ctrl-shift-w will close the current terminal and ctrl-shift-q the current window
|
ctrl-shift-n and ctrl-shift-p will shift focus to the next/previous terminal respectively, and ctrl-shift-w will close the current terminal and ctrl-shift-q the current window
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
Ask questions at: https://answers.launchpad.net/terminator/
|
Ask questions at: https://answers.launchpad.net/terminator/
|
||||||
Please report all bugs to https://bugs.launchpad.net/terminator/+filebug
|
Please report all bugs to https://bugs.launchpad.net/terminator/+filebug
|
||||||
|
|
||||||
|
@ -22,3 +20,4 @@ the gedit terminal plugin is part of the gedit-plugins package, which is licence
|
||||||
|
|
||||||
I am thus licensing Terminator as GPL v2 only.
|
I am thus licensing Terminator as GPL v2 only.
|
||||||
|
|
||||||
|
Cristian Grada provided the icon under the same licence.
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
terminator (0.8-0ubuntu1) hardy; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Chris Jones <cmsj@tenshu.net> Thu, 14 Feb 2008 00:19:33 +0000
|
||||||
|
|
||||||
terminator (0.7.1-0ubuntu1) hardy; urgency=low
|
terminator (0.7.1-0ubuntu1) hardy; urgency=low
|
||||||
|
|
||||||
* New upstream release
|
* New upstream release
|
||||||
|
|
|
@ -9,6 +9,7 @@ Upstream Authors:
|
||||||
Huang He
|
Huang He
|
||||||
Kees Cook
|
Kees Cook
|
||||||
Thomas Meire
|
Thomas Meire
|
||||||
|
crisG (Cristian Grada) - Drew our icon and licenced it to us under this licence
|
||||||
|
|
||||||
Copyright:
|
Copyright:
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -44,7 +44,7 @@ class InstallData(install_data):
|
||||||
|
|
||||||
|
|
||||||
setup(name='Terminator',
|
setup(name='Terminator',
|
||||||
version='0.7.1',
|
version='0.8',
|
||||||
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