Merge commit 'refs/merge-requests/52' of git://gitorious.org/f-droid/fdroiddata into merge-requests/52
This commit is contained in:
commit
2a2dd70786
|
@ -8,7 +8,7 @@ FlattrID:80944
|
|||
|
||||
Summary:Offline dictionary
|
||||
Description:
|
||||
An offline dictionary and wikipedia reader.
|
||||
An offline dictionary and wikipedia reader. Ready-made dictionaries can be found on the website. Can be used as a dictionary for both FBReader and Cool Reader
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
|
|
|
@ -23,6 +23,7 @@ Build Version:3.1,34,!No source code
|
|||
Build Version:3.4,37,!No source code - https://code.google.com/p/droid-notify/issues/detail?id=115
|
||||
Build Version:3.7,40,!No source code
|
||||
Build Version:3.12,45,!No source code
|
||||
Build Version:3.16,49
|
||||
|
||||
Update Check Mode:Market
|
||||
Current Version:3.12
|
||||
|
|
|
@ -6,7 +6,7 @@ Issue Tracker:https://github.com/lpar/RPN/issues
|
|||
|
||||
Summary:RPN Calculator
|
||||
Description:
|
||||
Simple fixed-point decimal arithmetic, Reverse Polish Notation calculator.
|
||||
Simple fixed-point decimal arithmetic, Reverse Polish Notation calculator. N.B Versions greater than 2 only work on Android 4 and above.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Category:Internet
|
||||
Category:Phone & SMS
|
||||
License:GPLv3
|
||||
Web Site:http://code.google.com/p/csipsimple/
|
||||
Source Code:http://code.google.com/p/csipsimple/source/checkout
|
||||
|
|
29
metadata/com.eolwral.osmonitor.txt
Normal file
29
metadata/com.eolwral.osmonitor.txt
Normal file
|
@ -0,0 +1,29 @@
|
|||
Category:System
|
||||
License:GPLv3
|
||||
Web Site:http://code.google.com/p/android-os-monitor/
|
||||
Source Code:http://code.google.com/p/android-os-monitor/source/checkout
|
||||
Issue Tracker:http://code.google.com/p/android-os-monitor/issues/list
|
||||
|
||||
Summary:Android OS Monitor
|
||||
Description:
|
||||
OSMonitor is an advanced tool which allows you to monitor many system
|
||||
aspects of an Android device:
|
||||
|
||||
Process: monitor all processes and display detail information about each.
|
||||
|
||||
Network: show every physical or logical network interface with statistics.
|
||||
|
||||
Connection: display every tcp or udp network connection, and query it via WHOIS
|
||||
|
||||
Misc: monitor processor, battery and file system.
|
||||
|
||||
Log: check dmesg or logcat in real-time.
|
||||
|
||||
This version was patched to not require Google Maps.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://code.google.com/p/android-os-monitor.osmonitor/
|
||||
|
||||
Build Version:2.0.5,28,cee4327bfe56,buildjni=yes,subdir=OSMonitor,patch=no-gmaps.patch;name-no-gmaps.patch
|
||||
|
13
metadata/com.eolwral.osmonitor/name-no-gmaps.patch
Normal file
13
metadata/com.eolwral.osmonitor/name-no-gmaps.patch
Normal file
|
@ -0,0 +1,13 @@
|
|||
diff --git a/OSMonitor/res/values/strings.xml b/OSMonitor/res/values/strings.xml
|
||||
index 3dc0b37..94a5b62 100644
|
||||
--- a/OSMonitor/res/values/strings.xml
|
||||
+++ b/OSMonitor/res/values/strings.xml
|
||||
@@ -2,7 +2,7 @@
|
||||
<resources>
|
||||
|
||||
<!-- Application -->
|
||||
-<string name="app_name">OS Monitor</string>
|
||||
+<string name="app_name">OS Monitor no-gmaps</string>
|
||||
<string name="app_title">OS Monitor 2.0.5</string>
|
||||
|
||||
<!-- StatusBar -->
|
96
metadata/com.eolwral.osmonitor/no-gmaps.patch
Normal file
96
metadata/com.eolwral.osmonitor/no-gmaps.patch
Normal file
|
@ -0,0 +1,96 @@
|
|||
Don't use gmaps to display GeoIP data - first of all, not all devices have
|
||||
gmaps, secondly, showing map-cartoons is not so required for system app,
|
||||
separate app could do that.
|
||||
|
||||
diff --git a/OSMonitor/AndroidManifest.xml b/OSMonitor/AndroidManifest.xml
|
||||
index 22f89d9..bbb0f68 100644
|
||||
--- a/OSMonitor/AndroidManifest.xml
|
||||
+++ b/OSMonitor/AndroidManifest.xml
|
||||
@@ -39,7 +39,6 @@
|
||||
<activity android:configChanges="keyboardHidden"
|
||||
android:name=".misc.MiscBox" />
|
||||
<activity android:name=".preferences.Preferences" />
|
||||
- <uses-library android:name="com.google.android.maps"/>
|
||||
</application>
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.RESTART_PACKAGES" />
|
||||
diff --git a/OSMonitor/src/com/eolwral/osmonitor/networks/NetworkList.java b/OSMonitor/src/com/eolwral/osmonitor/networks/NetworkList.java
|
||||
index 62adda4..d2dfe09 100644
|
||||
--- a/OSMonitor/src/com/eolwral/osmonitor/networks/NetworkList.java
|
||||
+++ b/OSMonitor/src/com/eolwral/osmonitor/networks/NetworkList.java
|
||||
@@ -30,11 +30,12 @@ import javax.xml.parsers.SAXParserFactory;
|
||||
import org.xml.sax.InputSource;
|
||||
import org.xml.sax.XMLReader;
|
||||
|
||||
-import com.google.android.maps.GeoPoint;
|
||||
+/*import com.google.android.maps.GeoPoint;
|
||||
import com.google.android.maps.MapActivity;
|
||||
import com.google.android.maps.MapController;
|
||||
-import com.google.android.maps.MapView;
|
||||
+import com.google.android.maps.MapView;*/
|
||||
|
||||
+import android.app.Activity;
|
||||
import android.app.AlertDialog;
|
||||
import android.app.Dialog;
|
||||
import android.app.ProgressDialog;
|
||||
@@ -78,7 +79,7 @@ import com.eolwral.osmonitor.*;
|
||||
import com.eolwral.osmonitor.preferences.Preferences;
|
||||
|
||||
|
||||
-public class NetworkList extends MapActivity implements OnGestureListener, OnTouchListener
|
||||
+public class NetworkList extends Activity implements OnGestureListener, OnTouchListener
|
||||
{
|
||||
private JNIInterface JNILibrary = JNIInterface.getInstance();
|
||||
private NetworkListAdapter UpdateInterface = null;
|
||||
@@ -95,7 +96,7 @@ public class NetworkList extends MapActivity implements OnGestureListener, OnTou
|
||||
private boolean RDNS = false;
|
||||
|
||||
private WeakReference<FrameLayout> MapBodyRef = null;
|
||||
- private MapView GeoIPMap = null;
|
||||
+// private MapView GeoIPMap = null;
|
||||
|
||||
// Gesture
|
||||
private GestureDetector gestureScanner = new GestureDetector(this);;
|
||||
@@ -305,9 +306,9 @@ public class NetworkList extends MapActivity implements OnGestureListener, OnTou
|
||||
// Use a custom layout file
|
||||
setContentView(R.layout.networklayout);
|
||||
|
||||
- GeoIPMap = new MapView(this, "0N4HYg91PN1-cGgp3exBmvC1AdzeiGYzp7C3V7g");
|
||||
+// GeoIPMap = new MapView(this, "0N4HYg91PN1-cGgp3exBmvC1AdzeiGYzp7C3V7g");
|
||||
//GeoIPMap = new MapView(this, "0N4HYg91PN19P2R67mtD2NGBl3ce5DxqXlmH6TA");
|
||||
- GeoIPMap.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, 180));
|
||||
+// GeoIPMap.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, 180));
|
||||
|
||||
ProcHandler = new EventHandler();
|
||||
|
||||
@@ -674,14 +675,14 @@ public class NetworkList extends MapActivity implements OnGestureListener, OnTou
|
||||
FrameLayout MapBody = new FrameLayout(this);
|
||||
MapBodyRef = new WeakReference<FrameLayout>(MapBody);
|
||||
|
||||
- MapBody.addView(GeoIPMap);
|
||||
- MapController GeoIPControl = GeoIPMap.getController();
|
||||
+// MapBody.addView(GeoIPMap);
|
||||
+// MapController GeoIPControl = GeoIPMap.getController();
|
||||
|
||||
- GeoPoint MapPoint = new GeoPoint((int)Longitude,(int)Latitude);
|
||||
- GeoIPControl.setZoom(8);
|
||||
- GeoIPControl.animateTo(MapPoint);
|
||||
- GeoIPControl.setCenter(MapPoint);
|
||||
- GeoIPMap.getOverlays().add(new MapOverlay(this, MapPoint, R.drawable.point));
|
||||
+// GeoPoint MapPoint = new GeoPoint((int)Longitude,(int)Latitude);
|
||||
+// GeoIPControl.setZoom(8);
|
||||
+// GeoIPControl.animateTo(MapPoint);
|
||||
+// GeoIPControl.setCenter(MapPoint);
|
||||
+// GeoIPMap.getOverlays().add(new MapOverlay(this, MapPoint, R.drawable.point));
|
||||
|
||||
AlertDialog.Builder WhoisAlert = new AlertDialog.Builder(this);
|
||||
WhoisAlert.setTitle("Whois");
|
||||
@@ -942,7 +943,7 @@ public class NetworkList extends MapActivity implements OnGestureListener, OnTou
|
||||
}
|
||||
}
|
||||
|
||||
- @Override
|
||||
+// @Override
|
||||
protected boolean isRouteDisplayed() {
|
||||
// TODO Auto-generated method stub
|
||||
return false;
|
|
@ -3,6 +3,7 @@ License:GPLv3
|
|||
Web Site:http://sites.google.com/site/ghostcommander1/
|
||||
Source Code:http://sourceforge.net/projects/ghostcommander/develop
|
||||
Issue Tracker:http://sourceforge.net/tracker/?group_id=311417
|
||||
Donate:http://sourceforge.net/donate/index.php?group_id=311417
|
||||
|
||||
Summary:Dual-panel file manager
|
||||
Description:
|
||||
|
|
|
@ -6,7 +6,7 @@ Issue Tracker:http://github.com/nexes/Android-File-Manager/issues
|
|||
|
||||
Summary:A simple file browser and manager
|
||||
Description:
|
||||
A simple file browser and manager.
|
||||
A simple file browser and manager, with the ability to backup installed apks
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
|
|
21
metadata/com.owncloud.txt
Normal file
21
metadata/com.owncloud.txt
Normal file
|
@ -0,0 +1,21 @@
|
|||
Category:Internet
|
||||
License:GPL
|
||||
Web Site:http://owncloud.com
|
||||
Source Code:https://gitorious.org/owncloud/android-main
|
||||
Issue Tracker:http://bugs.owncloud.org/thebuggenie/
|
||||
|
||||
Summary:OwnCloud client
|
||||
Description:
|
||||
OwnCloud is a flexible, open source file sync and share solution. It provides contact, calendar, gallery and music interfaces. Whether using a mobile device, a workstation, or a web client, ownCloud provides the ability to put the right files at their employees’ fingertips on any device in one simple-to-use, secure, private and controlled solution.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://git.gitorious.org/owncloud/android-main.git
|
||||
|
||||
Build Version:1.0,1,ef7e2f5
|
||||
Build Version:1.3.3,103003,6617345fc42
|
||||
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.0
|
||||
Current Version Code:1
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
Category:System
|
||||
Category:Phone & SMS
|
||||
License:Apache2
|
||||
Web Site:http://www.tbray.org/ongoing/When/201x/2010/04/25/LifeSaver-Lessons
|
||||
Source Code:http://code.google.com/p/lifesaver/
|
||||
|
@ -6,7 +6,7 @@ Issue Tracker:http://code.google.com/p/lifesaver/issues/list
|
|||
|
||||
Summary:SMS and call log backup/restore
|
||||
Description:
|
||||
A simple backup and restore of your SMS and call logs.
|
||||
A simple way to transfer your SMS and call logs to another phone via a Google App-Engine server.
|
||||
.
|
||||
|
||||
Update Check Mode:Market
|
||||
|
|
|
@ -17,4 +17,3 @@ Build Version:1.3.0,9,1.3.0
|
|||
Update Check Mode:Market
|
||||
Current Version:1.3.0
|
||||
Current Version Code:9
|
||||
|
||||
|
|
16
metadata/csh.cryptonite.txt
Normal file
16
metadata/csh.cryptonite.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
Category:System
|
||||
License:GPLv2
|
||||
Web Site:https://code.google.com/p/cryptonite/
|
||||
Source Code:https://code.google.com/p/cryptonite/source/browse/#git%2Fcryptonite
|
||||
Issue Tracker:https://code.google.com/p/cryptonite/issues/list
|
||||
Donate:
|
||||
|
||||
Summary:Encfs and Truecrypt for Android
|
||||
Description:
|
||||
Cryptonite brings EncFS and TrueCrypt to Android. You can browse, export and open EncFS-encrypted directories and files on your Dropbox and on your phone. On rooted phones that support FUSE (e.g. CyanogenMod) you can also mount EncFS and TrueCrypt volumes. TrueCrypt is only available as a command-line version at this time.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://code.google.com/p/cryptonite/
|
||||
|
||||
Build Version:0.6.8,59,b13cd6c4d65a,subdir=cryptonite
|
|
@ -14,8 +14,7 @@ Beyond language dictionaries, it is possible to set up any other dictionary for
|
|||
Please note that the dictionaries that are set up for DictionaryForMIDs may have different copyrights. All dictionaries that can be downloaded from the website are free to use. Several dictionaries come with the app and more are provided in the section dictionaries for download of the website.
|
||||
.
|
||||
|
||||
#Not valid....
|
||||
#Repo Type:git-svn
|
||||
#Repo:http://dictionarymid.sourceforge.net/android-dl.html
|
||||
Repo Type:git-svn
|
||||
|
||||
#Build Version:0.90.1,89,461
|
||||
Repo:http://dictionarymid.svn.sourceforge.net/viewvc/dictionarymid/tags/Android_0_91_1_release/Android
|
||||
Build Version:0.90.1,89,461
|
||||
|
|
|
@ -47,6 +47,8 @@ cd ../integration-android && mvn3 install && cd ../wallet && \
|
|||
mvn3 install:install-file -DgroupId=android -DartifactId=android -Dversion=2.3.3_r2 -Dpackaging=jar -Dfile=$$SDK$$/platforms/android-10/android.jar && \
|
||||
mvn3 install:install-file -DgroupId=android.support -DartifactId=compatibility-v4 -Dversion=r6 -Dpackaging=jar -Dfile=$$SDK$$/android-compatibility/v4/android-support-v4.jar
|
||||
|
||||
Build Version:2.20,91,197963d9a457 ## new version of BitcoinJWallet.
|
||||
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:2.16
|
||||
Current Version Code:87
|
||||
|
|
|
@ -32,6 +32,7 @@ Build Version:1.4.1,78,65bb8ffda0c0,target=android-10
|
|||
Build Version:1.4.2_2,80,91dc1cc9b5d8,target=android-15
|
||||
Build Version:1.5.1,82,f0ed84016848,target=android-15
|
||||
Build Version:1.5.2,83,52b1faf748f3,target=android-15
|
||||
Build Version:1.6.2,86,eb3283a03b1f
|
||||
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.5.2
|
||||
|
|
|
@ -17,6 +17,7 @@ Build Version:2.7,9,204,subdir=aSQLiteManager,target=android-10
|
|||
Build Version:3.0,10,211,subdir=aSQLiteManager,target=android-10
|
||||
Build Version:3.1,11,227,subdir=aSQLiteManager,target=android-10
|
||||
Build Version:3.2,12,236,subdir=aSQLiteManager,target=android-10
|
||||
Build Version:3.3,13,241,subdir=aSQLiteManager,target=android-10
|
||||
|
||||
Update Check Mode:Market
|
||||
Current Version:3.2
|
||||
|
|
|
@ -6,7 +6,7 @@ Issue Tracker:https://github.com/zagaberoo/lockpatterngenerator/issues
|
|||
|
||||
Summary:Lock pattern generator
|
||||
Description:
|
||||
Simple program for generating random patterns for use with Android’s built-in pattern lock.
|
||||
Simple program that generates a random lockscreen pattern and helps you memorize it before applying it.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
|
|
16
metadata/jp.co.kayo.android.localplayer.ds.ampache.txt
Normal file
16
metadata/jp.co.kayo.android.localplayer.ds.ampache.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
Category:Multimedia
|
||||
License:GPLv2
|
||||
Web Site:http://justplayer-dev.blogspot.jp/
|
||||
Source Code:https://bitbucket.org/yokmama/just-player-providers/src
|
||||
Issue Tracker:https://plus.google.com/101509207997544022048
|
||||
Donate:
|
||||
|
||||
Summary:Ampache plugin for Just-Player
|
||||
Description:
|
||||
This app allows you to add remote streaming functionality to Just-Player using Ampache e.g. Owncloud
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://bitbucket.org/yokmama/just-player-providers.git
|
||||
|
||||
Build Version:1.19,0410044,1370e4cfe884,subdir=AmpacheProvider
|
16
metadata/jp.co.kayo.android.localplayer.ds.podcast.txt
Normal file
16
metadata/jp.co.kayo.android.localplayer.ds.podcast.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
Category:Multimedia
|
||||
License:GPLv2
|
||||
Web Site:http://justplayer-dev.blogspot.jp/
|
||||
Source Code:https://bitbucket.org/yokmama/just-player-providers/src
|
||||
Issue Tracker:https://plus.google.com/101509207997544022048
|
||||
Donate:
|
||||
|
||||
Summary:Podcast plugin for Just-Player
|
||||
Description:
|
||||
You can search for podcasts and subscribe to podcast urls in this app. Then choose Podcast as a data source in Just-Player and you can listen to the podcasts in Just-Player
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://bitbucket.org/yokmama/just-player-providers.git
|
||||
|
||||
Build Version:1.1a,1010008,1370e4cfe884,subdir=PodcastProvider
|
16
metadata/jp.co.kayo.android.localplayer.txt
Normal file
16
metadata/jp.co.kayo.android.localplayer.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
Category:Multimedia
|
||||
License:GPLv2
|
||||
Web Site:http://justplayer-dev.blogspot.jp/
|
||||
Source Code:https://bitbucket.org/yokmama/just-player/src
|
||||
Issue Tracker:https://plus.google.com/101509207997544022048
|
||||
Donate:
|
||||
|
||||
Summary:Music Player
|
||||
Description:
|
||||
Comprehensive music player with unusual features such as sharing files over Android Beam, now-playing to Twitter etc. By installing the optional Podcast Provider and/or Ampache Provider (also in the F-droid app repo) you can listen to audio from the internet. For example, you can store your music on an Owncloud instance and stream it to Just-Player
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://bitbucket.org/yokmama/just-player.git
|
||||
|
||||
Build Version:3.12d,141400247,ad3c639598fa
|
|
@ -6,7 +6,7 @@ Issue Tracker:http://sourceforge.net/tracker/?group_id=361303
|
|||
|
||||
Summary:Media server browser/stream player.
|
||||
Description:
|
||||
HTTP media server browser and stream player. For use with streaming media servers such as GNUMP3d.
|
||||
HTTP media server browser and stream player. Ideal for playing internet radio or streaming podcasts in the background. For use with streaming media servers such as GNUMP3d.
|
||||
.
|
||||
|
||||
Repo Type:git-svn
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Category:System
|
||||
License:GPLv3
|
||||
Web Site:http://code.google.com/p/ad-away/
|
||||
Source Code:https://gitorious.org/adaway/
|
||||
Source Code:https://github.com/dschuermann/ad-away
|
||||
Issue Tracker:http://code.google.com/p/ad-away/issues/list
|
||||
Donate:http://flattr.com/thing/369138/AdAway-Ad-blocker-for-Android
|
||||
FlattrID:369138
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Category:Office
|
||||
License:GPLv3
|
||||
Web Site:http://code.google.com/p/birthday-adapter/
|
||||
Source Code:https://gitorious.org/birthday-adapter/birthday-adapter
|
||||
Source Code:https://github.com/dschuermann/birthday-adapter
|
||||
Issue Tracker:http://code.google.com/p/birthday-adapter/issues/list
|
||||
|
||||
Summary:Birthday Calendar Adapter
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Category:System
|
||||
License:GPLv3
|
||||
Web Site:http://code.google.com/p/faster-gps/
|
||||
Source Code:https://gitorious.org/fastergps/
|
||||
Source Code:https://github.com/dschuermann/faster-gps
|
||||
Issue Tracker:http://code.google.com/p/faster-gps/issues/list
|
||||
|
||||
Summary:Faster GPS fix
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
Category:Internet
|
||||
License:GPLv2
|
||||
Web Site:https://github.com/gothfox/Tiny-Tiny-RSS-for-Honeycomb
|
||||
Web Site:http://tt-rss.org/redmine/projects/tt-rss-android/wiki
|
||||
Source Code:https://github.com/gothfox/Tiny-Tiny-RSS-for-Honeycomb
|
||||
Issue Tracker:http://tt-rss.org/redmine/projects/tt-rss/issues
|
||||
Donate:http://tt-rss.org/redmine/projects/tt-rss/wiki/SupportTheProject
|
||||
|
||||
Summary:Official TT-RSS Client
|
||||
Description:
|
||||
Client for Tiny Tiny RSS Reader.
|
||||
Tiny Tiny RSS is an application that runs on a server and collects your rss feeds. You may then connect to the server with a web browser or this app to read the feeds. Don't forget to enable API access in your tt-rss account preferences (Preferences -> Advanced -> Enable external API)
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
|
|
|
@ -8,22 +8,10 @@ Summary:Browse and copy Unicode characters
|
|||
Description:
|
||||
UnicodeMap lets you browse Unicode characters by range and search for them by name,
|
||||
display them (when Android has the font) and copy them to the clipboard. It can
|
||||
also decode a string of Unicode characters to names.
|
||||
|
||||
This app is just the list of Unicode characters, arranged by block: you can
|
||||
browse through them, enter them in a dedicated text field, and copy that field to
|
||||
the clipboard (it works a bit the way Gucharmap does). There is also a primitive
|
||||
search feature (to search on the character name). Of course, Android will only
|
||||
also decode a string of Unicode characters to names. Of course, Android will only
|
||||
properly display a minuscule fraction of the characters, but those that are not
|
||||
properly displayed still “work” in the sense that you can copy them around or
|
||||
whatever.
|
||||
|
||||
This is a very basic and limited program, and not much data is available
|
||||
(essentially, only the character name, its code point and its general category).
|
||||
The list of characters, on the other hand, is complete: the latest version has
|
||||
the full Unicode 6.1 character set (all 110 181 of them). In particular, the
|
||||
program is not limited to the first plane of Unicode (aka, 65536 codepoints):
|
||||
you can copy-paste cuneiform if you like.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
|
|
|
@ -7,7 +7,7 @@ Issue Tracker:https://github.com/mariotaku/twidere/issues
|
|||
|
||||
Summary:Twidere for Twitter & Identi.ca.
|
||||
Description:
|
||||
Twitter and Identi.ca client, with many powerful features.
|
||||
Twitter and Identi.ca client, with many powerful features.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
|
@ -17,6 +17,7 @@ Repo:git://github.com/mariotaku/twidere.git
|
|||
# using later commit for 0.1.1 because it includes bugfix
|
||||
Build Version:0.1.1,28,4db856984ecb1636daf6c97947dcb49069ec1c11,target=Google Inc.:Google APIs:16
|
||||
Build Version:0.1.3,31,5a577b1c0248e0,target=Google Inc.:Google APIs:16
|
||||
Build Version:0.1.5,33,b3409715af,target=Google Inc.:Google APIs:16
|
||||
|
||||
Update Check Mode:Market
|
||||
Current Version:0.1.3
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Category:System
|
||||
License:GPLv3
|
||||
Web Site:http://code.google.com/p/ntp-sync/
|
||||
Source Code:https://gitorious.org/ntpsync/ntpsync
|
||||
Source Code:https://github.com/dschuermann/ntp-sync
|
||||
Issue Tracker:http://code.google.com/p/ntp-sync/issues
|
||||
|
||||
Summary:NTP (Network Time Protocol) Client
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
Anti-feature:Nonfree-dep
|
||||
Category:Navigation
|
||||
License:MIT
|
||||
Web Site:https://code.google.com/p/opengpx/
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Category:Internet
|
||||
Category:Phone & SMS
|
||||
License:GPLv3
|
||||
Web Site:http://sipdroid.org/
|
||||
Source Code:http://code.google.com/p/sipdroid/source/checkout
|
||||
|
|
|
@ -18,6 +18,7 @@ Repo:https://github.com/pocmo/Yaaic.git
|
|||
Build Version:0.7,9,v0.7,subdir=application,bindir=builds/ant
|
||||
Build Version:0.8,10,v0.8,subdir=application,bindir=builds/ant
|
||||
Build Version:0.9,11,v0.9,subdir=application,bindir=builds/ant
|
||||
Build Version:1.0,11,216ee40e217
|
||||
|
||||
Update Check Mode:Market
|
||||
Current Version:0.9
|
||||
|
|
Loading…
Reference in a new issue