Skip to content

Commit

Permalink
update vers 7.5.50
Browse files Browse the repository at this point in the history
  • Loading branch information
chihung93 committed Jan 31, 2018
1 parent a345174 commit 01e7d85
Show file tree
Hide file tree
Showing 382 changed files with 20,913 additions and 13,044 deletions.
3 changes: 3 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,17 @@ dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'org.greenrobot:greendao:3.2.2'
implementation 'org.greenrobot:eventbus:3.1.0-RC'
implementation 'org.greenrobot:eventbus:3.1.1'
implementation 'org.greenrobot:greendao-api:3.2.2'
implementation 'org.jsoup:jsoup:1.10.3'
implementation 'com.googlecode.juniversalchardet:juniversalchardet:1.0.3'
implementation 'com.squareup.okhttp3:okhttp:3.9.0'
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
implementation 'com.squareup.okio:okio:1.13.0'
implementation files('libs/commons-compress-1.14.jar')
implementation files('libs/rtfparserkit-1.10.0.jar')
implementation 'com.google.android.gms:play-services:11.4.2'
implementation 'com.android.support:cardview-v7:26.1.0'
implementation 'com.android.support:recyclerview-v7:26.1.0'
implementation 'com.android.support:multidex:1.0.1'
implementation 'com.android.support:multidex:1.0.2'
compile 'com.burgstaller:okhttp-digest:1.15'
}
95 changes: 60 additions & 35 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.foobnix.pdf.reader"
android:installLocation="auto"
android:versionCode="469"
android:versionName="7.2.26" >
android:versionCode="476"
android:versionName="7.5.50" >

<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="26" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.VIBRATE" />

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

<!-- android:name="com.foobnix.pdf.info.TestAppName" -->
<application
android:name="org.ebookdroid.LirbiApp"
android:name="org.ebookdroid.LibreraApp"
android:icon="@drawable/icon_pdf_reader"
android:label="@string/app_name"
android:largeHeap="true"
Expand Down Expand Up @@ -54,19 +54,44 @@
</intent-filter>
</activity>
<activity
android:name="org.ebookdroid.ui.viewer.ViewerActivity"
android:name="com.foobnix.pdf.search.activity.HorizontalViewActivity"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:exported="true"
android:launchMode="singleTask"
android:resizeableActivity="true"
android:screenOrientation="behind"
android:windowSoftInputMode="adjustPan" >
</activity>
<activity android:name="test.MimeTestActivity" >
<!--
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="file" android:host="*" />
<data android:scheme="content" android:host="*"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:mimeType="*/*" android:pathPattern=""/>
</intent-filter>
-->
</activity>
<activity
android:name="org.ebookdroid.ui.viewer.VerticalViewActivity"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:exported="true"
android:launchMode="singleTask"
android:resizeableActivity="true"
android:screenOrientation="behind"
android:windowSoftInputMode="adjustPan" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:host="*" />
<data android:scheme="file" />
<data android:scheme="content" />
Expand Down Expand Up @@ -97,17 +122,15 @@
<data android:mimeType="image/x-djvu" />
<data android:mimeType="image/x.djvu" />
<data android:mimeType="text/plain" />
<data android:mimeType="image/tiff" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:host="*" />
<data android:scheme="file" />
<data android:scheme="content" />
<data android:mimeType="*/*" />
<data android:pathPattern=".*\\.txt" />
<data android:pathPattern=".*\\.epub" />
<data android:pathPattern=".*\\.fb2" />
Expand All @@ -122,9 +145,10 @@
<data android:pathPattern=".*\\.azw" />
<data android:pathPattern=".*\\.azw3" />
<data android:pathPattern=".*\\.azw4" />
<data android:pathPattern=".*\\.pdf" />
<data android:pathPattern=".*\\.prc" />
<data android:pathPattern=".*\\.cbz" />
<data android:pathPattern=".*\\.cbr" />
<data android:pathPattern=".*\\.tiff" />
</intent-filter>
</activity>

Expand Down Expand Up @@ -164,56 +188,53 @@
</intent-filter>
</activity>
<activity
android:name="com.foobnix.ui2.MainTabs2"
android:name="com.test.TestAdsActivity"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:exported="true"
android:launchMode="singleTop"
android:resizeableActivity="true"
android:screenOrientation="behind"
android:windowSoftInputMode="stateHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN1" />

<category android:name="android.intent.category.LAUNCHER1" />
</intent-filter>
</activity>
<activity
android:name="com.foobnix.ui2.MainTabs2"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:exported="true"
android:launchMode="singleTop"
android:resizeableActivity="true"
android:screenOrientation="behind"
android:windowSoftInputMode="stateHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PROCESS_TEXT" />
<action android:name="android.intent.action.PROCESS_TEXT1" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.DEFAULT1" />

<data android:mimeType="text/plain" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<action android:name="android.intent.action.SEARCH1" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.DEFAULT1" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.SEND1" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.DEFAULT1" />

<data android:mimeType="text/plain" />
</intent-filter>
</activity>
<activity
android:name="com.foobnix.pdf.search.activity.HorizontalViewActivity"
android:configChanges="orientation|screenSize|keyboard|keyboardHidden"
android:exported="true"
android:launchMode="singleTask"
android:resizeableActivity="true"
android:screenOrientation="behind" >
</activity>

<!-- PLAY_SERVICE --><meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />

<activity
android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
Expand Down Expand Up @@ -263,6 +284,10 @@
<meta-data
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H"
android:value="598.0dip" />
<meta-data
xmlns:android="http://schemas.android.com/apk/res/android"
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>

</manifest>
11 changes: 11 additions & 0 deletions app/src/main/assets/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Search text in the book
Cancel book loading for easy mode
Set current page number like in book
Sort by series index in series by default
Make font bold for e-ink screens
Change app language from the app
Change font size from the app
Disable animatin in e-ink mode
Move page in easy mode
Change Contrast and Brightness
e-ink theme (adaptation for e-ink eReaders)
Set max speech speed to 4x
Remove book from Library
Sync files in folders
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/assets/licenses.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h3>Librera Reader</h3>
</pre>


<h3>MuPDF 1.11-rc1</h3>
<h3>MuPDF 1.12</h3>
<a href="http://mupdf.com">http://mupdf.com</a>
<pre>

Expand Down
15 changes: 8 additions & 7 deletions app/src/main/assets/recent.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
* Free books in catalogs
* Add catalog links to favorites
* Automatic hyphenation for book language
* Book awards lists and top books lists
* Support personal FBReader catalog
* Show all series by Author, by Genre
* Many improvements and small fixes by your feedback
* Improved the speed of opening all formats and PDF, EPUB
* Theme "Ink" for devices with electronic ink
* Change the contrast and brightness
* Negative brightness
* Bluelight filter
* Autocomplete queries in the library
* Improved interface
* Many improvements and bug fixes
Loading

0 comments on commit 01e7d85

Please sign in to comment.