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

Scintilla v5.5.0 #118

Merged
merged 25 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
406a60a
Update .gitignore
ahmetsait May 4, 2024
5178bfd
Remove `#if`s and duplicate code
ahmetsait May 2, 2024
225ce4b
Add .editorconfig
ahmetsait May 4, 2024
a35e7bd
Update .editorconfig
ahmetsait May 6, 2024
1196498
Use latest C# version
ahmetsait May 4, 2024
13fa854
Remove net-8.0 target because it makes build take longer with no benefit
ahmetsait May 4, 2024
419891f
Replace net45 with net462 target because it is no longer supported
ahmetsait May 4, 2024
100f2d2
Remove unnecessary project properties and fix incorrect <RootNamespace>
ahmetsait May 4, 2024
5df7e74
Fix #95: Implement solution-local NuGet registry
ahmetsait May 4, 2024
af9fe3e
Remove old duplicate files
ahmetsait May 4, 2024
557483d
Rename NuGet package icon
ahmetsait May 4, 2024
86fee5a
Move source files into project folder
ahmetsait May 4, 2024
6fdaf90
Use NuGet special folder `runtimes` for native libraries
ahmetsait May 4, 2024
d852e51
Update Scintilla.dll & Lexilla.dll
ahmetsait May 5, 2024
8d4f7ac
Use net48 in test app because it shows designer errors instead of sil…
ahmetsait May 5, 2024
8fbf0cc
Simplify `Scintilla.NET.TestApp.csproj`
ahmetsait May 5, 2024
f2d6192
Split test app into its own solution to prevent NuGet restore errors
ahmetsait May 5, 2024
b023431
Fix transparent colors
ahmetsait May 5, 2024
fd62d89
Fix incorrect default values
ahmetsait May 5, 2024
d91708a
Polish test app
ahmetsait May 5, 2024
9a4b9d3
Group all `Behaviour` into `Behavior`
ahmetsait May 5, 2024
919fb3d
Implement Scintilla element APIs
ahmetsait May 5, 2024
402b641
Add readme to NuGet package
ahmetsait May 6, 2024
59b997f
Fix null error when resetting font in designer
ahmetsait May 6, 2024
62e270b
Scintilla v5.5.0
ahmetsait May 5, 2024
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
37 changes: 37 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# editorconfig.org

root = true

[*]
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[*.{bat,cmd,ps1}]
end_of_line = crlf

[*.{html,htm,xhtml,xhtm,xml}]
indent_size = 2

[*.{css,scss,sass}]
indent_size = 2

[*.{json}]
insert_final_newline = false

[*.{yml,yaml}]
indent_style = space
indent_size = 2

[*.csproj]
indent_style = unset
indent_size = 2

[*.{props,targets}]
indent_style = space
indent_size = 2

[[Aa]pp.{config,manifest}]
indent_style = space
indent_size = 2
Loading
Loading