changes from 0.8 branch

This commit is contained in:
Chris Jones 2008-02-14 00:33:35 +00:00
commit d1819aba68
6 changed files with 25 additions and 20 deletions

5
README
View File

@ -1,4 +1,4 @@
Terminator 0.6
Terminator 0.8
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.
@ -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
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/
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.
Cristian Grada provided the icon under the same licence.

6
debian/changelog vendored
View File

@ -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
* New upstream release

1
debian/copyright vendored
View File

@ -9,6 +9,7 @@ Upstream Authors:
Huang He
Kees Cook
Thomas Meire
crisG (Cristian Grada) - Drew our icon and licenced it to us under this licence
Copyright:

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-01-29 23:57+0000\n"
"POT-Creation-Date: 2008-02-14 00:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -16,66 +16,66 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: terminator:44
#: terminator:35
msgid ""
"You need to install the python bindings for gobject, gtk, gconf and pango to "
"run Terminator."
msgstr ""
#: terminator:63
#: terminator:54
msgid ""
"You need to install python bindings for libvte (\"python-vte\" in debian/"
"ubuntu)"
msgstr ""
#: terminator:127
#: terminator:117
#, python-format
msgid "Warning: unable to find profile %s. Continue with default values..."
msgstr ""
#: terminator:213
#: terminator:211
msgid ""
"Unknown value requested. Unable to find in gconf profile or default "
"settings: "
msgstr ""
#: terminator:414
#: terminator:435
msgid "_Open Link"
msgstr ""
#: terminator:415
#: terminator:436
msgid "_Copy Link Address"
msgstr ""
#: terminator:421
#: terminator:442
msgid "_Send Mail To..."
msgstr ""
#: terminator:422
#: terminator:443
msgid "_Copy Email Address"
msgstr ""
#: terminator:447
#: terminator:468
msgid "Show scrollbar"
msgstr ""
#: terminator:455
#: terminator:476
msgid "Split H_orizontally"
msgstr ""
#: terminator:459
#: terminator:480
msgid "Split V_ertically"
msgstr ""
#: terminator:527
#: terminator:553
msgid "Close?"
msgstr ""
#: terminator:532
#: terminator:558
msgid "<big><b>Close all terminals?</b></big>"
msgstr ""
#: terminator:535
#: terminator:561
#, python-format
msgid ""
"This window has %s terminals open. Closing the window will also close all "

View File

@ -44,7 +44,7 @@ class InstallData(install_data):
setup(name='Terminator',
version='0.7.1',
version='0.8',
description='Terminator, the robot future of terminals',
author='Chris Jones',
author_email='cmsj@tenshu.net',

View File

@ -168,7 +168,6 @@ class TerminatorTerm:
self._vte.add_events (gtk.gdk.ENTER_NOTIFY_MASK)
self._vte.connect ("enter_notify_event", self.on_vte_notify_enter)
self.matches['domain'] = self._vte.match_add ('((%s://(%s@)?)|(www|ftp)[%s]*\\.)[%s.]+(:[0-9]*)?'%(self.defaults['link_scheme'], self.defaults['link_user'], self.defaults['link_hostchars'], self.defaults['link_hostchars']))
self.matches['path'] = self._vte.match_add ('((%s://(%s@)?)|(www|ftp)[%s]*\\.)[%s.]+(:[0-9]+)?/[-A-Za-z0-9_$.+!*(),;:@&=?/~#%%]*[^]\'.}>) \t\r\n,\\\]'%(self.defaults['link_scheme'], self.defaults['link_userchars'], self.defaults['link_hostchars'], self.defaults['link_hostchars']))
self.matches['email'] = self._vte.match_add ('(mailto:)?[a-z0-9][a-z0-9.-]*@[a-z0-9][a-z0-9-]*(\\.[a-z0-9][a-z0-9-]*)+')