diff options
author | Aurelien Hubert <aurel.hubert@gmail.com> | 2016-04-21 12:46:42 +0200 |
---|---|---|
committer | Aurelien Hubert <aurel.hubert@gmail.com> | 2016-04-21 12:46:42 +0200 |
commit | 27b257a06975a43991843163e3bd03c52112eac0 (patch) | |
tree | bd088d10900608bd32d6fbfacffbab4299710871 | |
parent | 7123dd87b90e3cd9af7ccf95d0300c030015861d (diff) | |
download | android_external_ahbottomnavigation-27b257a06975a43991843163e3bd03c52112eac0.tar.gz android_external_ahbottomnavigation-27b257a06975a43991843163e3bd03c52112eac0.tar.bz2 android_external_ahbottomnavigation-27b257a06975a43991843163e3bd03c52112eac0.zip |
Added CHANGELOG
Removed unused files
4 files changed, 50 insertions, 29 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..55b3f47 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,48 @@ +## Changelog + +### Newest version: 1.1.3 + +* Fixed Snackbar when setBehaviorTranslationEnabled(false) + +### 1.1.2 + +* Fixed animations on pre Kit Kat +* Added an example with Vector Drawable + +### 1.1.1 + +* Fixed layout rendering with fragments + +### 1.1.0 + +* Compatible with Snackbar +* Compatible with Floating Action Button + +### 1.0.5 + +* Snackbar is now compatible + +### 1.0.4 + +* Added: setCurrentItem(int position, boolean useCallback) +* Added: setUseElevation(boolean useElevation) +* Added: restoreBottomNavigation() + +### 1.0.3 + +* Fixed setForceTint() + +### 1.0.2 + +* Fixed crash when setForceTitlesDisplay(true) +* Improved UI + +### 1.0.1 + +* Bug fixes +* Notifications +* Minimum SDK version: 14 + +### Before + +* AHBottomNavigation was under development.
\ No newline at end of file @@ -5,7 +5,8 @@ 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.1.3) +## What's new (1.1.3) - [Changelog](https://github.com/roughike/BottomBar/blob/master/CHANGELOG.md) + * Fixed Snackbar when setBehaviorTranslationEnabled(false) ## Features diff --git a/ahbottomnavigation/src/androidTest/java/com/aurelhubert/ahbottomnavigation/ApplicationTest.java b/ahbottomnavigation/src/androidTest/java/com/aurelhubert/ahbottomnavigation/ApplicationTest.java deleted file mode 100644 index 9e96300..0000000 --- a/ahbottomnavigation/src/androidTest/java/com/aurelhubert/ahbottomnavigation/ApplicationTest.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.aurelhubert.ahbottomnavigation; - -import android.app.Application; -import android.test.ApplicationTestCase; - -/** - * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> - */ -public class ApplicationTest extends ApplicationTestCase<Application> { - public ApplicationTest() { - super(Application.class); - } -}
\ No newline at end of file diff --git a/ahbottomnavigation/src/test/java/com/aurelhubert/ahbottomnavigation/ExampleUnitTest.java b/ahbottomnavigation/src/test/java/com/aurelhubert/ahbottomnavigation/ExampleUnitTest.java deleted file mode 100644 index 6b22b47..0000000 --- a/ahbottomnavigation/src/test/java/com/aurelhubert/ahbottomnavigation/ExampleUnitTest.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.aurelhubert.ahbottomnavigation; - -import org.junit.Test; - -import static org.junit.Assert.*; - -/** - * To work on unit tests, switch the Test Artifact in the Build Variants view. - */ -public class ExampleUnitTest { - @Test - public void addition_isCorrect() throws Exception { - assertEquals(4, 2 + 2); - } -}
\ No newline at end of file |