Compare commits

..

No commits in common. "main" and "0.4.1" have entirely different histories.
main ... 0.4.1

3 changed files with 3 additions and 20 deletions

View File

@ -5,22 +5,11 @@ Changelog
(unreleased)
------------
Fix
~~~
- Broken build, refs NOISSUE. [Simon Diesenreiter]
0.4.1 (2025-06-25)
------------------
Fix
~~~
- Fix formatting, refs NOISSUE. [Simon Diesenreiter]
- URL type, refs NOISSUE. [simon]
Other
~~~~~
0.4.0 (2025-06-04)
------------------

View File

@ -9,17 +9,11 @@ public class Base64UrlImageBuilder
var httpClient = new HttpClient();
var response = (httpClient.GetAsync(new Uri($"{value}"))).Result;
var bytes = (response.Content.ReadAsByteArrayAsync()).Result;
_fileContents = Convert.ToBase64String(bytes);
FileContents = Convert.ToBase64String(bytes);
}
}
private string _fileContents = string.Empty;
public string FileContents {
get {
return _fileContents;
}
}
private required string FileContents { get; set; }
public override string ToString()
{

View File

@ -1 +1 @@
0.4.2
0.4.1