Merge lp:~larsu/gnome-terminal/update-restore-transparency-patch into lp:gnome-terminal

Proposed by Lars Karlitski
Status: Superseded
Proposed branch: lp:~larsu/gnome-terminal/update-restore-transparency-patch
Merge into: lp:gnome-terminal
Diff against target: 3441 lines (+3298/-0)
28 files modified
.bzr-builddeb/default.conf (+2/-0)
debian/changelog (+1946/-0)
debian/compat (+1/-0)
debian/control (+72/-0)
debian/control.in (+68/-0)
debian/copyright (+59/-0)
debian/gnome-terminal-data.install (+4/-0)
debian/gnome-terminal.install (+9/-0)
debian/gnome-terminal.links (+1/-0)
debian/gnome-terminal.lintian-overrides (+2/-0)
debian/gnome-terminal.manpages (+1/-0)
debian/gnome-terminal.menu (+6/-0)
debian/gnome-terminal.postinst (+13/-0)
debian/gnome-terminal.prerm (+10/-0)
debian/gnome-terminal.sgml (+223/-0)
debian/gnome-terminal.wrapper (+81/-0)
debian/gnome-terminal.xpm (+166/-0)
debian/patches/0001-Restore-transparency.patch (+419/-0)
debian/patches/01_onlyshowin.patch (+11/-0)
debian/patches/10_kfreebsd-f_dupfd_cloexec.patch (+41/-0)
debian/patches/50_add_unity_quicklist.patch (+18/-0)
debian/patches/51_alternate_screen_scroll.patch (+71/-0)
debian/patches/52_support_apturl.patch (+13/-0)
debian/patches/nautilus-x11.patch (+29/-0)
debian/patches/series (+7/-0)
debian/rules (+21/-0)
debian/source/format (+1/-0)
debian/watch (+3/-0)
To merge this branch: bzr merge lp:~larsu/gnome-terminal/update-restore-transparency-patch
Reviewer Review Type Date Requested Status
VCS imports Pending
Review via email: mp+221047@code.launchpad.net

This proposal has been superseded by a proposal from 2014-05-27.

Description of the change

Update restore transparency patch

Remove getting the transparency from the theme to avoid the additional preference.

Also set app-paintable on the window directly (when it is actually transparent) instead of setting it from the widget. The window now paints its background so that nothing but the terminal widget is transparent.

To post a comment you must log in.

Unmerged revisions

126. By Lars Karlitski

Transparency patch: only set app-paintable when the window is actually transparent

125. By Lars Karlitski

Update restore transparency patch

Remove getting the transparency from the theme to avoid the additional
preference.

Also set app-paintable on the window directly instead of setting it from the
widget. The window now paints its background so that nothing but the terminal
widget is transparent.

124. By Iain Lane

distro version

123. By Iain Lane

Merge(ish), re-add transparency

122. By Jeremy Bícha

