Merge branch 'master' of gitorious.org:f-droid/fdroiddata

This commit is contained in:
Daniel Martí 2013-03-23 01:16:54 +01:00
commit f13c6c5b3c
8 changed files with 39 additions and 100 deletions

View file

@ -42,6 +42,7 @@ sed -i '/proguard/d' project.properties && sed -i '/key/d' project.properties &&
mv src/com/dngames/mobilewebcam/PhotoSettings.java v.java && \
perl -CD -pe 'tr/\x{feff}//d' v.java > src/com/dngames/mobilewebcam/PhotoSettings.java
Build Version:2.93,113,!no source code published
Build Version:2.95,115,!no source code published
Auto Update Mode:None
Update Check Mode:Market

View file

@ -29,14 +29,14 @@ the [http://eyes-free.blogspot.com Eyes-Free blog] for more on Android accessibi
Repo Type:srclib
Repo:EyesFree
Build Version:3.1.1_r68,68,r787,novcheck=yes,subdir=accessibilityServices/talkback,\
Build Version:3.1.1_r68,68,!build server rejection r787,novcheck=yes,subdir=accessibilityServices/talkback,\
update=.;../../libraries/utils;../../libraries/compatutils,\
prebuild=sed -i 's@\(android.library.reference.1=\).*@\1../../libraries/utils@' project.properties && \
sed -i 's@\(android.library.reference.2=\).*@\1../../libraries/compatutils@' project.properties && \
cd ../../ && rm -rf apps archived braille devtools documentation eSpeakEngine \
ideal ime ocr samplecode thirdparty tts
Build Version:3.2.1,83,r798,novcheck=yes,subdir=accessibilityServices/talkback,\
Build Version:3.2.1,83,!build server rejection r798,novcheck=yes,subdir=accessibilityServices/talkback,\
update=.;../../libraries/utils;../../libraries/compatutils;../../libraries/widgets/radial_menu,\
prebuild=sed -i 's@\(android.library.reference.1=\).*@\1../../libraries/utils@' project.properties && \
sed -i 's@\(android.library.reference.2=\).*@\1../../libraries/compatutils@' project.properties && \

View file

@ -12,14 +12,11 @@ images of Earth and other planets flying thru space.
Repo Type:git-svn
# Note the starting space in a subdir name
Repo:http://earth-live-wallpaper.googlecode.com/svn/trunk/ earth-live-wallpaper/SLWP
Repo:http://earth-live-wallpaper.googlecode.com/svn/trunk/%20earth-live-wallpaper/SLWP
Build Version:1.4,60,!build server rejection 61,target=android-10,\
Build Version:1.4,60,61,target=android-10,init=rm -rf bin/ gen/,\
patch=scoping-fix.patch;handle-no-market.patch;fix-appname.patch;button-name.patch
#Build Version:1.4,60,61,target=android-10,subdir= earth-live-wallpaper/SLWP,\
#init=rm -rf bin/ gen/ ../SLWP_Maps/bin,patch=various.patch;button-name.patch
Auto Update Mode:None
Update Check Mode:Market
Current Version:1.4

View file

@ -1,76 +0,0 @@
commit 3e0b60afc74bed5d0d864ae08a63d5727b1c1b8e
Author: David Black <david8black@gmail.com>
Date: Mon Mar 18 18:43:31 2013 +0000
patch
diff --git a/ earth-live-wallpaper/SLWP/res/values-es/strings.xml b/ earth-live-wallpaper/SLWP/res/values-es/strings.xml
index a3f9b91..5c89079 100644
--- a/ earth-live-wallpaper/SLWP/res/values-es/strings.xml
+++ b/ earth-live-wallpaper/SLWP/res/values-es/strings.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, SLWP!</string>
- <string name="app_name">EarthRot</string>
<string name="description">rotación Globe (OpenGL VBO)</string>
<string name="p_speed">velocidad</string>
<string name="p_speedsum">Elija la velocidad de rotación de la Tierra
diff --git a/ earth-live-wallpaper/SLWP/res/values/strings.xml b/ earth-live-wallpaper/SLWP/res/values/strings.xml
index 501db7e..99d20aa 100644
--- a/ earth-live-wallpaper/SLWP/res/values/strings.xml
+++ b/ earth-live-wallpaper/SLWP/res/values/strings.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, SLWP!</string>
- <string name="app_name">EarthRot</string>
+ <string name="app_name">Earth Live Wallpaper</string>
<string name="description">Rotating earth globe (Opengl VBO)</string>
diff --git a/ earth-live-wallpaper/SLWP/src/com/seb/SLWP/Prefs.java b/ earth-live-wallpaper/SLWP/src/com/seb/SLWP/Prefs.java
index 900ff3d..cb0a5c7 100755
--- a/ earth-live-wallpaper/SLWP/src/com/seb/SLWP/Prefs.java
+++ b/ earth-live-wallpaper/SLWP/src/com/seb/SLWP/Prefs.java
@@ -75,11 +75,18 @@ public class Prefs extends PreferenceActivity implements
bg.setOnPreferenceChangeListener(this);
initMapList();
Button bt = (Button) findViewById(R.id.bt_donate);
+ final PreferenceActivity myact = this;
bt.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
- startActivity(new Intent(Intent.ACTION_VIEW, Uri
- .parse("market://search?q=pub:unixseb")));
+ try {
+ startActivity(new Intent(Intent.ACTION_VIEW, Uri
+ .parse("market://search?q=pub:unixseb")));
+ } catch (Exception e) {
+ Log.e("SLWP", "Cannot open 'market:' link", e);
+ Toast.makeText(myact, "Cannot launch Market", Toast.LENGTH_SHORT).show();
+ }
+
}
});
Button bth = (Button) findViewById(R.id.bt_help);
diff --git a/ earth-live-wallpaper/SLWP/src/com/seb/SLWP/SLWP.java b/ earth-live-wallpaper/SLWP/src/com/seb/SLWP/SLWP.java
index d94d995..d697662 100644
--- a/ earth-live-wallpaper/SLWP/src/com/seb/SLWP/SLWP.java
+++ b/ earth-live-wallpaper/SLWP/src/com/seb/SLWP/SLWP.java
@@ -590,7 +590,7 @@ public class SLWP extends GLWallpaperService implements
return mGle;
}
- class GlEngine extends GLEngine {
+ class GlEngine extends GLWallpaperService.GLEngine {
private static final float TOUCH_SCALE_FACTOR = 1E-3f;
private float mPreviousX = 0.0f;
@@ -841,4 +841,4 @@ public class SLWP extends GLWallpaperService implements
}
}
-}
\ No newline at end of file
+}

