Skip to content

Commit 5d14a96

Browse files
committed
Bump version to 2.2.0 and update README.md.
Closes #1
1 parent c59582e commit 5d14a96

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

AsyncImageLoader.Avalonia/AsyncImageLoader.Avalonia.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@
1515
<RepositoryType>git</RepositoryType>
1616
<PackageTags>image cross-platform avalonia avaloniaui c-sharp-library</PackageTags>
1717
<PackageReadmeFile>README.md</PackageReadmeFile>
18-
<Version>2.1.1</Version>
19-
<PackageReleaseNotes>- Fix loading from disk cache</PackageReleaseNotes>
18+
<Version>2.2.0</Version>
19+
<PackageReleaseNotes>
20+
- Add support for avares and resm #1
21+
- Add logging to avalonia logger
22+
</PackageReleaseNotes>
2023
</PropertyGroup>
2124

2225
<ItemGroup>

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ Note: The first time you will need to import the AsyncImageLoader namespace to y
3737
<!-- Your root element content -->
3838
```
3939

40+
### About resources and assets
41+
AsyncImageLoader **support** `resm:` and `avares:` links.
42+
And does **not** support relative referenced assets such as `Source="icon.png"` or `Source="/icon.png"`. Here's an [issue](https://github.com/AvaloniaUtils/AsyncImageLoader.Avalonia/issues/2) that describes why.
43+
Assets and resources in Avalonia described [here](https://docs.avaloniaui.net/docs/getting-started/assets).
44+
4045
## Loaders
4146
ImageLoader will use instance of [IImageLoader](https://github.com/AvaloniaUtils/AsyncImageLoader.Avalonia/blob/master/AsyncImageLoader.Avalonia/IAsyncImageLoader.cs) for serving your requests.
4247
You can change the loader used by setting new one to the [ImageLoader.AsyncImageLoader](https://github.com/AvaloniaUtils/AsyncImageLoader.Avalonia/blob/master/AsyncImageLoader.Avalonia/ImageLoader.cs#L10) property. Do not forget to Dispose previous loader.

0 commit comments

Comments
 (0)