Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 380c8b8a authored by Francesco Saltori's avatar Francesco Saltori Committed by GitHub
Browse files

Prepare for 3.7 release (#122)

* Add changelog

* Bump version

* Add changelog for F-Droid
parent e23ef1bd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -37,8 +37,8 @@ android {
        applicationId "com.gsnathan.pdfviewer"
        minSdkVersion 21
        targetSdkVersion 30
        versionCode 27
        versionName "3.6"
        versionCode 28
        versionName "3.7"
        vectorDrawables.useSupportLibrary = true
    }

+4 −4
Original line number Diff line number Diff line
@@ -49,10 +49,10 @@ public class Utils {

    static void showLog(AppCompatActivity context) {
        WhatsNew log = WhatsNew.newInstance(
                new WhatsNewItem("Multi-document mode", "You can now open multiple documents at the same time!", R.drawable.star_icon),
                new WhatsNewItem("Pdf Night Mode", "PDFs can now be viewed in night mode! (Look in settings)", R.drawable.star_icon),
                new WhatsNewItem("Optimizations and UI improvements", "Especially when opening files from the Internet.", R.drawable.star_icon),
                new WhatsNewItem("Bugs", "A bunch of bug fixes.", R.drawable.star_icon)
                new WhatsNewItem("Full screen mode", "A new button has been added to the bottom bar to read PDFs in full screen!", R.drawable.star_icon),
                new WhatsNewItem("Keep the screen on while reading", "You can enable this feature in Settings.", R.drawable.star_icon),
                new WhatsNewItem("Sharing improvements and fixes", "Including better support for third-party share dialogs.", R.drawable.star_icon),
                new WhatsNewItem("Bugs", "A bunch of bug fixes and robustness improvements.", R.drawable.star_icon)
        );
        log.setTitleColor(Color.BLACK);
        log.setTitleText(context.getResources().getString(R.string.appChangelog));
+4 −0
Original line number Diff line number Diff line
- Added full screen mode
- Added a new option to keep the screen on while reading
- Sharing improvements and fixes
- Miscellaneous bug fixes and robustness improvements