Skip to content

Commit

Permalink
feat: 1. add bold font.
Browse files Browse the repository at this point in the history
2. update demo avalonia version to 11.2.1
3. add nuget publish action.
  • Loading branch information
rabbitism committed Nov 15, 2024
1 parent 8fe15b2 commit ab9168e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
- name: Nuget ReactiveUI Extension
run: dotnet pack ./src/Ursa.ReactiveUIExtension -o ./nugets

- name: Publish NuGet package
run: dotnet nuget push "./nugets/*.nupkg" --api-key ${{ secrets.NUGET_ORG_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate

- name: Upload a Build Artifact
uses: actions/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion demo/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Nullable>enable</Nullable>
<AvaloniaVersion>11.2.0</AvaloniaVersion>
<AvaloniaVersion>11.2.1</AvaloniaVersion>
</PropertyGroup>
</Project>
Binary file not shown.
11 changes: 11 additions & 0 deletions demo/Ursa.Demo/App.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,15 @@
</Style>
</Style>
</Application.Styles>
<Application.Resources>
<FontWeight x:Key="ButtonDefaultFontWeight">700</FontWeight>
<FontWeight x:Key="CalendarItemCalendarButtonSelectedFontWeight">700</FontWeight>
<FontWeight x:Key="ExpanderHeaderFontWeight">700</FontWeight>
<FontWeight x:Key="ListBoxItemRadioGroupButtonFontWeight">700</FontWeight>
<FontWeight x:Key="ProgressBarTextFontWeight">700</FontWeight>
<FontWeight x:Key="RadioButtonButtonFontWeight">700</FontWeight>
<FontWeight x:Key="TabItemSelectedFontWeight">700</FontWeight>
<FontWeight x:Key="TextBlockTitleFontWeight">700</FontWeight>
<FontWeight x:Key="ToggleButtonDefaultFontWeight">700</FontWeight>
</Application.Resources>
</Application>

0 comments on commit ab9168e

Please sign in to comment.