This repository has been archived by the owner on May 12, 2023. It is now read-only.
Releases: pardahlman/akeneo-csharp
Releases · pardahlman/akeneo-csharp
v47
0.1.14
This release contains to exciting features:
- Logging through LibLog
- Automatic build and publish to Nuget and Github
Search, Filter & Documentation
This release brings the feature to Search and Filter products.. And, since it also adds client documentation, why don't you read more about it there: http://akeneonet.readthedocs.io/en/latest/filter-and-search.html
Return resource location in Akeneo Response
0.1.10 Bump version
Support for Media Files
This release includes full support for uploading and downloading media files!
await Client.UploadAsync(new MediaUpload
{
Product =
{
Identifier = "nike_air",
Locale = Locales.EnglishUs,
Scope = AkeneoDefaults.Channel,
Attribute = "product_logotype"
},
FilePath = "C:\\tmp\\swoosh.png",
FileName = "nike_logo.png"
});
var mediaInfo = await Client.DownloadAsync("a/a/dsad/swoosh.png");
mediaInfo.WriteToFile("C:\\tmp");
Minor bug fix for MaxCharacter
It was changed to an int
so that it could be more useful, but it might be undefined, so changed type to int?
0.1.6
0.1.5
Contains fix for GetMany<T>
when the parentCode
was passed alone.
Attribute deserialization and Price Values
First non-pre release!
The client is far for 1.0, but it is stable enough to be published as a normal release.