Skip to content

Commit e81642f

Browse files
committed
Update about page with dev build date
1 parent 2b9b36a commit e81642f

File tree

1 file changed

+122
-0
lines changed

1 file changed

+122
-0
lines changed
Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--suppress AndroidElementNotAllowed -->
3+
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
4+
5+
<PreferenceCategory android:title="@string/settings_about">
6+
<Preference
7+
android:summary="@string/url_project"
8+
android:title="@string/this_project">
9+
<intent
10+
android:action="android.intent.action.VIEW"
11+
android:data="http://github.com/JTechMe/JumpGo">
12+
<!--extra
13+
android:name="SOURCE"
14+
android:value="SELF" /-->
15+
</intent>
16+
</Preference>
17+
<Preference
18+
android:summary="@string/url_contact"
19+
android:title="@string/action_follow_me">
20+
<intent
21+
android:action="android.intent.action.VIEW"
22+
android:data="https://nutellarlz.github.io/">
23+
<!--extra
24+
android:name="SOURCE"
25+
android:value="SELF" /-->
26+
</intent>
27+
</Preference>
28+
<Preference
29+
android:summary="@string/dev_build_date"
30+
android:title="@string/dev_build_title">
31+
<intent
32+
android:action="android.intent.action.VIEW"
33+
android:data="https://github.com/jtechme/jumpgo/releases/">
34+
<!--extra
35+
android:name="SOURCE"
36+
android:value="SELF" /-->
37+
</intent>
38+
</Preference>
39+
<Preference
40+
android:key="pref_version"
41+
android:title="@string/version" />
42+
</PreferenceCategory>
43+
<PreferenceCategory android:title="@string/licenses">
44+
<Preference
45+
android:summary="@string/mpl_license"
46+
android:title="@string/the_jumpgo_project">
47+
<intent
48+
android:action="android.intent.action.VIEW"
49+
android:data="http://jtechme.github.io/jumpgo/project">
50+
<!--extra
51+
android:name="SOURCE"
52+
android:value="SELF" /-->
53+
</intent>
54+
</Preference>
55+
<Preference
56+
android:summary="@string/mpl_license"
57+
android:title="@string/app_lightning">
58+
<intent
59+
android:action="android.intent.action.VIEW"
60+
android:data="http://mozilla.org/MPL/2.0/">
61+
<!--extra
62+
android:name="SOURCE"
63+
android:value="SELF" /-->
64+
</intent>
65+
</Preference>
66+
<Preference
67+
android:summary="@string/apache"
68+
android:title="@string/android_open_source_project">
69+
<intent
70+
android:action="android.intent.action.VIEW"
71+
android:data="http://www.apache.org/licenses/LICENSE-2.0">
72+
<!--<extra
73+
android:name="SOURCE"
74+
android:value="SELF" />-->
75+
</intent>
76+
</Preference>
77+
<Preference
78+
android:summary="@string/freeware"
79+
android:title="@string/hphosts_ad_server_list">
80+
<intent
81+
android:action="android.intent.action.VIEW"
82+
android:data="http://hosts-file.net/">
83+
<!--<extra
84+
android:name="SOURCE"
85+
android:value="SELF" />-->
86+
</intent>
87+
</Preference>
88+
<Preference
89+
android:summary="@string/license_gnu"
90+
android:title="@string/library_netcipher">
91+
<intent
92+
android:action="android.intent.action.VIEW"
93+
android:data="http://www.gnu.org/licenses/lgpl.html">
94+
<!--<extra
95+
android:name="SOURCE"
96+
android:value="SELF" />-->
97+
</intent>
98+
</Preference>
99+
<Preference
100+
android:summary="@string/apache"
101+
android:title="@string/snacktory">
102+
<intent
103+
android:action="android.intent.action.VIEW"
104+
android:data="http://www.apache.org/licenses/LICENSE-2.0">
105+
<!--<extra
106+
android:name="SOURCE"
107+
android:value="SELF" />-->
108+
</intent>
109+
</Preference>
110+
<Preference
111+
android:summary="@string/mit_license"
112+
android:title="@string/jsoup">
113+
<intent
114+
android:action="android.intent.action.VIEW"
115+
android:data="http://jsoup.org/license">
116+
<!--<extra
117+
android:name="SOURCE"
118+
android:value="SELF" />-->
119+
</intent>
120+
</Preference>
121+
</PreferenceCategory>
122+
</PreferenceScreen>

0 commit comments

Comments
 (0)