Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Commit

Permalink
Annotation changes
Browse files Browse the repository at this point in the history
Refs #838
  • Loading branch information
M66B committed Feb 15, 2014
1 parent 53506f4 commit 470b209
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Changelog

* Added restriction for connecting to the internet (experimental)
* Added restriction for *system/getPreferredActivities*
* Added documentation for sensors and overlay, thanks @[jpeg729](https://github.com/jpeg729) ([issue](/../../issues/838))
* Added documentation for network, NFC, notifications, phone, shell, system ([issue](/../../issues/838))
* Added documentation for sensors, overlay, system and view thanks @[jpeg729](https://github.com/jpeg729) ([issue](/../../issues/838))
* Added documentation for network, NFC, notifications, phone and shell ([issue](/../../issues/838))
* Updated Simplified Chinese translation
* Updated Slovak translation

Expand Down
4 changes: 2 additions & 2 deletions res/values/functions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,9 @@
<string name="view_loadUrl" translatable="false"><![CDATA[<a href="http://developer.android.com/reference/android/webkit/WebView.html#loadUrl(java.lang.String)">Google documentation</a>]]></string>
<string name="view_WebView" translatable="false"><![CDATA[<a href="http://developer.android.com/reference/android/webkit/WebView.html">Google documentation</a>]]></string>
<string name="view_getDefaultUserAgent" translatable="false"><![CDATA[<a href="http://developer.android.com/reference/android/webkit/WebSettings.html#getDefaultUserAgent(android.content.Context)">Google documentation</a>]]></string>
<string name="view_getUserAgent" translatable="false"><![CDATA[Removed in sdk level 17]]></string>
<string name="view_getUserAgent" translatable="false"><![CDATA[<a href="http://developer.android.com/reference/android/webkit/WebSettings.html#getUserAgentString()">Google documentation</a>]]></string>
<string name="view_getUserAgentString" translatable="false"><![CDATA[<a href="http://developer.android.com/reference/android/webkit/WebSettings.html#getUserAgentString()">Google documentation</a>]]></string>
<string name="view_setUserAgent" translatable="false"><![CDATA[Removed in sdk level 17]]></string>
<string name="view_setUserAgent" translatable="false"><![CDATA[<a href="http://developer.android.com/reference/android/webkit/WebSettings.html#setUserAgentString(java.lang.String)">Google documentation</a>]]></string>
<string name="view_setUserAgentString" translatable="false"><![CDATA[<a href="http://developer.android.com/reference/android/webkit/WebSettings.html#setUserAgentString(java.lang.String)">Google documentation</a>]]></string>
<string name="view_android_intent_action_VIEW" translatable="false"><![CDATA[<a href="http://developer.android.com/reference/android/content/Intent.html#ACTION_VIEW">Google documentation</a>]]></string>

Expand Down
10 changes: 5 additions & 5 deletions src/biz/bokhorst/xprivacy/Meta.java
Original file line number Diff line number Diff line change
Expand Up @@ -263,11 +263,11 @@ public static List<Hook> get() {
mListHook.add(new Hook("view", "loadUrl", "", 1, null, null));
mListHook.add(new Hook("view", "WebView", "", 1, null, null));
mListHook.add(new Hook("view", "getDefaultUserAgent", "", 17, null, null));
mListHook.add(new Hook("view", "getUserAgent", "", 1, null, null));
mListHook.add(new Hook("view", "getUserAgentString", "", 1, null, null));
mListHook.add(new Hook("view", "setUserAgent", "", 1, null, null));
mListHook.add(new Hook("view", "setUserAgentString", "", 1, null, null));
mListHook.add(new Hook("view", "android.intent.action.VIEW", "", 10, null, null).doNotify());
mListHook.add(new Hook("view", "getUserAgent", "", 3, null, null));
mListHook.add(new Hook("view", "getUserAgentString", "", 3, null, null));
mListHook.add(new Hook("view", "setUserAgent", "", 3, null, null));
mListHook.add(new Hook("view", "setUserAgentString", "", 3, null, null));
mListHook.add(new Hook("view", "android.intent.action.VIEW", "", 1, null, null).doNotify());
// @formatter:on
return mListHook;
}
Expand Down

0 comments on commit 470b209

Please sign in to comment.