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> 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.

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 terminator (0.7.1-0ubuntu1) hardy; urgency=low
* New upstream release * New upstream release

1
debian/copyright vendored
View File

@ -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:

View File

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

View File

@ -168,7 +168,6 @@ class TerminatorTerm:
self._vte.add_events (gtk.gdk.ENTER_NOTIFY_MASK) self._vte.add_events (gtk.gdk.ENTER_NOTIFY_MASK)
self._vte.connect ("enter_notify_event", self.on_vte_notify_enter) 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['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-]*)+') 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-]*)+')