Commit Graph

394 Commits

Author SHA1 Message Date
Andrew Janke 0086b184bf KPty: Don't conditionalize chownpty existence on HAVE_OPENPTY
This fixes the build on Mac, which is the only place where HAVE_OPENPTY
is actually defined.
2019-03-05 22:59:08 +08:00
Andrew Janke 35464957c6 Replace Q_WS_MAC with Q_OS_MACOS for Qt 5 compatibility
The Q_WS_MAC Window Server macro is no longer defined in Qt 5: https://doc.qt.io/qt-5/macos-issues.html#compile-time-flags.
2019-03-05 22:44:45 +08:00
Alf Gaida 456e356809 Point release qtermwidget 0.14.1
* Bumped version to 0.14.1
* Only translations are changed.
2019-02-25 23:13:12 +01:00
Sérgio Marques 5a9a575d04 Translated using Weblate (Portuguese)
Currently translated at 100.0% (21 of 21 strings)

Translation: LXQt/QTermWidget
Translate-URL: https://weblate.lxqt.org/projects/lxqt/qtermwidget/pt/
2019-02-25 21:25:53 +01:00
eltonfabricio10 d59fabcfdd Translated using Weblate (Portuguese)
Currently translated at 100.0% (21 of 21 strings)

Translation: LXQt/QTermWidget
Translate-URL: https://weblate.lxqt.org/projects/lxqt/qtermwidget/pt/
2019-02-02 19:16:31 +01:00
Ayhan YALÇINSOY PhD. (Dr.) edf61c9877 Translated using Weblate (Turkish)
Currently translated at 100.0% (21 of 21 strings)

Translation: LXQt/QTermWidget
Translate-URL: https://weblate.lxqt.org/projects/lxqt/qtermwidget/tr/
2019-02-02 19:16:31 +01:00
Ayhan YALÇINSOY PhD. (Dr.) 4d11b7bdef Translated using Weblate (Turkish)
Currently translated at 100,0% (21 of 21 strings)

Translation: LXQt/QTermWidget
Translate-URL: https://weblate.lxqt.org/projects/lxqt/qtermwidget/tr/
2019-02-02 19:16:31 +01:00
Alf Gaida 2730ab589e Changelog for 0.14.0 2019-01-24 22:57:59 +01:00
Pavel Shlyak 3da204b68d Cleanup KeyboardTranslator.cpp
The value is assigned twice. Seems to be unnecessary :)
2019-01-20 14:17:43 +01:00
Chih-Hsuan Yen b09e1d4882 Revert "Rework on memory management of filter-related objects"
This reverts commit 0154e036c7.
2019-01-14 13:17:00 +08:00
Ettore Atalan f475050f38 Translated using Weblate (German)
Currently translated at 100.0% (21 of 21 strings)

Translation: LXQt/QTermWidget
Translate-URL: https://weblate.lxqt.org/projects/lxqt/qtermwidget/de/
2019-01-01 17:02:03 +01:00
Einar Mostad 77f700c5fb Translated using Weblate (Norwegian Bokmål)
Currently translated at 100.0% (21 of 21 strings)

Translation: LXQt/QTermWidget
Translate-URL: https://weblate.lxqt.org/projects/lxqt/qtermwidget/nb_NO/
2018-12-27 17:03:41 +08:00
Alf Gaida fa2b2b3437 translation update 2018-12-10 22:32:26 +01:00
Shlyak Pavel c1e94c94df Remove unnecessary checks 2018-12-10 01:18:54 +01:00
Alf Gaida daa6dd3541 Provide minimum versions 2018-11-30 21:38:00 +01:00
Miguel A. Bouzada 1cffced5a2 Translated using Weblate (Galician)
Currently translated at 100.0% (21 of 21 strings)

