Skip to content

Commit

Permalink
Prepared 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielemariotti committed Nov 8, 2014
1 parent c4a5d2e commit 84d5f94
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 22 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Change Log
===============================================================================

Version 2.0.0 *(2014-XX-XX)*
Version 2.0.0 *(2014-11-07)*
----------------------------
* LIB: Added the new **CardViewNative**! based on Google CardView [(Learn how to migrate your cards)](/doc/MIGRATE)
* LIB: New aar modules. [(doc)[(BUILD.md#including-in-your-project-with-gradle)
Expand Down
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Travis master: [![Build Status](https://travis-ci.org/gabrielemariotti/cardslib.
Travis dev: [![Build Status](https://travis-ci.org/gabrielemariotti/cardslib.svg?branch=dev)](https://travis-ci.org/gabrielemariotti/cardslib)


**Card Library** provides an easy way to display a UI Card in your Android app.
**Card Library** provides an easy way to display a UI Card using the **Official Google CardView** in your Android app.

You can display **single cards**, **list** of cards, **grid** , **staggered grid** and **spannable grid** of Cards and many other views, using the **Official Google CardView**.
Before using this library I recommend that you check out the new Google Material Guidelines.Don't over cardify your UI.

![Screen](/demo/images/screen.png)

Expand All @@ -25,12 +25,6 @@ You can display **single cards**, **list** of cards, **grid** , **staggered grid

[![Get it on Google Play](http://www.android.com/images/brand/get_it_on_play_logo_small.png)](https://play.google.com/store/apps/details?id=it.gmariotti.cardslib.demo.extras)


* Browse the [source code of the sample application](/demo) for a complete example of use.

* [Card Gallery:](/doc/EXAMPLE.md) How to realize simple and nice cards.

[See this page for more info about demo and samples](/demo/README.md)

## Support
Join the [**Google+ Community**](https://plus.google.com/u/0/communities/111800040690738372803):
Expand Down
Binary file modified demo/stock/src/main/res/drawable-nodpi/navdrawer_cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@
android:layout_width="match_parent"
android:layout_height="match_parent">

<include android:id="@+id/hb_full" layout="@layout/demo_barheader_full"/>


<ScrollView
android:layout_below="@id/hb_full"
style="@style/carddemo_default_container_padding"
android:id="@+id/card_scrollview"
android:layout_width="match_parent"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card="http://schemas.android.com/apk/res-auto"
android:id="@+id/list_cardId"
android:layout_width="@dimen/carddemo_gplay_grid_columnwidth_card"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/native_grid_card"
card:card_layout_resourceID="@layout/carddemo_native_googleplay_layout"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
<it.gmariotti.cardslib.library.view.CardGridView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnWidth="@dimen/carddemo_gplay_grid_columnwidth"
android:columnWidth="@dimen/carddemo_gricursor_width"
android:numColumns="auto_fit"
android:verticalSpacing="4dp"
android:horizontalSpacing="4dp"
android:paddingLeft="4dp"
android:paddingRight="4dp"
android:verticalSpacing="8dp"
android:horizontalSpacing="8dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:stretchMode="columnWidth"
android:gravity="center"
android:scrollbarStyle="outsideOverlay"
Expand Down
2 changes: 1 addition & 1 deletion demo/stock/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<string name="about_ok">OK</string>
<string name="about_body"><![CDATA[
<b>Library & Demo</b><br>
Author: <a href="https://plus.google.com/114432517923423045208">Gabriele Mariotti</a><br>
Author: <b><a href="https://plus.google.com/114432517923423045208">Gabriele Mariotti</a></b><br>
<br>
Get: <a href="https://github.com/gabrielemariotti/cardslib">Source and doc</a><br>
Get on Google Play: <a href="https://play.google.com/store/apps/details?id=it.gmariotti.cardslib.demo.extras">Cardslib Demo Extras</a><br>
Expand Down
2 changes: 1 addition & 1 deletion extra/extra-dragdrop/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ dependencies {
}

// Used to update in Maven
//apply from: '../maven_push.gradle'
//apply from: '../../maven_push.gradle'
2 changes: 1 addition & 1 deletion extra/extra-staggeredgrid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ dependencies {
}

// Used to update in Maven
//apply from: '../maven_push.gradle'
//apply from: '../../maven_push.gradle'
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_NAME=2.0.0-RC1-SNAPSHOT
VERSION_CODE=36
VERSION_NAME=2.0.1-SNAPSHOT
VERSION_CODE=201
GROUP=com.github.gabrielemariotti.cards

POM_DESCRIPTION=Android Library to build a UI Card
Expand Down

0 comments on commit 84d5f94

Please sign in to comment.