Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
quaap committed Apr 9, 2018
1 parent d3a1957 commit e93a746
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.quaap.launchtime"
android:versionCode="74"
android:versionName="0.7.4">
android:versionCode="75"
android:versionName="0.7.5">

<uses-permission
android:name="android.permission.BIND_APPWIDGET"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/quaap/launchtime/LaunchReceiver.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class LaunchReceiver extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
if (!BuildConfig.DEBUG) Thread.setDefaultUncaughtExceptionHandler(new ExceptionHandler(context));

Log.i("InstallCatch", intent.toString());
//Log.i("InstallCatch", intent.toString());

try {
String action = intent.getAction();
Expand Down
12 changes: 9 additions & 3 deletions app/src/main/java/com/quaap/launchtime/components/MsgBox.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void onClick(DialogInterface dialog, int which) {


public static void showNewsMessage(final Context context, SharedPreferences prefs) {
final int newsnum = 74;
final int newsnum = 75;
final int news = prefs.getInt("seennews", 0);
if (news<newsnum) {
new Handler().postDelayed(new Runnable() {
Expand All @@ -48,11 +48,17 @@ public void run() {

String msg = "";
msg += "" +
"In 0.7.5:\n" +
" * More apps categorized.\n" +
" * Updated German translations.\n" +
" * Recognize new apps installed on Oreo.\n";

msg += "\n" +
"In 0.7.4:\n" +
" * Fix crashes and other bugs.\n";

msg += "" +
"\nIn 0.7.3:\n" +
msg += "\n" +
"In 0.7.3:\n" +
" * Better widgets support.\n" +
" * Swipe left and right to switch categories.\n" +
" * Better large screen/tablet support.\n" +
Expand Down

0 comments on commit e93a746

Please sign in to comment.