Skip to content

Commit

Permalink
Updated Javadoc tags.
Browse files Browse the repository at this point in the history
Updated the version to 2.4.0
  • Loading branch information
brianwernick committed Oct 5, 2015
1 parent e16994d commit 0565e26
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The latest AAR (Android Archive) files can be downloaded from JCenter [ExoMedia]
Or included in your gradle dependencies

```groovy
compile 'com.devbrackets.android:exomedia:2.3.5'
compile 'com.devbrackets.android:exomedia:2.4.0'
```

Example
Expand Down Expand Up @@ -102,4 +102,4 @@ under [Attribution 4.0 International][2]
[2]: http://creativecommons.org/licenses/by/4.0/
[3]: https://bintray.com/brianwernick/maven/ExoMedia/view#files
[4]: http://devbrackets.com/dev/libs/exomedia.html
[5]: http://devbrackets.com/dev/libs/docs/exomedia/2.3.4/index.html
[5]: http://devbrackets.com/dev/libs/docs/exomedia/2.4.0/index.html
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ apply plugin: 'maven'
apply plugin: 'bintray-release'

def versionMajor = 2
def versionMinor = 3
def versionPatch = 5
def versionMinor = 4
def versionPatch = 0

def libraryGroupId = 'com.devbrackets.android'
def libraryBaseName = 'exomedia'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -537,10 +537,10 @@ public void setNextButtonEnabled(boolean enabled) {
* Sets the button state for the Rewind button on the default controls; see
* {@link #setDefaultControlsEnabled(boolean)}.
* {@link #setDefaultControlsEnabled(boolean)} must be called prior to this.
* <p/>
* <p>
* This will just change the images specified with {@link #setRewindImageResource(int)},
* or use the defaults if they haven't been set, and block any click events.
* </p>
* <p>
* This method will NOT re-add buttons that have previously been removed with
* {@link #setRewindButtonRemoved(boolean)}.
*
Expand All @@ -556,10 +556,10 @@ public void setRewindButtonEnabled(boolean enabled) {
* Sets the button state for the Fast Forward button on the default controls; see
* {@link #setDefaultControlsEnabled(boolean)}.
* {@link #setDefaultControlsEnabled(boolean)} must be called prior to this.
* <p/>
* <p>
* This will just change the images specified with {@link #setFastForwardImageResource(int)},
* or use the defaults if they haven't been set, and block any click events.
* </p>
* <p>
* This method will NOT re-add buttons that have previously been removed with
* {@link #setFastForwardButtonRemoved(boolean)}.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ public void setNextButtonEnabled(boolean enabled) {
* Sets the button state for the Rewind button. This will just
* change the images specified with {@link #setRewindImageResource(int)},
* or use the defaults if they haven't been set
* </p>
* <p>
* This method will NOT re-add buttons that have previously been removed with
* {@link #setRewindButtonRemoved(boolean)}.
*
Expand All @@ -329,7 +329,7 @@ public void setRewindButtonEnabled(boolean enabled) {
* Sets the button state for the Fast Forward button. This will just
* change the images specified with {@link #setFastForwardImageResource(int)},
* or use the defaults if they haven't been set
* </p>
* <p>
* This method will NOT re-add buttons that have previously been removed with
* {@link #setFastForwardButtonRemoved(boolean)}.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void setFastForwardImageResource(@DrawableRes int resourceId) {
* Sets the button state for the Rewind button. This will just
* change the images specified with {@link #setRewindImageResource(int)},
* or use the defaults if they haven't been set
* </p>
* <p>
* This method will NOT re-add buttons that have previously been removed with
* {@link #setRewindButtonRemoved(boolean)}.
*
Expand All @@ -187,7 +187,7 @@ public void setRewindButtonEnabled(boolean enabled) {
* Sets the button state for the Fast Forward button. This will just
* change the images specified with {@link #setFastForwardImageResource(int)},
* or use the defaults if they haven't been set
* </p>
* <p>
* This method will NOT re-add buttons that have previously been removed with
* {@link #setFastForwardButtonRemoved(boolean)}.
*
Expand Down

0 comments on commit 0565e26

Please sign in to comment.