-
Notifications
You must be signed in to change notification settings - Fork 254
/
CHANGELOG
475 lines (444 loc) · 20.4 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
qtermwidget-2.1.0 / 2024-11-05
===============================
* Silenced old compilation warnings.
* Updated translation and bumped the version.
qtermwidget-2.0.1 / 2024-06-27
===============================
* Fixed visual artifacts due to a mistake about conversion to `std::wstring` in Qt6 port.
qtermwidget-2.0.0 / 2024-05-17
===============================
* Ported to Qt6.
* Used "new" signal/slot syntax.
* Dropped `#define` for bulk timeouts.
* Removed KDE `#include`s.
* Dropped XKB related conditional compilation.
* Assigned a parent to bulkTimers.
* Removed unused Screen artifacts.
* Added shortcuts for appscreen `default.keytab`.
* Exposed wordCharacters property to QTermWidget API.
* Fixed cursor positioning issues.
* Removed `ChildProcessSetup` and directly called `onsetupChildProcess`.
* Used PyQt6.
* Fixed deprecated function warning.
* Removed anchored pattern for email and url.
* Adapted to Qt6 `QProcess::setChildProcessModifier()`.
* Used std library find algorithm.
* Fixed comparison of pointer addition with NULL.
qtermwidget-1.4.0 / 2023-11-05
===============================
* TERM env variable is set to xterm-256color when not set with QTermWidget::setEnvironment().
* Add getForegroundProcessId() function to QTermWidget class (to allow terminal apps to check if the user has started a process in the shell and alert them).
* Ported away from deprecated Qt::MidButton.
* Added missing initialization of some variables.
* Fixed mixing of bool and int.
* Prefer ranged loop for over `while`.
* Backported a kcoreaddons commit (1fed7e861f73a6ecbed79be4625afa52a5eaaf3b).
* Replaced old-style cast with static_cast.
* Properly initialize KProcess members.
* Use Q_DECLARE_PRIVATE_D instead of custom Q_DECLARE_PRIVATE_MI (backport of kpty commit 3ef0d7d9ed980513fb36265e4d73fd79c07d5131).
* Use class, not struct, for KPtyDevicePrivate for consistency (backport of kpty commit ad5cf9d348c13d3d27591a66fab9ccf20603daf8).
* Use std::unique_ptr to manage the pimpl object.
* Backported kpty commits 3526c09cae186bbba32bf3841cab5aa9d24d98b5, ae866fa6063c8d09ff354dc16f3fc8240676c64d and 982bb9e9fc715faae9ba440593ed0e74b8884888.
* Use pointer to member function connect/disconnect signal/slot syntax.
* Added `const` to some methods.
* fixed deprecation warnings.
* Mark assignment operator as deleted due to existence of copy constructor.
* Removed useless `sizeof()` from `qtermwidget/BlockArray.h`.
* Added Falcon colorscheme.
* Cleaner builds.
qtermwidget-1.3.0 / 2023-04-15
===============================
* Fixed a problem in switching the color scheme between dark and light.
* Prevented a crash on splitting the terminal under `kwin_wayland`
qtermwidget-1.2.0 / 2022-11-05
===============================
* Enabled Bidi rendering by default.
* Made text DND follow the settings for newline trimming and multiline prompt.
* Allow `QTermWidget` to be used as a Qt Plugin.
qtermwidget-1.1.0 / 2022-04-15
===============================
* Handled the zero history size.
* Removed an unused variable.
* Corrected some code indentations.
* Added API documentation and followed naming convention.
* Return focus to terminal on closing search bar.
* Moved to SIP 5.x wth PyQt.
* Added contexts to some lambda connections.
qtermwidget-1.0.0 / 2021-11-04
===============================
* Bumped minimum required Qt version to 5.15.
* Fixed crash under (Plasma) Wayland on opening tab and splitting.
* Use "empty()" to check for container emptiness.
* Made some member functions const.
* Quote drag-and-drop file names.
* Backported CNL and CPL support from Konsole.
* Use QRandomGenerator instead of qrand().
* Silenced some compilation warnings.
* Basic EditorConfig definition.
qtermwidget-0.17.0 / 2021-04-15
===============================
* Drop support for KDE3 color scheme formats.
* Some code cleanup and modernization.
* Added a method to disable bracketed paste mode.
* Added an example for PyQt5.
* Improve "Undecodable sequence" warnings.
* Properly implement the "Action after paste" feature.
* Fix execution after paste when Ctrl is hold.
* Workaround an issue with glibc 2.33 on old Docker engines.
* Added modes for background image. How background images are drawn is changed and manual reconfiguration is needed. See docs/configuration.md for more details.
qtermwidget-0.16.1 / 2020-11-14
===============================
* Bumped version to 0.16.1, for a point release of qterminal.
qtermwidget-0.16.0 / 2020-11-01
===============================
* Use qAsConst.
* Don't search application dir for keyboard and scheme data.
* Use Q_EMIT to call signals, instead of the emit keyword.
* Dropped the deprecated class QLinkedList.
* Don't use 0/nullptr to initialize QFlags.
* Fixed ColorEntry copy operator.
* Disabled the use of copy constructors and assignment operators.
* Check for successful ioctl() calls by testing that the call did not return -1.
* Fix find_package() developer warning in cmake.
* Use const references wherever possible.
* Handle keyboard commands properly.
qtermwidget-0.15.0 / 2020-04-24
===============================
* Bumped version to 0.15.0.
* Replaced Q_WS_MAC with Q_OS_MACOS for Qt5 compatibility.
* KPty: Don't conditionalize chownpty existence on HAVE_OPENPTY.
* cmake: set CMAKE_BUILD_WITH_INSTALL_NAME_DIR ON for macOS.
* Fixed the default font on macOS.
* pyqt: Fixes deprecation warning (CMP0002).
* Fixed the PyQt5 binding with Qt ≥ 5.11.
* Swap Qt's ControlModifier and MetaModifier on macOS.
* C++11 code updates.
* Use braced initializer list in returns.
* Fixed the memory access violation in TerminalDisplay's method `getCharacterPosition`.
* Completed the support for transient scrollbars.
* Added `saveHistory` to QTermWidget.
* Use vanilla Qt instead of patched one.
* Don't set the selection clipboard if it's unsupported.
* Announce truecolor support via COLORTERM.
* Fixed numpad handling and added entries for numpad 5.
* Allow to disable drawing line chars.
* Use QRectF for cursor drawing and fix artifacts in hidpi.
* Fixed compilation on NetBSD.
* Added sendKeyEvent() API.
* Fixed flickering on font change.
* Select all text when opening search bar.
* Removed some debug outputs.
* Removed (duplicated) string casts definitions.
* Removed obsolete qCopy.
* Fix SearchBar light text over white background with dark themes.
* pyqt: also check for sip 5.x path.
* Prevented a c++11 range-loop might detach Qt container.
* Dropped the deprecated QString method `sprintf()`.
* Avoid buffer overflows exploits.
* Fixed build with LLVM/clang.
* Explicitly mark exported classes.
* Fixed QCharRef's deprecated behavior.
* Correctly initialize sigsets.
qtermwidget-0.14.1 / 2019-02-25
===============================
* Bumped version to 0.14.1
* Only translations was changed.
qtermwidget-0.14.0 / 2019-01-25
===============================
* Bumped version to 0.14.0
The big bump was needed to prevent conflicts with translations
that were former built out of lxqt-l10n and have version 0.13.0
* Clarify the licenses used in qtermwidget and added the missed root licenses
* Implementation fixes:
- kpty: use openpty() on mac
- kpty: make it work on OpenBSD
- kptyprocess: ensure .bash_history is correctly written out
- kb-layouts: Make Backspace behaves the same as xterm
- tools: Drop the ability to bundle kb-layouts and colorschemes
- SearchBar: Fix visual glitches in search-bar
- TerminalDisplay: Fixed link mouseover after recent changes
- TerminalDisplay: Redraw cursor after cursor type changed
- Vt102Emulation: Fix handling of ST (String Terminator) for OSC (Operating System Commands)
- qterminal: Correct deleting of HotSpot list items
- qterminal: Removed unnecessary checks
- ColorScheme: Fixed local variable will be copied despite being returned by name
- ColorScheme: Fixed error return-std-move
- Removed unnecessary checks
- Suppressed compilation warnings
- Don't use automatic string conversions
- Marked some functions const
- Implemented terminal margins
* Improved cmake scripting
- Set cmake_minimum_required to 3.1.0
- Removed locale compile definitions
- Removed QUIET from find_package
* Moved translations from lxqt-l10n back to qtermwidget
- Removed obsolete translation functionality
- Added translation promo in README.md
* Translation updates
qtermwidget-0.9.0 / 2018-05-21
==============================
* Bumped minor version to 9
* Take transient scrollbars into account
* CMake: Prevent in-source builds
* Refactor and fixes Python binding
* kptyprocess: Try to terminate the shell process
* New color scheme: Ubuntu inspired
* Fixed some github paths in uris
* Add a comment for potential future breakage
* Use wstring in TerminalCharacterDecoder for UCS-4 compatibility
* Support UTF-32 characters correctly
* Fix "bold and intensive" colors
* New color scheme: Tango (#167)
* Finish SGR mouse protocol (1006)
* Fix build of example with latest lxqt-build-tools
* Expose bracket text function
* Drop Qt foreach.
* Revert deletions in .sip file
* fix python bindings
* Expose terminal size hint API
* Remove class name
* Return something
* Expose bidi option
* Add an example for remote terminal
* Makes the use of libutempter optional
* Fix behavior of scroll up (SU)
* Install cmake files in LIBDIR as they are architecture dependent
* Check if utempter.h header exists (mainly for FreeBSD)
* Need lxqt-build-tools 0.4.0
qtermwidget-0.8.0 / 2017-10-21
==================
* Release 0.8.0: Update changelog
* FIX: #46 fix vertical font truncation
* bump versions
* Really fallback to /bin/sh when $SHELL is missing or invalid
* README: don't recommend building from source
* Improve README
* Don't export github templates
* Support REP escape sequence defined in ECMA-48, section 8.3.103
* Fix build issue related to utmpx in Mac OSX Sierra
* Remove the deprecation notice
* Handle DECSCUSR signals
* Copied issue template
* Update building instructions
* Require Qt 5.6+
* This commit allows the consumer of qtermwidget to capture the (#111)
* Allow the terminal display to be smaller than the size hint (#123)
* Backport Vt102 emulation fixes (#113)
* Backport the default.keytab from Konsole
* Fixes (#122)
* Updated README, Added support for PyQT 5.7
* Fix memory leak in hotspot (URLs & emails) detection
* Adds superbuild support
* Use target_compile_definitions() instead of add_definitions()
* Update find_package() documentation
* Use the lxqt_create_pkgconfig_file
* Improve lxqt_translate_ts() use
* Adds COMPONENT to the install files
* Renames test app to example. Make it work
* Drop include_directories() for in tree dirs
* Use the CMake Targets way
* Pack Utf8Proc stuff
* Adds export header
* Use LXQtCompilerSettings
* Packs compile definitions
* Adds package version file
* Removes Qt4 stuff
* Add translation mechanism
* Use const iterators when possible.
* Enable strict iterators for debug builds
* TerminalDisplay: Make resizing "Size" translatable
* Exposes receivedData signal to users of QTermWidget
* Exposes sessions autoClose property to QTermWidget
qtermwidget-0.7.1 / 2016-12-21
==================
* Release 0.7.1: Update changelog
* Bump patch version (#105)
* Added a modified Breeze color scheme (#104)
* Accept hex color strings as well (#101)
* Remove the stale lib/README (#102)
* Implement background images (#95)
* Implement other BOX DRAWING characters (#98)
* Preparations for context menu actions on URLs (#97)
* Drop the ancient wcwidth impl. and use utf8proc if possible (#99)
* Remove widget size checks in setVTFont() (#86)
* Delete unused tooltip code (#81)
* Fix size of the array passed to memset() (#79)
* Remove cpack (#93)
qtermwidget-0.7.0 / 2016-09-24
==================
* Release 0.7.0: Add changelog
* Bump version to 0.7.0 (#92)
* Add Solarized Color Schemes
* Update README.md
* qtermwidget: Unify title & icon propagation
* lib: Fix FTBFS (struct vs. class mismatch)
* Add 'const' decorators
* Expose titleChanged() signal
* Fix building instructions
* cmake support changes
* Make addCustomColorSchemeDir() static and check for duplicates
* Address review comments
* Allow app to add custom color scheme locations
* Avoid enums duplication
* Add support for setting keyboard cursor shape
* Remove assignment to self
* Backport konsole changes to fix memory leaks
* Remove __FILE__ macros
* Replace assert() with Q_ASSERT()
* Fix ASan error about delete size mismatch
* Add support for GNU/Hurd to kpty.cpp.
* fixes kfreebsd builds on debian and derivatives
* Fix indenations (misleading-indentation warning)
* Remove Q_DECL_OVERRIDE macros
* typo Higlight
* Remove noisy qDebugs
* Bracketed paste mode implementation
* Use function setWorldTranfer for Qpainter instead of setWorldMatrix
* Modify treatment drawing double width character
* pyqt5 bindings
* pyqt5 bindings
* Avoid checking uninitialized member + simplify condition
* Use markdown for README and improve it a bit
* Remove support for Qt <= 5.4
* Remove Designer plugin
* Fix LICENSE text and name
* Remove Changelog
* Remove empty TODO file
* Remove PyQt4 bindings
* Sort out terminal resizing
* Rebase Vt102Emulation to Konsole
* Enable terminal resizing from the emulator
* Clean up trailing whitespaces
* implemented start TTY for external recipient;
* Fix: typo in TerminalDisplay
* add method for get pty slave fd;
* add method for get pty slave fd;
* Use GNUInstallDirs in CMakeLists.txt to stop hardcoding paths
* Set the '_notifiedActivity' flag early
* Also expose signals and slots to pyqt
* Get/set selection end in python bindings
* Avoid calling winId() on Qt5.
* Fix TerminalDisplay::getCharacterPosition for proportional fonts
* Handle proportional fonts a bit better
* Expose more functionality through the python bindings (#23)
* Allow stopping test.py with ctrl-C
* Fix 'getSelectionEnd'
* Make whitespace consistent (tabs->spaces)
* Fix python binding compile errors #23
* Add event to notify the application that the shell application uses mouse.
* Change mouseMarks only when needed. This might be useful if an application wants to be notified of the event.
* Prevents deleting the last line when resizing.
qtermwidget-0.6.0 / 2014-10-21
==================
* Release 0.6.0
* Update AUTHORS
* Update INSTALL instructions
* CMakeLists.txt cleanup
* osx: link fixes
* fixed #57 Linux emulation does not seem to support Ctrl+Arrows (warning: I have no clue what I did...)
* Fix Qt4 compilation
* qterminal #64 No drag & drop support
* fixed qterminal #71 qt5 version ignoring page up / down
* Fixed a typo in CMakeLists.txt.
qtermwidget-0.5.1 / 2014-07-14
==================
* fixed 'make dist'; version bump
* Url activation & filters #21
* Proxy activity/silence methods to Session in QTermWidget.
* Emit activity() and silence() signals instead of KNotification.
* Support bells.
* Support bells.
* Added QTermWidget::urlActivated(QUrl) signal.
* Emit UrlFilter::activated() instead of QDesktopServices::openUrl().
* Derive Filter from QObject.
* Add UrlFilter.
* Activate link filters on ctrl+click.
* Update filters on resize and screen events.
* Const-correctness for QTermWidget API.
* Load arbitrary schemes by path via setColorScheme().
* ColorSchemeManager::loadCustomColorScheme(const QString& path).
* Unified schemeName() usage.
* fixed #17 lib/ShellCommand.cpp:66: possible =/== mixup
* Delete CMakeLists.txt.user
* new API selectedText()
* new API methods (thanks to William Brumley)
* fixed #11 compile against Qt 5 (Qt4 and Qt5 supported and waguely tested)
* build simplified: qtermwidget is versioned (libqtermwidget4 for Qt4, 5 for Qt5...). Better cmake support.
* fixed broken API for sendText() - const missing
* mail address change
* Current Working Directory for linux. Part of #8. More implementations welcomed...
* Add a method for get working directory in class QTermWidget
* Fix missing cleanup for temporary history files
* a potential improvement for #9 font fractional pixels causes spacing errors
* fix #2 update various documentations for debian packaging
* fix #10 Update FSF address
qtermwidget-0.4.0 / 2013-04-16
==================
* readme updated
* Added pasteSelection-slot and corrected two nonsense comments
* qt/embedded doesn't ship with a Monospace font (and it won't use system fonts even if they exist). Using 'fixed' instead works fine
* Without this, the terminal display area will permanently lose focus when consoleq's Find dialog is called up.
* This is only needed when using Qt/E built for DirectFB display. DirectFB blocks SIGINT and some other signals, so any terminal app (be it Qt or otherwise) must call sigprocmask() to unblock them. Without this, ^C doesn't work.
* The control and tab keys don't work in Qt/E. This fixes it, but maybe not in the most elegant way. The trouble seems to be that _codec->fromUnicode(event->text()) doesn't handle control characters in qt-embedded.
* Fix resize label
* Search code cleanup
* Change searchbar background color to red(ish) when no match found
* Fix search, find-next when selection is one character long
* Hotkeys for search: Return->find-next, Shift-Return->find-previous, Escape->hide searchbar
* Added search functionality
* Add zoom. Add choice action after paste clipboard
* Add zoom. Add choice action after paste clipboard
* Add zoom. Add choice action after paste clipboard
* Add zoom. Add choice action after paste clipboard
* Add zoom. Add choice action after paste clipboard
* Add zoom. Add choice action after paste clipboard
* Add zoom. Add choice action after paste clipboard
* Add zoom. Add choice action after paste clipboard
* Add zoom. Add choice action after paste clipboard
* Fix logical error
* Add zoom. Add choice action after paste clipboard
* Add zoom. Add choice action after paste clipboard
* Add Shift+KeyEnd and Shift+KeyHome to go line 0 and line end. No move screenwindow when copy and paste with keyboard
* fix for text drawing in qt>=4.8,x
* constructor for Qt Designer
* test commit
* clear() slot implemented
* fix the scroll at the end again
* The escape key is always needed for terminal programs like vim.
* Add resource files and the appropriate paths to enable bundling of color schemes and keyboard layouts into the actual executable.
* Add a define which will be used to bundle the color schemes and keyboard layouts as resource files with the executable itself instead of putting them on disk.
* scrollToEnd() method provided to trigger 'snapping' the terminal to cursor tracked position (typically the extreme value of the scrollbar, or the 'end') Some signal-fu particular to keyPressEvent(QKeyEvent *) done to make the above usable, no existing dependent implementations should be disturbed by this.
* revert workaround for key on end
* scroll to bottom on input
* scrollToEnd() method provided to trigger 'snapping' the terminal to cursor tracked position (typically the extreme value of the scrollbar, or the 'end') Some signal-fu particular to keyPressEvent(QKeyEvent *) done to make the above usable, no existing dependent implementations should be disturbed by this.
* improved sample app for testing
* macosx compile fix
* arguments work correctly for custom shells too
* lib has to be built first in any case
* merge changes from the experimental "bundle" repository
* fix for kb-layout location on mac (mainly)
* rpm builds
* mac universal build helper
* build cleanup; make dist; various readmes updated
* make availableKeyBindings static
* transparency support
* font display fix on mac (widths in int)
* qt designer plugin
* correct lib ID for mac
* remove the KDE legacy code
* code reformatted after resync
* display stuff synced from konsole again to improve color scheme handling
* focus in/out signals
* correct shell detection (BSD, Christopher VdoP)
* library location on BSD
* patches to build on BSD by Christopher VdoP
* K&R formatting
* K&R formatting
* merge with qscite
* fixed KB finding + sort
* key layouts can be read and provided to widget
* install keyboard bindings; handle KB in src code; allow to get and set KB
* fix for includes and 64bit builds
* port to macosx
* initial import