Skip to content

Commit 4b98fe7

Browse files
author
juergen
committed
v5.0
1 parent e3970ab commit 4b98fe7

File tree

50 files changed

+167
-446
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+167
-446
lines changed

.gitignore

100644100755
+16-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
# Created by .ignore support plugin (hsz.mobi)
2-
/.gradle/
3-
/.idea/
4-
/build/
5-
/gradle/
6-
/gradlew
7-
/local.properties
8-
/app/build/
9-
Würde app/app.iml löschen
10-
Würde browser.iml löschen
1+
# built application files
2+
# files for the dex VM
3+
# Java class files
4+
# generated files
5+
gen/
6+
7+
# Local configuration file (sdk path, etc)
8+
local.properties
9+
10+
# Eclipse project files
11+
# Android Studio
12+
.idea/
13+
.gradle
14+
gradle
15+
build
16+
*.iml

.idea/misc.xml

+1-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### v 5.1 (WIP)
2+
- new: Chinese translation (Thanks: lishoujun)
3+
- improved: hide/show toolbar
4+
- fix: force close when clicking direct download link
5+
- fix: screenshot, when started via holder service
6+
- fix: some strings
7+
- fix: possible force close on Android > Nougat
8+
19
### v 5.0
210

311
With this update "Ninja Browser" is used as base for "Browser". The

README.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Browser
22

33
A simple Android browser based on webview. The goal is to provide a lightweight but power full browser. The base is "Ninja" (https://github.com/mthli/Ninja).
4-
The aim of the project is to provide a simple and light wight but powerfull browser with a nice looking user interface.
4+
The aim of the project is to provide a simple and light wight but powerful browser with a nice looking user interface.
55

66
<a href="https://f-droid.org/packages/de.baumann.browser/" target="_blank">
77
<img src="https://f-droid.org/badge/get-it-on.png" alt="Get it on F-Droid" height="80"/></a>
@@ -20,23 +20,20 @@ The aim of the project is to provide a simple and light wight but powerfull brow
2020
- enable/disable cookies, javascript, location access
2121
- save login data in separate, encrypted database
2222
- whitelist for javascript and AdBlocker
23-
- pin protection
2423
- toggle image loading
25-
- offline use
2624
- backup data
2725
- AdBlocker
2826

2927

3028
### UI/Handling:
3129

32-
- optimized for one hand handling (omnibox at bottom)
30+
- optimized for one hand handling (toolbar at bottom)
3331
- tab control (switch, open, close unlimited tabs)
3432
- Android 7 app shortcuts
3533
- full material design
3634
- fullscreen browsing (optional)
3735
- navigation button in fullscreen mode
3836
- request desktop site
39-
- five tabs
4037

4138

4239
### Some nice extra features:
@@ -46,4 +43,4 @@ The aim of the project is to provide a simple and light wight but powerfull brow
4643
- open links in background
4744
- Websearch (from marked text context menu)
4845
- screenshots of the whole website
49-
- build in file browser (open, share, rename, delete files)
46+
- build in file browser (open, share, delete files)

app/build.gradle

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 27
5-
buildToolsVersion "27.0.2"
5+
buildToolsVersion "27.0.3"
66

77
defaultConfig {
88
applicationId "de.baumann.browser"
99
minSdkVersion 21
1010
targetSdkVersion 27
11-
versionCode 65
11+
versionCode 66
1212
versionName "5.0"
1313
}
1414

@@ -26,10 +26,10 @@ android {
2626
}
2727

2828
dependencies {
29-
compile 'com.android.support:support-v4:27.0.2'
30-
compile 'com.android.support:appcompat-v7:27.0.2'
31-
compile 'com.android.support:design:27.0.2'
32-
compile 'com.android.support:cardview-v7:27.0.2'
33-
compile 'com.github.bumptech.glide:glide:4.3.1'
34-
compile 'com.mobapphome.library:mah-encryptor-lib:1.0.1'
29+
implementation 'com.android.support:support-v4:27.0.2'
30+
implementation 'com.android.support:appcompat-v7:27.0.2'
31+
implementation 'com.android.support:design:27.0.2'
32+
implementation 'com.android.support:cardview-v7:27.0.2'
33+
implementation 'com.github.bumptech.glide:glide:4.3.1'
34+
implementation 'com.mobapphome.library:mah-encryptor-lib:1.0.1'
3535
}

0 commit comments

Comments
 (0)