update fork info
40
README.md
@ -1,36 +1,25 @@
|
|||||||
# Lightning Browser [![Build Status](https://travis-ci.org/anthonycr/Lightning-Browser.svg?branch=master)](https://travis-ci.org/anthonycr/Lightning-Browser)
|
# Lightning Browser
|
||||||
|
|
||||||
#### Speed, Simplicity, Security
|
#### Speed, Simplicity, Security
|
||||||
![](ic_launcher_small.png)
|
![](ic_launcher_small.png)
|
||||||
|
|
||||||
#### Download
|
#### About fork
|
||||||
[<img src="https://f-droid.org/badge/get-it-on.png"
|
That fork of Lightning Browser aims on native support of I2P without ability go clearnet sites.
|
||||||
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)
|
|
||||||
|
|
||||||
#### Dev Branch
|
|
||||||
* [![Build Status](https://travis-ci.org/anthonycr/Lightning-Browser.svg?branch=dev)](https://travis-ci.org/anthonycr/Lightning-Browser)
|
|
||||||
|
|
||||||
#### Features
|
#### Features
|
||||||
* Bookmarks
|
* Bookmarks
|
||||||
|
|
||||||
* History
|
* History
|
||||||
|
|
||||||
* Multiple search engines (Google, Bing, Yahoo, StartPage, DuckDuckGo, etc.)
|
|
||||||
|
|
||||||
* Incognito mode
|
* Incognito mode
|
||||||
|
|
||||||
* Follows Google design guidelines
|
|
||||||
|
|
||||||
* Unique utilization of navigation drawer for tabs
|
* Unique utilization of navigation drawer for tabs
|
||||||
|
|
||||||
* Google search suggestions
|
* Support of Legwork I2P search engine
|
||||||
|
|
||||||
* Orbot Proxy support and I2P support
|
* Legwork search suggestions
|
||||||
|
|
||||||
|
* TODO: I2P-only support
|
||||||
|
|
||||||
#### Permissions
|
#### Permissions
|
||||||
|
|
||||||
@ -48,17 +37,6 @@ alt="Get it on Google Play" height="80">](https://play.google.com/store/apps/det
|
|||||||
* Please contribute code back if you can. The code isn't perfect.
|
* Please contribute code back if you can. The code isn't perfect.
|
||||||
* Please add translations/translation fixes as you see need
|
* Please add translations/translation fixes as you see need
|
||||||
|
|
||||||
#### Contributing
|
|
||||||
* [The Trello Board](https://trello.com/b/Gwjx8MC3/lightning-browser)
|
|
||||||
* Contributions are always welcome
|
|
||||||
* If you want a feature and can code, feel free to fork and add the change yourself and make a pull request
|
|
||||||
* PLEASE use the ````dev```` branch when contributing as the ````master```` branch is supposed to be for stable builds. I will not reject your pull request if you make it on master, but it will annoy me and make my life harder.
|
|
||||||
* Code Style
|
|
||||||
* Hungarian Notation
|
|
||||||
* Prefix member variables with 'm'
|
|
||||||
* Prefix static member variables with 's'
|
|
||||||
* Use 4 spaces instead of a tab (\t)
|
|
||||||
|
|
||||||
#### License
|
#### License
|
||||||
```
|
```
|
||||||
Copyright 2014 Anthony Restaino
|
Copyright 2014 Anthony Restaino
|
||||||
@ -70,4 +48,8 @@ Lightning Browser
|
|||||||
was not distributed with this file, You can obtain one at
|
was not distributed with this file, You can obtain one at
|
||||||
|
|
||||||
http://mozilla.org/MPL/2.0/
|
http://mozilla.org/MPL/2.0/
|
||||||
|
|
||||||
|
Coryright 2018 PurpleI2P
|
||||||
|
|
||||||
|
Fork of Lightning Browser with same license
|
||||||
```
|
```
|
||||||
|
@ -1371,7 +1371,6 @@ public abstract class BrowserActivity extends ThemableBrowserActivity implements
|
|||||||
@Override
|
@Override
|
||||||
protected void onStop() {
|
protected void onStop() {
|
||||||
super.onStop();
|
super.onStop();
|
||||||
mProxyUtils.onStop();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -1388,7 +1387,6 @@ public abstract class BrowserActivity extends ThemableBrowserActivity implements
|
|||||||
@Override
|
@Override
|
||||||
protected void onStart() {
|
protected void onStart() {
|
||||||
super.onStart();
|
super.onStart();
|
||||||
mProxyUtils.onStart(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -262,7 +262,7 @@ public class PreferenceManager {
|
|||||||
case Constants.PROXY_MANUAL:
|
case Constants.PROXY_MANUAL:
|
||||||
return proxy;
|
return proxy;
|
||||||
default:
|
default:
|
||||||
return Constants.NO_PROXY;
|
return Constants.PROXY_I2P;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -151,12 +151,6 @@ public class ProxyUtils {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onStop() {
|
|
||||||
}
|
|
||||||
|
|
||||||
public void onStart(final Activity activity) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@Constants.Proxy
|
@Constants.Proxy
|
||||||
public static int setProxyChoice(int choice, @NonNull Activity activity) {
|
public static int setProxyChoice(int choice, @NonNull Activity activity) {
|
||||||
switch (choice) {
|
switch (choice) {
|
||||||
|
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 7.3 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
BIN
ic_launcher.png
Before Width: | Height: | Size: 67 KiB After Width: | Height: | Size: 64 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 13 KiB |