release a patch to externalip that uses getip.org

This commit is contained in:
David Black 2012-10-26 14:28:38 +01:00
parent 946d46a6b7
commit b7cefe2719
2 changed files with 22 additions and 6 deletions

View file

@ -6,17 +6,17 @@ Issue Tracker:https://code.google.com/p/external-ip/issues/list
Summary:Display your IP addresses
Description:
Simple application to display IP addresses in form that you can copy&paste them.
This simple application will show your IP addresses(default local & external). It will show them in text box from where you can copy&paste easily for different purposes.
Simple application to display IP addresses in form that you can copy & paste.
.
Repo Type:hg
Repo:https://code.google.com/p/external-ip/
Build Version:1.2,3,431da48bfb10,target=android-8
Build Version:1.2-change_server,4,431da48bfb10,target=android-8,patch=change_server.patch,\
forceversion=yes,forcevercode=yes
Update Check Mode:Market
Current Version:1.2
Current Version Code:3
Update Check Mode:None
Current Version:1.2-change_server
Current Version Code:4

View file

@ -0,0 +1,16 @@
diff -r 431da48bfb10 -r c7c8c7aa3f67 src/org/kost/externalip/ExternalIP.java
--- a/src/org/kost/externalip/ExternalIP.java Thu Jun 09 01:11:36 2011 +0200
+++ b/src/org/kost/externalip/ExternalIP.java Fri Oct 26 14:25:52 2012 +0100
@@ -83,10 +83,11 @@
ip.setText("Please wait...");
try {
HttpClient httpclient = new DefaultHttpClient();
- HttpGet httpget = new HttpGet("http://wiki.iti-lab.org/ip.php");
+ // HttpGet httpget = new HttpGet("http://wiki.iti-lab.org/ip.php");
// HttpGet httpget = new HttpGet("http://whatismyip.everdot.org/ip");
// HttpGet httpget = new HttpGet("http://whatismyip.com.au/");
// HttpGet httpget = new HttpGet("http://www.whatismyip.org/");
+ HttpGet httpget = new HttpGet("http://getip.org");
HttpResponse response;
response = httpclient.execute(httpget);