Skip to content
This repository has been archived by the owner on May 12, 2023. It is now read-only.

Releases: pardahlman/akeneo-csharp

v47

03 Aug 13:35
Compare
Choose a tag to compare
Merge pull request #20 from enrique-avalon/issue/19

Issue/19

0.1.14

07 Jun 17:14
Compare
Choose a tag to compare

This release contains to exciting features:

  1. Logging through LibLog
  2. Automatic build and publish to Nuget and Github

Search, Filter & Documentation

05 Jun 15:17
Compare
Choose a tag to compare

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

15 May 06:48
Compare
Choose a tag to compare

Support for Media Files

15 May 05:57
Compare
Choose a tag to compare

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

28 Apr 10:34
Compare
Choose a tag to compare

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

25 Apr 18:24
Compare
Choose a tag to compare

Fixes
#13

0.1.5

21 Apr 08:51
Compare
Choose a tag to compare

Contains fix for GetMany<T> when the parentCode was passed alone.

Attribute deserialization and Price Values

20 Apr 19:35
Compare
Choose a tag to compare

This release fixes #9 and #5 🎉

First non-pre release!

17 Apr 11:32
Compare
Choose a tag to compare

The client is far for 1.0, but it is stable enough to be published as a normal release.