2.3.12
- Fixed desktop user agent problem - Fixed Facebook not showing up in desktop mode - Fixed tab switching bug - Code optimizations - Added text reflow (not guaranteed to work for everyone) , double tap after zooming in. - Fixed a bug with links not copying to the clipboard - Attempt to fix downloading issues for some users - Fixed some touch issues with 2.2
This commit is contained in:
parent
b88eabc102
commit
d99e82b6cb
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="acr.browser.barebones"
|
||||
android:versionCode="35"
|
||||
android:versionName="2.3.11.1" >
|
||||
android:versionCode="36"
|
||||
android:versionName="2.3.12" >
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="8"
|
||||
|
@ -10,7 +10,6 @@ public final class AnthonyWebView extends WebView {
|
||||
|
||||
boolean move;
|
||||
int API = Barebones.API;
|
||||
long timeBetweenDownPress = 0;
|
||||
int hitTest;
|
||||
boolean showFullScreen = Barebones.showFullScreen;
|
||||
View uBar = Barebones.uBar;
|
||||
@ -34,18 +33,17 @@ public final class AnthonyWebView extends WebView {
|
||||
if (API <= 10 && !Barebones.main[Barebones.pageId].hasFocus()) {
|
||||
Barebones.main[Barebones.pageId].requestFocus();
|
||||
}
|
||||
timeBetweenDownPress = System.currentTimeMillis();
|
||||
if (showFullScreen) {
|
||||
if (uBarShows) {
|
||||
uBar.startAnimation(slideUp);
|
||||
uBarShows = false;
|
||||
break;
|
||||
|
||||
} else if (Barebones.main[Barebones.pageId].getScrollY() <= 5
|
||||
&& !uBarShows && hitTest != 9) {
|
||||
|
||||
uBar.startAnimation(slideDown);
|
||||
uBarShows = true;
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user