Translation: LXQt/QTermWidget
Translate-URL: https://weblate.lxqt.org/projects/lxqt/qtermwidget/gl/
2018-11-18 20:32:27 +01:00
Miguel A. Bouzada 29a5181bc4 Added translation using Weblate (Galician) 2018-11-18 20:32:27 +01:00
Alf Gaida 1bb95711bb Set cmake_minimum_required(VERSION 3.1.0 FATAL_ERROR)
Removed CMAKE_BUILD_TYPE
2018-11-18 20:11:21 +01:00
Alf Gaida eb0b95ee94 Bump minor version to 14
Nice big bump to prevent conflicts with translations that are former built from
lxqt-l10n and have version 0.13.x
2018-11-12 22:53:14 +01:00
Tsu Jan 13fe22aac4 Correct deleting of HotSpot list items
Fixes https://github.com/lxqt/qterminal/issues/504
2018-11-06 23:07:12 +01:00
Einar Mostad 6fb3b06575 Added translation using Weblate (Norwegian Bokmål) 2018-10-25 00:51:20 +02:00
Alf Gaida b17add8fc0 Clarify the licenses used in qtermwidget and added the missed root licenses
Removed pyqt/test.py - we really don't want a single GPL3 file in
fixes #223
2018-10-16 00:56:17 +02:00
Denis Rouzaud 54bcaddab7 fix local variable will be copied despite being returned by name (#221)
* fix local variable will be copied despite being returned by name

error when building with clang 7

* Fix error return-std-move

std::move should not be used here because
it prevents RVO (copy elision) and it's
considered an anti-pattern.

To fix the original warning the returned
type must match the declared return
type or copy elision will not be possible
(and the warning will be triggered).

* Update ColorScheme.cpp
2018-10-15 11:30:40 +08:00
Tsu Jan 871d069b8b Fix visual glitches in search-bar
Closes https://github.com/lxqt/qterminal/issues/249
2018-10-09 22:50:26 +02:00
Chih-Hsuan Yen 8374bf9d31 Redraw cursor after cursor type changed (closes #161) 2018-10-09 22:49:27 +02:00
Chih-Hsuan Yen b5da2e2dac Make Backspace behaves the same as xterm
Fixes https://github.com/lxqt/qtermwidget/issues/1

Notes about other terminals:

Konsole:
^? for backspace and ^H for ctrl+backspace

Gnome Terminal (VTE3):
- ^? for backspace and ^H for ctrl+backspace by default, and
- ^H for backspace and ^? for ctrl+backspace if the option
  "Backspace key generates:" is set to "Control-H"
2018-09-30 17:39:05 +02:00
Chih-Hsuan Yen b8df480d60 Drop the ability to bundle kb-layouts and colorschemes 2018-09-30 01:25:44 +02:00
Chih-Hsuan Yen ec25b71ea1 Fix handling of ST (String Terminator) for OSC (Operating System Commands)
This is an improvement over a combination of

https://github.com/KDE/konsole/commit/7a41b73b46d1f774e82eb64a8b66920e411ccd3c
https://github.com/KDE/konsole/commit/d547d1d177bd0582df95a5d50dc3b37e0636748e

Fixes https://github.com/lxqt/qtermwidget/issues/163
Fixes https://github.com/lxqt/qtermwidget/issues/212
2018-09-30 01:22:31 +02:00
Tsu Jan 1e7e494229 Fixed link mouseover after recent changes
Closes https://github.com/lxqt/qtermwidget/issues/213, closes https://github.com/lxqt/qtermwidget/issues/209, supercedes https://github.com/lxqt/qtermwidget/pull/211

Also, @agaida's fix for an old issue in link mouseover is included.
2018-09-23 00:52:53 +02:00
Alf Gaida 6d1be93f68 Updated translations with lxqt-transupdate 2018-09-02 23:20:23 +02:00
Ecmel B. CANLIER 2b25bec3ad Fix getMargin 2018-09-02 17:31:12 +08:00
Ecmel B. CANLIER 8eba2e2d3b Implement methods to change padding 2018-09-02 17:31:12 +08:00
Ecmel B. CANLIER e331bd4c67 Make padding configurable 2018-09-02 17:31:12 +08:00
Ecmel B. CANLIER ac6581e24f Make margin variables non-const to allow modification 2018-09-02 17:31:12 +08:00
titiracoon 540c00ffc3 Translated using Weblate (French)
Currently translated at 100.0% (21 of 21 strings)

Translation: LXQt/QTermWidget
Translate-URL: https://weblate.lxqt.org/projects/lxqt/qtermwidget/fr/
2018-08-23 18:14:58 +02:00
Alf Gaida 159a080977 Removed QUIET from find_package 2018-08-16 21:35:10 +02:00
Rikard Falkeborn 1dbbe6ee27 Mark some functions const 2018-08-12 10:39:35 +08:00
Chih-Hsuan Yen 79407f6bba use openpty() on mac
This commit includes a 10-year-old fix from upstream kpty
https://github.com/KDE/kdelibs/commit/fff22a70fc636eaea3a1443d66641067df01fd28
2018-08-09 21:58:51 +02:00
Luís Pereira c6880070e9 Don't use automatic string conversions
* Disables automatic conversions from 8-bit strings (char *) to unicode
  QStrings.
* Disables automatic conversion from QString to 8-bit strings (char *).
* Disables automatic conversions from QByteArray to const char * or const
  void *.
* Disables automatic conversions from QString (or char *) to QUrl.
* Use QStringBuilder for more efficient string creation.

It make us aware of string and encoding conversions.
2018-08-05 22:09:57 +08:00
Simon Quigley e3adf1abe2 Added translation using Weblate (Welsh) 2018-08-02 16:27:26 +02:00
Simon Quigley 97dea94099 Merge pull request #198 from FlingeR/master
OpenBSD special case.
2018-07-26 11:30:38 -05:00
Elias M. Mariani b18f71aa93 OpenBSD special case.
#define HAVE_LOGIN
#define HAVE_UTIL_H
2018-07-25 17:02:58 -03:00
p-bo ce7c76344d Translated using Weblate (Czech)
Currently translated at 100.0% (21 of 21 strings)

Translation: LXQt/QTermWidget
Translate-URL: https://weblate.lxqt.org/projects/lxqt/qtermwidget/cs/
2018-07-23 12:37:22 +08:00
p-bo f30594db41 Added translation using Weblate (Čeština) 2018-07-23 00:12:21 +08:00
Tsu Jan 3838728c22 Suppress compilation warnings 2018-07-16 17:24:13 +02:00
Simon Quigley 5d789ca056 Merge pull request #194 from HelixBot/weblate-lxqt-qtermwidget
Update from Weblate.
2018-07-09 15:20:42 -05:00
Alfredo Ramos 8957d5b70a Translated using Weblate (Spanish)
Currently translated at 100.0% (21 of 21 strings)

Translation: LXQt/QTermWidget
Translate-URL: https://weblate.lxqt.org/projects/lxqt/qtermwidget/es/
2018-07-09 16:08:09 +00:00
Alf Gaida eecd71072a Added translation promo 2018-07-06 14:45:27 +08:00
micrococo 579ffe0c20 Translated using Weblate (Spanish)
Currently translated at 95.2% (20 of 21 strings)

Translation: LXQt/QTermWidget
Translate-URL: https://weblate.lxqt.org/projects/lxqt/qtermwidget/es/
2018-06-30 01:45:12 +02:00
Luís Pereira af879b7bf4 Removes local compile definition
QT_NO_FOREACH is already part of LXQtCompilerSettings CMake module.
2018-06-29 21:49:06 +02:00