| Summary: | foo.desktop: Terminal=true no longer works with konsole-16.08.1 | ||
|---|---|---|---|
| Product: | [Unmaintained] kio | Reporter: | Rex Dieter <rdieter> |
| Component: | desktop | Assignee: | Fredrik Höglund <fredrik> |
| Status: | RESOLVED FIXED | ||
| Severity: | major | CC: | arojas, phillb |
| Priority: | NOR | Keywords: | regression |
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Fedora RPMs | ||
| OS: | Linux | ||
| Latest Commit: | c784a879eaba0babc6274bc32e761772add3d4f8 | Version Fixed/Implemented In: | |
| Sentry Crash Report: | |||
|
Description
Rex Dieter
2016-09-17 13:59:03 UTC
See also downstream report, https://bugzilla.redhat.com/show_bug.cgi?id=1376981 Quick-n-dirty cli test: kioclient5 exec bc.desktop So, kio contains this code:
if (d->service.terminal()) {
KConfigGroup cg(KSharedConfig::openConfig(), "General");
QString terminal = cg.readPathEntry("TerminalApplication", QStringLiteral("konsole"));
if (terminal == QLatin1String("konsole")) {
if (!d->service.path().isEmpty()) {
terminal += " --workdir " + KShell::quoteArg(d->service.path());
}
terminal += QLatin1String(" -caption=%c %i %m");
}
And konsole seems to no longer support the -caption command line option,
$ konsole -caption="foo"
Unknown options: c, a.
And, that seems to be related to bug #366793 :( Already fixed in c784a879eaba0babc6274bc32e761772add3d4f8 Thanks! *** Bug 369371 has been marked as a duplicate of this bug. *** |