Compare commits

...

5 Commits

Author SHA1 Message Date
Daniel Martí
32c6a94fbb Bump to 0.96.1 2015-09-24 16:42:14 -07:00
Daniel Martí
2caef8b4b1 Update changelog 2015-09-24 16:42:11 -07:00
Daniel Martí
d0af343dfd Backport repo update notification 2.X crash fix
Fixed by @pserwylo in master, backporting for 0.96.1. Fixes #421.
2015-09-24 16:38:15 -07:00
Daniel Martí
1ebe9df9a2 Bump to 0.96 2015-09-02 17:43:39 -07:00
Daniel Martí
b70ec6b7aa Update changelog for 0.96 2015-09-02 17:43:31 -07:00
3 changed files with 16 additions and 11 deletions

View File

@ -1,4 +1,8 @@
### 0.96 (2015-09-??) ### 0.96.1 (2015-09-24)
* Fix crash when updating repos on Android 2.3.7 or older
### 0.96 (2015-09-03)
* Move the repo index update to a notification * Move the repo index update to a notification
@ -6,18 +10,12 @@
* Don't let users try to uninstall system apps that haven't been updated * Don't let users try to uninstall system apps that haven't been updated
* Disable prompt to install F-Droid as a privileged app until it's more stable
* Various bugfixes in the process that installs F-Droid as a privileged app * Various bugfixes in the process that installs F-Droid as a privileged app
* Fix crash when updating from an older release if using the "Light with dark
ActionBar" theme
* Re-add SuperUser third-party permission to the manifest since some systems
require it
* Fix privileged installer confirmation screen issues on Android 2.X/3.X/4.X * Fix privileged installer confirmation screen issues on Android 2.X/3.X/4.X
* Disable HTTPS support in swap until it's stable
* Fix a few crashes, including package receivers and NFC actions * Fix a few crashes, including package receivers and NFC actions
* Translation updates * Translation updates

View File

@ -3,8 +3,8 @@
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
package="org.fdroid.fdroid" package="org.fdroid.fdroid"
android:installLocation="auto" android:installLocation="auto"
android:versionCode="96005" android:versionCode="96150"
android:versionName="0.96-alpha5" android:versionName="0.96.1"
> >
<uses-sdk <uses-sdk

View File

@ -160,6 +160,13 @@ public class UpdateService extends IntentService implements ProgressListener {
.setOngoing(true) .setOngoing(true)
.setCategory(NotificationCompat.CATEGORY_SERVICE) .setCategory(NotificationCompat.CATEGORY_SERVICE)
.setContentTitle(getString(R.string.update_notification_title)); .setContentTitle(getString(R.string.update_notification_title));
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
Intent intent = new Intent(this, FDroid.class);
// TODO: Is this the correct FLAG?
notificationBuilder.setContentIntent(PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
}
notificationManager.notify(NOTIFY_ID_UPDATING, notificationBuilder.build()); notificationManager.notify(NOTIFY_ID_UPDATING, notificationBuilder.build());
} }