View file

@ -7,9 +7,17 @@ Donate:https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=smspopup+do
Summary:Display SMS directly
Description:
An Android application that intercepts incoming text messages and displays them in a popup window (activity). The popup window shows the contact the message came from and their contact photo (if there is one) as well as the content of the message. Directly from the popup the user is given the option to Close the popup (marking the message read) or Reply to the message (using a system intent).
Intercepts incoming text messages and displays them in a popup window.
The popup window shows the contact the message came from and their contact
photo (if there is one) as well as the content of the message.
Directly from the popup the user is given the option to Close the popup
(marking the message read) or Reply to the message (using a system intent).
Full notifications system built in - this allows a user to disable the built in messaging app notifications and use those from SMS Popup. The notifications system has additional options such as custom vibrate pattern, custom LED color and the ability to remind the user of a missed message in case they missed the notification the first time it played.
A full notifications system is included: this allows a user to disable the built
in messaging app notifications and use those from SMS Popup. The notifications
system has additional options such as custom vibrate pattern, custom LED color
and the ability to remind the user of a missed message in case they missed the
notification the first time it played.
.
Repo Type:git
@ -23,7 +31,7 @@ srclibs=ViewPagerIndicator@65457eac06,\
prebuild=sed -i 's@\(android.library.reference.1=\).*@\1$$ViewPagerIndicator$$@' project.properties
Auto Update Mode:None
#Device variable and Tags doesn't work
#Tags are one version behind Play Store
Update Check Mode:Tags
Current Version:1.2.3
Current Version Code:123

View file

@ -25,8 +25,8 @@ Build Version:1.7,17,v1.7,buildjni=yes,prebuild=\
sed -i 's@$SDK@$$SDK$$@g' prepare-clean-checkout.sh && ./prepare-clean-checkout.sh
Build Version:2.1,21,v2.1,prebuild=\
sed -i 's@$SDK@$$SDK$$@g' prepare-clean-checkout.sh && ./prepare-clean-checkout.sh,buildjni=no
Build Version:2.3,25,v2.3,buildjni=no,prebuild=\
sed -i 's@$SDK@$$SDK$$@g' prepare-clean-checkout.sh && ./prepare-clean-checkout.sh
#Build Version:2.3,25,v2.3,buildjni=no,prebuild=\
#sed -i 's@$SDK@$$SDK$$@g' prepare-clean-checkout.sh && ./prepare-clean-checkout.sh
Auto Update Mode:None
Update Check Mode:Tags

