Compare commits

..

No commits in common. "8a36606dee7217189c4b64d708852ced70cdb8c8" and "887a8a7b6a5ece13dd41bf44bb5cfad65d26998f" have entirely different histories.

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