Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
32c6a94fbb | ||
![]() |
2caef8b4b1 | ||
![]() |
d0af343dfd | ||
![]() |
1ebe9df9a2 | ||
![]() |
b70ec6b7aa |
16
CHANGELOG.md
16
CHANGELOG.md
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user