View file

@ -1,28 +1,38 @@
Category:Office
License:GPLv3+
Web Site:https://launchpad.net/tomdroid
Source Code:https://code.launchpad.net/~tomdroid-maintainers/tomdroid/main
Source Code:https://launchpad.net/tomdroid/stable
Issue Tracker:https://bugs.launchpad.net/tomdroid
Summary:Note taker
Description:
A note taking application. A port of the popular desktop application Tomboy.
The new beta releases of 0.7.0+ have a lot of new features including editing support, but take care
if you are syncing important notes by making local backup to the sdcard. See the website for a full
list of the new features.
The new beta releases of 0.7.0+ have a lot of new features including editing
support, but take care
if you are syncing important notes by making local backup to the sdcard. See
the website for a full list of the new features. The source code
for these builds is in the [https://launchpad.net/tomdroid trunk branch],
while that for the stable versions is in the stable branch.
[http://bazaar.launchpad.net/~tomdroid-maintainers/tomdroid/main/view/head:/NEWS News]
of changes to the stable version.
.
#Stable version 0.6.1 couldn't be built on lp:tomdroid
#Switching to lp:tomdroid/stable breaks beta versions 0.7.1 and 0.7.2
Repo Type:bzr
Repo:lp:tomdroid
Repo:lp:tomdroid/stable
Build Version:0.4.1,6,214
Build Version:0.5.0,7,248
Build Version:0.7.1,10,400
Build Version:0.7.2,11,469,extlibs=android/android-support-v4.jar
#Build Version:0.7.1,10,400
#Build Version:0.7.2,11,469,extlibs=android/android-support-v4.jar
Build Version:0.6.1,9,0.6.1
Auto Update Mode:None
Update Check Mode:Market
#Can't risk automatic update check mode with beta builds present
Update Check Mode:None
Current Version:0.6.1
Current Version Code:9

View file

@ -20,16 +20,15 @@ Build Version:0.0.11-ARMv7,110,0.0.11,forceversion=yes,forcevercode=yes,subdir=v
update=.;../java-libs/SlidingMenu;../java-libs/ActionBarSherlock,\
prebuild=sed -i '48d' ../Makefile,build=cd ../ && \
ANDROID_ABI=armeabi-v7a ANDROID_SDK=$$SDK$$ ANDROID_NDK=$$NDK$$ ./compile.sh release,buildjni=no
Build Version:0.0.11-ARM,111,!0.0.11,forceversion=yes,forcevercode=yes,subdir=vlc-android,\
Build Version:0.0.11-ARM,111,0.0.11,forceversion=yes,forcevercode=yes,subdir=vlc-android,\
update=.;../java-libs/SlidingMenu;../java-libs/ActionBarSherlock,\
prebuild=sed -i '48d' ../Makefile,build=cd ../ && \
ANDROID_ABI=armeabi ANDROID_SDK=$$SDK$$ ANDROID_NDK=$$NDK$$ ./compile.sh release,buildjni=no
Build Version:0.0.11-x86,112,!0.0.11,forceversion=yes,forcevercode=yes,subdir=vlc-android,\
Build Version:0.0.11-x86,112,0.0.11,forceversion=yes,forcevercode=yes,subdir=vlc-android,\
update=.;../java-libs/SlidingMenu;../java-libs/ActionBarSherlock,\
prebuild=sed -i '48d' ../Makefile,build=cd ../ && \
ANDROID_ABI=x86 ANDROID_SDK=$$SDK$$ ANDROID_NDK=$$NDK$$ ./compile.sh release,buildjni=no
Build Version:0.0.11-mips,113,!0.0.11,forceversion=yes,forcevercode=yes,subdir=vlc-android,\
Build Version:0.0.11-mips,113,0.0.11,forceversion=yes,forcevercode=yes,subdir=vlc-android,\
update=.;../java-libs/SlidingMenu;../java-libs/ActionBarSherlock,\
prebuild=sed -i '48d' ../Makefile,build=cd ../ && \
ANDROID_ABI=mips ANDROID_SDK=$$SDK$$ ANDROID_NDK=$$NDK$$ ./compile.sh release,buildjni=no