Skip to content

Commit

Permalink
misc: bump version to 1.0.0-rc2.
Browse files Browse the repository at this point in the history
  • Loading branch information
rabbitism committed Jul 27, 2024
1 parent 2ac434b commit 2c32ae6
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 22 deletions.
41 changes: 21 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,32 +16,14 @@ Add nuget package:
dotnet add package Irihi.Ursa
```

You can now use Ursa controls in your Avalonia Application.
```xaml
<Window
...
xmlns:u="https://irihi.tech/ursa"
...>
<StackPanel Margin="20">
<u:ButtonGroup Classes="Solid Warning">
<Button Content="Hello" />
<Button Content="World" />
</u:ButtonGroup>
<u:TagInput />
</StackPanel>
</Window>
```

![Demo](./assets/demo.jpg)

2. Ursa.Themes.Semi

To make Ursa controls show up in your application, you need to reference to a theme package designed for Ursa.
To make Ursa controls show up in your application, you need to reference to a theme package designed for Ursa.
Ursa.Themes.Semi is a theme package for Ursa inspired by Semi Design. You can add it to your project by following steps.

Add nuget package:
```bash
dotnet add package Semi.Avalonia --version 11.0.7
dotnet add package Semi.Avalonia
dotnet add package Irihi.Ursa.Themes.Semi
```

Expand All @@ -57,6 +39,25 @@ Include Styles in application:
</Application.Styles>
```


You can now use Ursa controls in your Avalonia Application.
```xaml
<Window
...
xmlns:u="https://irihi.tech/ursa"
...>
<StackPanel Margin="20">
<u:ButtonGroup Classes="Solid Warning">
<Button Content="Hello" />
<Button Content="World" />
</u:ButtonGroup>
<u:TagInput />
</StackPanel>
</Window>
```

![Demo](./assets/demo.jpg)

## Support

We offer limited free community support for Semi Avalonia and Ursa. Please join our group via FeiShu(Lark)
Expand Down
2 changes: 1 addition & 1 deletion src/Ursa.Themes.Semi/Ursa.Themes.Semi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Version>1.0.0-rc1</Version>
<Version>1.0.0-rc2</Version>
<Authors>IRIHI Technology Co., Ltd.</Authors>
<PackageId>Irihi.Ursa.Themes.Semi</PackageId>
<PackageIcon>irihi.png</PackageIcon>
Expand Down
2 changes: 1 addition & 1 deletion src/Ursa/Ursa.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Version>1.0.0-rc1</Version>
<Version>1.0.0-rc2</Version>
<Authors>IRIHI Technology Co., Ltd.</Authors>
<PackageId>Irihi.Ursa</PackageId>
<PackageIcon>irihi.png</PackageIcon>
Expand Down

0 comments on commit 2c32ae6

Please sign in to comment.