summaryrefslogtreecommitdiff
path: root/Applications/Terminal
AgeCommit message (Expand)Author
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-09-05Terminal: Add some basic emoji supportSergey Bugaev
2019-09-05Terminal: Added GCommonActionsrhin123
2019-09-02Terminal: Use GAboutDialog :^)Andreas Kling
2019-09-02Terminal: Add -e (execute) command line optionConrad Pankoff
2019-08-29Terminal: Use a gear icon for the "Settings" menuAndreas Kling
2019-08-25Terminal: Fixed bounding issue when clearing the selection on typerhin123
2019-08-25Terminal: Clear selection if we type behind/inside itrhin123
2019-08-22Terminal: Allow selecting words by double-clicking themAndreas Kling
2019-08-20Terminal: Allow scrolling through terminal history with the mouse wheelAndreas Kling
2019-08-19Terminal: Implement basic history scrollbackAndreas Kling
2019-08-15Terminal: Mark window as alpha-less when starting up with 100% opacityAndreas Kling
2019-08-13Terminal: Only repaint the lines that actually changedAndreas Kling
2019-08-13Terminal: Clip to the paint event rectAndreas Kling
2019-08-13Terminal: Rename Terminal => TerminalWidgetAndreas Kling
2019-08-13LibVT: Rename VT::BufferPosition to VT::Position and move to own fileAndreas Kling
2019-08-12LibVT: Factor out terminal emulation from Terminal to make it reusableAndreas Kling
2019-08-06Terminal: Fix trying to free() a stack variableSergey Bugaev
2019-08-04Terminal: Paint bold text with a bold font.Andreas Kling
2019-08-03LibCore: Make get_current_user_home_path() return String & close passwdAndreas Kling
2019-07-28WindowServer+LibGUI: Pass window icons as shared buffers rather than paths.Andreas Kling
2019-07-25LibCore: Introduce a C_OBJECT macro.Andreas Kling
2019-07-24AK: Make HashMap::get(Key) return an Optional<Value>.Andreas Kling
2019-07-24Terminal: Convert Vector<OwnPtr> to NonnullOwnPtrVector.Andreas Kling
2019-07-23LibGUI: Get rid of GWindow::should_exit_event_loop_on_close().Andreas Kling
2019-07-20GWidget: Add set_preferred_size(width, height) overload.Andreas Kling
2019-07-20GSlider: Add support for vertical sliders.Andreas Kling
2019-07-18LibDraw: Introduce (formerly known as SharedGraphics.)Andreas Kling
2019-07-08Terminal: Try to preserve line contents when resizing the terminal window.Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-07-01Terminal: Track which character cells have had something printed in them.Andreas Kling
2019-06-30Terminal: Unbreak single-line text selection.Andreas Kling
2019-06-30Meta: Removed all gitignore in the source tree only keeping the root oneVAN BOSSUYT Nicolas
2019-06-30GUI: Use Win2K-like "warm gray" color instead of the older colder gray.Andreas Kling
2019-06-28Terminal: Make it so typing resets the cursor blink timer.Andreas Kling
2019-06-28Terminal: Don't write erroneous characters to PTY when modifiers pressed.Andreas Kling
2019-06-28Terminal: Changex internal opacity representation to byte instead of float.Andreas Kling
2019-06-25Move common Application build steps into their own Makefile.commonLawrence Manning
2019-06-23Terminal: Don't compute buffer positions outside the possible area.Andreas Kling
2019-06-23Terminal: Add basic mouse selection with copy and paste.Andreas Kling
2019-06-22Terminal: Fix compiler warnings.Andreas Kling
2019-06-21AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.Andreas Kling
2019-06-12Terminal: Add support for DCH ('P' final)Andreas Kling
2019-06-11Terminal: Add support for REP ('b' final)Andreas Kling
2019-06-07Meta: Tweak .clang-format to not wrap braces after enums.Andreas Kling
2019-06-07Applications: Run clang-format on everything.Andreas Kling
2019-06-07Terminal: Use the visual bell by default.Andreas Kling
2019-06-06Terminal: Reallocate kept lines when resizing the terminal.Andreas Kling
2019-06-06Terminal: Store horizontal tabs in a Vector.Andreas Kling
2019-06-03Terminal: Use Vectors and OwnPtrs for Terminal lines. Adjust scrollChristopher Dumas