leo
9de2853003
enhance: unify selection mode and hunk mode
2024-07-18 16:26:39 +08:00
leo
42f8e41985
ux: lower background opacity for selected hunk
2024-07-18 12:16:36 +08:00
leo
dbc95e7209
refactor: move some method from view to its data source class
2024-07-18 11:40:56 +08:00
leo
e64026d44c
fix: MakeSelection
should not use UseSideBySideDiff
directly
2024-07-18 11:26:47 +08:00
leo
b2ed1b283a
enhance: only replace hunk data if needed
2024-07-18 10:18:02 +08:00
leo
a68b61da94
ux: background highlight margin
2024-07-17 17:14:46 +08:00
leo
26c59bfd0d
code_style: move common funtion to base class
2024-07-17 17:10:32 +08:00
leo
b7e0e38de3
feature: stage/unstage hunk ( #265 )
2024-07-17 16:56:16 +08:00
leo
a807aa9e12
code_style: remove all IDE warnings
2024-07-14 15:55:15 +08:00
leo
d822afc4ec
ux: trim text in diff editor if length of line is greater than 10000 ( #234 )
...
* ignore WordWrap while trimming text, because displaying the full content content with a length greater than 10000 is meaningless
2024-07-03 15:34:29 +08:00
leo
dca8f8b39b
feature: warn when commit subject line goes beyond a certain number of characters ( #201 )
2024-06-23 15:45:54 +08:00
leo
fec2b402e0
code_review: PR #187
...
* replace icon with common whitespace icon in other editors
* button tooltip translations
* rename `_showHiddenSymbols` to `_showHiddenSymbolsInDiffView` to make its usage clear
* change the order of this button
2024-06-19 18:15:32 +08:00
Giuseppe Lippolis
9c7ac5b067
feature: Allows you to show space and tab symbols in DiffView
2024-06-19 11:33:34 +02:00
leo
9d3f186b44
code_style: run dotnet format
2024-06-14 09:46:30 +08:00
leo
68061f82b1
refactor: rewrite TextDiffView
2024-06-12 21:12:45 +08:00
leo
064d04fccc
enhance: improve QueryCommits performance
2024-06-06 20:25:16 +08:00
leo
54ef9c0bf7
refactor: use bindings instead of sync manually
2024-06-06 10:01:14 +08:00
leo
557e6b48de
Merge pull request #170 from ccyr119/develop
...
ux: get brush color for LineBackgrounRenderer from themes
2024-06-05 21:06:48 +08:00
Chuanyan.Chen
7836f57904
ux: get brush color for LineBackgrounRenderer from themes
2024-06-05 20:34:56 +08:00
leo
0c618998b2
refactor: sync scroll implement
2024-06-05 20:33:33 +08:00
leo
62e5ed8a42
enhance: supports user overrides the default color schema
2024-06-05 18:23:28 +08:00
leo
802b429cc8
enhance: supports word wrap in text diff view
2024-06-04 20:26:47 +08:00
leo
6fe96d629a
feature: allow deleting multiple branches at one time ( #137 )
2024-05-25 01:31:59 +08:00
leo
0dea7ed0e2
fix: context menu did NOT closed after its placement target being recycled ( #140 )
2024-05-23 21:24:22 +08:00
leo
d9a14432cc
fix: LineNumberMargin did not recalculate required size after data context changed
2024-05-17 10:53:28 +08:00
leo
a5150edee0
code_style: rename platform_finder
to platformFinder
and run dotnet format
to apply code style rules
2024-04-29 17:55:38 +08:00
leo
5d1de37308
optimize: only set Offset from SyncScrollOffset while it's not focused.
2024-04-28 16:50:06 +08:00
leo
d9911b3447
refactor: implementation of synchronous scrolling in side-by-side diff view
2024-04-28 16:46:39 +08:00
leo
1dadad7775
ux: disable TextEditor hyperlinks ( #65 )
2024-04-10 11:02:33 +08:00
leo
96d4150d26
project: reorganize the structure of the project.
...
* remove dotnet-tool.json because the project does not rely on any dotnet tools.
* remove Directory.Build.props because the solution has only one project.
* move src/SourceGit to src. It's not needed to put all sources into a subfolder of src since there's only one project.
2024-04-02 20:00:33 +08:00
Enner Pérez
a1a14f8858
Project Location
2024-03-20 02:38:28 -05:00
leo
f175f5abc1
optimize: use combined diff view as default.
2024-03-20 13:08:01 +08:00
leo
18aaa0a143
style: add .editorconfig for code formatting. see issu #25
2024-03-18 09:37:06 +08:00
leo
a37c11e32f
enhance: better sync scroll logic with two-side diff - if the width in each side is different
2024-03-12 16:14:22 +08:00
leo
a89760c7a5
refactor: change the way to refresh repository's data.
...
* mark dirty instead of calling refresh method directly
* force mark branches data dirty after remotes changed
2024-03-08 09:57:29 +08:00
leo
f834af10a2
refactor: change the way loading custom fonts
2024-03-05 16:02:47 +08:00
leo
14dbc0ad92
fix<TextDiffView>: discard from staged should not affect same file in unstaged
2024-03-03 09:16:19 +08:00
leo
1c005983c7
fix<Discard>: wrong discard behavior with changes both in worktree and staged
2024-03-01 11:34:32 +08:00
leo
a770ff542d
fix<TextDiffView>: avoid endLine out of range
2024-02-29 12:16:31 +08:00
leo
2b97d7c599
feature<TextDiffView>: do NOT reset scroll offset after recompute diff with same change
2024-02-29 11:29:54 +08:00
leo
096fd6cb22
feature<TextDiffView>: supports discard changes from staged directly
2024-02-29 10:59:59 +08:00
leo
9e4d349b51
feature<TextDiffView>: implementation for stage/unstage/discard selected changes in file
2024-02-28 18:15:40 +08:00
leo
671e46f8b3
feature<TextDiffView>: supports line staging/unstaging in working copy diff view
2024-02-28 14:55:11 +08:00
leo
ba355a7d59
optimize<TextEditor>: trait all .h file as C++ header file instead of C
2024-02-22 20:47:43 +08:00
leo
ca19d65f0e
update<csproj>: use official AvaloniaEdit instead of OneWare.AvaloniaEdit
2024-02-20 15:44:26 +08:00
leo
2a62596999
refactor<*>: rewrite all with AvaloniaUI
2024-02-06 15:08:37 +08:00