Merge branch 'master' into new-swap--updated-downloader
Fixed multiple conflicts to do with the repo updater moving to broadcasts from the previous progress listeners.
4
.gitmodules
vendored
@ -1,4 +0,0 @@
|
|||||||
[submodule "extern/Support"]
|
|
||||||
path = extern/Support
|
|
||||||
url = https://android.googlesource.com/platform/frameworks/support
|
|
||||||
ignore = dirty
|
|
12
CHANGELOG.md
@ -1,6 +1,9 @@
|
|||||||
### Upcoming release
|
### 0.95 (2015-08-04)
|
||||||
|
|
||||||
* Adapt UI to use Material Design
|
* Start porting UI to Material Design, including a new launcher icon
|
||||||
|
|
||||||
|
* Add support for app changelog links, which will appear for apps that have
|
||||||
|
them once the repositories have been updated again
|
||||||
|
|
||||||
* Redesign the App Details view with larger icons, expandable description and
|
* Redesign the App Details view with larger icons, expandable description and
|
||||||
links with icons
|
links with icons
|
||||||
@ -11,11 +14,16 @@
|
|||||||
* Remove the root installer, since the system installer is safer, more stable
|
* Remove the root installer, since the system installer is safer, more stable
|
||||||
and now easy to set up with root privileges
|
and now easy to set up with root privileges
|
||||||
|
|
||||||
|
* Speed up and simplify repo update process by streaming the data out of the
|
||||||
|
jar file directly
|
||||||
|
|
||||||
* Can now manually add swap repo via "Repositories" screen
|
* Can now manually add swap repo via "Repositories" screen
|
||||||
|
|
||||||
* Using NFC during swap now initiates a proper swap, rather than redirecting to
|
* Using NFC during swap now initiates a proper swap, rather than redirecting to
|
||||||
the "Repositories" screen
|
the "Repositories" screen
|
||||||
|
|
||||||
|
* Drop ant support to greatly simplify the build process and its maintenance
|
||||||
|
|
||||||
### 0.92 (2015-06-08)
|
### 0.92 (2015-06-08)
|
||||||
|
|
||||||
* Make swap only in portrait mode to prevent crashes and issues where UI elements are obscured
|
* Make swap only in portrait mode to prevent crashes and issues where UI elements are obscured
|
||||||
|
@ -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="940"
|
android:versionCode="95050"
|
||||||
android:versionName="0.94-test"
|
android:versionName="0.95"
|
||||||
>
|
>
|
||||||
|
|
||||||
<uses-sdk
|
<uses-sdk
|
||||||
@ -62,7 +62,7 @@
|
|||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:description="@string/app_description"
|
android:description="@string/app_description"
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:theme="@style/AppThemeDark"
|
android:theme="@style/AppThemeLight"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
>
|
>
|
||||||
|
|
||||||
|
@ -109,8 +109,7 @@ task binaryDeps(type: Copy, dependsOn: ':F-Droid:prepareReleaseDependencies') {
|
|||||||
include 'support-v4-preferencefragment/build/outputs/aar/support-v4-preferencefragment-release.aar',
|
include 'support-v4-preferencefragment/build/outputs/aar/support-v4-preferencefragment-release.aar',
|
||||||
'nanohttpd/core/build/libs/nanohttpd-2.1.0.jar',
|
'nanohttpd/core/build/libs/nanohttpd-2.1.0.jar',
|
||||||
'zipsigner/build/libs/zipsigner.jar',
|
'zipsigner/build/libs/zipsigner.jar',
|
||||||
'jmdns/build/libs/jmdns.jar',
|
'jmdns/build/libs/jmdns.jar'
|
||||||
'Support/v4/build/libs/support-v4.jar'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
into 'libs/binaryDeps'
|
into 'libs/binaryDeps'
|
||||||
@ -174,6 +173,9 @@ android {
|
|||||||
lintOptions {
|
lintOptions {
|
||||||
checkReleaseBuilds false
|
checkReleaseBuilds false
|
||||||
abortOnError false
|
abortOnError false
|
||||||
|
|
||||||
|
// Our translations are crowd-sourced
|
||||||
|
disable 'MissingTranslation'
|
||||||
}
|
}
|
||||||
|
|
||||||
// Enable all Android lint warnings
|
// Enable all Android lint warnings
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
# Licenses
|
# Licenses
|
||||||
|
|
||||||
To see which license any one of these libraries is under, consult the extern/ directory.
|
To see which license any one of these libraries is under, consult the extern/
|
||||||
If you have checked out the source for all dependencies (`git submodule update --init` from the root directory),
|
directory. If you have checked out the source for all dependencies (`git
|
||||||
then you should be able to find the relevant LICENSE file for each, or else you can consult upstream.
|
submodule update --init` from the root directory if there are any submodules),
|
||||||
|
then you should be able to find the relevant LICENSE file for each, or else
|
||||||
|
you can consult upstream.
|
||||||
|
|
||||||
|
|
||||||
# Building libraries from source
|
# Building libraries from source
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<lint>
|
|
||||||
<!-- Remove severity="ignore" to see the missing translations -->
|
|
||||||
<issue id="MissingTranslation" severity="ignore" />
|
|
||||||
<issue id="TrulyRandom" severity="ignore" />
|
|
||||||
<issue id="UnusedResources" severity="ignore">
|
|
||||||
<ignore path="res/values/default_repo.xml" />
|
|
||||||
</issue>
|
|
||||||
</lint>
|
|
Before Width: | Height: | Size: 222 B After Width: | Height: | Size: 127 B |
Before Width: | Height: | Size: 663 B After Width: | Height: | Size: 307 B |
Before Width: | Height: | Size: 545 B |
BIN
F-Droid/res/drawable-hdpi/ic_clear.png
Normal file
After Width: | Height: | Size: 207 B |
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 161 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 476 B |
Before Width: | Height: | Size: 490 B |
Before Width: | Height: | Size: 1000 B After Width: | Height: | Size: 476 B |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 565 B After Width: | Height: | Size: 216 B |
Before Width: | Height: | Size: 399 B After Width: | Height: | Size: 195 B |
Before Width: | Height: | Size: 875 B After Width: | Height: | Size: 387 B |
Before Width: | Height: | Size: 871 B After Width: | Height: | Size: 396 B |
Before Width: | Height: | Size: 974 B After Width: | Height: | Size: 460 B |
Before Width: | Height: | Size: 857 B After Width: | Height: | Size: 397 B |
BIN
F-Droid/res/drawable-hdpi/ic_toc_white.png
Normal file
After Width: | Height: | Size: 113 B |
Before Width: | Height: | Size: 227 B |
Before Width: | Height: | Size: 611 B |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 198 B After Width: | Height: | Size: 88 B |
Before Width: | Height: | Size: 470 B After Width: | Height: | Size: 213 B |
Before Width: | Height: | Size: 453 B |
BIN
F-Droid/res/drawable-mdpi/ic_clear.png
Normal file
After Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 270 B After Width: | Height: | Size: 115 B |
Before Width: | Height: | Size: 815 B After Width: | Height: | Size: 324 B |
Before Width: | Height: | Size: 378 B |
Before Width: | Height: | Size: 703 B After Width: | Height: | Size: 304 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 406 B After Width: | Height: | Size: 160 B |
Before Width: | Height: | Size: 318 B After Width: | Height: | Size: 157 B |
Before Width: | Height: | Size: 637 B After Width: | Height: | Size: 254 B |
Before Width: | Height: | Size: 591 B After Width: | Height: | Size: 247 B |
Before Width: | Height: | Size: 737 B After Width: | Height: | Size: 326 B |
Before Width: | Height: | Size: 625 B After Width: | Height: | Size: 268 B |
BIN
F-Droid/res/drawable-mdpi/ic_toc_white.png
Normal file
After Width: | Height: | Size: 85 B |
Before Width: | Height: | Size: 202 B |
Before Width: | Height: | Size: 269 B After Width: | Height: | Size: 97 B |
Before Width: | Height: | Size: 771 B After Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 646 B |
BIN
F-Droid/res/drawable-xhdpi/ic_clear.png
Normal file
After Width: | Height: | Size: 235 B |
Before Width: | Height: | Size: 0 B After Width: | Height: | Size: 151 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 655 B |
Before Width: | Height: | Size: 632 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 585 B |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 304 B |
Before Width: | Height: | Size: 477 B After Width: | Height: | Size: 220 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 509 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 465 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 562 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 496 B |
BIN
F-Droid/res/drawable-xhdpi/ic_toc_white.png
Normal file
After Width: | Height: | Size: 95 B |
Before Width: | Height: | Size: 263 B |
Before Width: | Height: | Size: 356 B After Width: | Height: | Size: 97 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 502 B |
Before Width: | Height: | Size: 1.5 KiB |
BIN
F-Droid/res/drawable-xxhdpi/ic_clear.png
Normal file
After Width: | Height: | Size: 309 B |
Before Width: | Height: | Size: 574 B After Width: | Height: | Size: 194 B |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 969 B |
Before Width: | Height: | Size: 843 B |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 842 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 336 B |
Before Width: | Height: | Size: 666 B After Width: | Height: | Size: 283 B |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 734 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 728 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 843 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 698 B |
BIN
F-Droid/res/drawable-xxhdpi/ic_toc_white.png
Normal file
After Width: | Height: | Size: 94 B |
Before Width: | Height: | Size: 374 B |
Before Width: | Height: | Size: 470 B After Width: | Height: | Size: 102 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 595 B |
BIN
F-Droid/res/drawable-xxxhdpi/ic_clear.png
Normal file
After Width: | Height: | Size: 377 B |
Before Width: | Height: | Size: 719 B After Width: | Height: | Size: 243 B |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 497 B |
Before Width: | Height: | Size: 835 B After Width: | Height: | Size: 343 B |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 967 B |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 915 B |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 938 B |
BIN
F-Droid/res/drawable-xxxhdpi/ic_toc_white.png
Normal file
After Width: | Height: | Size: 100 B |
Before Width: | Height: | Size: 460 B |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 198 B |
Before Width: | Height: | Size: 470 B |
Before Width: | Height: | Size: 270 B |
Before Width: | Height: | Size: 815 B |
Before Width: | Height: | Size: 378 B |
Before Width: | Height: | Size: 703 B |
Before Width: | Height: | Size: 406 B |
Before Width: | Height: | Size: 318 B |