Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #2305. Improves the handling of escape sequence. #2375

Merged
merged 43 commits into from
Feb 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
2c3c396
Changed ansi esc sequence used on exit.
tig Jan 1, 2023
7dec9f7
Changed ansi esc sequence used on exit.
tig Jan 1, 2023
1560267
Merge branch 'develop' into fixes_2261_scroll_buffer_cleared_on_exit
tig Jan 2, 2023
c5ebfcf
Improves HeightAsBuffer although currently only works on Windows.
BDisp Jan 14, 2023
1aab780
Fixes #2267. Toplevel.EnsureVisibleBounds throws an exception if bord…
BDisp Jan 3, 2023
c23cbd5
Changing comment as requested.
BDisp Jan 18, 2023
de45dd9
Fixes indentation.
BDisp Jan 18, 2023
4832e73
Seems not needed for now, maybe some update, comment for now.
BDisp Jan 18, 2023
2e55705
Renamed HeightAsBuffer to EnableConsoleScrolling and made it obsolete.
BDisp Jan 18, 2023
7c832e8
Add comment on remarks for EnableConsoleScrolling.
BDisp Jan 18, 2023
47b3acf
Merge pull request #8 from BDisp/fixes_2261_scroll_buffer_cleared_on_…
tig Jan 22, 2023
ad13b85
merged @bdisp's EnableConsoleScrolling PR
tig Jan 22, 2023
acb6060
Fixes buffer for Windows Terminal.
BDisp Jan 22, 2023
d56b4dc
Fixes issue in Windows Terminal on resizing causing some lines not be…
BDisp Jan 22, 2023
2e8dbf9
merge #9
tig Jan 23, 2023
12e664e
merged #9
tig Jan 23, 2023
912b0e7
use ESC [ ? 1047
tig Jan 23, 2023
f3d1284
Tweaks with new esc codes
tig Jan 23, 2023
697e068
Fixed curses driver to not nuke scroll buffer and to resize properly
tig Jan 23, 2023
e85fd20
merge
tig Jan 23, 2023
202f0f0
Cleand up netdriver escape codes
tig Jan 24, 2023
76d51a0
Merge branch 'fixes_2261_scroll_buffer_cleared_on_exit' of tig:tig/Te…
tig Jan 24, 2023
c462c3b
fixed spaces->tabs
tig Jan 24, 2023
7298eee
fixed spaces->tabs
tig Jan 24, 2023
9576a91
fixed spaces->tabs
tig Jan 24, 2023
f90a482
fixed spaces->tabs
tig Jan 24, 2023
636904f
fixed merge issue and spaces->tabs
tig Jan 24, 2023
0695904
fixed spaces->tabs
tig Jan 24, 2023
ce37be8
fixed spaces->tabs
tig Jan 24, 2023
60524c7
fixed spaces->tabs
tig Jan 24, 2023
89fd87e
fixed build error
tig Jan 24, 2023
c95ce32
removed old comments
tig Jan 24, 2023
fe6cd77
Merge branch 'develop' into fixes_2261_scroll_buffer_cleared_on_exit
tig Jan 25, 2023
372f3fa
Merge branch 'develop' into fixes_2261_scroll_buffer_cleared_on_exit
tig Feb 5, 2023
436715f
Resolving merge conflicts.
BDisp Feb 24, 2023
8369418
Resolving merge conflicts.
BDisp Feb 24, 2023
d53fe68
Ensuring reset the EnableConsoleScrolling.
BDisp Feb 24, 2023
a1b42f7
Changing from HeightAsBuffer to EnableConsoleScrolling.
BDisp Feb 24, 2023
66d0753
Done requested changes.
BDisp Feb 24, 2023
9a73e70
Reformatting.
BDisp Feb 24, 2023
09e69d5
Rename to EscSeqReqStatus.
BDisp Feb 24, 2023
5c63d1d
Removing Console.Out.Flush ();
BDisp Feb 24, 2023
e540028
Merge branch 'develop' into escape-sequence-utils_2305
tig Feb 25, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ReactiveExample/ReactiveExample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<InformationalVersion>1.0</InformationalVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ReactiveUI.Fody" Version="18.4.1" />
<PackageReference Include="ReactiveUI" Version="18.4.1" />
<PackageReference Include="ReactiveUI.Fody" Version="18.4.22" />
<PackageReference Include="ReactiveUI" Version="18.4.22" />
<PackageReference Include="ReactiveMarbles.ObservableEvents.SourceGenerator" Version="1.2.3" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
Expand Down
Loading