Skip to content

Commit

Permalink
Merge pull request #597 from anthonycr/dev
Browse files Browse the repository at this point in the history
Version 4.5.1
  • Loading branch information
anthonycr authored Jun 29, 2017
2 parents 931b0a3 + d7d2a58 commit e00bb88
Show file tree
Hide file tree
Showing 116 changed files with 2,033 additions and 1,315 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jdk:
android:
components:
- tools
- build-tools-25.0.3
- android-25
- build-tools-26.0.0
- android-26
- extra-android-support
- extra-android-m2repository
licenses:
Expand All @@ -18,4 +18,5 @@ before_install:
install:
- ./gradlew
script:
- ./gradlew assembleDebug --stacktrace
- ./gradlew :app:assembleDebug --stacktrace
- ./gradlew :app:test --stacktrace
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Change Log
==========

Version 4.5.1 *(2017-06-28)*
----------------------------
- Fixed bug with folders disappearing on bookmark homepage
- Updated history page
- Updated bookmark page
- Updating target to Android O
- Updating default bookmark favicons
- Fixed occasional bug with bookmark long press
- Updated downloads page design
- Enhanced keyboard shortcuts
- Fixed bug in google search suggestions for certain languages

Version 4.5.0 *(2017-06-08)*
----------------------------
- Translation updates
Expand Down
11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,10 @@
![](ic_launcher_small.png)

#### Download
* [Download APK from here](https://github.com/anthonycr/Lightning-Browser/releases)

* [Download from F-Droid](https://f-droid.org/repository/browse/?fdfilter=lightning&fdid=acr.browser.lightning)

* [Download Free from Google Play](https://play.google.com/store/apps/details?id=acr.browser.barebones)

* [Download Paid from Google Play](https://play.google.com/store/apps/details?id=acr.browser.lightning)
[<img src="https://f-droid.org/badge/get-it-on.png"
alt="Get it on F-Droid"
height="80">](https://f-droid.org/app/acr.browser.lightning) [<img src="https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png"
alt="Get it on Google Play" height="80">](https://play.google.com/store/apps/details?id=acr.browser.lightning)

#### Master Branch
* [![Build Status](https://travis-ci.org/anthonycr/Lightning-Browser.svg?branch=master)](https://travis-ci.org/anthonycr/Lightning-Browser)
Expand Down
15 changes: 10 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'com.getkeepsafe.dexcount'

android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
compileSdkVersion project.targetSdkVersion
buildToolsVersion project.buildToolsVersion

defaultConfig {
minSdkVersion 14
targetSdkVersion 25
minSdkVersion project.minSdkVersion
targetSdkVersion project.targetSdkVersion
versionName project.versionName
vectorDrawables.useSupportLibrary = true
}
Expand Down Expand Up @@ -63,9 +64,10 @@ dexcount {
}

dependencies {
testCompile 'junit:junit:4.12'

// support libraries
def supportLibVersion = '25.3.1'
def supportLibVersion = '25.4.0'
compile "com.android.support:palette-v7:$supportLibVersion"
compile "com.android.support:appcompat-v7:$supportLibVersion"
compile "com.android.support:design:$supportLibVersion"
Expand Down Expand Up @@ -107,4 +109,7 @@ dependencies {
def leakCanaryVersion = '1.5.1'
debugCompile "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion"
releaseCompile "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion"

// Kotlin
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}
Loading

0 comments on commit e00bb88

Please sign in to comment.