Skip to content

Commit

Permalink
Merge branch 'release-1.5.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteckler committed Oct 23, 2014
2 parents 85bea2f + 9d55cba commit 5f900f8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ android {
applicationId 'com.ryansteckler.nlpunbounce'
minSdkVersion 16
targetSdkVersion 20
versionCode 33
versionName '1.5'
versionCode 34
versionName '1.5.1'
}
buildTypes {
release {
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="Unbounce"
android:label="@string/app_name"
android:theme="@style/UnbounceThemeDark" >
<meta-data
android:name="xposedmodule"
Expand All @@ -20,7 +20,7 @@
android:value="42" />
<meta-data
android:name="xposeddescription"
android:value="Control alarms and wakelocks" />
android:value="Tame your alarms, wakelocks and services" />

<activity
android:name=".SettingsActivity"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
public class Wakelocks implements IXposedHookLoadPackage {

private static final String TAG = "Unbounce: ";
private static final String VERSION = "1.5"; //This needs to be pulled from the manifest or gradle build.
private static final String VERSION = "1.5.1"; //This needs to be pulled from the manifest or gradle build.
private HashMap<String, Long> mLastWakelockAttempts = null; //The last time each wakelock was allowed.
private HashMap<String, Long> mLastAlarmAttempts = null; //The last time each alarm was allowed.
private HashMap<String, Long> mLastServiceAttempts = null; //The last time each wakelock was allowed.
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/xml/preferences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
android:key="about_author"
android:editable="false"
android:defaultValue="0"
android:summary="Version: 1.5"
android:summary="Version: 1.5.1"
/>

<Preference
Expand Down

0 comments on commit 5f900f8

Please sign in to comment.