Skip to content

Commit

Permalink
v 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrelevy committed May 3, 2013
1 parent 96fdcec commit 987e1e5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
4 changes: 2 additions & 2 deletions permission/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.androidsoft.app.permission"
android:versionCode="12"
android:versionName="1.4.1">
android:versionCode="13"
android:versionName="1.4.2">

<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="11" />

Expand Down
Binary file added permission/releases/permission-1.4.2.apk
Binary file not shown.
6 changes: 3 additions & 3 deletions permission/res/values-fr/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
<b>Nouveau dans la version 1.4:</b>\n
\t• Filtrage des applications par permission :\n
\t• Vous pouvez désormais voir toutes les applications qui requièrent une permission donnée.\n
<b>Nouveau dans la version 1.4.1:</b>\n
\t• Accessibilité et corrections mineures.\n
<b>Nouveau dans la version 1.4.2:</b>\n
\t• Correction d\'un bug de lecture de certaines permissions.\n
\n\nToujours aucune pub, ni permission requise.
\n\nN\'oubliez de laisser une évaluation sur Google Play.
</string>

<!-- Credits screen -->
<string name="credits_current_version">Version 1.4.1</string>
<string name="credits_current_version">Version 1.4.2</string>
<string name="credits_app_name">Permission Friendly Apps</string>

<!-- Menu -->
Expand Down
6 changes: 3 additions & 3 deletions permission/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@
<string name="whats_new_dialog_message">Thanks for upgrading Permission Friendly Apps\n\n
<b>New in version 1.4:</b>\n
\t• Filtering by permission : \n
<b>New in version 1.4.1:</b>\n
\t• Acessibility descriptions and minor enhancements and fixes \n
<b>New in version 1.4.2:</b>\n
\t• bug fix \n
\t Now you can see all applications that require a given permission.\n
\n\n• Still no ads and no permission required.
\n\n• Enjoy it and don\'t forget to leave a rating on Google Play Store.
</string>


<!-- Credits screen -->
<string name="credits_current_version">Version 1.4.1</string>
<string name="credits_current_version">Version 1.4.2</string>
<string name="credits_app_name">Permission Friendly Apps</string>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -406,8 +406,11 @@ private static void registerPermissionApp(AppInfo app, String packageName, Packa
{
PermissionInfo pi = pm.getPermissionInfo(permission, PackageManager.GET_PERMISSIONS);
String label = pi.loadLabel(pm).toString();
label = label.substring(0, 1).toUpperCase() + label.substring(1);
register(label);
if( (label != null) && (label.length() > 0 ))
{
label = label.substring(0, 1).toUpperCase() + label.substring(1);
register(label);
}
}
catch (NameNotFoundException ex)
{
Expand Down

0 comments on commit 987e1e5

Please sign in to comment.