aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAurelien Hubert <aurel.hubert@gmail.com>2016-05-18 14:42:02 +0200
committerAurelien Hubert <aurel.hubert@gmail.com>2016-05-18 14:42:02 +0200
commit02abd87fb555353331a0220b3de3061901d4e7a4 (patch)
treea2346326f461a2920b0f17eb2d653671824b5972
parentb3c467a7577062a60ea1b686507129511072faf3 (diff)
downloadandroid_external_ahbottomnavigation-02abd87fb555353331a0220b3de3061901d4e7a4.tar.gz
android_external_ahbottomnavigation-02abd87fb555353331a0220b3de3061901d4e7a4.tar.bz2
android_external_ahbottomnavigation-02abd87fb555353331a0220b3de3061901d4e7a4.zip
Updated version, readme & changelog
-rw-r--r--CHANGELOG.md7
-rw-r--r--README.md14
-rw-r--r--ahbottomnavigation/build.gradle6
3 files changed, 13 insertions, 14 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4eff3a9..5ce648e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,11 @@
## Changelog
-### Newest version: 1.2.0
+### Newest version: 1.2.1
+
+* Fixed method typo `setNotificationMarginLef` => `setNotificationMarginLeft`
+* Avoid multiple call for showing/hiding AHBottomNavigation
+
+### 1.2.0
* Updated Notification: now accept String (empty String to remove the notification)
* Deprecated integer for Notification
diff --git a/README.md b/README.md
index 3a4cecf..92ba1f0 100644
--- a/README.md
+++ b/README.md
@@ -5,16 +5,10 @@ Library to implement the Bottom Navigation component from Material Design guidel
## Demo
<img src="https://raw.githubusercontent.com/aurelhubert/ahbottomnavigation/master/demo1.gif" width="208" height="368" /> <img src="https://raw.githubusercontent.com/aurelhubert/ahbottomnavigation/master/demo2.gif" width="208" height="368" /> <img src="https://raw.githubusercontent.com/aurelhubert/ahbottomnavigation/master/demo3.gif" width="208" height="368" /> <img src="https://raw.githubusercontent.com/aurelhubert/ahbottomnavigation/master/demo4.gif" width="208" height="368" />
-## What's new (1.2.0) - [Changelog](https://github.com/aurelhubert/ahbottomnavigation/blob/master/CHANGELOG.md)
+## What's new (1.2.1) - [Changelog](https://github.com/aurelhubert/ahbottomnavigation/blob/master/CHANGELOG.md)
-* Updated Notification: now accept String (empty String to remove the notification)
-* Deprecated integer for Notification
-* Removed deprecated methods & interface for `AHBottomNavigationListener`
-* Fixed touch ripples when the bottom navigation is colored
-* Cleaned colors.xml to avoid conflicts
-* Removed constructor AHBottomNavigationItem()
-* Added `setTitleTextSize(float activeSize, float inactiveSize)`
-* Added `setNotificationMarginLeft(int activeMargin, int inactiveMargin)`
+* Fixed method typo `setNotificationMarginLef` => `setNotificationMarginLeft`
+* Avoid multiple call for showing/hiding AHBottomNavigation
## Features
* Follow the bottom navigation guidelines (https://www.google.com/design/spec/components/bottom-navigation.html)
@@ -29,7 +23,7 @@ Library to implement the Bottom Navigation component from Material Design guidel
### Gradle
```groovy
dependencies {
- compile 'com.aurelhubert:ahbottomnavigation:1.2.0'
+ compile 'com.aurelhubert:ahbottomnavigation:1.2.1'
}
```
### XML
diff --git a/ahbottomnavigation/build.gradle b/ahbottomnavigation/build.gradle
index 956c578..65b33f2 100644
--- a/ahbottomnavigation/build.gradle
+++ b/ahbottomnavigation/build.gradle
@@ -13,7 +13,7 @@ ext {
siteUrl = 'https://github.com/aurelhubert/ahbottomnavigation'
gitUrl = 'https://github.com/aurelhubert/ahbottomnavigation.git'
- libraryVersion = '1.2.0'
+ libraryVersion = '1.2.1'
developerId = 'aurelhubert'
developerName = 'Aurelien Hubert'
@@ -31,8 +31,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
- versionCode 26
- versionName "1.2.0"
+ versionCode 27
+ versionName "1.2.1"
}
buildTypes {
release {