Community Packages

Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines

Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.

REPEAT: Do NOT report bugs for outdated packages!
Tasklist

FS#34928 - [gnome-do-plugins] GNOME Terminal plugin fail to launch terminal by profile name

Attached to Project: Community Packages
Opened by Yuanjie Huang (yuanjie.huang) - Wednesday, 24 April 2013, 06:52 GMT
Last edited by Balló György (City-busz) - Saturday, 18 May 2013, 02:06 GMT
Task Type Bug Report
Category Upstream Bugs
Status Closed
Assigned To Balló György (City-busz)
Architecture All
Severity Low
Priority Normal
Reported Version
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 1
Private No

Details

Description:
GNOME Terminal plugin fail to launch GNOME Terminal 3.8.1 by profile name.

Additional info:
gnome-terminal 3.8.1-1

Steps to reproduce:
0. update GNOME Terminal to 3.8.1 from official repo.
1. create a profile with any name, for example, 'profile_foo'
2. enable GNOME Terminal plugin in GNOME Do
3. launch GNOME Do and type 'profile_foo', press Enter key
4. GNOME Terminal is not launched

The bug was caused by GNOME Terminal 3.8's changes on command line options. '--window-with-profile=' is no longer used.
We just need to modify a line to fix this:

@@ -73,7 +73,7 @@ namespace GNOME.Terminal
public void Open ()
{
try {
- string args = string.Format ("--window-with-profile=\"{0}\"", Name);
+ string args = string.Format ("--window --profile=\"{0}\"", Name);
Process.Start ("gnome-terminal", args);
} catch (Exception e) {
Log<ProfileItem>
This task depends upon

Closed by  Balló György (City-busz)
Saturday, 18 May 2013, 02:06 GMT
Reason for closing:  Fixed
Additional comments about closing:  Fixed in gnome-terminal 3.8.2-1.
Comment by Balló György (City-busz) - Wednesday, 15 May 2013, 06:14 GMT
I think it's fixed in gnome-terminal 3.8.2:
https://git.gnome.org/browse/gnome-terminal/commit/?h=gnome-3-8&id=274c4a77ac1098e5218085c180b4b290f9c125ac

Please test the gnome-terminal 3.8.2-1 package.

Loading...