Skip to content

Releases: mikepenz/Android-Iconics

v4.0.1-b01

06 Jul 14:05
Compare
Choose a tag to compare
v4.0.1-b01 Pre-release
Pre-release
  • introduces new Experimental DSL for the IconicsDrawable (API might still change)
  • introduce more extension functions to converters
  • deprecate old converters, introduce proper replace rule
  • deprecate old extension functions in IconicsDrawable class
  • refactor code to make use of new proper extension funcions

Font addons

  • new Material Design Icons DX (#464)
    • Thanks @hadi72h
implementation 'com.mikepenz:material-design-icons-dx-typeface:5.0.1.0-kotlin@aar'

(maven central sync still pending)

v4.0.0

07 Jun 22:30
Compare
Choose a tag to compare

WARNING

  • this release is fully migrated to kotlin
  • many breaking changes

MIGRATION core v3.x.x -> 4.x.x

Now libraries is kotlin-first

  • Font files
    • Font's store now based on default way to store fonts. (moved from common assets to font-specific resource assets)
  • Iconics
    • No context from now required. We get the application context via ContentProvider
  • Iconics.IconicsBuilder
    • Renamed to Iconics.Builder
    • Removed ctx(Context) method
  • IconicsDrawable
    • Replaced all *Res(int), *Px(int), *Dp(int) method to use IconicsSize and IconicsColor classes instead
    • Constants TOOLBAR_ICON_SIZE and TOOLBAR_ICON_PADDING moved to IconicsSize
    • All getters now have property-syntax
    • All producer-provided methods from Android-Iconics Kt are included in class and can return nullable value (value will be set only when not null)
    • enableShadowSupport(View) moved to IconicsUtils
  • All utils classes and typeface libraries now can not be instantiated
  • ITypeface
    • Method getTypeface(Context) replaced with field rawTypeface
    • Automatically retrieves raw font from file by provided fontRes (see GenericFont.kt if You wont to use old scheme)
  • Some package names for the icon fonts changes
  • Old icon fonts are no longer compatible, please update to the kotlin versions

Changes

  • Fully migrated to kotlin
  • Adjusted many APIs and cleanup
  • Add various kotlin extensions to simplify
  • New more advanced animation engine
  • ...

Depencencies

The following major dependency versions are required:

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.x.y"
implementation "androidx.core:core-ktx:$versions.ktx.core"
implementation "androidx.appcompat:appcompat:1.x.y"

v4.0.0-rc02

19 May 23:20
Compare
Choose a tag to compare
v4.0.0-rc02 Pre-release
Pre-release

WARNING

  • includes all changes of v4.0.0-rc01

Changes

  • removes kotlin reflect dependency
  • fixes community icons proguard specification
  • improves proguard rule

v4.0.0-rc01

13 Apr 16:17
Compare
Choose a tag to compare
v4.0.0-rc01 Pre-release
Pre-release

WARNING

  • this release is the first release of Android-Iconics migrated to kotlin.
  • many breaking changes!

Changes

  • in construction

v3.2.5

13 Apr 16:17
Compare
Choose a tag to compare
  • additional stateList improvements for various colors

v3.2.4

12 Apr 22:07
Compare
Choose a tag to compare

v3.2.3

31 Mar 22:05
Compare
Choose a tag to compare

v3.2.2

18 Mar 01:46
Compare
Choose a tag to compare

v3.2.1

08 Feb 15:26
Compare
Choose a tag to compare

Changes

  • fixes #429 (BottomNavigationView tinting not working) thanks to @zTrap

v3.2.0

03 Feb 16:12
Compare
Choose a tag to compare

Changes

  • includes the changes of v3.2.0-rc1
  • fixes #426 thanks to @zTrap