Skip to content
This repository has been archived by the owner on Apr 26, 2019. It is now read-only.

Commit

Permalink
Release 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasKypta committed May 2, 2016
1 parent 1be58bd commit c2b7da5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
5 changes: 3 additions & 2 deletions META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin version="2">
<id>eu.inmite.android.plugin.butterknifezelezny</id>
<name>Android ButterKnife Zelezny</name>
<version>1.5.0-SNAPSHOT</version>
<version>1.5.0</version>
<vendor email="[email protected]" url="http://github.com/avast">Avast</vendor>

<description><![CDATA[
Expand All @@ -11,9 +11,10 @@
<change-notes><![CDATA[
<html>
<b>1.5.0-SNAPSHOT</b>
<b>1.5.0</b> (5/2/2015)
<ul>
<li>Support for ButterKnife 8.0.0 (#93)</li>
<li>Added &quot;select/deselect all&quot; checkbox (#89)</li>
</ul>
<b>1.4.0</b> (2/2/2016)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
package com.avast.android.butterknifezelezny.butterknife;

/**
* ButterKnife version 8
*
* @author Tomáš Kypta
* @since 1.5.0
*/
public class ButterKnife8 extends AbstractButterKnife {

Expand All @@ -13,7 +16,7 @@ public class ButterKnife8 extends AbstractButterKnife {

@Override
public String getVersion() {
return "8.0.0";
return "8.0.1";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public interface IButterKnife {

/**
* Check whether android-butterknife-zelezny supports generating unbind for this version of ButterKnife.
*
* @return True if unbind generation is supported.
* @since 1.5.0
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
package com.avast.android.butterknifezelezny.iface;

/**
* Listener for changes of the checkboxes in the dialog.
*
* @since 1.5.0
*/
public interface OnCheckBoxStateChangedListener {
void changeState(boolean checked);
}
2 changes: 1 addition & 1 deletion test-app/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.jakewharton:butterknife:6.1.0'
compile 'com.jakewharton:butterknife:8.0.1'
}

0 comments on commit c2b7da5

Please sign in to comment.