Browse Source

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
master
Anthony Restaino 12 years ago
parent
commit
d99e82b6cb
  1. 4
      AndroidManifest.xml
  2. 6
      src/acr/browser/barebones/AnthonyWebView.java
  3. 958
      src/acr/browser/barebones/Barebones.java

4
AndroidManifest.xml

@ -1,8 +1,8 @@ @@ -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"

6
src/acr/browser/barebones/AnthonyWebView.java

@ -10,7 +10,6 @@ public final class AnthonyWebView extends WebView { @@ -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 { @@ -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;

958
src/acr/browser/barebones/Barebones.java

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save