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 #2798. Add TrueColor support to CursesDriver. #3770

Merged
merged 32 commits into from
Oct 11, 2024
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
eee4db9
Fixes #2798. Add TrueColor support to CursesDriver.
BDisp Sep 30, 2024
8c4778e
Fix unit test error.
BDisp Oct 1, 2024
b148fcc
Merge branch 'v2_develop' into v2_2798_add-true-color-to-cursesdriver
BDisp Oct 2, 2024
4b59830
Merge branch 'v2_develop' into v2_2798_add-true-color-to-cursesdriver
tig Oct 6, 2024
8d09971
Fixes #3784. SelfContained and NativeAot projects should use the loca…
BDisp Oct 9, 2024
4afe694
Run dotnet restore before build.
BDisp Oct 9, 2024
4288b71
Using local_packages folder for CI.
BDisp Oct 9, 2024
e130bfd
Add build_release_consumer.
BDisp Oct 9, 2024
bd8ff63
Remove build_release_consumer.
BDisp Oct 9, 2024
5db3af9
Fix folder for CI.
BDisp Oct 9, 2024
d77b899
Fix System.Text.Json vulnerability.
BDisp Oct 9, 2024
3361eed
Fix local_packageslocation.
BDisp Oct 9, 2024
f9f3431
Add package sources to the packageSourceMapping tag.
BDisp Oct 9, 2024
0dc3a52
Using the original configuration.
BDisp Oct 9, 2024
88e2ee6
Only add the Terminal.Gui pattern in the LocalPackages.
BDisp Oct 9, 2024
2c01b33
Fix the path folder separator with unit style.
BDisp Oct 9, 2024
820bf44
Using pack instead of build.
BDisp Oct 9, 2024
d3192df
Create LocalPackages Directory
BDisp Oct 9, 2024
ad69b9d
Add local_packages source.
BDisp Oct 9, 2024
5b108a9
Using scripts to build release for NativeAot and SelfContained.
BDisp Oct 10, 2024
0b4227b
Trying to fix path.
BDisp Oct 10, 2024
a57db4e
Again.
BDisp Oct 10, 2024
c12a2cf
Fix the path for the package,
BDisp Oct 10, 2024
214d109
Need to build before pack.
BDisp Oct 10, 2024
29b902b
Needs also build before pack locally.
BDisp Oct 10, 2024
3bcc34b
Fix build path.
BDisp Oct 10, 2024
bd307f7
Merge branch 'v2_develop' into v2_2798_add-true-color-to-cursesdriver
BDisp Oct 10, 2024
bc20229
Merge branch 'v2_develop' into v2_3784_selfcontained_nativeaot-local-…
BDisp Oct 10, 2024
1a8569b
Merge branch 'v2_develop' into v2_2798_add-true-color-to-cursesdriver
BDisp Oct 10, 2024
91c4e30
Merge branch 'v2_3784_selfcontained_nativeaot-local-release-package' …
BDisp Oct 10, 2024
14cce2e
Merge branch 'v2_develop' into v2_2798_add-true-color-to-cursesdriver
tig Oct 11, 2024
b98c6fa
Merge branch 'v2_develop' into v2_2798_add-true-color-to-cursesdriver
tig Oct 11, 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
Prev Previous commit
Next Next commit
Add package sources to the packageSourceMapping tag.
BDisp committed Oct 9, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
ivan-magda Ivan Magda
commit f9f3431118bb81b23f0752756e48cb00ffe23b6d
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
@@ -78,7 +78,7 @@ jobs:


build_release:
# Ensure that RELEASE builds are not broken
# Ensure that RELEASE builds are not broken
runs-on: ubuntu-latest
steps:
- name: Checkout code
6 changes: 6 additions & 0 deletions nuget.config
Original file line number Diff line number Diff line change
@@ -16,5 +16,11 @@
<packageSource key="nuget">
<package pattern="*" />
</packageSource>
<packageSource key="LocalPackages">
<package pattern="*" />
</packageSource>
<packageSource key="local_packages">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>