Skip to content

Commit e18ae46

Browse files
committed
new release
1 parent 366f438 commit e18ae46

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# OpenLauncher
44

5-
This is an open source launcher project for Android devices that has been built completely from scratch. The main goal of this launcher is to find a healthy medium between customization and simplicity. At this point in time it implements most features required in a typical launcher but could benefit greatly from some general polish. If you would like to help out feel free to submit pull requests or ask about joining the development team.
5+
This is an open source launcher project for Android devices that has been built completely from scratch. The main goal of this launcher is to find a healthy medium between customization and simplicity. At this point in time it implements most features required in a typical launcher but could benefit greatly from some general polish. If you would like to help out feel free to submit issues or ask about submitting a pull request with a feature you want to see in the launcher.
66

77
<div style="display:flex;">
88
<a href="https://f-droid.org/repository/browse/?fdid=com.benny.openlauncher">

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ android {
2222
resValue 'string', 'app_name', "OpenLauncher"
2323

2424
applicationId "com.benny.openlauncher"
25-
versionCode 35
26-
versionName "0.5.12"
25+
versionCode 36
26+
versionName "0.6.0"
2727
}
2828

2929
productFlavors {

app/src/main/java/com/benny/openlauncher/activity/OnBoardActivity.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ public class OnBoardActivity extends MaterialIntroActivity {
2222
public void onCreate(Bundle savedInstanceState) {
2323
super.onCreate(savedInstanceState);
2424

25+
if (!getSharedPreferences("quickSettings", Context.MODE_PRIVATE).getBoolean("firstStart", true)) {
26+
getSharedPreferences("app", Context.MODE_PRIVATE).edit().putBoolean(getResources().getString(R.string.pref_key__show_intro), false).commit();
27+
}
2528
if (!getSharedPreferences("app", Context.MODE_PRIVATE).getBoolean(getResources().getString(R.string.pref_key__show_intro), false)) {
2629
skipStart();
2730
return;

app/src/main/java/com/benny/openlauncher/util/LauncherAction.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,6 @@ public static ActionDisplayItem getActionItem(String action) {
122122
if (item._action.toString().equals(action)) {
123123
return item;
124124
}
125-
// TODO delete id check in the future
126-
if (Integer.toString(item._id).equals(action)) {
127-
return item;
128-
}
129125
}
130126
return null;
131127
}

metadata/en-US/full_description.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This is an open source launcher project for Android devices that has been built completely from scratch. The main goal of this launcher is to find a healthy balance between an adequate level of customization and too many unused features that only complicate a launcher. If you would like to help out feel free to submit pull requests or ask about joining the development team. Jump on Stringlate or GitHub and translate this app to your native language, we will always accept a community translation!
1+
This is an open source launcher project for Android devices that has been built completely from scratch. The main goal of this launcher is to find a healthy balance between an adequate level of customization and too many unused features that only complicate a launcher. If you would like to help out feel free to submit issues or ask about submitting a pull request with a feature you want to see in the launcher. Jump on Stringlate or GitHub and translate this app to your native language, we will always accept community translations!
22

33
<b>Features</b>
44

0 commit comments

Comments
 (0)