aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAurelien Hubert <aurel.hubert@gmail.com>2016-04-21 12:46:42 +0200
committerAurelien Hubert <aurel.hubert@gmail.com>2016-04-21 12:46:42 +0200
commit27b257a06975a43991843163e3bd03c52112eac0 (patch)
treebd088d10900608bd32d6fbfacffbab4299710871
parent7123dd87b90e3cd9af7ccf95d0300c030015861d (diff)
downloadandroid_external_ahbottomnavigation-27b257a06975a43991843163e3bd03c52112eac0.tar.gz
android_external_ahbottomnavigation-27b257a06975a43991843163e3bd03c52112eac0.tar.bz2
android_external_ahbottomnavigation-27b257a06975a43991843163e3bd03c52112eac0.zip
Added CHANGELOG
Removed unused files
-rw-r--r--CHANGELOG.md48
-rw-r--r--README.md3
-rw-r--r--ahbottomnavigation/src/androidTest/java/com/aurelhubert/ahbottomnavigation/ApplicationTest.java13
-rw-r--r--ahbottomnavigation/src/test/java/com/aurelhubert/ahbottomnavigation/ExampleUnitTest.java15
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
diff --git a/README.md b/README.md
index a4c1bbd..39ecc1e 100644
--- a/README.md
+++ b/README.md
@@ -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