Skip to content

Releases: mikepenz/AboutLibraries

v5.0.4

15 Jun 19:19
Compare
Choose a tag to compare
  • FIX #102
  • FIX #101
  • add scrollBar
  • add listeners to change the ui before and after onCreateView
  • fix divider of bottom section was not displaying

v5.0.3

11 Jun 20:49
Compare
Choose a tag to compare
  • fix ClassPaths for FlowLayout and HelloCharts
  • add LeakCanary
  • add SuperRecyclerView
  • add bottomsheet
  • add gsonjodatimeserialisers
  • add jodatimeandroid
  • add observablescrollview

v5.0.2

30 May 18:33
Compare
Choose a tag to compare
  • update to the latest appcompat library v22.2.0

v5.0.1

28 May 21:11
Compare
Choose a tag to compare
  • Seperat Dagger 1 and Dagger 2
  • Add new library MPAndroidCharts
  • Fixes feature which uses the LibraryRepository link if the RepositoryWebsite is not set

v5.0.0

20 May 17:38
Compare
Choose a tag to compare

NEW FEATURES

  • Change Libs.Builder to LibsBuilder
    • Just remove the dot, Add the Import and you are fine
  • New LibsConfiguration
  • New option to set a listener for the AboutLibraries Activity

FIXES

  • A small UI Change of the header

NEW LIBRARIES

  • AndroidFlowLayout
  • HelloCharts

v4.7.2

28 Apr 16:05
Compare
Choose a tag to compare
  • fix FC if color / theme attributes where missing. this was the case if you used the fragment
  • use repositoryLink as fallback if there is no libraryWebsite

v4.7.1

28 Apr 14:41
Compare
Choose a tag to compare
  • fix new style feature (had a test style overwrite left in the previous release)

v4.7.0

28 Apr 14:38
Compare
Choose a tag to compare

UPGRADE NOTES
v4.7.0 now comes with themes and the colors are set by theme. If you pass a custom theme to the AboutActivity this theme must has the AboutLibraries theme as parent or include the themed attributes. See the styles.xml of the sample activity.
This release also contains a new feature withActivityStyle which allows you to set the style of the Activity. Further details can be found in the release notes.

NEW FEATURES

  • New reworked theme / style logic
    ** it is now possible to define the style for the LibsActivity
new Libs.Builder()
    //Pass the fields of your application to the lib so it can find all external lib information
        .withFields(R.string.class.getFields())
        //provide a style (optional) (LIGHT, DARK, LIGHT_DARK_TOOLBAR)
        .withActivityStyle(Libs.ActivityStyle.LIGHT_DARK_TOOLBAR)
        //start the activity
        .start(this);

This will take the colorPrimary, colorPrimaryDark and colorAccent color values and create the activity for you. No need to handle all the AboutLibraries colors on your own anymore.
(As fallback it will also check for following color values: theme_default_primary, theme_default_primary_dark, theme_accent, about_libraries_primary, about_libraries_primary_dark, about_libraries_accent)

If you want your custom style you should overwrite one of the AboutLibraries themes and just overwrite a specific AboutLibraries color. You can still do it via the colors.xml if this is easier for you.

NEW LIBS

  • CircleIndicator
  • MaterialDialogs
  • MaterialEditText
  • AndroidSwipeLayout

v4.6.7

28 Apr 09:28
Compare
Choose a tag to compare
  • updates appcompat to v22.1.1

v4.6.6

23 Apr 18:32
Compare
Choose a tag to compare
  • also trigger actions on longClick
  • change to new appcompat v7 AlertDialog
  • update BuildTools