Update versions for 0.97
This commit is contained in:
parent
134fdb106f
commit
205484579a
|
@ -1,4 +1,4 @@
|
||||||
terminator 1.0:
|
terminator 0.97:
|
||||||
* Allow font dimming in inactive terminals
|
* Allow font dimming in inactive terminals
|
||||||
* Allow URL handler plugins to override label text for URL context
|
* Allow URL handler plugins to override label text for URL context
|
||||||
menus
|
menus
|
||||||
|
@ -19,6 +19,9 @@ terminator 1.0:
|
||||||
* Support reading configuration from alternate files, via a patch
|
* Support reading configuration from alternate files, via a patch
|
||||||
from Pavel Khlebovich
|
from Pavel Khlebovich
|
||||||
* Allow creation of new tabs in existing Terminators, via DBus
|
* Allow creation of new tabs in existing Terminators, via DBus
|
||||||
|
* Support the Solarized palettes (Juan Francisco Cantero Hutardo)
|
||||||
|
* Translation support for the Preferences window.
|
||||||
|
* Lots of translation updates (thanks to everyone who helped!)
|
||||||
* Bug fixes
|
* Bug fixes
|
||||||
|
|
||||||
terminator 0.96:
|
terminator 0.96:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
terminator (1.0) precise; urgency=low
|
terminator (0.97) precise; urgency=low
|
||||||
|
|
||||||
* New upstream release of 1.0
|
* New upstream release of 0.97
|
||||||
|
|
||||||
-- Chris Jones <cmsj@tenshu.net> Fri, 19 Oct 2012 12:57:42 -0700
|
-- Chris Jones <cmsj@tenshu.net> Tue, 30 Apr 2013 08:54:00 +0100
|
||||||
|
|
||||||
terminator (0.96ppa6) oneiric; urgency=low
|
terminator (0.96ppa6) oneiric; urgency=low
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ except ImportError:
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
APP_NAME='remotinator'
|
APP_NAME='remotinator'
|
||||||
APP_VERSION='1.0'
|
APP_VERSION='0.97'
|
||||||
|
|
||||||
COMMANDS={
|
COMMANDS={
|
||||||
'hsplit': ['terminal_hsplit', 'Split the current terminal horizontally'],
|
'hsplit': ['terminal_hsplit', 'Split the current terminal horizontally'],
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
|
|
||||||
Name: terminator
|
Name: terminator
|
||||||
Version: 1.0
|
Version: 0.97
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Store and run multiple GNOME terminals in one window
|
Summary: Store and run multiple GNOME terminals in one window
|
||||||
|
|
||||||
|
|
|
@ -21,4 +21,4 @@ TerminatorVersion supplies our version number.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
APP_NAME = 'terminator'
|
APP_NAME = 'terminator'
|
||||||
APP_VERSION = '1.0'
|
APP_VERSION = '0.97'
|
||||||
|
|
Loading…
Reference in New Issue