Skip to content

Releases: muak/AiForms.Effects

ver.1.6.9

30 Sep 08:54
baca303
Compare
Choose a tag to compare

News

Corresponded to iOS14 and AndroidX

Bug fixes

  • Border – Specifying the Width property is not invoked effects.
  • Border – The BackgroundColor is sometimes lost.
  • Border – The input underline can't be hidden for Android(Entry,Editor etc).

New features

  • Gradient – the effect that the gradient background is set to a Layout Element.

Ver.1.6.7

08 Feb 06:28
b3a30a8
Compare
Choose a tag to compare

New features

  • Gradient – the effect that the gradient background is set to a Layout Element.

Ver.1.6.4

04 Feb 01:02
8d133ec
Compare
Choose a tag to compare

Changes

  • Feedback – On Android, a button is now ringed a sound. #50

Bug fixes

  • AddCommand – Fixed AddCommand.SyncCanExecute does not work on Android #53
  • Android – Fixed null exception when popping a page. #54
  • AddText – Fixed the end of characters is sometimes omitted #48.
  • Feedback – Fixed Android OnOverlayTouch crash #49.

Ver.1.6.3

02 Feb 03:42
d2360c3
Compare
Choose a tag to compare

Changes

  • Feedback – On Android, a button is now ringed a sound. #50

Bug fixes

  • Android – Fixed null exception when popping a page. #54
  • AddText – Fixed the end of characters is sometimes omitted #48.
  • Feedback – Fixed Android OnOverlayTouch crash #49.

Ver.1.6.1

26 Dec 05:23
dbe3837
Compare
Choose a tag to compare

Changes

  • Feedback – On Android, a button is now ringed a sound. #50

Bug fixes

  • AddText – Fixed the end of characters is sometimes omitted #48.
  • Feedback – Fixed Android OnOverlayTouch crash #49.

Ver.1.5.5

24 Aug 12:11
65f7275
Compare
Choose a tag to compare
Merge pull request #47 from muak/development

Development

Ver.1.5.1

12 Apr 11:39
e1bc152
Compare
Choose a tag to compare

New Features

  • Feedback – add touch feedback effect (color and sound) without command.
  • Floating – arrange some floating views (e.g. FAB) at any place over a page.
  • TriggerProperty – An Effect can be invoked by setting main properties.

Bug fixes

  • Border – When changing the BackgroundColor dynamically, the border disappears. #35
  • AlterColor – Slider progressbar color isn't changed.

Others

  • Updated dependency Xamarin.Forms Version to 3.6.0.293080

Ver.1.4.4-pre

01 Nov 13:30
fbeffa3
Compare
Choose a tag to compare
Ver.1.4.4-pre Pre-release
Pre-release

New Features

  • Feedback – add touch feedback effect (color and sound) without command.
  • Floating – arrange some floating views (e.g. FAB) at any place over a page.
  • TriggerProperty – An Effect can be invoked by setting main properties.

Bug fixes

  • Border – When changing the BackgroundColor dynamically, the border disappears. #35
  • AlterColor – Slider progressbar color isn't changed.

Ver.1.4.0-pre

23 Oct 11:49
6714a2a
Compare
Choose a tag to compare
Ver.1.4.0-pre Pre-release
Pre-release

New Features

  • Feedback – add touch feedback effect (color and sound) without command.
  • Floating – arrange some floating views (e.g. FAB) at any place over a page.
  • TriggerProperty – An Effect can be invoked by setting main properties.

Trigger Property (1.4.0~)

Though toggling an effect had used On property in less than ver.1.4.0, As of ver.1.4.0, an effect can be enabled by setting one or more main properties of the effect.
These properties are named "Trigger Properties".

Trigger properties correspond to main properties such as Command and LongCommand in case of AddCommand Effect.

In this document, trigger properties are written "trigger".

Old (~1.3.1)

<Label Text="Text" ef:AddCommand.On="true" ef:AddCommand.Command="{Binding GoCommand}" />

Always needs On property.

New (1.4.0~)

<Label Text="Text" ef:AddCommand.Command="{Binding GoCommand}" />

Need not On property when specified Trigger Property.

To keep traditional

If an effect had been used to dynamically toggle to with the On property specified, it may not correctly work on the trigger properties mode.
To keep traditional mode, you can disable trigger properties by specifying the static config property at any place in .NETStandard project as the following code.

AiForms.Effects.EffectConfig.EnableTriggerProperty = false;

Ver.1.3.1

19 May 10:49
Compare
Choose a tag to compare

Bug fix

  • [AddTouch] Not include Recognizer attached property.
  • [SizeToFit] Null Exception in OnDetached on iOS.

New feature

  • [AddTouch] the effect adding touch events (begin, move, end, cancel) to a view.

others

  • Support .NETStandard2.0