3
I Use This!
Activity Not Available

Commits : Listings

Analyzed about 1 year ago. based on code collected about 1 year ago.
Jan 18, 2023 — Jan 18, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Refactoring Transmit() called from VT100 or XTerm. All data to send from VT100 or XTerm to the host will be sent through the TerminalControl similarly to the keyboard input. It prevents problem of the simultaneous use of a socket by multiple threads, and it may helps improvements in the future. More... about 13 years ago
Refactoring Transmit() called from VT100 or XTerm. All data to send from VT100 or XTerm to the host will be sent through the TerminalControl similarly to the keyboard input. It prevents problem of the simultaneous use of a socket by multiple threads, and it may helps improvements in the future. More... about 13 years ago
Added comment. More... about 13 years ago
Added comment. More... about 13 years ago
Updated DEC special characters to more suitable characters. These characters are not affected by conversion to the private-use area, and are displayed in half-width (hankaku) using non-CJK font. More... about 13 years ago
Updated DEC special characters to more suitable characters. These characters are not affected by conversion to the private-use area, and are displayed in half-width (hankaku) using non-CJK font. More... about 13 years ago
Changed to use Unicode's private-use area for representing some characters that are displayed using CJK font. More... about 13 years ago
Changed to use Unicode's private-use area for representing some characters that are displayed using CJK font. More... about 13 years ago
Fixed PromptRecognizer. It fails to StringBuilder.Append() sometimes, especially in the case application-mode / non-application-mode are switched frequently. More... about 13 years ago
Fixed PromptRecognizer. It fails to StringBuilder.Append() sometimes, especially in the case application-mode / non-application-mode are switched frequently. More... about 13 years ago
Cleaning code. More... about 13 years ago
Cleaning code. More... about 13 years ago
Text property was removed from GLine. Now GLine's internal buffer is completely protected from outside. The accessibility of WIDECHAR_PAD has been changed to internal. More... about 13 years ago
Text property was removed from GLine. Now GLine's internal buffer is completely protected from outside. The accessibility of WIDECHAR_PAD has been changed to internal. More... about 13 years ago
Changed to use GLine.DisplayLength instead of access to GLine.Text. The purpose of this change is to avoid direct access to the internal buffer of a GLine. More... about 13 years ago
Changed to use GLine.DisplayLength instead of access to GLine.Text. The purpose of this change is to avoid direct access to the internal buffer of a GLine. More... about 13 years ago
Improvement of GLineManipulator.Export(). More... about 13 years ago
Improvement of GLineManipulator.Export(). More... about 13 years ago
Refactoring GLine. Previously, DisplayLength was calculated on demand. Now DisplayLength is calculated in the constructor, and is maintained by GLine itself. It removes some complexity. More... about 13 years ago
Refactoring GLine. Previously, DisplayLength was calculated on demand. Now DisplayLength is calculated in the constructor, and is maintained by GLine itself. It removes some complexity. More... about 13 years ago
Fixed line completion. More... about 13 years ago
Fixed line completion. More... about 13 years ago
Refactoring constrcuctor GLine.GLine(char[], GWord). A char array is not duplicated in the constructor anymore for the caller can use flexible. More... about 13 years ago
Refactoring constrcuctor GLine.GLine(char[], GWord). A char array is not duplicated in the constructor anymore for the caller can use flexible. More... about 13 years ago
Accessibility of GLine.GLine(char[], GWord) was changed to internal. In PoderosaLogViewerSession.cs, calling GLine.GLine(char[], GWord) was replaced with GLine.CreateSimpleGLine(). Currently GLine.GLine(char[], GWord) is only used by GLineManipulator. More... about 13 years ago
Accessibility of GLine.GLine(char[], GWord) was changed to internal. In PoderosaLogViewerSession.cs, calling GLine.GLine(char[], GWord) was replaced with GLine.CreateSimpleGLine(). Currently GLine.GLine(char[], GWord) is only used by GLineManipulator. More... about 13 years ago
Small refactoring of GWord. More... about 13 years ago
Small refactoring of GWord. More... about 13 years ago
Make a send-back text more safely. Speed may be little bit slower, but it would not be a problem. Another purpose of this change is to avoid direct access to the internal buffer of a GLine. More... about 13 years ago
Make a send-back text more safely. Speed may be little bit slower, but it would not be a problem. Another purpose of this change is to avoid direct access to the internal buffer of a GLine. More... about 13 years ago