Merge pull request #1575 from kiwix/release/3.0.5

Release/3.0.5
This commit is contained in:
Seán Mac Gillicuddy 2019-10-29 15:31:45 +00:00 committed by GitHub
commit db948682ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 15 additions and 18 deletions

View File

@ -1,3 +1,7 @@
3.0.5
BUGFIX: Some zim files could not be downloaded due to missing metadata
BUGFIX: Some mirrors were not allowed to download via http
3.0.4
BUGFIX: Some users language was causing a crash due to unstable ISO codes
BUGFIX: Some unstable zim files were crashing when opened

View File

@ -193,7 +193,7 @@ def buildNumber = System.getenv('TRAVIS_BUILD_NUMBER') ?: "dev"
ext {
versionMajor = 3
versionMinor = 0
versionPatch = 4
versionPatch = 5
}
private String generateVersionName() {

View File

@ -1,7 +1,7 @@
The whole of Wikipedia on your device!
The app is a lightweight piece of software reading bigger files stored on your device or SD card: once it is installed, you can select which additional content you would like to download (Wikipedia, Wiktionary, TED talks, etc.) and be ready for when your internet connexion is bad (or need to be in airplane mode)!
The app is a lightweight piece of software reading bigger files stored on your device or SD card: once it is installed, you can select which additional content you would like to download (Wikipedia, Wiktionary, TED talks, etc.) and be ready for when your internet connection is bad (or need to be in airplane mode)!
Please read the instructions inside the App or on the website (www.kiwix.org) to learn about the various contents that are available for download.
Note: Kiwix is also available on regular computers (Windows, Mac, Linux).
Note: Kiwix is also available on regular computers (Windows, Mac, Linux).

View File

@ -1,4 +1,2 @@
BUGFIX: Some users language was causing a crash due to unstable ISO codes
BUGFIX: Some unstable zim files were crashing when opened
BUGFIX: Long titles were rendering off screen on home page
BUGFIX: Issues when opening a file externally
BUGFIX: Some zim files could not be downloaded due to missing metadata
BUGFIX: Some mirrors were not allowed to download via http

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.kiwix.kiwixmobile"
android:installLocation="auto">
@ -22,10 +23,11 @@
android:hardwareAccelerated="true"
android:icon="@mipmap/kiwix_icon"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/kiwix_icon_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true"
tools:targetApi="m">
<activity
android:name=".splash.SplashActivity"

View File

@ -52,9 +52,9 @@ public class MetaLinkNetworkEntity {
public List<Url> urls;
@Element
private long size;
@ElementMap(entry = "hash", key = "type", attribute = true, inline = true)
@ElementMap(entry = "hash", key = "type", attribute = true, inline = true, required = false)
public Map<String, String> hashes;
@Element
@Element(required = false)
public Pieces pieces;
public String getName() {

View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">kiwix.org</domain>
<domain includeSubdomains="true">localhost</domain>
</domain-config>
</network-security-config>