* debian/patches/52_support_apturl.patch:
  - Support apt: URIs (LP: #217611)

121. By Jeremy Bícha

3.8.4

120. By Jeremy Bícha

* debian/patches/git-add-quit:
  - Backport patch to add Quit to app menu

119. By Jeremy Bícha

* Resync with Debian unstable
* Dropped debian/patches/dont-override-ubuntu-env-vars
* debian/rules:
  - Build with --enable-distro-packaging to not override Ubuntu
    environment variables

* New upstream release.
* debian/control.in:
  + Update build dependencies.
* debian/patches/10_kfreebsd-f_dupfd_cloexec.patch:
  + New patch, don't use F_DUPFD_CLOEXEC if it's not defined (e.g.
    on kFreeBSD). Thanks Petr Salinger for the initial patch.
    Closes: #711529.
[ Emilio Pozuelo Monfort ]
* Remove obsolete build dependency on scrollkeeper.
[ Michael Biebl ]
* Upload to unstable.
* New upstream release.
* Bump Standards-Version to 3.9.4. No further changes.
* Add Build-Depends on autotools-dev as lintian was complaining about
  outdated config.{guess,sub}.
* Team upload
* Recommend dbus-x11: gnome-terminal's default usage requires a
  D-Bus session, and dbus-x11 is the recommended way to get one of those
  (Closes: #691177; related to #631968)
* If unable to connect to D-Bus, warn before we exit 1 (Closes: #691178)

118. By Iain Lane

Fix version

117. By Iain Lane

Merge with Debian, update to 3.8.2

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory '.bzr-builddeb'
2=== added file '.bzr-builddeb/default.conf'
3--- .bzr-builddeb/default.conf 1970-01-01 00:00:00 +0000
4+++ .bzr-builddeb/default.conf 2014-05-27 09:37:18 +0000
5@@ -0,0 +1,2 @@
6+[BUILDDEB]
7+merge = True
8
9=== added directory 'debian'
10=== added file 'debian/changelog'
11--- debian/changelog 1970-01-01 00:00:00 +0000
12+++ debian/changelog 2014-05-27 09:37:18 +0000
13@@ -0,0 +1,1946 @@
14+gnome-terminal (3.12.2-0ubuntu1) UNRELEASED; urgency=low
15+
16+ [ Iain Lane ]
17+ * NOT READY YET
18+ - Staying in the same directory on new tab doesn't work yet, needs shell
19+ level work - that's https://bugzilla.gnome.org/show_bug.cgi?id=697475
20+ * Resynchronise with Debian, remaining changes:
21+ - debian/patches/50_add_unity_quicklist.patch: Add Unity quicklist menu
22+ item.
23+ - debian/patches/51_alternate_screen_scroll.patch: Add (rewritten for
24+ gsettings, and without UI unless people complain, in which case we'll
25+ revisit) patch to use VTE's "alternate" scrolling. This allows, for
26+ example, scrolling with the mouse wheel in pagers such as when viewing
27+ man pages.
28+ * Disable shell provider, we don't want to build-dep on gnome-shell.
29+ * Bump build-dependencies according to configure.ac:
30+ - intltool 0.50.0
31+ - vte 0.36.0
32+ - glib 2.39.2
33+ * Make debian/patches/10_kfreebsd-f_dupfd_cloexec.patch apply again.
34+ * Drop debian/patches/git-add-quit.patch, now included in upstream release.
35+ * Add build-dependency on libnautilus-extension-dev
36+ * Add new patch debian/patches/nautilus-x11.patch
37+ - build fails because of -Wl,-z,defs missing -lX11 in nautilus extension
38+ * Include autoreconf.mk cdbs snippet and build-depend on dh-autoreconf
39+ * Install new files in gnome-terminal
40+ - nautilus extension
41+ * debian/patches/0001-Restore-transparency.patch: Patch from Debarishi Ray
42+ to re-add support for transparent terminals. Updated to support loading a
43+ transparency value from the theme, if it provides one.
44+
45+ [ Jeremy Bicha ]
46+ * debian/rules:
47+ - Build with --enable-distro-packaging to not override Ubuntu
48+ environment variables
49+ * debian/patches/52_support_apturl.patch:
50+ - Support apt: URIs (LP: #217611)
51+ * debian/patches/git-add-quit:
52+ - Backport patch to add Quit to app menu
53+
54+ -- Iain Lane <iain.lane@canonical.com> Fri, 16 May 2014 12:52:43 +0100
55+
56+gnome-terminal (3.8.3-1) unstable; urgency=low
57+
58+ * New upstream release.
59+ * debian/control.in:
60+ + Update build dependencies.
61+ * debian/patches/10_kfreebsd-f_dupfd_cloexec.patch:
62+ + New patch, don't use F_DUPFD_CLOEXEC if it's not defined (e.g.
63+ on kFreeBSD). Thanks Petr Salinger for the initial patch.
64+ Closes: #711529.
65+
66+ -- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 11 Jun 2013 22:02:43 +0200
67+
68+gnome-terminal (3.8.2-1) unstable; urgency=low
69+
70+ [ Emilio Pozuelo Monfort ]
71+ * Remove obsolete build dependency on scrollkeeper.
72+
73+ [ Michael Biebl ]
74+ * Upload to unstable.
75+ * New upstream release.
76+ * Bump Standards-Version to 3.9.4. No further changes.
77+ * Add Build-Depends on autotools-dev as lintian was complaining about
78+ outdated config.{guess,sub}.
79+
80+ -- Michael Biebl <biebl@debian.org> Wed, 05 Jun 2013 22:23:26 +0200
81+
82+gnome-terminal (3.8.0.1-1) experimental; urgency=low
83+
84+ [ Jeremy Bicha ]
85+ * 01_onlyshowin.patch: Show in Unity too
86+
87+ [ Emilio Pozuelo Monfort ]
88+ * New upstream release.
89+ + debian/patches/10_crash_profiles.patch:
90+ - Removed, no longer needed.
91+
92+ -- Emilio Pozuelo Monfort <pochu@debian.org> Mon, 01 Apr 2013 13:10:38 +0200
93+
94+gnome-terminal (3.8.0-1) experimental; urgency=low
95+
96+ [ Andreas Henriksson ]
97+ * New upstream release 3.7.92.
98+ * Update build-dependencies according to configure.ac:
99+ - added uuid-dev and libdconf-dev (>= 0.12.0)
100+ - bumped gtk, glib and vte
101+ * debian/gnome-terminal-data.install:
102+ - don't try to install non-existing etc and usr/share/gnome-terminal
103+ * debian/gnome-terminal.install:
104+ - install new helper binaries gnome-terminal-{migration,server}
105+ - install gsettings schema
106+ - install dbus service for gnome-terminal-server
107+
108+ [ Emilio Pozuelo Monfort ]
109+ * New upstream release 3.8.0.
110+ + debian/patches/01_onlyshowin.patch:
111+ - Refreshed.
112+ + debian/control.in:
113+ - Add build dependency on desktop-file-utils.
114+ - Bump libdconf-dev build dependency to pick the new soname.
115+ + debian/patches/10_crash_profiles.patch:
116+ - New patch. Fix a crash when opening the profile editor.
117+
118+ -- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 30 Mar 2013 20:40:18 +0100
119+
120+gnome-terminal (3.6.1-1) experimental; urgency=low
121+
122+ * New upstream release
123+
124+ -- Sjoerd Simons <sjoerd@debian.org> Sat, 20 Oct 2012 22:56:22 +0200
125+
126+gnome-terminal (3.4.1.1-2) unstable; urgency=low
127+
128+ * Team upload
129+ * Recommend dbus-x11: gnome-terminal's default usage requires a
130+ D-Bus session, and dbus-x11 is the recommended way to get one of those
131+ (Closes: #691177; related to #631968)
132+ * If unable to connect to D-Bus, warn before we exit 1 (Closes: #691178)
133+
134+ -- Simon McVittie <smcv@debian.org> Wed, 24 Oct 2012 10:56:17 +0100
135+
136+gnome-terminal (3.4.1.1-1) unstable; urgency=low
137+
138+ * New upstream translation release.
139+
140+ -- Michael Biebl <biebl@debian.org> Wed, 18 Apr 2012 17:57:12 +0200
141+
142+gnome-terminal (3.4.0.1-1) unstable; urgency=low
143+
144+ * New upstream release.
145+ * debian/watch: Track .xz tarballs.
146+ * Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer.
147+ * Update debian/copyright using the machine-readable copyright format 1.0,
148+ gnome-terminal is licensed under GPL-3+.
149+ * Bump Standards-Version to 3.9.3.
150+
151+ -- Michael Biebl <biebl@debian.org> Mon, 02 Apr 2012 13:24:59 +0200
152+
153+gnome-terminal (3.2.1-2) unstable; urgency=low
154+
155+ * Reintroduce gtk2 build-dependency, it’s required for
156+ gtk-builder-convert.
157+
158+ -- Josselin Mouette <joss@debian.org> Sun, 20 Nov 2011 00:25:02 +0100
159+
160+gnome-terminal (3.2.1-1) experimental; urgency=low
161+
162+ * New upstream release.
163+ * Bump vte requirement.
164+ * Stop forcing gtk+ version, only gtk+ 3.x is supported now.
165+
166+ -- Josselin Mouette <joss@debian.org> Sat, 12 Nov 2011 17:52:40 +0100
167+
168+gnome-terminal (3.0.1-1) unstable; urgency=low
169+
170+ [ Raphaël Hertzog ]
171+ * Add lintian overrides for menu-icon-missing.
172+
173+ [ Michael Biebl ]
174+ * debian/watch: Switch to .bz2 tarballs.
175+ * New upstream release.
176+ * debian/control.in
177+ - Drop Build-Depends on libdbus-glib-1-dev.
178+ - Drop Build-Depends on dpkg-dev (>= 1.13.19), even the version from lenny
179+ is recent enough.
180+ - Add Vcs-* fields.
181+ * Bump debhelper compatibility level to 8.
182+ - Update Build-Depends on debhelper.
183+ - Strip debian/tmp/ from .install files.
184+ * Remove debian/fonts.conf, unused.
185+
186+ -- Michael Biebl <biebl@debian.org> Thu, 16 Jun 2011 16:19:04 +0200
187+
188+gnome-terminal (3.0.0-1) experimental; urgency=low
189+
190+ * New upstream release.
191+ * debian/control.in:
192+ + remove article from description synopsis.
193+ + bump Standards-Version to 3.9.2, no changes required.
194+
195+ -- Frederic Peters <fpeters@debian.org> Thu, 14 Apr 2011 22:16:36 +0200
196+
197+gnome-terminal (2.33.90-2) experimental; urgency=low
198+
199+ * debian/rules: bump libgconf2-dev build-dep.
200+
201+ -- Frederic Peters <fpeters@debian.org> Sun, 13 Mar 2011 15:27:35 +0100
202+
203+gnome-terminal (2.33.90-1) experimental; urgency=low
204+
205+ * New upstream release.
206+ + debian/rules: build the GTK+ 3 version
207+ + debian/control.in: update build-dependencies for the switch to GTK+ 3
208+
209+ -- Frederic Peters <fpeters@debian.org> Sun, 13 Mar 2011 13:21:50 +0100
210+
211+gnome-terminal (2.30.2-1) unstable; urgency=low
212+
213+ * New upstream bugfix release.
214+ * Switch to format 3.0 (quilt).
215+ * Bump Standards-Version to 3.8.4, no changes required.
216+
217+ -- Luca Falavigna <dktrkranz@debian.org> Tue, 22 Jun 2010 20:54:32 +0200
218+
219+gnome-terminal (2.30.1-1) unstable; urgency=low
220+
221+ * New upstream bugfix release.
222+
223+ -- Sebastian Dröge <slomo@debian.org> Tue, 04 May 2010 09:37:18 +0200
224+
225+gnome-terminal (2.30.0-1) unstable; urgency=low
226+
227+ * New upstream stable release:
228+ + debian/control.in:
229+ - Update build dependencies.
230+
231+ -- Sebastian Dröge <slomo@debian.org> Wed, 31 Mar 2010 11:18:11 +0200
232+
233+gnome-terminal (2.29.92-1) experimental; urgency=low
234+
235+ * New upstream development release:
236+ + debian/control.in:
237+ - Update build dependencies.
238+
239+ -- Sebastian Dröge <slomo@debian.org> Fri, 12 Mar 2010 17:52:12 +0100
240+
241+gnome-terminal (2.29.6-1) experimental; urgency=low
242+
243+ * New upstream development release:
244+ + debian/control.in:
245+ - Update build dependencies.
246+ + debian/rules:
247+ - Include check-dist.mk to prevent accidental uploads to unstable.
248+
249+ -- Sebastian Dröge <slomo@debian.org> Thu, 14 Jan 2010 08:29:30 +0100
250+
251+gnome-terminal (2.28.2-1) unstable; urgency=low
252+
253+ * New upstream bugfix release.
254+
255+ -- Luca Falavigna <dktrkranz@debian.org> Mon, 14 Dec 2009 22:45:57 +0100
256+
257+gnome-terminal (2.28.1-1) unstable; urgency=low
258+
259+ * New upstream bugfix release:
260+ + debian/control.in:
261+ - Update build dependencies.
262+
263+ -- Sebastian Dröge <slomo@debian.org> Tue, 20 Oct 2009 08:28:30 +0200
264+
265+gnome-terminal (2.28.0-1) unstable; urgency=low
266+
267+ * New upstream stable release:
268+ + debian/control.in:
269+ - Update build dependencies.
270+ + debian/patches/02_let_gconf_autostart.patch,
271+ debian/patches/03_useless_plural_forms.patch:
272+ - Dropped, merged upstream.
273+
274+ -- Sebastian Dröge <slomo@debian.org> Tue, 22 Sep 2009 14:02:42 +0200
275+
276+gnome-terminal (2.26.3.1-1) unstable; urgency=low
277+
278+ * New upstream release.
279+ * debian/patches/03_useless_plural_forms.patch:
280+ - remove useless Plural-Forms line which breaks build with
281+ gnome-doc-utils master (Closes: #545602).
282+ * debian/control.in:
283+ - Bump Standards-Version to 3.8.3, no changes needed.
284+
285+ -- Luca Falavigna <dktrkranz@debian.org> Tue, 15 Sep 2009 00:34:09 +0200
286+
287+gnome-terminal (2.26.2-3) UNRELEASED; urgency=low
288+
289+ * debian/watch: don't uupdate.
290+ * Add descriptions and links to patch headers.
291+ * debian/control.in:
292+ - Standards-Version is 3.8.2, no changes needed.
293+ - Extend gnome-terminal-data's long description.
294+ - No need to replace/conflict gnome-terminal2, that's gone for good.
295+ - gnome-terminal 2.10 is not even in oldstable, no need to replace it
296+ in gnome-terminal-data.
297+ * Move the menu and desktop files to the gnome-terminal package, add
298+ replaces accordingly.
299+ * debian/patches/04_resized_on_tabs_switch.patch: Removed. This was
300+ added because gnome-terminal didn't resize when you changed to a
301+ tab with a different font size. That works fine now without the patch.
302+
303+ -- Emilio Pozuelo Monfort <pochu@ubuntu.com> Sat, 27 Jun 2009 16:22:22 +0200
304+
305+gnome-terminal (2.26.2-2) unstable; urgency=low
306+
307+ * 02_let_gconf_autostart.patch: Don’t exit if there is no GConf daemon
308+ running. Instead, let dbus-daemon and gconfd be autostarted as they
309+ should be if this is needed. Thanks to Sean Finney for the
310+ suggestion. Closes: #531734 and some duplicates.
311+
312+ -- Josselin Mouette <joss@debian.org> Sat, 27 Jun 2009 14:53:33 +0200
313+
314+gnome-terminal (2.26.2-1) unstable; urgency=low
315+
316+ [ Josselin Mouette ]
317+ * Stop mentioning GNOME 2.
318+ * Remove scrollkeeper dependency.
319+
320+ [ Deng Xiyue ]
321+ * New upstream release.
322+ + Bump b-dep: libgtk2.0-dev (>= 2.14.0), libvte-dev (>= 0.20.0).
323+ + New b-dep: libdbus-glib-1-dev (>= 0.6).
324+ + Drop 01_tabs_shortcuts.patch, 02_tabs_shortcuts_translations.patch.
325+ Merged upstream.
326+ + Refresh 04_resized_on_tabs_switch.patch to apply cleanly.
327+ * Drop bonobo path in gnome-terminal-data.install. DBus is used instead.
328+ * Split Copyright holder section to silence lintian warning, and add missing
329+ copyright holders.
330+ * Point to versioned license files.
331+ * Update Standard-Version to 3.8.1.
332+
333+ [ Josselin Mouette ]
334+ * Drop unnecessary build-deps, add libsm-dev.
335+ * 01_onlyshowin.patch: new patch. Only show gnome-terminal in GNOME
336+ menus, other desktop environments already have their terminal
337+ emulators.
338+
339+ -- Josselin Mouette <joss@debian.org> Mon, 01 Jun 2009 11:28:01 +0200
340+
341+gnome-terminal (2.24.3-3) unstable; urgency=low
342+
343+ * Recommend gvfs. Closes: #519159.
344+ * 01_tabs_shortcuts.patch: restore the ability to set shortcuts to
345+ each tab. Closes: #519523.
346+ * 02_tabs_shortcuts_translations.patch: restore translations from
347+ version 2.22 for this functionality.
348+ + Thanks to Mart Raudsepp for preparing the patches.
349+
350+ -- Josselin Mouette <joss@debian.org> Fri, 13 Mar 2009 15:11:33 +0100
351+
352+gnome-terminal (2.24.3-2) unstable; urgency=low
353+
354+ * Upload to unstable.
355+
356+ -- Sebastian Dröge <slomo@debian.org> Sun, 08 Mar 2009 08:18:23 +0100
357+
358+gnome-terminal (2.24.3-1) experimental; urgency=low
359+
360+ * New upstream bugfix release.
361+
362+ -- Sebastian Dröge <slomo@debian.org> Tue, 13 Jan 2009 09:27:46 +0100
363+
364+gnome-terminal (2.24.2-1) experimental; urgency=low
365+
366+ * New upstream release.
367+
368+ -- Josselin Mouette <joss@debian.org> Sun, 04 Jan 2009 10:58:20 +0100
369+
370+gnome-terminal (2.24.1.1-1) experimental; urgency=low
371+
372+ * New upstream release:
373+ + debian/control.in:
374+ - Update build-depends.
375+ + debian/patches/01_error_crash.patch:
376+ - Dropped, merged upstream.
377+ + debian/gnome-terminal-data.install:
378+ - Drop pixmaps directory.
379+
380+ -- Sebastian Dröge <slomo@debian.org> Mon, 24 Nov 2008 11:05:22 +0100
381+
382+gnome-terminal (2.22.3-3) unstable; urgency=low
383+
384+ * 01_error_crash.patch: stolen from upstream (r2948). Fixes crash when
385+ passing incorrect arguments to the command line. Closes: #477259.
386+
387+ -- Josselin Mouette <joss@debian.org> Thu, 18 Sep 2008 16:17:00 +0200
388+
389+gnome-terminal (2.22.3-2) unstable; urgency=low
390+
391+ * gnome-terminal.wrapper: correctly emulate the completely brain-dead
392+ argument parsing of the -e option in xterm. Closes: #488974.
393+
394+ -- Josselin Mouette <joss@debian.org> Fri, 18 Jul 2008 11:57:11 +0200
395+
396+gnome-terminal (2.22.3-1) unstable; urgency=low
397+
398+ [ Josselin Mouette ]
399+ * gnome-terminal.wrapper: -e runs gnome-terminal -e, not -x.
400+ Closes: #457846.
401+
402+ [ Sebastian Dröge ]
403+ * New upstream bugfix release.
404+ * debian/control.in:
405+ + Updated Standards-Version to 3.8.0, no additional changes needed.
406+
407+ -- Sebastian Dröge <slomo@debian.org> Mon, 30 Jun 2008 10:21:32 +0200
408+
409+gnome-terminal (2.22.2-1) unstable; urgency=low
410+
411+ [ Emilio Pozuelo Monfort ]
412+ * debian/control:
413+ - Use two spaces in the description for the list of actions.
414+ Closes: #480322.
415+ - Don't depend on gnome-control-center. Closes: #474607.
416+ - Added Debian GNOME Maintainers to Uploaders.
417+
418+ [ Sebastian Dröge ]
419+ * New upstream bugfix release.
420+
421+ -- Sebastian Dröge <slomo@debian.org> Tue, 27 May 2008 07:39:49 +0200
422+
423+gnome-terminal (2.22.1-1) unstable; urgency=low
424+
425+ * New upstream bugfix release.
426+
427+ -- Sebastian Dröge <slomo@debian.org> Mon, 07 Apr 2008 14:26:17 +0200
428+
429+gnome-terminal (2.22.0-1) unstable; urgency=low
430+
431+ * New upstream stable release:
432+ + debian/control.in:
433+ - Build depend on GLib >= 2.15.2 and libgnome >= 2.14.
434+
435+ -- Sebastian Dröge <slomo@debian.org> Tue, 11 Mar 2008 08:46:27 +0100
436+
437+gnome-terminal (2.18.4-1) unstable; urgency=low
438+
439+ * New upstream bugfix release.
440+ * debian/control.in:
441+ + Update Standards-Version to 3.7.3, no additional changes needed.
442+ * debian/gnome-terminal-data.menu:
443+ + Fix section.
444+
445+ -- Sebastian Dröge <slomo@debian.org> Thu, 10 Jan 2008 09:06:06 +0100
446+
447+gnome-terminal (2.18.3-1) unstable; urgency=low
448+
449+ * New upstream bugfix release.
450+
451+ -- Sebastian Dröge <slomo@debian.org> Tue, 27 Nov 2007 06:25:11 +0100
452+
453+gnome-terminal (2.18.2-2) unstable; urgency=low
454+
455+ * Drop version in scrollkeeper depedency; closes: #451260.
456+ * New patch, 04_resized_on_tabs_switch, kludge to help Gtk+ resize the
457+ terminal when switching tabs; from the Ubuntu package.
458+
459+ -- Loic Minier <lool@dooz.org> Wed, 14 Nov 2007 10:02:01 +0100
460+
461+gnome-terminal (2.18.2-1) unstable; urgency=low
462+
463+ * New upstream release.
464+
465+ -- Sebastian Dröge <slomo@debian.org> Tue, 18 Sep 2007 10:55:37 +0200
466+
467+gnome-terminal (2.18.1-1) unstable; urgency=low
468+
469+ * New upstream stable release.
470+
471+ -- Loic Minier <lool@dooz.org> Tue, 19 Jun 2007 11:55:31 +0200
472+
473+gnome-terminal (2.18.0-2) unstable; urgency=low
474+
475+ * Upload to unstable; drop check-dist include.
476+ * Wrap build-deps and deps.
477+ * Add a ${misc:Depends}.
478+ * Apply patch by Vincent Ho to let gnome-terminal.wrapper ignore and warn
479+ about the --icon flag and to map the -name to --window-with-profile
480+ instead of --tclass; closes: #295195, #315945, #358865.
481+
482+ -- Loic Minier <lool@dooz.org> Tue, 24 Apr 2007 15:24:36 +0200
483+
484+gnome-terminal (2.18.0-1) experimental; urgency=low
485+
486+ * New upstream major stable release.
487+ - Bump up build-deps to libstartup-notification0-dev >= 0.8, libvte-dev
488+ >= 1:0.15.3.
489+ - Add missing build-dep on libgconf2-dev >= 2.14.0, libxft-dev (>= 2.0.0),
490+ libpango1.0-dev (>= 1.1.1).
491+ - Drop patch 01_terminal-window_resize, merged upstream.
492+ - Drop patch 02_black-screen, merged upstream.
493+
494+ -- Loic Minier <lool@dooz.org> Sun, 18 Mar 2007 11:42:58 +0100
495+
496+gnome-terminal (2.16.1-5) experimental; urgency=low
497+
498+ * Merge 2.14.2-2; SVN r6519:9038.
499+ - Drop patch 40_close_tab_size_bug361114; merged upstream.
500+ * Set LDFLAGS directly instead of via DEB_CONFIGURE_SCRIPT_ENV; build-depend
501+ on cdbs >= 0.4.41.
502+ * Bump up Debhelper compatibility level to 5.
503+ * Cleanups.
504+ * Pass -Wl,-z,defs before --as-needed in LDFLAGS.
505+
506+ -- Loic Minier <lool@dooz.org> Sun, 18 Mar 2007 11:21:34 +0100
507+
508+gnome-terminal (2.16.1-4) experimental; urgency=low
509+
510+ [ Loic Minier ]
511+ * Add a get-orig-source target to retrieve the upstream tarball.
512+ * Include the new check-dist Makefile to prevent accidental uploads to
513+ unstable; bump build-dep on gnome-pkg-tools to >= 0.10.
514+
515+ [ Josselin Mouette ]
516+ * 02_black-screen.patch: fix the "black screen" that sometimes appear
517+ when creating a new tab (closes: #363612).
518+
519+ [ Loic Minier ]
520+ * Use ${gnome:Version} and ${gnome:NextVersion}.
521+ * Include the gnome-versions.mk snippet.
522+ * Build-depend on the Gtk 2.10 transitionned libgnomeui-dev: >= 2.16.0-2.
523+
524+ -- Loic Minier <lool@dooz.org> Tue, 6 Mar 2007 11:20:53 +0100
525+
526+gnome-terminal (2.16.1-3) experimental; urgency=low
527+
528+ * Build-depend on gnome-doc-utils (closes: #405206).
529+
530+ -- Josselin Mouette <joss@debian.org> Tue, 2 Jan 2007 15:32:45 +0100
531+
532+gnome-terminal (2.16.1-2) experimental; urgency=low
533+
534+ * 01_terminal-window_resize.patch: stolen from upstream CVS. Avoid
535+ spurious window resizing when opening new tabs.
536+
537+ -- Josselin Mouette <joss@debian.org> Tue, 26 Dec 2006 20:58:36 +0100
538+
539+gnome-terminal (2.16.1-1) experimental; urgency=low
540+
541+ * New upstream release.
542+
543+ -- Guilherme de S. Pastore <gpastore@debian.org> Mon, 2 Oct 2006 16:38:37 -0300
544+
545+gnome-terminal (2.16.0-1) experimental; urgency=low
546+
547+ [ Guilherme de S. Pastore ]
548+ * New upstream release.
549+ - Doesn't add lines after closing tabs (Closes: #361114).
550+
551+ * debian/control.in:
552+ - bumped Standards-Version to 3.7.2.
553+ - bumped build-dependencies on libgtk2.0-dev and libvte-dev to
554+ the 2.16 versions.
555+
556+ * debian/copyright, debian/watch: updated for download.gnome.org.
557+
558+ [ Loic Minier ]
559+ * Fix watch file.
560+
561+ -- Guilherme de S. Pastore <gpastore@debian.org> Fri, 22 Sep 2006 16:11:39 -0300
562+
563+gnome-terminal (2.14.2-2) unstable; urgency=low
564+
565+ [ Loic Minier ]
566+ * Fix watch file.
567+
568+ [ Josselin Mouette ]
569+ * close_tab_size_bug361114.patch: patch from upstream CVS, to prevent
570+ the window from growing of one line when there is one tab remaining
571+ (closes: #361114).
572+
573+ [ Loic Minier ]
574+ * Add a get-orig-source target to retrieve the upstream tarball.
575+ * Fix patch close_tab_size_bug361114 to apply and rename to
576+ 40_close_tab_size_bug361114; add comments.
577+
578+ -- Loic Minier <lool@dooz.org> Sun, 18 Mar 2007 10:56:31 +0100
579+
580+gnome-terminal (2.14.2-1) unstable; urgency=low
581+
582+ [ Josselin Mouette ]
583+ * List fatalerror as the primary maintainer.
584+ * Make the package binNMU-safe.
585+ + Build-depend on dpkg-dev 1.13.19.
586+ + Use ${source:Version}.
587+
588+ [ Loic Minier ]
589+ * New upstream release.
590+
591+ -- Loic Minier <lool@dooz.org> Mon, 29 May 2006 22:13:45 +0200
592+
593+gnome-terminal (2.14.1-1) unstable; urgency=low
594+
595+ * New upstream release.
596+
597+ -- Guilherme de S. Pastore <gpastore@debian.org> Fri, 21 Apr 2006 12:34:04 -0300
598+
599+gnome-terminal (2.14.0-1) unstable; urgency=low
600+
601+ * New upstream release.
602+
603+ -- Guilherme de S. Pastore <guilherme.pastore@terra.com.br> Sat, 18 Mar 2006 13:13:33 -0300
604+
605+gnome-terminal (2.13.93-1) experimental; urgency=low
606+
607+ * New upstream release
608+ - Tabs can be dragged and dropped. (Closes: #240139, #265736)
609+ - Pre-selects the window/tab title on edit. (Closes: #305678)
610+ * debian/patches:
611+ - tab-change.patch: dropped; fixed upstream.
612+ - 03_menu_entry.patch: dropped; applied upstream.
613+ - translation_warning.patch: dropped; fixed upstream.
614+ * debian/gnome-terminal-data.install:
615+ - do not install /usr/share/application-registry, it has been
616+ dropped and deprecated upstream.
617+
618+ -- Guilherme de S. Pastore <guilherme.pastore@terra.com.br> Sat, 4 Mar 2006 15:46:20 -0300
619+
620+gnome-terminal (2.12.0-2) unstable; urgency=low
621+
622+ * Upload to unstable.
623+
624+ -- Josselin Mouette <joss@debian.org> Sun, 8 Jan 2006 17:10:23 +0100
625+
626+gnome-terminal (2.12.0-1) experimental; urgency=low
627+
628+ * New upstream releases.
629+ - Update watch file. [debian/watch]
630+ * New patch from Ubuntu to move the menu entry to utilities/accessories.
631+ [debian/patches/03_menu_entry.patch]
632+ * Add CDBS' utils. [debian/rules]
633+ * Clarify Copyright versus License. [debian/copyright]
634+ * Don't run scrollkeeper. [debian/rules]
635+
636+ -- Loic Minier <lool@dooz.org> Sat, 29 Oct 2005 20:44:07 +0200
637+
638+gnome-terminal (2.10.0-3) UNRELEASED; urgency=low
639+
640+ [ Josselin Mouette ]
641+ * Don't overwrite DEB_CONFIGURE_SCRIPT_ENV completely.
642+ Sebastien Bacher:
643+ * debian/control.in:
644+ - the data package replaces files.
645+ * debian/patches/translation_warning.patch:
646+ - fix a warning due to a translation issue (Closes: #315948).
647+
648+ [ Clément Stenac ]
649+ * Clarify some manpage descriptions (Closes: #275888)
650+ * Improve description (Closes:#264480)
651+ * Add gconf dependency for gnome-terminal-data (Closes:#315171, #328295)
652+
653+ [ Loic Minier ]
654+ * Fix by Tim Baverstock to stop ARGV processing when we find -e.
655+ (Closes: #326825)
656+
657+ -- Loic Minier <lool@dooz.org> Wed, 14 Sep 2005 20:20:21 +0200
658+
659+gnome-terminal (2.10.0-2) unstable; urgency=low
660+
661+ * Upload to unstable (GNOME Team upload).
662+ * Updated 'debian/copyright'.
663+ * Updated Depends / Build-Depends.
664+ * Renamed debian files with pkg prefix, install menu file and bonobo
665+ files in '/usr/lib' and some more '/usr/share/' subdirectories in
666+ gnome-terminal-data.
667+
668+ -- Marc Dequènes (Duck) <Duck@DuckCorp.org> Mon, 13 Jun 2005 23:25:32 +0200
669+
670+gnome-terminal (2.10.0-1) experimental; urgency=low
671+
672+ * New upstream release.
673+ * Update debian/watch.
674+ * Split out data files in a separate package.
675+
676+ -- Josselin Mouette <joss@debian.org> Wed, 27 Apr 2005 19:51:37 +0200
677+
678+gnome-terminal (2.8.2-2) unstable; urgency=medium
679+
680+ * Pass --as-needed to LDFLAGS, to reduce dependencies.
681+ + Incidentally removes the dependency upon libhowl0 (closes: #298850).
682+
683+ -- Josselin Mouette <joss@debian.org> Thu, 10 Mar 2005 22:50:38 +0100
684+
685+gnome-terminal (2.8.2-1) unstable; urgency=medium
686+
687+ * New upstream release (translation updates).
688+ * [debian/patches/update-config-guess-sub.patch] Dropped; upstream now
689+ includes a newer config.guess and config.sub than are available in
690+ autotools-dev.
691+ * [debian/rules] Have binary-post-install clean up scrollkeeper's droppings.
692+
693+ -- J.H.M. Dassen (Ray) <jdassen@debian.org> Sat, 1 Jan 2005 12:20:00 +0100
694+
695+gnome-terminal (2.8.0-2) unstable; urgency=low
696+
697+ * Upload to unstable.
698+ * debian/watch:
699+ - updated.
700+
701+ -- Sebastien Bacher <seb128@debian.org> Fri, 19 Nov 2004 17:18:12 +0100
702+
703+gnome-terminal (2.8.0-1) experimental; urgency=low
704+
705+ * New upstream release.
706+ * [debian/patches/update-config-guess-sub.patch] Update config.{guess,sub}.
707+ * Fixed in 2.7.2:
708+ Recognize mailto: (with or without the mailto:...) and webdav: uris
709+ (Closes: #230549)
710+ * [debian/control.in] Dropped "libesd0-dev" build dependency, as the
711+ gnome-terminal code does not depend on it directly (and the libraries it
712+ depends on that do have a proper dependency on it).
713+
714+ -- J.H.M. Dassen (Ray) <jdassen@debian.org> Sun, 17 Oct 2004 09:49:40 +0200
715+
716+gnome-terminal (2.7.3-1) experimental; urgency=low
717+
718+ * GNOME Team upload.
719+ * New (development) upstream release.
720+ * debian/patches/fix_selection.patch:
721+ - removed, this patch is included in the code now.
722+ * debian/patches/tab-change.patch:
723+ - new patch to not display obnoxious characters on next/previous tab
724+ (Closes: #256207).
725+ * debian/postinst:
726+ - set an higher priority (40) on the x-terminal-emulator alternative, so
727+ gnome-terminal has the priority over xterm and uxterm (Closes: #252345).
728+
729+ -- Sebastien Bacher <seb128@debian.org> Wed, 30 Jun 2004 16:23:21 +0200
730+
731+gnome-terminal (2.7.2-1) experimental; urgency=low
732+
733+ * GNOME Team Upload.
734+ * New (development) upstream release
735+ - add the detection of email addresses (Closes: #230549).
736+ * debian/patches/fix_selection.patch:
737+ - patch from the CVS to fix selection problems.
738+
739+ -- Sebastien Bacher <seb128@debian.org> Wed, 23 Jun 2004 19:38:19 +0200
740+
741+gnome-terminal (2.6.1-4) unstable; urgency=low
742+
743+ * GNOME Team Upload.
744+ * debian/control.in:
745+ + Build-Depends on libvte-dev (>= 1:0.11.11-4) to have the epoch included
746+ in the shlib (Closes: #253120).
747+
748+ -- Sebastien Bacher <seb128@debian.org> Tue, 22 Jun 2004 12:17:44 +0200
749+
750+gnome-terminal (2.6.1-3) unstable; urgency=low
751+
752+ * GNOME Team Upload.
753+ * debian/control.in:
754+ + Build-Depends on libvte-dev (>= 1:0.11.11-3) (Closes: #253120).
755+
756+ -- Sebastien Bacher <seb128@debian.org> Tue, 8 Jun 2004 00:39:23 +0200
757+
758+gnome-terminal (2.6.1-2) unstable; urgency=low
759+
760+ * GNOME Team Upload.
761+ * Upload in unstable.
762+
763+ -- Sebastien Bacher <seb128@debian.org> Thu, 27 May 2004 00:33:35 +0200
764+
765+gnome-terminal (2.6.1-1) experimental; urgency=low
766+
767+ * New Upstream release
768+ - Translation updates.
769+
770+ -- Arnaud Patard <arnaud.patard@rtp-net.org> Sun, 18 Apr 2004 16:24:56 +0200
771+
772+gnome-terminal (2.6.0-3) experimental; urgency=low
773+
774+ * Added a missing build dependencie on libgnomevfs2-dev, preventing
775+ gnome-terminal to start (Closes: #240590)
776+
777+ -- Arnaud Patard <arnaud.patard@rtp-net.org> Tue, 30 Mar 2004 02:18:18 +0200
778+
779+gnome-terminal (2.6.0-2) experimental; urgency=low
780+
781+ * debian/prerm:
782+ - only deregister the alternative on removal, not on
783+ upgrades
784+
785+ -- Gustavo Noronha Silva <kov@debian.org> Fri, 26 Mar 2004 18:14:49 -0300
786+
787+gnome-terminal (2.6.0-1) experimental; urgency=low
788+
789+ * GNOME team upload.
790+ * New upstream release.
791+ * debian/control.in
792+ + updated dependencies to GNOME 2.6
793+
794+ -- Ondřej Surý <ondrej@debian.org> Fri, 26 Mar 2004 14:41:34 +0100
795+
796+gnome-terminal (2.4.2-7) unstable; urgency=low
797+
798+ * New maintainer (Closes: #235054)
799+ * Switched from debhelper to cdbs for the packaging
800+
801+ -- Arnaud Patard <arnaud.patard@rtp-net.org> Sun, 29 Feb 2004 19:15:32 +0100
802+
803+gnome-terminal (2.4.2-6) unstable; urgency=low
804+
805+ * Orphaned package.
806+
807+ -- Christian Marillat <marillat@debian.org> Thu, 26 Feb 2004 22:02:00 +0100
808+
809+gnome-terminal (2.4.2-5) unstable; urgency=low
810+
811+ * Remove DTD hack and update scrollkeeper dependency to 0.3.14-5
812+
813+ -- Christian Marillat <marillat@debian.org> Sun, 8 Feb 2004 10:31:51 +0100
814+
815+gnome-terminal (2.4.2-4) unstable; urgency=low
816+
817+ * debian/prerm Unregister x-terminal-emulator with update-alternatives.
818+
819+ -- Christian Marillat <marillat@debian.org> Mon, 12 Jan 2004 09:16:14 +0100
820+
821+gnome-terminal (2.4.2-3) unstable; urgency=low
822+
823+ * Remove schemas on remove not purge.
824+
825+ -- Christian Marillat <marillat@debian.org> Sun, 11 Jan 2004 01:58:13 +0100
826+
827+gnome-terminal (2.4.2-2) unstable; urgency=low
828+
829+ * debian/prerm Unregister schemas file from the database.
830+
831+ -- Christian Marillat <marillat@debian.org> Fri, 9 Jan 2004 15:26:19 +0100
832+
833+gnome-terminal (2.4.2-1) unstable; urgency=low
834+
835+ * New upstream release.
836+
837+ -- Christian Marillat <marillat@debian.org> Sun, 9 Nov 2003 11:25:28 +0100
838+
839+gnome-terminal (2.4.1-3) unstable; urgency=low
840+
841+ * Update Build-Depends to GNOME 2.4 packages (Closes: #217743)
842+
843+ -- Christian Marillat <marillat@debian.org> Mon, 27 Oct 2003 15:10:48 +0100
844+
845+gnome-terminal (2.4.1-2) unstable; urgency=low
846+
847+ * Build-depends on libvte-dev (>= 1:0.11.10-1)
848+
849+ -- Christian Marillat <marillat@debian.org> Mon, 20 Oct 2003 23:24:41 +0200
850+
851+gnome-terminal (2.4.1-1) unstable; urgency=low
852+
853+ * New upstream release.
854+
855+ -- Christian Marillat <marillat@debian.org> Sat, 18 Oct 2003 01:15:43 +0200
856+
857+gnome-terminal (2.2.2-4) unstable; urgency=low
858+
859+ * Improve long description (Closes: #209534)
860+ * Need to depends on gnome-control-center (Closes: #211087)
861+
862+ -- Christian Marillat <marillat@debian.org> Tue, 23 Sep 2003 21:25:13 +0200
863+
864+gnome-terminal (2.2.2-3) unstable; urgency=low
865+
866+ * Check if scrollkeeper-update is here in the postrm (Closes: #201644)
867+ * Move yelp in recommends and don't complain if the help menu entry doesn't work (Closes: #201968)
868+
869+ -- Christian Marillat <marillat@debian.org> Fri, 18 Jul 2003 20:10:41 +0200
870+
871+gnome-terminal (2.2.2-2) unstable; urgency=low
872+
873+ * Fix manpage alternative for x-terminal-emulator (Closes: #201077)
874+
875+ -- Christian Marillat <marillat@debian.org> Tue, 15 Jul 2003 16:00:10 +0200
876+
877+gnome-terminal (2.2.2-1) unstable; urgency=low
878+
879+ * New upstream release.
880+ * Add an icon for the Debian menu.
881+
882+ -- Christian Marillat <marillat@debian.org> Tue, 3 Jun 2003 19:59:58 +0200
883+
884+gnome-terminal (2.2.1-1) unstable; urgency=low
885+
886+ * New upstream release.
887+
888+ -- Christian Marillat <marillat@debian.org> Thu, 6 Feb 2003 10:15:55 +0100
889+
890+gnome-terminal (2.2.0-1) unstable; urgency=low
891+
892+ * New upstream release.
893+ * Remove previous patch from cvs
894+
895+ -- Christian Marillat <marillat@debian.org> Tue, 21 Jan 2003 15:27:54 +0100
896+
897+gnome-terminal (2.1.4-2) unstable; urgency=low
898+
899+ * Update description (Closes: #177172)
900+ * Patche from CVS to fix -x option (Closes: #176901)
901+
902+ -- Christian Marillat <marillat@debian.org> Fri, 17 Jan 2003 21:31:47 +0100
903+
904+gnome-terminal (2.1.4-1) unstable; urgency=low
905+
906+ * New upstream release.
907+ * AA font work now (Closes: #128670)
908+ * Work with bold attribute (Closes: #165838)
909+ * Double click does select whole word (Closes: #171567)
910+ * Work with UTF-8 locale (Closes: #165109)
911+ * Cut and paste now copy new line (Closes: #164860)
912+ * No more problem with maximized window and new tab (Closes: #153739)
913+ * No more redraw problem with iptraf (Closes: #102924)
914+ * Remove empty README.Debian (Closes: #176403)
915+ * Build against vte (Closes: #176531)
916+
917+ -- Christian Marillat <marillat@debian.org> Tue, 14 Jan 2003 13:10:57 +0100
918+
919+gnome-terminal (2.1.3-1) unstable; urgency=low
920+
921+ * New upstream release.
922+
923+ -- Christian Marillat <marillat@debian.org> Wed, 8 Jan 2003 17:17:39 +0100
924+
925+gnome-terminal (2.1.0-3) unstable; urgency=low
926+
927+ * Remove empty README.Debian (Closes: #168582)
928+ * Write a manpage (Closes: #151665, #168311)
929+
930+ -- Christian Marillat <marillat@debian.org> Wed, 4 Dec 2002 15:51:32 +0100
931+
932+gnome-terminal (2.1.0-2) unstable; urgency=low
933+
934+ * Sould build-depends on scrollkeeper (Closes: #166086)
935+
936+ -- Christian Marillat <marillat@debian.org> Wed, 23 Oct 2002 21:11:29 +0200
937+
938+gnome-terminal (2.1.0-1) unstable; urgency=low
939+
940+ * New upstream release.
941+ * Bell setting is correctly saved (Closes: #161958)
942+ * super/meta/hyper is fixed (Closes: #153270, #152253)
943+ * Windows class name if fixed (Closes: #155759)
944+
945+ -- Christian Marillat <marillat@debian.org> Wed, 23 Oct 2002 18:46:23 +0200
946+
947+gnome-terminal (2.0.1-3) unstable; urgency=low
948+
949+ * Update to standards version 3.5.7
950+ * debian/postinst use 'gconftool-2 --get-default-source' instead of
951+ harcoded value.
952+ * Build against the latest libzvt2.0-dev and update build-depends
953+ * Add a patche to work correctly with the latest libzvt2 (Closes: #164606)
954+
955+ -- Christian Marillat <marillat@debian.org> Mon, 14 Oct 2002 17:14:09 +0200
956+
957+gnome-terminal (2.0.1-2) unstable; urgency=low
958+
959+ * Build against the latest libgnomevfs2-dev 2.0.2-4
960+ * Fix typo in german translation (Closes: #156901)
961+
962+ -- Christian Marillat <marillat@debian.org> Fri, 16 Aug 2002 17:25:49 +0200
963+
964+gnome-terminal (2.0.1-1) unstable; urgency=low
965+
966+ * New upstream release.
967+ * Should depends on yelp (Closes: #153684)
968+ * Add undocumented manpages.
969+ * Can add a shift key in key bindings (Closes: #152257)
970+ * Selected key binding is now highlighted (Closes: #152255)
971+
972+ -- Christian Marillat <marillat@debian.org> Mon, 5 Aug 2002 01:39:37 +0200
973+
974+gnome-terminal (2.0.0-4) unstable; urgency=low
975+
976+ * Build against the latest libzvt
977+
978+ -- Christian Marillat <marillat@debian.org> Sun, 7 Jul 2002 20:41:18 +0200
979+
980+gnome-terminal (2.0.0-3) unstable; urgency=low
981+
982+ * I'm killing bugs second release.
983+ * Should depends on scrollkeeper.
984+ * transparency is configurable (Closes: #105675)
985+ * Font size can be changed with the profile setup (Closes: #56135, #103204)
986+ * Right click work with text selection (Closes: #107172)
987+ * Works correctly with deselect (Closes: #127365)
988+ * Works correctly with txt2regex and top (Closes: #129394, #131086)
989+ * --use-factory option doesn't exist anymore (Closes: #98530)
990+ * Remove old doc in html directory (Closes: #151436)
991+
992+ -- Christian Marillat <marillat@debian.org> Sun, 30 Jun 2002 15:01:58 +0200
993+
994+gnome-terminal (2.0.0-2) unstable; urgency=low
995+
996+ * I'm killing bugs release.
997+ * Add the wrapper and provides x-terminal-emulator (Closes: #151210)
998+ * Rigth click work with pinfo (Closes: #125665)
999+ * Doesn't lose settings (Closes: #143844)
1000+ * -e option works correctly (Closes: #149685)
1001+ * Don't need to work with libgdkxft0. GNOME 2 works with anti-aliased
1002+ fonts (Closes: #128670)
1003+ * Don't resize the terminal size to 80x24 when toggling the menubar
1004+ (Closes: #95346)
1005+ * --class option work (Closes: #118668)
1006+ * gnome-terminal -e "querybts mutt" works correctly Closes: #136141)
1007+ * Clicking on an underlined URL work (Closes: #145896)
1008+ * The window title can be changed (Closes: #122440)
1009+
1010+ -- Christian Marillat <marillat@debian.org> Fri, 28 Jun 2002 14:29:18 +0200
1011+
1012+gnome-terminal (2.0.0-1) unstable; urgency=low
1013+
1014+ * Upload to unstable
1015+
1016+ -- Christian Marillat <marillat@debian.org> Thu, 27 Jun 2002 16:23:09 +0200
1017+
1018+gnome-terminal2 (2.0.0-2) experimental; urgency=low
1019+
1020+ * Call scrollkeeper-update in postrm
1021+
1022+ -- Christian Marillat <marillat@debian.org> Wed, 12 Jun 2002 06:42:19 +0200
1023+
1024+gnome-terminal2 (2.0.0-1) experimental; urgency=low
1025+
1026+ * New upstream release.
1027+
1028+ -- Christian Marillat <marillat@debian.org> Wed, 12 Jun 2002 06:33:43 +0200
1029+
1030+gnome-terminal2 (1.9.7-1) experimental; urgency=low
1031+
1032+ * New upstream release.
1033+
1034+ -- Christian Marillat <marillat@debian.org> Mon, 3 Jun 2002 15:53:40 +0200
1035+
1036+gnome-terminal2 (1.9.6-3) experimental; urgency=low
1037+
1038+ * debian/rules Add GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 in install target.
1039+ * debian/postinst check if schemas files are present before calling
1040+ gconftool-2
1041+
1042+ -- Christian Marillat <marillat@debian.org> Mon, 27 May 2002 15:50:50 +0200
1043+
1044+gnome-terminal2 (1.9.6-2) experimental; urgency=low
1045+
1046+ * Add support for DEB_HOST_GNU_TYPE DEB_BUILD_GNU_TYPE and
1047+ DEB_BUILD_OPTIONS
1048+ * Call gconftool-2 with the rigth schemas file in postinst.
1049+
1050+ -- Christian Marillat <marillat@debian.org> Sat, 18 May 2002 13:51:01 +0200
1051+
1052+gnome-terminal2 (1.9.6-1) experimental; urgency=low
1053+
1054+ * New upstream release.
1055+
1056+ -- Christian Marillat <marillat@debian.org> Wed, 15 May 2002 18:15:28 +0200
1057+
1058+gnome-terminal2 (1.9.5-1) experimental; urgency=low
1059+
1060+ * New upstream release.
1061+
1062+ -- Christian Marillat <marillat@debian.org> Sat, 4 May 2002 18:45:48 +0200
1063+
1064+gnome-terminal2 (1.9.4-1) experimental; urgency=low
1065+
1066+ * New upstream release.
1067+
1068+ -- Christian Marillat <marillat@debian.org> Thu, 25 Apr 2002 23:41:53 +0200
1069+
1070+gnome-terminal2 (1.9.3-1) experimental; urgency=low
1071+
1072+ * New upstream release.
1073+
1074+ -- Christian Marillat <marillat@debian.org> Wed, 17 Apr 2002 15:19:18 +0200
1075+
1076+gnome-terminal2 (1.9.2-1) experimental; urgency=low
1077+
1078+ * New upstream release.
1079+
1080+ -- Christian Marillat <marillat@debian.org> Fri, 29 Mar 2002 16:46:34 +0100
1081+
1082+gnome-terminal2 (1.9.1-1) unstable; urgency=low
1083+
1084+ * New upstream release.
1085+ * Upload to unstable
1086+
1087+ -- Christian Marillat <marillat@debian.org> Wed, 6 Mar 2002 14:09:47 +0100
1088+
1089+gnome-terminal2 (1.9.0-6) experimental; urgency=low
1090+
1091+ * Build-depends on libglade2-dev (>= 1.99.8-2) (Closes: #136489)
1092+
1093+ -- Christian Marillat <marillat@debian.org> Sun, 3 Mar 2002 11:32:38 +0100
1094+
1095+gnome-terminal2 (1.9.0-5) experimental; urgency=low
1096+
1097+ * Improve build-depends (Closes: #136232)
1098+
1099+ -- Christian Marillat <marillat@debian.org> Thu, 28 Feb 2002 23:17:18 +0100
1100+
1101+gnome-terminal2 (1.9.0-4) experimental; urgency=low
1102+
1103+ * Build (again) against the latest libraries.
1104+ * Upload to experimental
1105+
1106+ -- Christian Marillat <marillat@debian.org> Mon, 25 Feb 2002 14:43:59 +0100
1107+
1108+gnome-terminal2 (1.9.0-3) unstable; urgency=low
1109+
1110+ * Install the schemas file in postinst.
1111+ * Build against the latest libraries.
1112+
1113+ -- Christian Marillat <marillat@debian.org> Sat, 23 Feb 2002 15:33:14 +0100
1114+
1115+gnome-terminal2 (1.9.0-2) unstable; urgency=low
1116+
1117+ * Oooooops forgot to add libzvt2-dev in build-depends.
1118+
1119+ -- Christian Marillat <marillat@debian.org> Sat, 16 Feb 2002 19:28:09 +0100
1120+
1121+gnome-terminal2 (1.9.0-1) unstable; urgency=low
1122+
1123+ * New upstream release.
1124+
1125+ -- Christian Marillat <marillat@debian.org> Fri, 15 Feb 2002 00:45:22 +0100
1126+
1127+gnome-core2 (1.5.4-1) experimental; urgency=low
1128+
1129+ * New upstream release.
1130+
1131+ -- Christian Marillat <marillat@debian.org> Sun, 20 Jan 2002 16:21:40 +0100
1132+
1133+gnome-core (1.4.0.4-16) unstable; urgency=low
1134+
1135+ * Fix typo in gnome-terminal.wrapper (Closes: #127768)
1136+ * Remove gnome-hint patche (Closes: #121390, #129184)
1137+ * debian/control Replace libpng-dev by libpng2-dev in Build-Depends
1138+ (Closes: #128377)
1139+
1140+ -- Christian Marillat <marillat@debian.org> Mon, 14 Jan 2002 15:04:52 +0100
1141+
1142+gnome-core (1.4.0.4-15) unstable; urgency=low
1143+
1144+ * Build against the latest gnome-libs to update the libzvt2 dependency
1145+ (Closes: #127309, #127271)
1146+ * debian/control Replace libpng2-dev by libpng-dev in Build-Depends.
1147+ * debian/control Build-depends on libzvt-dev (>= 1.4.1.2-9)
1148+
1149+ -- Christian Marillat <marillat@debian.org> Tue, 1 Jan 2002 15:27:43 +0100
1150+
1151+gnome-core (1.4.0.4-14) unstable; urgency=low
1152+
1153+ * Fix typo in gnome-terminal.1 (Closes: #123073)
1154+ * Fix base page for doc-base in libpanel-applet-dev package.
1155+ * Fix typo in gnome-help documentation (Closes: #126566)
1156+ * Apply patch to allows meta functionnality in gnome-terminal (Closes: #50427)
1157+
1158+ -- Christian Marillat <marillat@debian.org> Thu, 27 Dec 2001 14:47:36 +0100
1159+
1160+gnome-core (1.4.0.4-13) unstable; urgency=low
1161+
1162+ * Default font for gnome-terminal is "fixed" only (Closes: #117126)
1163+ * Patch against gnome-hint.c Don't use gettext for font descriptor
1164+ (Closes: #116606)
1165+ * Patch against gnome-about/Makefile.am to use new gdk_pixbuf include path
1166+ (Closes: #120312)
1167+ * Revert my change on logout.c Only root can shutdown/reboot from the
1168+ panel (Closes: #119316, #120127)
1169+
1170+ -- Christian Marillat <marillat@debian.org> Tue, 20 Nov 2001 11:36:05 +0100
1171+
1172+gnome-core (1.4.0.4-12) unstable; urgency=low
1173+
1174+ * gnome-wm honour --default-wm (Closes: #115668)
1175+ * Build against the latest gnome-libs
1176+
1177+ -- Christian Marillat <marillat@debian.org> Sun, 21 Oct 2001 14:11:19 +0200
1178+
1179+gnome-core (1.4.0.4-11) unstable; urgency=low
1180+
1181+ * debian/control lynx comeback in Recommends (Closes: #114142)
1182+ * debian/control replaces xml-i18n-tools by intltool (Closes: #115024)
1183+ * Fix automake 1.5 errors. Thanks to Denis Barbier (Closes: #114369)
1184+ * Build against the latest orbit (Closes: #115309)
1185+
1186+ -- Christian Marillat <marillat@debian.org> Fri, 12 Oct 2001 10:46:49 +0200
1187+
1188+gnome-core (1.4.0.4-10) unstable; urgency=low
1189+
1190+ * Fix typo in panel/panel.hints (Closes: #113590)
1191+ * Replace lynx by w3m (Closes: #113613)
1192+ * Move gnome-terminal.desktop in gnome-terminal package (Closes: #113736)
1193+ * Move gnome-help.desktop in gnome-help package
1194+ * debian:control Add Replaces: gnome-panel-data (<= 1.4.0.4-9) for above
1195+ * Patch against gsm/logout.c Now you can reboot/halt your machine from the
1196+ panel. This only work for root, because shutdown doesn't understand the
1197+ -a option. Read README.debian in gnome-panel package.
1198+ * debian/rules Remove less files in clean target (Closes: #114020)
1199+
1200+ -- Christian Marillat <marillat@debian.org> Mon, 1 Oct 2001 11:34:06 +0200
1201+
1202+gnome-core (1.4.0.4-9) unstable; urgency=low
1203+
1204+ * Add Debian menu for panel and gmenu (Closes: #112176)
1205+ * Remove /var/lib/gnome on purge (Closes: #113005)
1206+ * Remove /etc/gnome/config on purge (Closes: #112994)
1207+ * Remove /etc/gnome on purge (Closes: #112995)
1208+ * debian/control replace cygnus-stylesheets by docbook-utils
1209+
1210+ -- Christian Marillat <marillat@debian.org> Mon, 24 Sep 2001 18:39:19 +0200
1211+
1212+gnome-core (1.4.0.4-8) unstable; urgency=high
1213+
1214+ * High urgency, because the current release in testing has a missing
1215+ dependency on libpanel-applet0 and the panel package doesn't work if
1216+ libpanel-applet0 isn't installed (Closes: #111517)
1217+ * debian/control for gnome-help, move lynx from depends to recommends
1218+ (Closes: #109652)
1219+ * debian/control gnome-panel suggests fortune-mod (Closes: #110865)
1220+ * debian/control gnome-help suggests gnome-users-guide not
1221+ gnome-users-guide-en (Closes: #111200)
1222+ * Don't change cursor color (Closes: #97697)
1223+ * Change default font for gnome-terminal (Closes: #111319)
1224+
1225+ -- Christian Marillat <marillat@debian.org> Fri, 7 Sep 2001 15:06:07 +0200
1226+
1227+gnome-core (1.4.0.4-7) unstable; urgency=low
1228+
1229+ * Fix path in gnome-session.1 (Closes: #107724)
1230+ * debian/*.sgml Use docbook 4.1
1231+ * debian/control gnome-help-data Replaces gnome-terminal (<= 1.0.55-2)
1232+ (CLoses: #107948)
1233+
1234+ -- Christian Marillat <marillat@debian.org> Wed, 8 Aug 2001 08:07:56 +0200
1235+
1236+gnome-core (1.4.0.4-6) unstable; urgency=low
1237+
1238+ * debian/rules for dh_makeshlibs replace libcapplet0 by libpanel-applet0
1239+ (Closes: #105772)
1240+
1241+ -- Christian Marillat <marillat@debian.org> Wed, 18 Jul 2001 19:02:59 +0200
1242+
1243+gnome-core (1.4.0.4-5) unstable; urgency=low
1244+
1245+ * Patch against gnome-edit to use EDITOR if the default gnome editor is
1246+ unavailable.
1247+ * Remove gnome-wm patch, and move the patched file in debian/
1248+ * debian/gnome-wm Try to exec $WINDOW_MANAGER before x-window-manager
1249+ (Closes: #103430
1250+ * New patch from Michael Urman to hide task names in tasklist_applet
1251+ (Closes: #104587)
1252+
1253+ -- Christian Marillat <marillat@debian.org> Sat, 14 Jul 2001 16:58:12 +0200
1254+
1255+gnome-core (1.4.0.4-4) unstable; urgency=low
1256+
1257+ * Gnome-help Provides: man-browser, www-browser, info-browser
1258+ * Switch to debhelper V3
1259+ * Change libraries versionning to (>= 1.4.0.2-3) instead of the latest
1260+ package number.
1261+ * Build-depends on groff-base instead of groff
1262+
1263+ -- Christian Marillat <marillat@debian.org> Fri, 22 Jun 2001 17:02:37 +0200
1264+
1265+gnome-core (1.4.0.4-3) unstable; urgency=low
1266+
1267+ * New patch: Allows to save/load the keyboard secure state (Closes: #83028)
1268+ * New patch: Remove a warning in configure
1269+ * gnome-help replace gnome-panel-data (Closes: #99499)
1270+ * Build-depends on xml-i18n-tools (>= 0.8.4.cvs.20010530-1) (Close: #98784)
1271+
1272+ -- Christian Marillat <marillat@debian.org> Sat, 2 Jun 2001 14:41:45 +0200
1273+
1274+gnome-core (1.4.0.4-2) unstable; urgency=low
1275+
1276+ * New patch: Replace Distribution by Debian in configuration dialog box.
1277+ * New patch: Upstream patch to allow Debian menu in default configuration.
1278+ * New patch: Fix some wrong path.
1279+ * Move gnome-feedback doc from gnome-help-data to gnome-core.
1280+
1281+ -- Christian Marillat <marillat@debian.org> Tue, 15 May 2001 15:36:51 +0200
1282+
1283+gnome-core (1.4.0.4-1) unstable; urgency=low
1284+
1285+ * New upstream release.
1286+
1287+ -- Christian Marillat <marillat@debian.org> Wed, 9 May 2001 23:56:27 +0200
1288+
1289+gnome-core (1.4.0.3-2) unstable; urgency=low
1290+
1291+ * Remove debugging code (/tmp/languages file)
1292+
1293+ -- Christian Marillat <marillat@debian.org> Mon, 7 May 2001 16:48:18 +0200
1294+
1295+gnome-core (1.4.0.3-1) unstable; urgency=low
1296+
1297+ * New upstream release.
1298+ * New: tooltips for long task names in tasklist_applet (Closes: #63898)
1299+
1300+ -- Christian Marillat <marillat@debian.org> Thu, 3 May 2001 15:51:58 +0200
1301+
1302+gnome-core (1.4.0.2-3) unstable; urgency=low
1303+
1304+ * Fix wrong dif.gz file (Closes: #94499)
1305+ * Build against the latest lignome-dev (Closes: #95301, #95691)
1306+ * gnome-terminal should depends on gnome-bin (Closes: #95498)
1307+ * Doesn't build against gtkhtml this break fonts displaying (Closes: #92187)
1308+
1309+ -- Christian Marillat <marillat@debian.org> Tue, 1 May 2001 11:03:14 +0200
1310+
1311+gnome-core (1.4.0.2-2) unstable; urgency=low
1312+
1313+ * New/old patch against manpages, never applied by upstream.
1314+ * gnome-help depends on lynx.
1315+ * Use x-terminal-emulator in gnome-download instead of xterm.
1316+ * Move gnome-convert and gnome-download from gnome-core to gnome-help.
1317+ * Move gnome-login-check from gnome-core to gnome-session.
1318+ * Move gnome-panel-add-launcher from gnome-core to gnome-panel.
1319+ * Move sesion-properties* from gnome-core to gnome-session.
1320+ * debian/control Add Replaces for the changes above.
1321+ * Write manpages (Closes: #87085)
1322+
1323+ -- Christian Marillat <marillat@debian.org> Tue, 17 Apr 2001 18:54:15 +0200
1324+
1325+gnome-core (1.4.0.2-1) unstable; urgency=low
1326+
1327+ * New upstream release.
1328+ * Build-depends on latest gettext (Closes: #93198)
1329+ * Icon box in menu editor is back (Closes: #91938)
1330+ * Build-depends on latest xml-i18n-tools and libgnome-dev
1331+
1332+ -- Christian Marillat <marillat@debian.org> Wed, 11 Apr 2001 15:16:20 +0200
1333+
1334+gnome-core (1.4.0.1-2) unstable; urgency=low
1335+
1336+ * Build depends on versionned gettext 0.10.35-17 (Closes: #93198)
1337+ * Write manpage for gnome-session and add docbook-to-man in build-depnds
1338+ * Write manpages for gnome-help (Closes: #87089)
1339+
1340+ -- Christian Marillat <marillat@debian.org> Sat, 7 Apr 2001 15:52:40 +0200
1341+
1342+gnome-core (1.4.0.1-1) unstable; urgency=low
1343+
1344+ * New upstream release.
1345+ * debian/gnome-terminal.wrapper change -T by -t (Closes: #90847)
1346+ * debian/gnome-session.README.debian remove references to .xsession. This
1347+ is now obsolete by the new x-session-manager scheme.
1348+
1349+ -- Christian Marillat <marillat@debian.org> Sun, 1 Apr 2001 15:01:51 +0200
1350+
1351+gnome-core (1.4.0-2) unstable; urgency=low
1352+
1353+ * Build depends on libglade-gnome0-dev (>= 0.16-1) (Closes: #90416)
1354+ * debian/control Add Build-Conflicts: libgtkhtml-dev (>= 0.7-1) (Closes: #90700)
1355+
1356+ -- Christian Marillat <marillat@debian.org> Thu, 22 Mar 2001 16:44:12 +0100
1357+
1358+gnome-core (1.4.0-1) unstable; urgency=low
1359+
1360+ * New upstream release.
1361+ * Gnome-core replaces gnome-control-center 1.2.3-1 (Closes: #90124)
1362+ * Remove manpages patche included by upstream.
1363+ * gnome-session don't always saves session on logout (Closes: #89630)
1364+ * Can add a launcher in the panel (Closes: #90018)
1365+ * Deskguide don't crashes on Fill with mini-images (Closes: #86952)
1366+ * Deskguide don't fail to run (Closes: #89769)
1367+ * Pager applet don't fail to run (Closes: #89025)
1368+
1369+ -- Christian Marillat <marillat@debian.org> Mon, 19 Mar 2001 13:01:26 +0100
1370+
1371+gnome-core (1.3.1-2) unstable; urgency=low
1372+
1373+ * Remove taslisk-applet manpage (Closes: #88994)
1374+ * New patch against gnome-terminal.1 (Closes: #89005)
1375+ * Move /usr/lib/libtasklist_applet.so in libpanel-applet0
1376+ (Closes: #89053, #89008, #89012, #89091, #89003)
1377+ * Gnome-terminal replace gnome-help-data (<= 1.0.55-2) (Closes: #87910)
1378+
1379+ -- Christian Marillat <marillat@debian.org> Sat, 10 Mar 2001 10:45:14 +0100
1380+
1381+gnome-core (1.3.1-1) unstable; urgency=low
1382+
1383+ * New upstream release.
1384+ * Removed default.session patch
1385+ * debian/control Add Replaces: gnome-control-center (<= 1.2.2-10), because
1386+ the session-properties-capplet is now in this package.
1387+ * debian/{postinst,prerm} Call scrollkeeper
1388+ * debian/control Add scrollkeeper, xml-i18n-tools and libglade-gnome0-dev in
1389+ build-depends and scrollkeeper in depends for gnome-core
1390+ * Menu and laucnh keys works now (Closes: #86955)
1391+ * Dead keys work in gnome-terminal (Closes: #63102)
1392+ * Gnome-terminal isn't broken (Closes: #86752)
1393+ * New patch htmlurl.h (This file was broken by upstream author)
1394+ * XFMail doesn't crash the tasklist applet in this release (Closes: #88515)
1395+ * debian/gnome-core.menu New file for the session properties capplet
1396+
1397+ -- Christian Marillat <marillat@debian.org> Mon, 5 Mar 2001 11:40:15 +0100
1398+
1399+gnome-core (1.2.4-11) unstable; urgency=low
1400+
1401+ * Update (again) the Build-depends field (Closes: #87419)
1402+ * Add a debian directory for the gnome-help-browser and add suggest doc-base
1403+ for gnome-help. Now we can watch debian documentation registered with doc-base.
1404+ * Add a lintian override file for libpanel-applet0
1405+
1406+ -- Christian Marillat <marillat@debian.org> Sun, 25 Feb 2001 16:14:09 +0100
1407+
1408+gnome-core (1.2.4-10) unstable; urgency=low
1409+
1410+ * Update the Build-depends field (Closes: #86441, #87419)
1411+ * Call update-alternatives only in remove (gnome-terminal, gnome-session) (Closes: #87327, #87328)
1412+
1413+ -- Christian Marillat <marillat@debian.org> Sat, 24 Feb 2001 18:03:20 +0100
1414+
1415+gnome-core (1.2.4-9) unstable; urgency=low
1416+
1417+ * Remove abandonned /etc/CORBA/servers/bad-applet.goad (Closes: #84950)
1418+ * Build against the latest gnome-libs (1.2.11) (Close: #85932)
1419+
1420+ -- Christian Marillat <marillat@debian.org> Wed, 14 Feb 2001 13:49:26 +0100
1421+
1422+gnome-core (1.2.4-8) unstable; urgency=low
1423+
1424+ * debian/control Add Replaces: gnome-help-data (<< 1.0.55-2) for
1425+ gnome-help (Closes: #80974)
1426+ * debian/gnome-help.mime Rewrote (Closes: #82891)
1427+ * debian/control gnome-core depends on gnome-bin (Closes: #82951)
1428+ * Wrote gnome-panel.README.Debian (Closes: #82954)
1429+
1430+ -- Christian Marillat <marillat@debian.org> Mon, 22 Jan 2001 16:04:58 +0100
1431+
1432+gnome-core (1.2.4-7) unstable; urgency=low
1433+
1434+ * Added gnome-bin (>= 1.2.0) in gnome-session Depends field (Closes: #80589, #80595, #80733)
1435+
1436+ -- Christian Marillat <marillat@debian.org> Wed, 27 Dec 2000 19:24:08 +0100
1437+
1438+gnome-core (1.2.4-6) unstable; urgency=low
1439+
1440+ * Apply patch to gnome-run to call x-terminal-emulator (Closes: #80219)
1441+ * debian/gnome-terminal.wrapper This is -t not -T close (Closes: #80405)
1442+
1443+ -- Christian Marillat <marillat@debian.org> Sun, 24 Dec 2000 03:27:12 +0100
1444+
1445+gnome-core (1.2.4-5) unstable; urgency=low
1446+
1447+ * Install gnome-terminal.wrapper as x-terminal-emulator and remove
1448+ debian/patches/gnome-terminal.dpatch (Closes: 64326)
1449+ Thanks to Eric Gillespie, Jr. <epg@progenylinux.com>
1450+ * Add Recommends: gnome-applets on gnome-panel (Closes: #72208)
1451+ * gnome-sesion provides x-session-manager and install alternative (Closes: #60667)
1452+ * Added hints=Gnome for all menu files.
1453+
1454+ -- Christian Marillat <marillat@debian.org> Wed, 20 Dec 2000 23:19:55 +0100
1455+
1456+gnome-core (1.2.4-4) unstable; urgency=low
1457+
1458+ * Call x-terminal-emulator in gnome-wm and add depends on the latest debianutils
1459+ for gnome-session. Thanks to Joseph Carter <knghtbrd@progeny.com> for the file
1460+ (Closes: #79776)
1461+ * Rewrote default.session patch
1462+ * Add patch form Doug Larrick <doug@ties.org> for gwmthumbnail.c (Closes: #78550)
1463+
1464+ -- Christian Marillat <marillat@debian.org> Sun, 17 Dec 2000 12:04:54 +0100
1465+
1466+gnome-core (1.2.4-3) unstable; urgency=low
1467+
1468+ * Change gnome-help.mime to call the right file (Closes: #77986)
1469+ Thanks Malcolm Parsons <malcolm@ivywell.screaming.net> for the patch.
1470+ * Patch gsm/default.in (two entries with same id) (Closes: #78276)
1471+ Thanks to Normal User <gohmandj@mrs.umn.edu> (Nice name)
1472+ * Move gnome-control-center from Depends to Suggests.
1473+ * Remove libgtkhtml-dev from Build-Depends (Closes: #79527)
1474+
1475+ -- Christian Marillat <marillat@debian.org> Wed, 13 Dec 2000 18:01:34 +0100
1476+
1477+gnome-core (1.2.4-2) unstable; urgency=low
1478+
1479+ * Remove README and NEWS files (Closes: #77250)
1480+ * Disable thumbnails by default in deskguide_applet (Closes: #77205)
1481+ * debian/rules --with-window-manager is now sawfish (was x-window-manager)
1482+ and rewrote debian/patches/gnome-wm.dpatch to remove x-window-manager (Closes: #77401)
1483+ * Should close this old bug (Closes: #51198)
1484+ * Patch gnome-edit to use x-terminal-emulator instead of xterm.
1485+
1486+ -- Christian Marillat <marillat@debian.org> Mon, 20 Nov 2000 11:35:55 +0100
1487+
1488+gnome-core (1.2.4-1) unstable; urgency=low
1489+
1490+ * New upstream release.
1491+
1492+ -- Christian Marillat <marillat@debian.org> Thu, 16 Nov 2000 00:43:15 +0100
1493+
1494+gnome-core (1.2.3.1-1) unstable; urgency=low
1495+
1496+ * New upstream release.
1497+ * Add gnome-help example and manpage in gnome-help package (Closes: #49977)
1498+ * This release should close these old bugs (Closes: #60561, #60768, #45053)
1499+ * Gnome-panel don't use all CPU time (Closes: #75251, #60209)
1500+ * Remove gmenu patch included by upstream.
1501+
1502+ -- Christian Marillat <marillat@debian.org> Wed, 8 Nov 2000 17:09:42 +0100
1503+
1504+gnome-core (1.2.3-1) unstable; urgency=low
1505+
1506+ * New upstream release.
1507+ * Debian menus aren't empty (Closes: #70470)
1508+ * Launcher can find icon (Closes: #62502)
1509+
1510+ -- Christian Marillat <marillat@debian.org> Tue, 24 Oct 2000 15:51:11 +0200
1511+
1512+gnome-core (1.2.2.1-3) unstable; urgency=low
1513+
1514+ * Add gnome-terminal.prerm for update-alternatives --remove (Closes: #74451)
1515+ * Patch gnome-terminal to accept -T option (Closes: #74450)
1516+ * Move README.debian in gnome-session package (Closes: #60440)
1517+ * mesg work in gnome-terminal (Closes: #71728)
1518+ * Upstream fix these old bugs in Gnome-terminal
1519+ Problem with menubar (Closes: #57516)
1520+ Problem with console-apt Closes: #60079)
1521+ Problem with screen (Closes: #50156)
1522+ * Binaries don't should go in /usr/X11R6/bin (Closes: #24031)
1523+ Quoting Debian policy :
1524+ "Packages using the X Window System should abide by the FHS standard"
1525+ "whenever possible; they should install binaries, libraries, manual"
1526+ "pages, and other files in FHS-mandated locations wherever possible."
1527+ "This means that files must not be installed into /usr/X11R6/bin/'"
1528+ * hostname isn't harcoded (Closes: #72536)
1529+ * Error messages mention Lynx (Closes: #62216)
1530+ * Display correctly deskuse.html (Closes: #49974)
1531+ * Add patch from malcolm <malcolm@ivywell.screaming.net> (Closes: #64820)
1532+
1533+ -- Christian Marillat <marillat@debian.org> Sat, 14 Oct 2000 23:39:49 +0200
1534+
1535+gnome-core (1.2.2.1-2) unstable; urgency=low
1536+
1537+ * Typo in debian/gnome-terminal.postinst
1538+ * Add gnome-terminal manpage (Closes: #69188)
1539+ * Closes: #63103 already closed in 1.2.1-0.2 (typo in debian/changelog)
1540+ * Gnome-terminal write to /var/run/utmp (Closes: #59053)
1541+ * delete/backspace keys works (Closes: #57198)
1542+ * Install GnomeHelp file in /etc/gnome/config (Closes: #73012)
1543+ * Convert png icons in xpm for Debian menu.
1544+ * Rearange documentation for dhelp (Closes: #56672)
1545+
1546+ -- Christian Marillat <marillat@debian.org> Thu, 5 Oct 2000 00:59:44 +0200
1547+
1548+gnome-core (1.2.2.1-1) unstable; urgency=low
1549+
1550+ * New upstream release.
1551+ * Patch all manpages (Closes: #70009)
1552+ * gnome-panel 1.0.55-2.0.1 (sparc) is now installable (Closes: #69075, #71570)
1553+ * gmenu don't jam up all translations (Closes: #46446)
1554+ * panel remember its configuration between session
1555+ (Closes: #47734, #54190)
1556+ * Icons are now centered (Closes: #63868)
1557+ * Bugs closed by previous NMU in gnome-panel (Closes: #40036, #52584, #54755,
1558+ #58278, #61083, #69428))
1559+ * libgen_util_applet.so installed in 1.2.1-0.2 (Closes: #69463)
1560+ * debian/control remove Conflicts: asclock (Closes: #52077)
1561+ * gnome-help 1.0.55-2.0.1 (sparc) is now installable (Closes: #69356)
1562+ * Bugs closed by previous NMU in gnome-help (Closes: #49734, #56081, #58679, #58973)
1563+ * debian/control move gmc from Recommends to Suggests (Closes: #59415)
1564+ * The first search in gnome-wm search is x-window-manager
1565+ (Closes: #50940, #65969, #62143)
1566+ * Bug closed in 1.2.2-1 (README.debian in gnome-session package) (Closes: #66219)
1567+ * Bugs closed by previous NMU in gnome-terminal
1568+ (Closes: #64579, #63592, #63332, #56584, #55477, #54428)
1569+ * gnome-terminal provide x-terminal-emulator (Closes: #61805, #53994, #56225)
1570+
1571+ -- Christian Marillat <marillat@debian.org> Wed, 27 Sep 2000 16:02:16 +0200
1572+
1573+gnome-core (1.2.2-1) unstable; urgency=low
1574+
1575+ * New maintainer, thanks James.
1576+ * New upstream release.
1577+ * Switch to debhelper V2
1578+ * Move README.debian in gnome-session package (Closes: #65235) and
1579+ update this file (Closes: #71339)
1580+ * Bug closed in 1.2.1-0.2 (Install missing libraries) (Closes: #69590, #70483)
1581+ * Bugs closed in 1.2.1-0.1 (typo close instead closes) (Closes: #53764, #54050)
1582+ * Remove gtkhtml patch.
1583+ * The desk guide show thumbnail (Closes: #72359)
1584+ * Missing package under sparc (Closes: #71438)
1585+ * debian/control add Conflicts: libgnome32 (<< 1.2.0-1) for gnome-panel (Closes: #72039)
1586+ * Added icons in Debian menu.
1587+ * Eject in drivemount check if '-u' is available (Closes: #63954)
1588+ * Patch gmenu to find Debian menu.
1589+
1590+ -- Christian Marillat <marillat@debian.org> Tue, 26 Sep 2000 17:34:23 +0200
1591+
1592+gnome-core (1.2.1-0.2) unstable; urgency=low
1593+
1594+ * NMU.
1595+ * Install these libraries libfish_applet.so libgen_util_applet.so
1596+ libpanel_status.so (Closes: #69428, #69590)
1597+ * Copy latest gnome aclocal in macros/ and run macros/autogen.sh
1598+ This is needed to build gnome-help-browser against libgtkhtml4.
1599+ * In debian/control
1600+ gnome-session depends on gnome-panel (>= ${Source-Version}).
1601+ gnome-help depends on gnome-core (>= 1.2.0-0.1) no Source-Version.
1602+ gnome-terminal don't depends on gnome-core.
1603+ * URL's are clickable in gnome-terminal (Closes: 63103).
1604+ * debian/gnome-panel.undocumented removed printer_applet.1
1605+ * Cut and paste work in gnome-terminal (Closes: #63592).
1606+
1607+ -- Christian Marillat <marillat@debian.org> Wed, 23 Aug 2000 21:23:36 +0200
1608+
1609+gnome-core (1.2.1-0.1) unstable; urgency=low
1610+
1611+ * New upstream release (Closes: #58806, #66467)
1612+ * NMU.
1613+ * Standards-Version to 3.1.1.1 Added Build-depends field.
1614+ * Removed patches: dialer, drivemount-floppy, modemlights, term,
1615+ help-browser, debian-menu, url-match.
1616+ * Added patches: gtkhtml.
1617+ * Build against libgtkhtml3. Closes: #58679, #36806, #49734
1618+ * Default manpath and infopath are wrong. Closes: #56081
1619+ * gmenu segfaults. Close: #53764, #54050
1620+ * gnome-panel: panel no longer works. Closes: #58278
1621+ * gnome-panel: gnomepager-applet should put braces around. Closes: #52584
1622+ * Backspace and delete work correctly. Closes: #54428
1623+ * TERM never select xterm-debian. Closes: #56584, #55477, #64579
1624+ * Disable arrows option is now saved. Closes: #54755
1625+ * No more files in /usr/share. Closes: #61083
1626+ * Show debian menus. Closes #66214
1627+ * New help documentation for panel. Closes: #40036
1628+ * Gnome-terminal write to /var/run/utmp. Closes #59053
1629+ * gnome-terminal provide x-terminal-emulator. Closes #61805, #56225
1630+ * README.Debian is here. Closes: #65235
1631+
1632+ -- Christian Marillat <marillat@debian.org> Tue, 25 Jul 2000 19:09:21 +0200
1633+
1634+gnome-core (1.0.55-2) frozen unstable; urgency=low
1635+
1636+ * Make x-window-manager run first by gnome-wm script to conform to
1637+ debian policy (Closes: #61617) (This is an important bug)
1638+
1639+ -- James LewisMoss <dres@debian.org> Sun, 21 May 2000 19:31:19 -0400
1640+
1641+gnome-core (1.0.55-1) unstable; urgency=low
1642+
1643+ * New upstream.
1644+
1645+ -- James LewisMoss <dres@debian.org> Sun, 2 Jan 2000 07:32:36 -0500
1646+
1647+gnome-core (1.0.54-2) unstable; urgency=low
1648+
1649+ * Fix the gnome-pager forgets size settings bug (was saved to wrong
1650+ section). Closes: #49839, #46845.
1651+
1652+ -- James LewisMoss <dres@debian.org> Fri, 12 Nov 1999 07:54:46 -0500
1653+
1654+gnome-core (1.0.54-1) unstable; urgency=low
1655+
1656+ * New upstream.
1657+
1658+ -- James LewisMoss <dres@debian.org> Thu, 4 Nov 1999 23:20:14 -0500
1659+
1660+gnome-core (1.0.53-4) unstable; urgency=low
1661+
1662+ * New maintainer.
1663+
1664+ -- James LewisMoss <dres@debian.org> Mon, 25 Oct 1999 23:17:31 -0400
1665+
1666+gnome-core (1.0.53-3) unstable; urgency=low
1667+
1668+ * Ok, I made a mistake by setgiding gnome-terminal to
1669+ utmp. Reverted the change. Closes: #47960
1670+
1671+ -- Raphael Hertzog <hertzog@debian.org> Mon, 18 Oct 1999 19:17:27 +0200
1672+
1673+gnome-core (1.0.53-2) unstable; urgency=low
1674+
1675+ * gnome-session does launch a default window-manager. It does launch
1676+ gnome-wm if no other information has been found. gnome-wm now
1677+ reads the list of window managers from /etc/X11/window-managers
1678+ once it has tried gnome compliant wm. Closes: #38347, #47370
1679+ * Patched gnome-terminal. TERM=xterm-debian again ... actually this
1680+ closes: #47552, #44960, #41065
1681+ * gnome-terminal is now setgid utmp and can thus register itself
1682+ in the UTMP database. Closes: #40507
1683+ * The URL match does now accept % characters. Closes: #47281
1684+ * libpanel-applet0.postinst check for the changelog.gz mysteriously
1685+ staying around. Closes: #45871
1686+ * Unreproducable bugs without answer from the submitter.
1687+ Closes: #41195, #42865
1688+
1689+ -- Raphael Hertzog <hertzog@debian.org> Sat, 16 Oct 1999 19:52:38 +0200
1690+
1691+gnome-core (1.0.53-1) unstable; urgency=low
1692+
1693+ * New upstream version.
1694+ * gnome-session does now depend on gnome-panel and recommends
1695+ gmc (both are needed for a full Gnome desktop).
1696+ * gnome-terminal does not have a border. Closes: #38972
1697+
1698+ -- Raphael Hertzog <hertzog@debian.org> Tue, 12 Oct 1999 21:17:58 +0200
1699+
1700+gnome-core (1.0.52-1) unstable; urgency=low
1701+
1702+ * New maintainer. Steve said that he wanted to give away some of
1703+ his packages. I've asked to take gnome-core, he never replied, so
1704+ I'm taking it but I will give it back to him if he wanted to
1705+ keep it. In the meantime I can better manage bugs with my name
1706+ in the Maintainer field.
1707+ * New upstream version.
1708+
1709+ -- Raphael Hertzog <hertzog@debian.org> Mon, 4 Oct 1999 21:28:18 +0200
1710+
1711+gnome-core (1.0.50-0.1) unstable; urgency=low
1712+
1713+ * New upstream version.
1714+ * NMU again.
1715+
1716+ -- Raphael Hertzog <hertzog@debian.org> Thu, 30 Sep 1999 22:10:03 +0200
1717+
1718+gnome-core (1.0.41-0.1) unstable; urgency=low
1719+
1720+ * New upstream version.
1721+ * NMU again.
1722+
1723+ -- Raphael Hertzog <hertzog@debian.org> Mon, 27 Sep 1999 13:10:31 +0200
1724+
1725+gnome-core (1.0.9-0.1) unstable; urgency=low
1726+
1727+ * New upstream version. Closes: #43253, #44098
1728+ * Apply patches before configuring (and relaunch automake && autoconf
1729+ because one of the patches is applied on Makefile.am).
1730+ * NMU. Thanks to Christian Marillat <marillat@alpes-net.fr> for his work.
1731+ * Imlib bug corrected: closes: #39085
1732+ * X11 binaries don't have to go /usr/X11R6/bin. Closes: #24031
1733+ * The panel does start correctly wihout complaining about a
1734+ missing name service. Closes: #39380, #39634, #40478
1735+ * The panel doesn't consume all CPU resources. Closes: #30654
1736+ * The panel launches apps from where it has been launched itself.
1737+ Closes: #32319
1738+ * The panel keeps the settings. Closes: #37052, #40579, #43496
1739+ * Old core dump corrected upstream. Closes: #39400, #40328, #42167
1740+ Closes: #44344, #44724, #44732, #44759, #44773
1741+ * Bug in menu-method, not in gnome-panel. Already reported against
1742+ menu. Closes: #40089
1743+ * cdplayer_applet works again. Closes: #42192
1744+ * gnome pager works well: Closes: #42499, #42610
1745+ * modem_lights draws itself correctly. Closes: #43861, #45055
1746+ * The dialer applets doesn't exit when stopping while
1747+ not yet connected. Closes: #45287
1748+ * No more Debian menu in the panel. Closes: #41040
1749+ * GnomeICU works with this panel. Closes: #39626, #39515
1750+ * gnome-panel-data conflicts with asclock.
1751+ Closes: #40712, #40715, #40808, #41430
1752+ A better solution will be needed. Maybe put asclock in his own
1753+ package or create a asclock-data package that will be shared.
1754+ * Updated the modemlights patch. Closes: #43512
1755+ * Added a patch for gnome-wm. Closes: #38366
1756+ * Move lib{gkb,fish}_applet.so files to libgnome-applet0 (those are
1757+ not libraries to be linked with, just simple modules). Closes: #38596
1758+ * Asclock works well without xearth (the code still mentions xearth
1759+ however). Closes: #40530
1760+ * New patch (help-browser) for changing the default MANPATH and INFOPATH in
1761+ gnome-help-browser.c Closes: #41452
1762+ * Moved help-browser to the new "Help" menu section.
1763+ * Added gnome-help.mime. Closes: #42205
1764+ * Gnome-session does launch gnome-panel ! (I suppose that it failed
1765+ to launch since panel was broken). Closes: #42937
1766+ * gnome-sesion doesn't core dump. Closes: #36640
1767+ * The terminal does remember the TERM var. Closes: #43067
1768+ * The terminal keeps its size when dragging the manu bar in and out.
1769+ Closes: #44762
1770+ * The menu section of gnome-terminal corrected. Closes: #37635
1771+
1772+ -- Raphael Hertzog <hertzog@debian.org> Wed, 22 Sep 1999 13:24:34 +0200
1773+
1774+gnome-core (1.0.7-1) unstable; urgency=low
1775+
1776+ * New upstream version.
1777+ * Removed "term" patch
1778+
1779+ -- Steve Haslam <araqnid@debian.org> Mon, 28 Jun 1999 01:36:31 +0100
1780+
1781+gnome-core (1.0.6-2) unstable; urgency=low
1782+
1783+ * debian-menu.dpatch: created to fix guessing Debian menus
1784+ (/etc/menu-methods/gnome-panel now) and to make Debian menus the default
1785+ instead of GNOME system menus.
1786+ * gnome-help now suggests gnome-users-guide-en (closes: #35724)
1787+ * /etc/menu-methods/gnome-panel now creates .directory files and searches
1788+ /usr/X11R6/include/X11/pixmaps for menu icons
1789+
1790+ -- Steve Haslam <araqnid@debian.org> Sun, 13 Jun 1999 15:28:52 +0100
1791+
1792+gnome-core (1.0.6-1) unstable; urgency=low
1793+
1794+ * New upstream version.
1795+
1796+ -- Steve Haslam <araqnid@debian.org> Sat, 5 Jun 1999 12:57:08 +0100
1797+
1798+gnome-core (1.0.5-3) unstable; urgency=low
1799+
1800+ * debian/gnome-terminal.menu: managed to lose change mentioned in last
1801+ revision. Replaced.
1802+ * debian/gnome-core.undocumented: removed gnome-wm.1 (it was in
1803+ gnome-session.undocumented too).
1804+
1805+ -- Steve Haslam <araqnid@debian.org> Mon, 31 May 1999 19:15:54 +0100
1806+
1807+gnome-core (1.0.5-2) unstable; urgency=low
1808+
1809+ * debian/gnome-terminal.menu: changed section to XShells (Bug#37635)
1810+ * debian/rules: added gnome-wm and gnome-edit to dh_undocumented call
1811+ (Bug#37632)
1812+ * debian/gnome.menu-method: added patch to honour needs=text (Bug#36928)
1813+ from Decklin Foster
1814+ * Call dh_strip when making libpanel-applet-dev (Closes Bug#31244)
1815+ * Removed /usr/share/gnome/apps/Debian symlink, (closes #38100)
1816+ * Sanified build system a la gnome-libs
1817+ * debian/control: made gnome-help, gnome-help-data and gnome-panel-data
1818+ packages.
1819+
1820+ -- Steve Haslam <araqnid@debian.org> Sun, 23 May 1999 14:35:44 +0100
1821+
1822+gnome-core (1.0.5-1) unstable; urgency=low
1823+
1824+ * New maintainer.
1825+
1826+ -- Steve Haslam <araqnid@debian.org> Tue, 11 May 1999 01:01:12 +0100
1827+
1828+gnome-core (1.0.5-0.2) unstable; urgency=low
1829+
1830+ * gnome-panel.files.in: added asclock themes, libgkb_applet.a
1831+ * gnome-core.files.in: added gnome-wm, gnome-edit
1832+ * term.dpatch: gnome-terminal TERM to xterm-debian rather than xterm
1833+ * gsm/Makefile.am: put default.session, default.wm in /etc/gnome
1834+ * debian/gnome-session.conffiles.in: added above two files
1835+ * debian/gnome-session.files.in: updated this too
1836+
1837+ -- Steve Haslam <araqnid@debian.org> Sun, 18 Apr 1999 16:47:23 +0100
1838+
1839+gnome-core (1.0.5-0.1) unstable; urgency=low
1840+
1841+ * Non-maintainer upload
1842+ * New upstream version
1843+
1844+ -- Steve Haslam <araqnid@debian.org> Thu, 15 Apr 1999 23:22:23 +0100
1845+
1846+gnome-core (1.0.1-0.3) unstable; urgency=low
1847+
1848+ * Weehay! More broken dependencies. This one libghttp -1.1,
1849+ a bogus package that only ever existed on my machine.
1850+
1851+ -- Jules Bean <jules@debian.org> Mon, 8 Mar 1999 08:24:00 +0000
1852+
1853+gnome-core (1.0.1-0.2) unstable; urgency=low
1854+
1855+ * Another NMU, this time to fix bogus dependencies on libgtop0
1856+ and libglib1.1
1857+
1858+ -- Jules Bean <jules@debian.org> Sun, 7 Mar 1999 14:21:12 +0000
1859+
1860+gnome-core (1.0.1-0.1) unstable; urgency=low
1861+
1862+ * NMU for GNOME-1.0
1863+ * Hacked to patch SIGPIPE bug
1864+ * Don't delete GIFs in rules
1865+
1866+ -- Jules Bean <jules@debian.org> Fri, 5 Mar 1999 18:36:29 +0100
1867+
1868+gnome-core (0.99.99pre1.0.0-1) unstable; urgency=low
1869+
1870+ * New upstream release.
1871+
1872+ -- Jim Pick <jim@jimpick.com> Fri, 26 Feb 1999 23:18:10 -0800
1873+
1874+gnome-core (0.99.3.2-4) unstable; urgency=low
1875+
1876+ * Recompiled yet again - dual dependency on libglib.
1877+ Fixes: BUG#32510
1878+
1879+ -- Jim Pick <jim@jimpick.com> Thu, 28 Jan 1999 00:00:22 -0800
1880+
1881+gnome-core (0.99.3.2-3) unstable; urgency=low
1882+
1883+ * Recompiled again to due to dependencies.
1884+
1885+ -- Jim Pick <jim@jimpick.com> Sun, 24 Jan 1999 01:10:07 -0800
1886+
1887+gnome-core (0.99.3.2-2) unstable; urgency=low
1888+
1889+ * Recompiled with libgnome 0.99.4.
1890+
1891+ -- Jim Pick <jim@jimpick.com> Fri, 22 Jan 1999 16:44:45 -0800
1892+
1893+gnome-core (0.99.3.2-1) unstable; urgency=low
1894+
1895+ * New upstream release.
1896+
1897+ -- Jim Pick <jim@jimpick.com> Wed, 20 Jan 1999 11:42:46 -0800
1898+
1899+gnome-core (0.30-2) frozen unstable; urgency=low
1900+
1901+ * Recompiled with new libs.
1902+ * Fixed reference to /usr/X11R6 in README.Debian.
1903+ * Added warnings (Gnome is ALPHA).
1904+ * Patched dialer_applet to use pon/poff.
1905+ * Patched drivemount_applet to default to /floppy.
1906+
1907+ -- Jim Pick <jim@jimpick.com> Tue, 24 Nov 1998 10:56:08 -0800
1908+
1909+gnome-core (0.30-1) unstable; urgency=low
1910+
1911+ * New upstream release.
1912+
1913+ -- Jim Pick <jim@jimpick.com> Thu, 24 Sep 1998 21:28:02 -0700
1914+
1915+gnome-core (0.28.1-1) unstable; urgency=low
1916+
1917+ * New upstream release.
1918+ * Hopefully fixes panel applet bug.
1919+
1920+ -- Jim Pick <jim@jimpick.com> Wed, 19 Aug 1998 20:12:25 -0700
1921+
1922+gnome-core (0.28-1) unstable; urgency=low
1923+
1924+ * New upstream release.
1925+
1926+ -- Jim Pick <jim@jimpick.com> Mon, 17 Aug 1998 12:59:26 -0700
1927+
1928+gnome-core (0.27-1) unstable; urgency=low
1929+
1930+ * New upstream release.
1931+ * Added /usr/doc/gnome
1932+
1933+ -- Jim Pick <jim@jimpick.com> Sat, 15 Aug 1998 14:21:06 -0700
1934+
1935+gnome-core (0.25-1) unstable; urgency=low
1936+
1937+ * New upstream release.
1938+
1939+ -- Jim Pick <jim@jimpick.com> Thu, 6 Aug 1998 22:51:22 -0700
1940+
1941+gnome-core (0.20-2) unstable; urgency=low
1942+
1943+ * Added Debian menu-method for gnome-panel. Fixed Bug #24025
1944+ (Thanks to Ray Dassen for reporting the bug, and Riku Voipio
1945+ who wrote the menu method for Gnome 0.12)
1946+
1947+ -- Jim Pick <jim@jimpick.com> Wed, 22 Jul 1998 20:22:00 -0700
1948+
1949+gnome-core (0.20-1) unstable; urgency=low
1950+
1951+ * New upstream release.
1952+
1953+ -- Jim Pick <jim@jimpick.com> Mon, 8 Jun 1998 12:00:08 -0700
1954+
1955+gnome-core (0.13-1) unstable; urgency=low
1956+
1957+ * Initial Release.
1958+
1959+ -- Jim Pick <jim@jimpick.com> Mon, 16 Mar 1998 15:27:43 -0800
1960
1961=== added file 'debian/compat'
1962--- debian/compat 1970-01-01 00:00:00 +0000
1963+++ debian/compat 2014-05-27 09:37:18 +0000
1964@@ -0,0 +1,1 @@
1965+8
1966
1967=== added file 'debian/control'
1968--- debian/control 1970-01-01 00:00:00 +0000
1969+++ debian/control 2014-05-27 09:37:18 +0000
1970@@ -0,0 +1,72 @@
1971+# This file is autogenerated. DO NOT EDIT!
1972+#
1973+# Modifications should be made to debian/control.in instead.
1974+# This file is regenerated automatically in the clean target.
1975+Source: gnome-terminal
1976+Section: gnome
1977+Priority: optional
1978+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
1979+XSBC-Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
1980+Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>, Emilio Pozuelo Monfort <pochu@debian.org>, Josselin Mouette <joss@debian.org>, Michael Biebl <biebl@debian.org>, Sjoerd Simons <sjoerd@debian.org>
1981+Standards-Version: 3.9.4
1982+Build-Depends: cdbs (>= 0.4.41),
1983+ debhelper (>= 8),
1984+ dh-autoreconf,
1985+ appdata-tools,
1986+ gnome-common,
1987+ autotools-dev,
1988+ intltool (>= 0.00.0),
1989+ libnautilus-extension-dev,
1990+ libx11-dev,
1991+ libdconf-dev (>= 0.14.0),
1992+ libgtk-3-dev (>= 3.6.0),
1993+ libgtk2.0-dev,
1994+ libglib2.0-dev (>= 2.39.2),
1995+ libvte-2.90-dev (>= 1:0.34.0),
1996+ libsm-dev,
1997+ gnome-pkg-tools (>= 0.10),
1998+ docbook-to-man,
1999+ gnome-doc-utils,
2000+ uuid-dev,
2001+ yelp-tools,
2002+ libgconf2-dev (>= 2.31.3),
2003+ desktop-file-utils,
2004+ gsettings-desktop-schemas-dev (>= 0.1.0)
2005+Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/gnome-terminal/
2006+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/gnome-terminal/
2007+
2008+Package: gnome-terminal
2009+Architecture: any
2010+Depends: ${shlibs:Depends},
2011+ ${misc:Depends},
2012+ gsettings-desktop-schemas (>= 0.1.0),
2013+ gnome-terminal-data (>= ${gnome:Version}),
2014+ gnome-terminal-data (<< ${gnome:NextVersion})
2015+Replaces: gnome-terminal-data (<< 2.26.2-3)
2016+Provides: x-terminal-emulator
2017+Recommends: yelp,
2018+ gvfs,
2019+ dbus-x11
2020+Description: GNOME terminal emulator application
2021+ GNOME Terminal is a terminal emulation application that you can use to
2022+ perform the following actions:
2023+ - Access a UNIX shell in the GNOME environment.
2024+ - Run any application that is designed to run on VT102, VT220, and xterm
2025+ terminals.
2026+ .
2027+ GNOME Terminal features the ability to use multiple terminals in a single
2028+ window (tabs) and profiles support.
2029+
2030+Package: gnome-terminal-data
2031+Architecture: all
2032+Recommends: gnome-terminal
2033+Depends: ${misc:Depends}
2034+Description: Data files for the GNOME terminal emulator
2035+ GNOME Terminal is a terminal emulation application that you can use to
2036+ perform the following actions:
2037+ - Access a UNIX shell in the GNOME environment.
2038+ - Run any application that is designed to run on VT102, VT220, and xterm
2039+ terminals.
2040+ .
2041+ This package contains data, help files and localization settings for
2042+ gnome-terminal, the GNOME terminal emulator application.
2043
2044=== added file 'debian/control.in'
2045--- debian/control.in 1970-01-01 00:00:00 +0000
2046+++ debian/control.in 2014-05-27 09:37:18 +0000
2047@@ -0,0 +1,68 @@
2048+Source: gnome-terminal
2049+Section: gnome
2050+Priority: optional
2051+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
2052+XSBC-Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
2053+Uploaders: @GNOME_TEAM@
2054+Standards-Version: 3.9.4
2055+Build-Depends: cdbs (>= 0.4.41),
2056+ debhelper (>= 8),
2057+ dh-autoreconf,
2058+ appdata-tools,
2059+ gnome-common,
2060+ autotools-dev,
2061+ intltool (>= 0.00.0),
2062+ libnautilus-extension-dev,
2063+ libx11-dev,
2064+ libdconf-dev (>= 0.14.0),
2065+ libgtk-3-dev (>= 3.6.0),
2066+ libgtk2.0-dev,
2067+ libglib2.0-dev (>= 2.39.2),
2068+ libvte-2.90-dev (>= 1:0.34.0),
2069+ libsm-dev,
2070+ gnome-pkg-tools (>= 0.10),
2071+ docbook-to-man,
2072+ gnome-doc-utils,
2073+ uuid-dev,
2074+ yelp-tools,
2075+ libgconf2-dev (>= 2.31.3),
2076+ desktop-file-utils,
2077+ gsettings-desktop-schemas-dev (>= 0.1.0)
2078+Vcs-Svn: svn://anonscm.debian.org/pkg-gnome/desktop/unstable/gnome-terminal/
2079+Vcs-Browser: http://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/gnome-terminal/
2080+
2081+Package: gnome-terminal
2082+Architecture: any
2083+Depends: ${shlibs:Depends},
2084+ ${misc:Depends},
2085+ gsettings-desktop-schemas (>= 0.1.0),
2086+ gnome-terminal-data (>= ${gnome:Version}),
2087+ gnome-terminal-data (<< ${gnome:NextVersion})
2088+Replaces: gnome-terminal-data (<< 2.26.2-3)
2089+Provides: x-terminal-emulator
2090+Recommends: yelp,
2091+ gvfs,
2092+ dbus-x11
2093+Description: GNOME terminal emulator application
2094+ GNOME Terminal is a terminal emulation application that you can use to
2095+ perform the following actions:
2096+ - Access a UNIX shell in the GNOME environment.
2097+ - Run any application that is designed to run on VT102, VT220, and xterm
2098+ terminals.
2099+ .
2100+ GNOME Terminal features the ability to use multiple terminals in a single
2101+ window (tabs) and profiles support.
2102+
2103+Package: gnome-terminal-data
2104+Architecture: all
2105+Recommends: gnome-terminal
2106+Depends: ${misc:Depends}
2107+Description: Data files for the GNOME terminal emulator
2108+ GNOME Terminal is a terminal emulation application that you can use to
2109+ perform the following actions:
2110+ - Access a UNIX shell in the GNOME environment.
2111+ - Run any application that is designed to run on VT102, VT220, and xterm
2112+ terminals.
2113+ .
2114+ This package contains data, help files and localization settings for
2115+ gnome-terminal, the GNOME terminal emulator application.
2116
2117=== added file 'debian/copyright'
2118--- debian/copyright 1970-01-01 00:00:00 +0000
2119+++ debian/copyright 2014-05-27 09:37:18 +0000
2120@@ -0,0 +1,59 @@
2121+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2122+Upstream-Name: gnome-terminal
2123+Source: http://ftp.gnome.org/pub/GNOME/sources/gnome-terminal/
2124+
2125+Files: *
2126+Copyright: 2001-2004 Havoc Pennington
2127+ 2002 Mathias Hasselmann
2128+ 2002, 2003, 2010 Red Hat, Inc.
2129+ 2002 Sun Microsystems
2130+ 2003-2004, 2007 Mariano Suárez-Alvarez
2131+ 2003 David Bordoley
2132+ 2005 Paolo Maggi
2133+ 2006 Guilherme de S. Pastore
2134+ 2010 Paolo Borelli
2135+ 2011 Ignacio Casal Quinteiro
2136+ 2003, 2004, 2007-2011 Christian Persch
2137+License: GPL-3+
2138+
2139+Files: src/egg*
2140+Copyright: 1999, 2000, 2008 Red Hat Inc.
2141+ 1997-2000 Free Software Foundation
2142+ 2001 George Lebl
2143+ 2007 Novell, Inc.
2144+License: LGPL-3+
2145+
2146+License: GPL-3+
2147+ This program is free software: you can redistribute it and/or modify
2148+ it under the terms of the GNU General Public License as published by
2149+ the Free Software Foundation, either version 3 of the License, or
2150+ (at your option) any later version.
2151+ .
2152+ This package is distributed in the hope that it will be useful,
2153+ but WITHOUT ANY WARRANTY; without even the implied warranty of
2154+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2155+ GNU General Public License for more details.
2156+ .
2157+ You should have received a copy of the GNU General Public License
2158+ along with this program. If not, see <http://www.gnu.org/licenses/>.
2159+ .
2160+ On Debian systems, the complete text of the GNU General Public
2161+ License version 3 can be found in "/usr/share/common-licenses/GPL-3".
2162+
2163+License: LGPL-3+
2164+ This package is free software; you can redistribute it and/or
2165+ modify it under the terms of the GNU Lesser General Public
2166+ License as published by the Free Software Foundation; either
2167+ version 3 of the License, or (at your option) any later version.
2168+ .
2169+ This package is distributed in the hope that it will be useful,
2170+ but WITHOUT ANY WARRANTY; without even the implied warranty of
2171+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2172+ Lesser General Public License for more details.
2173+ .
2174+ You should have received a copy of the GNU General Public License
2175+ along with this program. If not, see <http://www.gnu.org/licenses/>.
2176+ .
2177+ On Debian systems, the complete text of the GNU Lesser General
2178+ Public License can be found in "/usr/share/common-licenses/LGPL-3".
2179+
2180
2181=== added file 'debian/gnome-terminal-data.install'
2182--- debian/gnome-terminal-data.install 1970-01-01 00:00:00 +0000
2183+++ debian/gnome-terminal-data.install 2014-05-27 09:37:18 +0000
2184@@ -0,0 +1,4 @@
2185+usr/share/locale
2186+usr/share/help
2187+
2188+debian/gnome-terminal.xpm /usr/share/pixmaps
2189
2190=== added file 'debian/gnome-terminal.install'
2191--- debian/gnome-terminal.install 1970-01-01 00:00:00 +0000
2192+++ debian/gnome-terminal.install 2014-05-27 09:37:18 +0000
2193@@ -0,0 +1,9 @@
2194+usr/bin
2195+usr/lib/gnome-terminal
2196+usr/share/appdata
2197+usr/share/applications
2198+usr/share/dbus-1/services
2199+usr/share/glib-2.0/schemas
2200+usr/lib/nautilus/extensions-3.0/libterminal-nautilus.so
2201+
2202+debian/gnome-terminal.wrapper /usr/bin
2203
2204=== added file 'debian/gnome-terminal.links'
2205--- debian/gnome-terminal.links 1970-01-01 00:00:00 +0000
2206+++ debian/gnome-terminal.links 2014-05-27 09:37:18 +0000
2207@@ -0,0 +1,1 @@
2208+usr/share/man/man1/gnome-terminal.1.gz usr/share/man/man1/gnome-terminal.wrapper.1.gz
2209
2210=== added file 'debian/gnome-terminal.lintian-overrides'
2211--- debian/gnome-terminal.lintian-overrides 1970-01-01 00:00:00 +0000
2212+++ debian/gnome-terminal.lintian-overrides 2014-05-27 09:37:18 +0000
2213@@ -0,0 +1,2 @@
2214+# It's in gnome-terminal-data and we depend on it
2215+gnome-terminal: menu-icon-missing usr/share/pixmaps/gnome-terminal.xpm
2216
2217=== added file 'debian/gnome-terminal.manpages'
2218--- debian/gnome-terminal.manpages 1970-01-01 00:00:00 +0000
2219+++ debian/gnome-terminal.manpages 2014-05-27 09:37:18 +0000
2220@@ -0,0 +1,1 @@
2221+debian/gnome-terminal.1
2222
2223=== added file 'debian/gnome-terminal.menu'
2224--- debian/gnome-terminal.menu 1970-01-01 00:00:00 +0000
2225+++ debian/gnome-terminal.menu 2014-05-27 09:37:18 +0000
2226@@ -0,0 +1,6 @@
2227+?package(gnome-terminal):needs="X11"\
2228+ section="Applications/Terminal Emulators"\
2229+ hints="Gnome"\
2230+ title="Gnome Terminal"\
2231+ icon="/usr/share/pixmaps/gnome-terminal.xpm"\
2232+ command="/usr/bin/gnome-terminal"
2233
2234=== added file 'debian/gnome-terminal.postinst'
2235--- debian/gnome-terminal.postinst 1970-01-01 00:00:00 +0000
2236+++ debian/gnome-terminal.postinst 2014-05-27 09:37:18 +0000
2237@@ -0,0 +1,13 @@
2238+#!/bin/sh -e
2239+
2240+set -e
2241+
2242+#DEBHELPER#
2243+
2244+if [ "$1" = "configure" ]; then
2245+ update-alternatives --install /usr/bin/x-terminal-emulator \
2246+ x-terminal-emulator /usr/bin/gnome-terminal.wrapper 40 \
2247+ --slave /usr/share/man/man1/x-terminal-emulator.1.gz \
2248+ x-terminal-emulator.1.gz /usr/share/man/man1/gnome-terminal.1.gz
2249+fi
2250+
2251
2252=== added file 'debian/gnome-terminal.prerm'
2253--- debian/gnome-terminal.prerm 1970-01-01 00:00:00 +0000
2254+++ debian/gnome-terminal.prerm 2014-05-27 09:37:18 +0000
2255@@ -0,0 +1,10 @@
2256+#!/bin/sh
2257+
2258+set -e
2259+
2260+#DEBHELPER#
2261+
2262+if [ "$1" = "remove" ]; then
2263+ update-alternatives --remove x-terminal-emulator /usr/bin/gnome-terminal.wrapper
2264+fi
2265+
2266
2267=== added file 'debian/gnome-terminal.sgml'
2268--- debian/gnome-terminal.sgml 1970-01-01 00:00:00 +0000
2269+++ debian/gnome-terminal.sgml 2014-05-27 09:37:18 +0000
2270@@ -0,0 +1,223 @@
2271+<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
2272+
2273+ <!ENTITY dhfirstname "<firstname>Christian</firstname>">
2274+ <!ENTITY dhsurname "<surname>Marillat</surname>">
2275+ <!ENTITY dhdate "<date>December 4, 2002</date>">
2276+ <!ENTITY dhsection "<manvolnum>1</manvolnum>">
2277+ <!ENTITY dhemail "<email>marillat@debian.org</email>">
2278+ <!ENTITY dhusername "Christian Marillat">
2279+ <!ENTITY dhucpackage "<refentrytitle>gnome-terminal</refentrytitle>">
2280+ <!ENTITY dhpackage "gnome-terminal">
2281+ <!ENTITY debian "<productname>Debian GNU/Linux</productname>">
2282+ <!ENTITY gnu "<acronym>GNU</acronym>">
2283+]>
2284+
2285+<refentry>
2286+ <refentryinfo>
2287+ <address>
2288+ &dhemail;
2289+ </address>
2290+ <author>
2291+ &dhfirstname;
2292+ &dhsurname;
2293+ </author>
2294+ <copyright>
2295+ <year>2001</year>
2296+ <holder>&dhusername;</holder>
2297+ </copyright>
2298+ &dhdate;
2299+ </refentryinfo>
2300+ <refmeta>
2301+ &dhucpackage;
2302+
2303+ &dhsection;
2304+ </refmeta>
2305+ <refnamediv>
2306+ <refname>&dhpackage;</refname>
2307+
2308+ <refpurpose>is a terminal emulation application.</refpurpose>
2309+
2310+ </refnamediv>
2311+ <refsynopsisdiv>
2312+ <cmdsynopsis>
2313+ <command>&dhpackage;</command>
2314+
2315+ <arg><option>-e, --command<replaceable>=STRING</replaceable></option></arg>
2316+ <arg><option>-x, --execute </option></arg>
2317+ <arg><option>--window-with-profile<replaceable>=PROFILENAME</replaceable></option></arg>
2318+ <arg><option>--tab-with-profile<replaceable>=PROFILENAME</replaceable></option></arg>
2319+ <arg><option>--window-with-profile-internal-id<replaceable>=PROFILEID</replaceable></option></arg>
2320+ <arg><option>--tab-with-profile-internal-id<replaceable>=PROFILEID</replaceable></option></arg>
2321+ <arg><option>--role<replaceable>=ROLE</replaceable></option></arg>
2322+ <arg><option>--show-menubar</option></arg>
2323+ <arg><option>--hide-menubar</option></arg>
2324+ <arg><option>--geometry<replaceable>=GEOMETRY</replaceable></option></arg>
2325+ <arg><option>--disable-factory</option></arg>
2326+ <arg><option>-t, --title<replaceable>=TITLE</replaceable></option></arg>
2327+ <arg><option>--working-directory<replaceable>=DIRNAME</replaceable></option></arg>
2328+ <arg><option>--usage</option></arg>
2329+ <arg><option>-?, --help</option></arg>
2330+
2331+ </cmdsynopsis>
2332+ </refsynopsisdiv>
2333+ <refsect1>
2334+ <title>DESCRIPTION</title>
2335+
2336+ <para>GNOME Terminal is a terminal emulation application that you can
2337+ use to perform the following actions:</para>
2338+
2339+ <para>Access a UNIX shell in the GNOME environment.</para>
2340+ <para>A shell is a program that interprets and executes the commands
2341+ that you type at a command line prompt. When you start GNOME Terminal,
2342+ the application starts the default shell that is specified in your
2343+ system account. You can switch to a different shell at any
2344+ time.</para>
2345+
2346+ <para>Run any application that is designed to run on VT102, VT220,
2347+ and xterm terminals.</para>
2348+
2349+ <para>GNOME Terminal emulates the xterm program developed by the X
2350+ Consortium. In turn, the xterm program emulates the DEC VT102 terminal
2351+ and also supports the DEC VT220 escape sequences. An escape sequence
2352+ is a series of characters that starts with the Esc character.</para>
2353+
2354+ <para>GNOME Terminal accepts all of the escape sequences that the VT102
2355+ and VT220 terminals use for functions such as positioning the cursor
2356+ and clearing the screen.</para>
2357+ </refsect1>
2358+ <refsect1>
2359+ <title>OPTIONS</title>
2360+
2361+ <variablelist>
2362+ <varlistentry>
2363+ <term><option>-e, --command=<replaceable>STRING</replaceable></option></term>
2364+ <listitem>
2365+ <para>Execute the argument to this option inside the terminal.</para>
2366+ </listitem>
2367+ </varlistentry>
2368+ <varlistentry>
2369+ <term><option>-x, --execute</option></term>
2370+ <listitem>
2371+ <para>Execute the remainder of the command line inside the terminal.</para>
2372+ </listitem>
2373+ </varlistentry>
2374+ <varlistentry>
2375+ <term><option>--window-with-profile=<replaceable>PROFILENAME</replaceable></option></term>
2376+ <listitem>
2377+ <para>Open a new window containing a tab with the given profile.
2378+ More than one of these options can be provided.</para>
2379+ </listitem>
2380+ </varlistentry>
2381+ <varlistentry>
2382+ <term><option>--tab-with-profile=<replaceable>PROFILENAME</replaceable></option></term>
2383+ <listitem>
2384+ <para>Open a tab in the window with the given profile. More than
2385+ one of these options can be provided, to open
2386+ several tabs .</para>
2387+ </listitem>
2388+ </varlistentry>
2389+ <varlistentry>
2390+ <term><option>--window-with-profile-internal-id=<replaceable>PROFILEID</replaceable></option></term>
2391+ <listitem>
2392+ <para>Open a new window containing a tab with the given profile
2393+ ID. Used internally to save sessions.</para>
2394+ </listitem>
2395+ </varlistentry>
2396+ <varlistentry>
2397+ <term><option>--tab-with-profile-internal-id=<replaceable>PROFILEID</replaceable></option></term>
2398+ <listitem>
2399+ <para>Open a tab in the window with the given profile ID.
2400+ Used internally to save sessions.</para>
2401+ </listitem>
2402+ </varlistentry>
2403+ <varlistentry>
2404+ <term><option>--role=<replaceable>ROLE</replaceable></option></term>
2405+ <listitem>
2406+ <para>Set the role for the last-specified window; applies to only
2407+ one window; can be specified once for each window you create
2408+ from the command line.</para>
2409+ </listitem>
2410+ </varlistentry>
2411+ <varlistentry>
2412+ <term><option>--show-menubar</option></term>
2413+ <listitem>
2414+ <para>Turn on the menu bar for the last-specified window; applies
2415+ to only one window; can be specified once for each window you
2416+ create from the command line.</para>
2417+ </listitem>
2418+ </varlistentry>
2419+ <varlistentry>
2420+ <term><option>--hide-menubar</option></term>
2421+ <listitem>
2422+ <para>Turn off the menu bar for the last-specified window; applies
2423+ to only one window; can be specified once for each window you
2424+ create from the command line.</para>
2425+ </listitem>
2426+ </varlistentry>
2427+ <varlistentry>
2428+ <term><option>--geometry=<replaceable>GEOMETRY</replaceable></option></term>
2429+ <listitem>
2430+ <para>X geometry specification (see "X" man page), can be
2431+ specified once per window to be opened.</para>
2432+ </listitem>
2433+ </varlistentry>
2434+ <varlistentry>
2435+ <term><option>--disable-factory</option></term>
2436+ <listitem>
2437+ <para>Do not register with the activation name server, do not
2438+ re-use an active terminal.</para>
2439+ </listitem>
2440+ </varlistentry>
2441+ <varlistentry>
2442+ <term><option>-t, --title=<replaceable>TITLE</replaceable></option></term>
2443+ <listitem>
2444+ <para>Set the terminal's title to <replaceable>TITLE</replaceable>.</para>
2445+ </listitem>
2446+ </varlistentry>
2447+ <varlistentry>
2448+ <term><option>--working-directory=<replaceable>DIRNAME</replaceable></option></term>
2449+ <listitem>
2450+ <para>Set the terminal's working directory to <replaceable>DIRNAME</replaceable>.</para>
2451+ </listitem>
2452+ </varlistentry>
2453+ <varlistentry>
2454+ <term><option>--usage</option></term>
2455+ <listitem>
2456+ <para>Display brief usage message.</para>
2457+ </listitem>
2458+ </varlistentry>
2459+ <varlistentry>
2460+ <term><option>-?, --help</option></term>
2461+ <listitem>
2462+ <para>Show help message.</para>
2463+ </listitem>
2464+ </varlistentry>
2465+ </variablelist>
2466+ </refsect1>
2467+
2468+ <refsect1>
2469+ <title>AUTHOR</title>
2470+
2471+ <para>This manual page was written by &dhusername; &dhemail; for
2472+ the &debian; system (but may be used by others).</para>
2473+
2474+ </refsect1>
2475+</refentry>
2476+
2477+<!-- Keep this comment at the end of the file
2478+Local variables:
2479+mode: sgml
2480+sgml-omittag:t
2481+sgml-shorttag:t
2482+sgml-minimize-attributes:nil
2483+sgml-always-quote-attributes:t
2484+sgml-indent-step:2
2485+sgml-indent-data:t
2486+sgml-parent-document:nil
2487+sgml-default-dtd-file:nil
2488+sgml-exposed-tags:nil
2489+sgml-local-catalogs:nil
2490+sgml-local-ecat-files:nil
2491+sgml-set-face:non-nil
2492+End:
2493+-->
2494
2495=== added file 'debian/gnome-terminal.wrapper'
2496--- debian/gnome-terminal.wrapper 1970-01-01 00:00:00 +0000
2497+++ debian/gnome-terminal.wrapper 2014-05-27 09:37:18 +0000
2498@@ -0,0 +1,81 @@
2499+#! /usr/bin/perl -w
2500+
2501+my $login=0;
2502+
2503+while ($opt = shift(@ARGV))
2504+{
2505+ if ($opt eq '-display')
2506+ {
2507+ $ENV{'DISPLAY'} = shift(@ARGV);
2508+ }
2509+ elsif ($opt eq '-name')
2510+ {
2511+ $arg = shift(@ARGV);
2512+ push(@args, "--window-with-profile=$arg");
2513+ }
2514+ elsif ($opt eq '-n')
2515+ {
2516+ # Accept but ignore
2517+ print STDERR "$0: to set an icon, please use -name <profile> and set a profile icon\n"
2518+ }
2519+ elsif ($opt eq '-T' || $opt eq '-title')
2520+ {
2521+ push(@args, '-t', shift(@ARGV));
2522+ }
2523+ elsif ($opt eq '-ls')
2524+ {
2525+ $login = 1;
2526+ }
2527+ elsif ($opt eq '+ls')
2528+ {
2529+ $login = 0;
2530+ }
2531+ elsif ($opt eq '-geometry')
2532+ {
2533+ $arg = shift(@ARGV);
2534+ push(@args, "--geometry=$arg");
2535+ }
2536+ elsif ($opt eq '-fn')
2537+ {
2538+ $arg = shift(@ARGV);
2539+ push(@args, "--font=$arg");
2540+ }
2541+ elsif ($opt eq '-fg')
2542+ {
2543+ $arg = shift(@ARGV);
2544+ push(@args, "--foreground=$arg");
2545+ }
2546+ elsif ($opt eq '-bg')
2547+ {
2548+ $arg = shift(@ARGV);
2549+ push(@args, "--background=$arg");
2550+ }
2551+ elsif ($opt eq '-tn')
2552+ {
2553+ $arg = shift(@ARGV);
2554+ push(@args, "--termname=$arg");
2555+ }
2556+ elsif ($opt eq '-e')
2557+ {
2558+ $arg = shift(@ARGV);
2559+ if (@ARGV)
2560+ {
2561+ push(@args, '-x', $arg, @ARGV);
2562+ last;
2563+ }
2564+ else
2565+ {
2566+ push(@args, '-e', $arg);
2567+ }
2568+ last;
2569+ }
2570+ elsif ($opt eq '-h' || $opt eq '--help')
2571+ {
2572+ push(@args, '--help');
2573+ }
2574+}
2575+if ($login == 1)
2576+{
2577+ @args = ('--login', @args);
2578+}
2579+exec('gnome-terminal',@args);
2580
2581=== added file 'debian/gnome-terminal.xpm'
2582--- debian/gnome-terminal.xpm 1970-01-01 00:00:00 +0000
2583+++ debian/gnome-terminal.xpm 2014-05-27 09:37:18 +0000
2584@@ -0,0 +1,166 @@
2585+/* XPM */
2586+static char *gnome-terminal[] = {
2587+/* columns rows colors chars-per-pixel */
2588+"32 32 128 2",
2589+" c #000000",
2590+". c #0D0D0C",
2591+"X c #10100F",
2592+"o c #151514",
2593+"O c #181715",
2594+"+ c #191917",
2595+"@ c #1C1D1A",
2596+"# c #1F221F",
2597+"$ c #201F1D",
2598+"% c #21211E",
2599+"& c #242522",
2600+"* c #262926",
2601+"= c #282721",
2602+"- c #2A2925",
2603+"; c #2B2D2A",
2604+": c #2E312E",
2605+"> c #33312C",
2606+", c #323532",
2607+"< c #353935",
2608+"1 c #3C3A34",
2609+"2 c #393D39",
2610+"3 c #3E433E",
2611+"4 c #413E37",
2612+"5 c #403E39",
2613+"6 c #45423C",
2614+"7 c #49463D",
2615+"8 c #4B483E",
2616+"9 c #414641",
2617+"0 c #454A45",
2618+"q c #494742",
2619+"w c #4E4B43",
2620+"e c #4A4E49",
2621+"r c #4C514C",
2622+"t c #514E45",
2623+"y c #524F48",
2624+"u c #545147",
2625+"i c #56524A",
2626+"p c #5A564C",
2627+"a c #5C594E",
2628+"s c #505650",
2629+"d c #545A54",
2630+"f c #595751",
2631+"g c #5E5B52",
2632+"h c #5A5E59",
2633+"j c #5D635D",
2634+"k c #625E53",
2635+"l c #605E58",
2636+"z c #656155",
2637+"x c #66635C",
2638+"c c #686456",
2639+"v c #6A665B",
2640+"b c #6D685E",
2641+"n c #606560",
2642+"m c #656A65",
2643+"M c #6D6A63",
2644+"N c #686E68",
2645+"B c #6D736D",
2646+"V c #726D63",
2647+"C c #726F6A",
2648+"Z c #757166",
2649+"A c #75736D",
2650+"S c #79756B",
2651+"D c #7D786C",
2652+"F c #707670",
2653+"G c #757B75",
2654+"H c #787672",
2655+"J c #7D7A74",
2656+"K c #797E79",
2657+"L c #7D837D",
2658+"P c #807B6F",
2659+"I c #827D74",
2660+"U c #807E7A",
2661+"Y c #858175",
2662+"T c #86827B",
2663+"R c #89857B",
2664+"E c #8D887F",
2665+"W c #838682",
2666+"Q c #838983",
2667+"! c #8D8982",
2668+"~ c #8C8D8A",
2669+"^ c #8E918E",
2670+"/ c #918D84",
2671+"( c #95928A",
2672+") c #99968C",
2673+"_ c #9D998F",
2674+"` c #939592",
2675+"' c #989794",
2676+"] c #9A9894",
2677+"[ c #9B9C99",
2678+"{ c #9EA29E",
2679+"} c #A29E96",
2680+"| c #A6A197",
2681+" . c #A5A29B",
2682+".. c #A9A59D",
2683+"X. c #AEA99F",
2684+"o. c #A2A4A2",
2685+"O. c #A7A9A7",
2686+"+. c #ADAAA3",
2687+"@. c #ACAEAC",
2688+"#. c #B0ADA6",
2689+"$. c #B1AEA8",
2690+"%. c #B4B0A7",
2691+"&. c #B4B1AB",
2692+"*. c #BBB7AE",
2693+"=. c #B2B5B2",
2694+"-. c #B6B8B6",
2695+";. c #B9B7B2",
2696+":. c #BEBCB7",
2697+">. c #B9BCB9",
2698+",. c #C1BDB5",
2699+"<. c #C5C2BC",
2700+"1. c #C8C4BC",
2701+"2. c #C4C6C4",
2702+"3. c #C6C8C6",
2703+"4. c #C9C7C3",
2704+"5. c #CDC9C3",
2705+"6. c #CECCC8",
2706+"7. c #D2CEC6",
2707+"8. c #D0CFCB",
2708+"9. c #D5D2CC",
2709+"0. c #D9D6CE",
2710+"q. c #D6D7D6",
2711+"w. c #DDDAD2",
2712+"e. c #E1DED6",
2713+"r. c #E2DFD8",
2714+"t. c #E6E3DC",
2715+"y. c #E2E3E2",
2716+"u. c None",
2717+/* pixels */
2718+"u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.",
2719+" u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u.u. ",
2720+"u. ",
2721+"u.. Q ] [ [ [ ] [ [ [ } [ ' ' ' ' ` ` ~ ! W T U J H H C 2 ",
2722+" o q.w.r.t.t.t.t.t.t.t.t.t.r.w.w.0.9.7.5.1.,.;.$.#...} f ",
2723+" o 8.0.<.$.&.&.=.&.&.&.@.$.O.O... .} } ] ( ~ ! R T _ ) y ",
2724+" O 8.w.U @ * * * ; ; ; ; ; ; ; ; - * * & & @ @ + $ ( ( y ",
2725+" O 8.w.H * K W Q ! Q L G B m j s e 0 9 5 2 , ; & @ ( ! w ",
2726+" O 6.q.H : [ O.O.o.[ ` Q L N j d s r e 0 9 < : * @ / R q ",
2727+" O 4.7.A , [ o.[ ' ^ Q L B m j j h d s r 9 3 < * @ E T q ",
2728+" O 4.5.C , ` ` ^ Q W L F B N N m n j h d r 9 < ; @ R J 6 ",
2729+" o <.1.N < W W L K K G L F L F B N m n h r 9 < ; @ Y S 2 ",
2730+" O ,.,.M < H F F F G L L W L L G F N m j s 0 2 ; @ I V 4 ",
2731+" o ;.*.l < m m m F G L Q Q Q L L G F N n d e 2 ; @ S M 1 ",
2732+" o =.$.l , h h m F G L L Q W L L G F N n d 0 2 ; @ Z v , ",
2733+" o $.+.l , K { G B G L W W W L L L F N n d 0 2 : @ V z > ",
2734+" o +.| f : L q.q.=.` L L L L L G L N m j s 8 3 * # b k : ",
2735+" o ._ i > d F { q.y.` F G G F B N m j d r 3 3 * o v d ; ",
2736+" o ] ( y ; m @.2.2.{ F m m N m j j j s e 3 3 , * # k u ; ",
2737+" . ( ! e * K >.L j d h F =.>.-.^ j r 0 3 3 : : * O k 8 - ",
2738+" . ! T q * 0 0 9 e r r f n n h s 9 3 3 : : * % % O k 8 % ",
2739+" o R I t @ & & * * * * = = & & & # # # + # # + O + k 8 - ",
2740+" X U S Y R R R R R Y Y I P P S Z Z V V c v c c z z k 8 - ",
2741+" X J b b Z Z Z b b M v k k k k a p u u u 8 8 a z 8 8 8 % ",
2742+" . B b b b v b v v v k k k f p p i u u t w w p 8 8 7 8 % ",
2743+" . p t g g g g g k g p f u i y t w w q 7 7 7 6 6 6 1 1 % ",
2744+" . o l l x M C H J U J J H C Z N M x z f f p p p % . . ",
2745+" @ @ @ @ $ & * * & & & & $ $ @ @ + O O O o o . ",
2746+" ",
2747+" ",
2748+"u. u.",
2749+"u.u.u. u.u.u."
2750+};
2751
2752=== added directory 'debian/patches'
2753=== added file 'debian/patches/0001-Restore-transparency.patch'
2754--- debian/patches/0001-Restore-transparency.patch 1970-01-01 00:00:00 +0000
2755+++ debian/patches/0001-Restore-transparency.patch 2014-05-27 09:37:18 +0000
2756@@ -0,0 +1,419 @@
2757+From 4e059adba38aef1397df1c8a8c58986059af7306 Mon Sep 17 00:00:00 2001
2758+From: Debarshi Ray <debarshir@gnome.org>
2759+Date: Mon, 12 May 2014 14:57:18 +0200
2760+Subject: [PATCH] Restore transparency
2761+
2762+The transparency settings were removed as a side effect of
2763+2bff4b63ed3ceef6055e35563e9b0b33ad57349d
2764+
2765+This restores them and you will need a compositing window manager to
2766+use it. The background image setting, also known as faux transparency,
2767+was not restored.
2768+---
2769+ src/org.gnome.Terminal.gschema.xml | 9 ++++
2770+ src/profile-editor.c | 10 +++++
2771+ src/profile-preferences.ui | 92 ++++++++++++++++++++++++++++++++++++++
2772+ src/terminal-schemas.h | 3 ++
2773+ src/terminal-screen.c | 19 +++++++-
2774+ src/terminal-window.c | 77 ++++++++++++++++++++++++++++---
2775+ 6 files changed, 204 insertions(+), 6 deletions(-)
2776+
2777+diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml
2778+index 94eeae9..ab7e914 100644
2779+--- a/src/org.gnome.Terminal.gschema.xml
2780++++ b/src/org.gnome.Terminal.gschema.xml
2781+@@ -326,6 +326,15 @@
2782+ <default>'current'</default>
2783+ <summary>Which encoding to use</summary>
2784+ </key>
2785++ <key name="use-transparent-background" type="b">
2786++ <default>false</default>
2787++ <summary>Whether to use a transparent background</summary>
2788++ </key>
2789++ <key name="background-transparency-percent" type="i">
2790++ <default>50</default>
2791++ <summary>Adjust the amount of transparency</summary>
2792++ <description>A value between 0 and 100, where 0 is opaque and 100 is fully transparent.</description>
2793++ </key>
2794+ </schema>
2795+
2796+ <!-- Keybinding settings -->
2797+diff --git a/src/profile-editor.c b/src/profile-editor.c
2798+index 1b3e855..9ab66c8 100644
2799+--- a/src/profile-editor.c
2800++++ b/src/profile-editor.c
2801+@@ -1026,6 +1026,16 @@ terminal_profile_edit (GSettings *profile,
2802+ gtk_builder_get_object (builder, "rewrap-on-resize-checkbutton"),
2803+ "active", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
2804+
2805++ g_settings_bind (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
2806++ gtk_builder_get_object (builder, "use-transparent-background"),
2807++ "active", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
2808++ g_settings_bind (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
2809++ gtk_builder_get_object (builder, "background-transparent-scale-box"),
2810++ "sensitive", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_NO_SENSITIVITY);
2811++ g_settings_bind (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT,
2812++ gtk_builder_get_object (builder, "background-transparent-adjustment"),
2813++ "value", G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET);
2814++
2815+ terminal_util_bind_mnemonic_label_sensitivity (editor);
2816+
2817+ terminal_util_dialog_focus_widget (editor, widget_name);
2818+diff --git a/src/profile-preferences.ui b/src/profile-preferences.ui
2819+index f648938..2b068f0 100644
2820+--- a/src/profile-preferences.ui
2821++++ b/src/profile-preferences.ui
2822+@@ -23,6 +23,11 @@
2823+ <property name="step_increment">1</property>
2824+ <property name="page_increment">100</property>
2825+ </object>
2826++ <object class="GtkAdjustment" id="background-transparent-adjustment">
2827++ <property name="upper">100</property>
2828++ <property name="step_increment">1</property>
2829++ <property name="page_increment">10</property>
2830++ </object>
2831+ <object class="GtkListStore" id="model1">
2832+ <columns>
2833+ <!-- column-name gchararray -->
2834+@@ -1228,6 +1233,93 @@
2835+ <property name="position">1</property>
2836+ </packing>
2837+ </child>
2838++ <child>
2839++ <object class="GtkBox" id="use-transparent-background-box">
2840++ <property name="visible">True</property>
2841++ <property name="can_focus">False</property>
2842++ <property name="orientation">horizontal</property>
2843++ <property name="spacing">12</property>
2844++ <child>
2845++ <object class="GtkCheckButton" id="use-transparent-background">
2846++ <property name="label" translatable="yes">Use t_ransparent background</property>
2847++ <property name="visible">True</property>
2848++ <property name="can_focus">True</property>
2849++ <property name="receives_default">False</property>
2850++ <property name="use_underline">True</property>
2851++ <property name="xalign">0</property>
2852++ <property name="draw_indicator">True</property>
2853++ </object>
2854++ <packing>
2855++ <property name="expand">False</property>
2856++ <property name="fill">False</property>
2857++ <property name="position">0</property>
2858++ </packing>
2859++ </child>
2860++ <child>
2861++ <object class="GtkBox" id="background-transparent-scale-box">
2862++ <property name="visible">True</property>
2863++ <property name="can_focus">False</property>
2864++ <property name="orientation">horizontal</property>
2865++ <property name="spacing">6</property>
2866++ <child>
2867++ <object class="GtkLabel" id="background-transparent-min-label">
2868++ <property name="visible">True</property>
2869++ <property name="can_focus">False</property>
2870++ <property name="xalign">0.5</property>
2871++ <property name="label" translatable="yes">none</property>
2872++ <style>
2873++ <class name="dim-label"/>
2874++ </style>
2875++ </object>
2876++ <packing>
2877++ <property name="expand">False</property>
2878++ <property name="fill">False</property>
2879++ <property name="position">0</property>
2880++ </packing>
2881++ </child>
2882++ <child>
2883++ <object class="GtkScale" id="background-transparent-scale">
2884++ <property name="visible">True</property>
2885++ <property name="can_focus">True</property>
2886++ <property name="adjustment">background-transparent-adjustment</property>
2887++ <property name="draw_value">False</property>
2888++ </object>
2889++ <packing>
2890++ <property name="expand">True</property>
2891++ <property name="fill">True</property>
2892++ <property name="position">1</property>
2893++ </packing>
2894++ </child>
2895++ <child>
2896++ <object class="GtkLabel" id="background-transparent-max-label">
2897++ <property name="visible">True</property>
2898++ <property name="can_focus">False</property>
2899++ <property name="xalign">0.5</property>
2900++ <property name="label" translatable="yes">full</property>
2901++ <style>
2902++ <class name="dim-label"/>
2903++ </style>
2904++ </object>
2905++ <packing>
2906++ <property name="expand">False</property>
2907++ <property name="fill">False</property>
2908++ <property name="position">2</property>
2909++ </packing>
2910++ </child>
2911++ </object>
2912++ <packing>
2913++ <property name="expand">True</property>
2914++ <property name="fill">True</property>
2915++ <property name="position">1</property>
2916++ </packing>
2917++ </child>
2918++ </object>
2919++ <packing>
2920++ <property name="expand">True</property>
2921++ <property name="fill">True</property>
2922++ <property name="position">2</property>
2923++ </packing>
2924++ </child>
2925+ </object>
2926+ </child>
2927+ </object>
2928+diff --git a/src/terminal-schemas.h b/src/terminal-schemas.h
2929+index 443cf7b..c242857 100644
2930+--- a/src/terminal-schemas.h
2931++++ b/src/terminal-schemas.h
2932+@@ -65,6 +65,9 @@ G_BEGIN_DECLS
2933+ #define TERMINAL_PROFILE_VISIBLE_NAME_KEY "visible-name"
2934+ #define TERMINAL_PROFILE_WORD_CHARS_KEY "word-chars"
2935+
2936++#define TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND "use-transparent-background"
2937++#define TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT "background-transparency-percent"
2938++
2939+ #define TERMINAL_SETTING_CONFIRM_CLOSE_KEY "confirm-close"
2940+ #define TERMINAL_SETTING_DEFAULT_SHOW_MENUBAR_KEY "default-show-menubar"
2941+ #define TERMINAL_SETTING_DARK_THEME_KEY "dark-theme"
2942+diff --git a/src/terminal-screen.c b/src/terminal-screen.c
2943+index ac971c0..2fe2ea1 100644
2944+--- a/src/terminal-screen.c
2945++++ b/src/terminal-screen.c
2946+@@ -792,7 +792,9 @@ terminal_screen_profile_changed_cb (GSettings *profile,
2947+ prop_name == I_(TERMINAL_PROFILE_BACKGROUND_COLOR_KEY) ||
2948+ prop_name == I_(TERMINAL_PROFILE_BOLD_COLOR_SAME_AS_FG_KEY) ||
2949+ prop_name == I_(TERMINAL_PROFILE_BOLD_COLOR_KEY) ||
2950+- prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY))
2951++ prop_name == I_(TERMINAL_PROFILE_PALETTE_KEY) ||
2952++ prop_name == I_(TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND) ||
2953++ prop_name == I_(TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT))
2954+ update_color_scheme (screen);
2955+
2956+ if (!prop_name || prop_name == I_(TERMINAL_PROFILE_AUDIBLE_BELL_KEY))
2957+@@ -857,6 +859,8 @@ update_color_scheme (TerminalScreen *screen)
2958+ GdkRGBA fg, bg, bold, theme_fg, theme_bg;
2959+ GdkRGBA *boldp;
2960+ GtkStyleContext *context;
2961++ gboolean transparent;
2962++ guint16 opacity;
2963+
2964+ context = gtk_widget_get_style_context (widget);
2965+ gtk_style_context_get_color (context, GTK_STATE_FLAG_NORMAL, &theme_fg);
2966+@@ -880,6 +884,19 @@ update_color_scheme (TerminalScreen *screen)
2967+ vte_terminal_set_colors_rgba (VTE_TERMINAL (screen), &fg, &bg,
2968+ colors, n_colors);
2969+ vte_terminal_set_color_bold_rgba (VTE_TERMINAL (screen), boldp);
2970++
2971++ transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
2972++ if (transparent)
2973++ {
2974++ gint transparency_percent;
2975++
2976++ transparency_percent = g_settings_get_int (profile, TERMINAL_PROFILE_BACKGROUND_TRANSPARENCY_PERCENT);
2977++ opacity = (guint16) (G_MAXUINT16 * (100 - transparency_percent) / 100.0);
2978++ }
2979++ else
2980++ opacity = G_MAXUINT16;
2981++
2982++ vte_terminal_set_opacity (VTE_TERMINAL (screen), opacity);
2983+ }
2984+
2985+ void
2986+diff --git a/src/terminal-window.c b/src/terminal-window.c
2987+index db06b3f..31b8516 100644
2988+--- a/src/terminal-window.c
2989++++ b/src/terminal-window.c
2990+@@ -1234,6 +1234,23 @@ position_menu_under_widget (GtkMenu *menu,
2991+ }
2992+
2993+ static void
2994++terminal_window_update_transparency (TerminalWindow *window)
2995++{
2996++ TerminalWindowPrivate *priv = window->priv;
2997++ gboolean is_transparent = FALSE;
2998++
2999++ if (priv->active_screen)
3000++ {
3001++ GSettings *profile;
3002++
3003++ profile = terminal_screen_get_profile (priv->active_screen);
3004++ is_transparent = g_settings_get_boolean (profile, TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND);
3005++ }
3006++
3007++ gtk_widget_set_app_paintable (GTK_WIDGET (window), is_transparent);
3008++}
3009++
3010++static void
3011+ terminal_set_profile_toggled_callback (GtkToggleAction *action,
3012+ TerminalWindow *window)
3013+ {
3014+@@ -1252,6 +1269,8 @@ terminal_set_profile_toggled_callback (GtkToggleAction *action,
3015+ g_signal_handlers_block_by_func (priv->active_screen, G_CALLBACK (profile_set_callback), window);
3016+ terminal_screen_set_profile (priv->active_screen, profile);
3017+ g_signal_handlers_unblock_by_func (priv->active_screen, G_CALLBACK (profile_set_callback), window);
3018++
3019++ terminal_window_update_transparency (window);
3020+ }
3021+
3022+ static void
3023+@@ -1295,7 +1314,26 @@ profile_visible_name_notify_cb (GSettings *profile,
3024+ }
3025+
3026+ static void
3027+-disconnect_profiles_from_actions_in_group (GtkActionGroup *action_group)
3028++profile_background_transparency_notify_cb (GSettings *profile,
3029++ const char *key,
3030++ gpointer user_data)
3031++{
3032++ TerminalWindow *window = user_data;
3033++ TerminalWindowPrivate *priv = window->priv;
3034++ GSettings *active_profile;
3035++
3036++ if (priv->active_screen)
3037++ active_profile = terminal_screen_get_profile (priv->active_screen);
3038++ else
3039++ active_profile = NULL;
3040++
3041++ if (profile == active_profile)
3042++ terminal_window_update_transparency (window);
3043++}
3044++
3045++static void
3046++disconnect_profiles_from_actions_in_group (TerminalWindow *window,
3047++ GtkActionGroup *action_group)
3048+ {
3049+ GList *actions, *l;
3050+
3051+@@ -1310,6 +1348,7 @@ disconnect_profiles_from_actions_in_group (GtkActionGroup *action_group)
3052+ continue;
3053+
3054+ g_signal_handlers_disconnect_by_func (profile, G_CALLBACK (profile_visible_name_notify_cb), action);
3055++ g_signal_handlers_disconnect_by_func (profile, G_CALLBACK (profile_background_transparency_notify_cb), window);
3056+ }
3057+ g_list_free (actions);
3058+ }
3059+@@ -1370,7 +1409,7 @@ terminal_window_update_set_profile_menu (TerminalWindow *window)
3060+
3061+ if (priv->profiles_action_group != NULL)
3062+ {
3063+- disconnect_profiles_from_actions_in_group (priv->profiles_action_group);
3064++ disconnect_profiles_from_actions_in_group (window, priv->profiles_action_group);
3065+ gtk_ui_manager_remove_action_group (priv->ui_manager,
3066+ priv->profiles_action_group);
3067+ priv->profiles_action_group = NULL;
3068+@@ -1426,6 +1465,8 @@ terminal_window_update_set_profile_menu (TerminalWindow *window)
3069+ profile_visible_name_notify_cb (profile, TERMINAL_PROFILE_VISIBLE_NAME_KEY, GTK_ACTION (profile_action));
3070+ g_signal_connect (profile, "changed::" TERMINAL_PROFILE_VISIBLE_NAME_KEY,
3071+ G_CALLBACK (profile_visible_name_notify_cb), profile_action);
3072++ g_signal_connect (profile, "changed::" TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
3073++ G_CALLBACK (profile_background_transparency_notify_cb), window);
3074+ g_signal_connect (profile_action, "toggled",
3075+ G_CALLBACK (terminal_set_profile_toggled_callback), window);
3076+
3077+@@ -1463,6 +1504,8 @@ terminal_window_create_new_terminal_action (TerminalWindow *window,
3078+ profile_visible_name_notify_cb (profile, TERMINAL_PROFILE_VISIBLE_NAME_KEY, action);
3079+ g_signal_connect (profile, "changed::" TERMINAL_PROFILE_VISIBLE_NAME_KEY,
3080+ G_CALLBACK (profile_visible_name_notify_cb), action);
3081++ g_signal_connect (profile, "changed::" TERMINAL_PROFILE_USE_TRANSPARENT_BACKGROUND,
3082++ G_CALLBACK (profile_background_transparency_notify_cb), window);
3083+ g_signal_connect (action, "activate", callback, window);
3084+
3085+ gtk_action_group_add_action (priv->new_terminal_action_group, action);
3086+@@ -1488,7 +1531,7 @@ terminal_window_update_new_terminal_menus (TerminalWindow *window)
3087+
3088+ if (priv->new_terminal_action_group != NULL)
3089+ {
3090+- disconnect_profiles_from_actions_in_group (priv->new_terminal_action_group);
3091++ disconnect_profiles_from_actions_in_group (window, priv->new_terminal_action_group);
3092+ gtk_ui_manager_remove_action_group (priv->ui_manager,
3093+ priv->new_terminal_action_group);
3094+ priv->new_terminal_action_group = NULL;
3095+@@ -2271,6 +2314,20 @@ terminal_window_realize (GtkWidget *widget)
3096+ }
3097+
3098+ static gboolean
3099++terminal_window_draw (GtkWidget *widget,
3100++ cairo_t *cr)
3101++{
3102++ GtkStyleContext *context = gtk_widget_get_style_context (widget);
3103++ int width = gtk_widget_get_allocated_width (widget);
3104++ int height = gtk_widget_get_allocated_height (widget);
3105++
3106++ gtk_render_background (context, cr, 0, 0, width, height);
3107++ gtk_render_frame (context, cr, 0, 0, width, height);
3108++
3109++ return GTK_WIDGET_CLASS (terminal_window_parent_class)->draw (widget, cr);
3110++}
3111++
3112++static gboolean
3113+ terminal_window_state_event (GtkWidget *widget,
3114+ GdkEventWindowState *event)
3115+ {
3116+@@ -2619,6 +2676,8 @@ terminal_window_init (TerminalWindow *window)
3117+ TerminalWindowPrivate *priv;
3118+ TerminalApp *app;
3119+ TerminalSettingsList *profiles_list;
3120++ GdkScreen *screen;
3121++ GdkVisual *visual;
3122+ GtkActionGroup *action_group;
3123+ GtkAction *action;
3124+ GtkUIManager *manager;
3125+@@ -2634,6 +2693,11 @@ terminal_window_init (TerminalWindow *window)
3126+
3127+ gtk_widget_init_template (GTK_WIDGET (window));
3128+
3129++ screen = gtk_widget_get_screen (GTK_WIDGET (window));
3130++ visual = gdk_screen_get_rgba_visual (screen);
3131++ if (visual != NULL)
3132++ gtk_widget_set_visual (GTK_WIDGET (window), visual);
3133++
3134+ uuid_generate (u);
3135+ uuid_unparse (u, uuidstr);
3136+ priv->uuid = g_strdup (uuidstr);
3137+@@ -2799,6 +2863,7 @@ terminal_window_class_init (TerminalWindowClass *klass)
3138+
3139+ widget_class->show = terminal_window_show;
3140+ widget_class->realize = terminal_window_realize;
3141++ widget_class->draw = terminal_window_draw;
3142+ widget_class->window_state_event = terminal_window_state_event;
3143+ widget_class->screen_changed = terminal_window_screen_changed;
3144+ widget_class->style_updated = terminal_window_style_updated;
3145+@@ -2839,9 +2904,9 @@ terminal_window_dispose (GObject *object)
3146+ }
3147+
3148+ if (priv->profiles_action_group != NULL)
3149+- disconnect_profiles_from_actions_in_group (priv->profiles_action_group);
3150++ disconnect_profiles_from_actions_in_group (window, priv->profiles_action_group);
3151+ if (priv->new_terminal_action_group != NULL)
3152+- disconnect_profiles_from_actions_in_group (priv->new_terminal_action_group);
3153++ disconnect_profiles_from_actions_in_group (window, priv->new_terminal_action_group);
3154+
3155+ app = terminal_app_get ();
3156+ profiles_list = terminal_app_get_profiles_list (app);
3157+@@ -2959,6 +3024,7 @@ profile_set_callback (TerminalScreen *screen,
3158+ return;
3159+
3160+ terminal_window_update_set_profile_menu_active_profile (window);
3161++ terminal_window_update_transparency (window);
3162+ }
3163+
3164+ static void
3165+@@ -3334,6 +3400,7 @@ mdi_screen_switched_cb (TerminalMdiContainer *container,
3166+ terminal_window_update_copy_sensitivity (screen, window);
3167+ terminal_window_update_zoom_sensitivity (window);
3168+ terminal_window_update_search_sensitivity (screen, window);
3169++ terminal_window_update_transparency (window);
3170+ }
3171+
3172+ static void
3173+--
3174+2.0.0.rc0
3175+
3176
3177=== added file 'debian/patches/01_onlyshowin.patch'
3178--- debian/patches/01_onlyshowin.patch 1970-01-01 00:00:00 +0000
3179+++ debian/patches/01_onlyshowin.patch 2014-05-27 09:37:18 +0000
3180@@ -0,0 +1,11 @@
3181+Only show gnome-terminal in GNOME menus
3182+
3183+Index: b/gnome-terminal.desktop.in.in
3184+===================================================================
3185+--- a/gnome-terminal.desktop.in.in
3186++++ b/gnome-terminal.desktop.in.in
3187+@@ -13,3 +13,4 @@
3188+ X-GNOME-Bugzilla-Version=@VERSION@
3189+ Categories=GNOME;GTK;System;TerminalEmulator;
3190+ StartupNotify=true
3191++OnlyShowIn=GNOME;Unity;
3192
3193=== added file 'debian/patches/10_kfreebsd-f_dupfd_cloexec.patch'
3194--- debian/patches/10_kfreebsd-f_dupfd_cloexec.patch 1970-01-01 00:00:00 +0000
3195+++ debian/patches/10_kfreebsd-f_dupfd_cloexec.patch 2014-05-27 09:37:18 +0000
3196@@ -0,0 +1,41 @@
3197+Author: Emilio Pozuelo Monfort <pochu@debian.org>
3198+Author: Petr Salinger <Petr.Salinger@seznam.cz>
3199+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=711529
3200+Description: Fix build on kfreebsd
3201+
3202+kfreebsd doesn't have F_DUPFD_CLOEXEC, so use it conditionally.
3203+As mentioned in the bug report, it will have support for it in
3204+jessie, so we can drop it in jessie+1.
3205+
3206+--- a/src/terminal-screen.c
3207++++ b/src/terminal-screen.c
3208+@@ -187,6 +187,20 @@
3209+ static TerminalURLFlavour *url_regex_flavors;
3210+ static guint n_url_regexes;
3211+
3212++#ifdef F_DUPFD_CLOEXEC
3213++static inline int dup_cloexec(int fd, int hint)
3214++{
3215++ return fcntl (fd, F_DUPFD_CLOEXEC, hint);
3216++}
3217++#else
3218++static inline int dup_cloexec(int fd, int hint)
3219++{
3220++ if ((fd = fcntl (fd, F_DUPFD, hint)) == -1)
3221++ return -1;
3222++ return fcntl (fd, F_SETFD, FD_CLOEXEC);
3223++}
3224++#endif
3225++
3226+ /* See bug #697024 */
3227+ #ifndef __linux__
3228+
3229+@@ -1243,7 +1257,7 @@
3230+ for (j = 0; j < n_fds; j++) {
3231+ if (fds[j] == target_fd) {
3232+ do {
3233+- fd = fcntl (fds[j], F_DUPFD_CLOEXEC, 3);
3234++ fd = dup_cloexec(fds[j], 3);
3235+ } while (fd == -1 && errno == EINTR);
3236+ if (fd == -1)
3237+ _exit (127);
3238
3239=== added file 'debian/patches/50_add_unity_quicklist.patch'
3240--- debian/patches/50_add_unity_quicklist.patch 1970-01-01 00:00:00 +0000
3241+++ debian/patches/50_add_unity_quicklist.patch 2014-05-27 09:37:18 +0000
3242@@ -0,0 +1,18 @@
3243+Description: Add Unity static quicklist support to gnome-terminal
3244+Forwarded: https://bugzilla.gnome.org/show_bug.cgi?id=651531
3245+Author: Didier Roche <didrocks@ubuntu.com>
3246+
3247+Index: b/gnome-terminal.desktop.in.in
3248+===================================================================
3249+--- a/gnome-terminal.desktop.in.in
3250++++ b/gnome-terminal.desktop.in.in
3251+@@ -14,3 +14,9 @@
3252+ Categories=GNOME;GTK;System;TerminalEmulator;
3253+ StartupNotify=true
3254+ OnlyShowIn=GNOME;Unity;
3255++Actions=New
3256++
3257++[Desktop Action New]
3258++_Name=New Terminal
3259++Exec=gnome-terminal
3260++OnlyShowIn=Unity
3261
3262=== added file 'debian/patches/51_alternate_screen_scroll.patch'
3263--- debian/patches/51_alternate_screen_scroll.patch 1970-01-01 00:00:00 +0000
3264+++ debian/patches/51_alternate_screen_scroll.patch 2014-05-27 09:37:18 +0000
3265@@ -0,0 +1,71 @@
3266+Description: Add a gsettings key to use VTE "alternate scrolling" and default it true.
3267+ There's no UI - a change from previously. Advanced users can change this in gsettings.
3268+Author: Iain Lane <iain.lane@canonical.com>
3269+Forwarded: not-needed (vte API is not upstream yet)
3270+Bug-Upstream: https://bugzilla.gnome.org/show_bug.cgi?id=518405
3271+
3272+Index: b/src/migration.c
3273+===================================================================
3274+--- a/src/migration.c
3275++++ b/src/migration.c
3276+@@ -59,6 +59,7 @@
3277+ #define GCONF_PROFILES_PREFIX GCONF_PREFIX "/profiles"
3278+
3279+ #define KEY_ALLOW_BOLD "allow_bold"
3280++#define KEY_ALTERNATE_SCREEN_SCROLL "alternate_screen_scroll"
3281+ #define KEY_BACKGROUND_COLOR "background_color"
3282+ #define KEY_BACKGROUND_DARKNESS "background_darkness"
3283+ #define KEY_BACKGROUND_IMAGE_FILE "background_image"
3284+@@ -426,6 +427,9 @@
3285+ migrate_bool (client, path, KEY_SCROLL_ON_KEYSTROKE,
3286+ settings, TERMINAL_PROFILE_SCROLL_ON_KEYSTROKE_KEY,
3287+ FALSE);
3288++ migrate_bool (client, path, KEY_ALTERNATE_SCREEN_SCROLL,
3289++ settings, TERMINAL_PROFILE_ALTERNATE_SCREEN_SCROLL_KEY,
3290++ FALSE);
3291+ migrate_bool (client, path, KEY_SCROLL_ON_OUTPUT,
3292+ settings, TERMINAL_PROFILE_SCROLL_ON_OUTPUT_KEY,
3293+ FALSE);
3294+Index: b/src/terminal-schemas.h
3295+===================================================================
3296+--- a/src/terminal-schemas.h
3297++++ b/src/terminal-schemas.h
3298+@@ -31,6 +31,7 @@
3299+ #define TERMINAL_PROFILES_LIST_SCHEMA "org.gnome.Terminal.ProfilesList"
3300+
3301+ #define TERMINAL_PROFILE_ALLOW_BOLD_KEY "allow-bold"
3302++#define TERMINAL_PROFILE_ALTERNATE_SCREEN_SCROLL_KEY "alternate-screen-scroll"
3303+ #define TERMINAL_PROFILE_AUDIBLE_BELL_KEY "audible-bell"
3304+ #define TERMINAL_PROFILE_BACKGROUND_COLOR_KEY "background-color"
3305+ #define TERMINAL_PROFILE_BACKSPACE_BINDING_KEY "backspace-binding"
3306+Index: b/src/terminal-screen.c
3307+===================================================================
3308+--- a/src/terminal-screen.c
3309++++ b/src/terminal-screen.c
3310+@@ -824,6 +824,10 @@
3311+ if (!prop_name || prop_name == I_(TERMINAL_PROFILE_SCROLL_ON_OUTPUT_KEY))
3312+ vte_terminal_set_scroll_on_output (vte_terminal,
3313+ g_settings_get_boolean (profile, TERMINAL_PROFILE_SCROLL_ON_OUTPUT_KEY));
3314++ if (!prop_name || prop_name == I_(TERMINAL_PROFILE_ALTERNATE_SCREEN_SCROLL_KEY))
3315++ vte_terminal_set_alternate_screen_scroll (vte_terminal,
3316++ g_settings_get_boolean (profile,
3317++ TERMINAL_PROFILE_ALTERNATE_SCREEN_SCROLL_KEY));
3318+ if (!prop_name ||
3319+ prop_name == I_(TERMINAL_PROFILE_SCROLLBACK_LINES_KEY) ||
3320+ prop_name == I_(TERMINAL_PROFILE_SCROLLBACK_UNLIMITED_KEY))
3321+Index: b/src/org.gnome.Terminal.gschema.xml
3322+===================================================================
3323+--- a/src/org.gnome.Terminal.gschema.xml
3324++++ b/src/org.gnome.Terminal.gschema.xml
3325+@@ -175,6 +175,11 @@
3326+ <summary>Whether to scroll to the bottom when there's new output</summary>
3327+ <description>If true, whenever there's new output the terminal will scroll to the bottom.</description>
3328+ </key>
3329++ <key name="alternate-screen-scroll" type="b">
3330++ <default>true</default>
3331++ <summary>Whether to use VTE "alternate scrolling"</summary>
3332++ <description>If true, "alternate scrolling" support will be enabled, allowing the mouse wheel to be used to scroll some kinds of windows, e.g. terminal pagers such as "less".</description>
3333++ </key>
3334+ <key name="exit-action" enum="org.gnome.Terminal.ExitAction">
3335+ <default>'close'</default>
3336+ <summary>What to do with the terminal when the child command exits</summary>
3337
3338=== added file 'debian/patches/52_support_apturl.patch'
3339--- debian/patches/52_support_apturl.patch 1970-01-01 00:00:00 +0000
3340+++ debian/patches/52_support_apturl.patch 2014-05-27 09:37:18 +0000
3341@@ -0,0 +1,13 @@
3342+Index: b/src/terminal-screen.c
3343+===================================================================
3344+--- a/src/terminal-screen.c
3345++++ b/src/terminal-screen.c
3346+@@ -180,7 +180,7 @@
3347+ { "(?:www|ftp)" HOSTCHARS_CLASS "*\\." HOST PORT URLPATH , FLAVOR_DEFAULT_TO_HTTP, G_REGEX_CASELESS },
3348+ { "(?:callto:|h323:|sip:)" USERCHARS_CLASS "[" USERCHARS ".]*(?:" PORT "/[a-z0-9]+)?\\@" HOST, FLAVOR_VOIP_CALL, G_REGEX_CASELESS },
3349+ { "(?:mailto:)?" USERCHARS_CLASS "[" USERCHARS ".]*\\@" HOSTCHARS_CLASS "+\\." HOST, FLAVOR_EMAIL, G_REGEX_CASELESS },
3350+- { "(?:news:|man:|info:)[-[:alnum:]\\Q^_{|}~!\"#$%&'()*+,./;:=?`\\E]+", FLAVOR_AS_IS, G_REGEX_CASELESS },
3351++ { "(?:news:|man:|info:|apt:)[-[:alnum:]\\Q^_{|}~!\"#$%&'()*+,./;:=?`\\E]+", FLAVOR_AS_IS, G_REGEX_CASELESS },
3352+ };
3353+
3354+ static GRegex **url_regexes;
3355
3356=== added file 'debian/patches/nautilus-x11.patch'
3357--- debian/patches/nautilus-x11.patch 1970-01-01 00:00:00 +0000
3358+++ debian/patches/nautilus-x11.patch 2014-05-27 09:37:18 +0000
3359@@ -0,0 +1,29 @@
3360+From: Andreas Henriksson <andreas@fatal.se>
3361+Subject: Nautilus extension needs platform libraries (x11)
3362+
3363+
3364+libtool: link: gcc -shared -fPIC -DPIC .libs/libterminal_nautilus_la-terminal-client-utils.o .libs/libterminal_nautilus_la-terminal-i18n.o .libs/libterminal_nautilus_la-terminal-nautilus.o .libs/libterminal_nautilus_la-terminal-gdbus-generated.o .libs/libterminal_nautilus_la-terminal-type-builtins.o -lnautilus-extension -lgtk-3 -lgdk-3 -latk-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 /usr/lib/x86_64-linux-gnu/libcairo-gobject.so -lpango-1.0 /usr/lib/x86_64-linux-gnu/libcairo.so -lgio-2.0 -lgobject-2.0 -lglib-2.0 -pthread -O2 -Wl,-z -Wl,relro -Wl,-z -Wl,defs -Wl,-O1 -Wl,--as-needed -pthread -Wl,-soname -Wl,libterminal-nautilus.so -Wl,-version-script -Wl,.libs/libterminal-nautilus.ver -o .libs/libterminal-nautilus.so
3365+.libs/libterminal_nautilus_la-terminal-client-utils.o: In function `terminal_client_get_fallback_startup_id':
3366+/tmp/buildd/gnome-terminal-3.11.3/src/terminal-client-utils.c:161: undefined reference to `XCreateWindow'
3367+/tmp/buildd/gnome-terminal-3.11.3/src/terminal-client-utils.c:172: undefined reference to `XInternAtom'
3368+/tmp/buildd/gnome-terminal-3.11.3/src/terminal-client-utils.c:174: undefined reference to `XInternAtom'
3369+/tmp/buildd/gnome-terminal-3.11.3/src/terminal-client-utils.c:178: undefined reference to `XChangeProperty'
3370+/tmp/buildd/gnome-terminal-3.11.3/src/terminal-client-utils.c:184: undefined reference to `XWindowEvent'
3371+/tmp/buildd/gnome-terminal-3.11.3/src/terminal-client-utils.c:189: undefined reference to `XDestroyWindow'
3372+collect2: error: ld returned 1 exit status
3373+
3374+
3375+Index: b/configure.ac
3376+===================================================================
3377+--- a/configure.ac
3378++++ b/configure.ac
3379+@@ -207,7 +207,8 @@
3380+ PKG_CHECK_MODULES([NAUTILUS],[
3381+ libnautilus-extension >= $NAUTILUS_REQUIRED
3382+ gio-2.0
3383+- gio-unix-2.0])
3384++ gio-unix-2.0
3385++ $PLATFORM_DEPS])
3386+
3387+ AC_ARG_WITH([nautilus-dir],
3388+ [AS_HELP_STRING([--with-nautilus-dir=PATH],[Nautilus extensions directory])],
3389
3390=== added file 'debian/patches/series'
3391--- debian/patches/series 1970-01-01 00:00:00 +0000
3392+++ debian/patches/series 2014-05-27 09:37:18 +0000
3393@@ -0,0 +1,7 @@
3394+0001-Restore-transparency.patch
3395+01_onlyshowin.patch
3396+10_kfreebsd-f_dupfd_cloexec.patch
3397+50_add_unity_quicklist.patch
3398+51_alternate_screen_scroll.patch
3399+52_support_apturl.patch
3400+nautilus-x11.patch
3401
3402=== added file 'debian/rules'
3403--- debian/rules 1970-01-01 00:00:00 +0000
3404+++ debian/rules 2014-05-27 09:37:18 +0000
3405@@ -0,0 +1,21 @@
3406+#!/usr/bin/make -f
3407+# -*- mode: makefile; coding: utf-8 -*-
3408+
3409+include /usr/share/cdbs/1/rules/autoreconf.mk
3410+include /usr/share/cdbs/1/rules/debhelper.mk
3411+include /usr/share/cdbs/1/rules/utils.mk
3412+include /usr/share/cdbs/1/class/gnome.mk
3413+include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk
3414+include /usr/share/gnome-pkg-tools/1/rules/gnome-version.mk
3415+-include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk
3416+
3417+LDFLAGS += -Wl,-z,defs -Wl,-O1 -Wl,--as-needed
3418+
3419+DEB_CONFIGURE_EXTRA_FLAGS += --enable-distro-packaging --disable-search-provider
3420+
3421+build/gnome-terminal::
3422+ /usr/bin/docbook-to-man debian/gnome-terminal.sgml > debian/gnome-terminal.1
3423+
3424+clean::
3425+ rm -f debian/gnome-terminal.1
3426+
3427
3428=== added directory 'debian/source'
3429=== added file 'debian/source/format'
3430--- debian/source/format 1970-01-01 00:00:00 +0000
3431+++ debian/source/format 2014-05-27 09:37:18 +0000
3432@@ -0,0 +1,1 @@
3433+3.0 (quilt)
3434
3435=== added file 'debian/watch'
3436--- debian/watch 1970-01-01 00:00:00 +0000
3437+++ debian/watch 2014-05-27 09:37:18 +0000
3438@@ -0,0 +1,3 @@
3439+version=3
3440+http://ftp.gnome.org/pub/GNOME/sources/gnome-terminal/([\d\.]+[02468])/ \
3441+ gnome-terminal-(.*)\.tar\.xz

Subscribers

People subscribed via source and target branches

to all changes:
to status/vote changes: