Commit graph

20333 commits

Author SHA1 Message Date
F-Droid Builder 0f23c1d777 Update Gadgetbridge to 0.1.4 (5) 2015-03-28 04:10:18 +00:00
F-Droid Builder 7f0bbbd164 Update CV of VLC to 1.2.1 (1020109) 2015-03-28 02:26:07 +00:00
F-Droid Builder 9d7b98e89e Update CV of AcDisplay to 3.2.2 (53) 2015-03-28 01:49:45 +00:00
F-Droid Builder dc10a42282 Update TwelF to 0.4 (4) 2015-03-28 01:19:52 +00:00
Ciaran Gultnieks fd926d89a7 Stats, etc 2015-03-28 01:15:31 +00:00
dllud b34f24059c Boilr: edit app description.
Boilr: added version 0.5.0 and ReleaseNotes link.
Boilr: added spike alert description and corrected link to release notes.
Boilr: added new features to the description.
Boilr: new compile instructions and app description.
Boilr: fixed mobi.boilr.boilr metadata.
Boilr: restored lib files.
Boilr: fixed Boilr.
2015-03-28 01:06:58 +00:00
Boris Kraut a645fb4517 SMSSecure: Add working builds; wait for upstream 2015-03-27 23:22:11 +01:00
Daniel Martí f6ff16ffa7 The List powered by Creative Commons: disable build for now 2015-03-27 22:31:22 +01:00
Daniel Martí 91e42a1caa The List powered by Creative Commons: fix build 2015-03-27 22:31:02 +01:00
Daniel Martí 1aebdcedae The List powered by Creative Commons: shorten summary 2015-03-27 22:25:36 +01:00
Daniel Martí 3801d0fcb8 The List powered by Creative Commons: remove trailing slash 2015-03-27 22:25:00 +01:00
Daniel Martí 1b05581f59 The List powered by Creative Commons: fix build line 2015-03-27 22:24:48 +01:00
Daniel Martí b0e647d72e Merge branch 'master' of https://gitlab.com/mattl/fdroiddata 2015-03-27 22:24:15 +01:00
Boris Kraut 062e04ebe1 Update VLC to 1.2.0 (1020009) 2015-03-27 21:09:33 +01:00
Matt Lee 20b1f917c3 updated this a little more 2015-03-27 15:53:45 -04:00
Matt Lee 4fbf516461 Update gitorious to github 2015-03-27 15:49:37 -04:00
Matt Lee 5917633984 Added The List, updated LibreDroid 2015-03-27 13:43:29 -04:00
Boris Kraut fc53fba8a6 Update Transports Bordeaux to 2.9.2 (292) 2015-03-27 18:20:37 +01:00
Boris Kraut 73a0fffe2a Update Turbo Editor to 1.19 (47) 2015-03-27 18:12:58 +01:00
Boris Kraut fbfddc35d5 Merge branch 'master' into 'master'
bumped mozilla stumbler to 1.7.10

bumped Mozilla Stumbler to v1.7.10

See merge request !664
2015-03-27 17:11:04 +00:00
Boris Kraut 540d21a004 Merge branch 'xabber' into 'master'
Update Xabber to 0.10.45 (145)

See merge request !666
2015-03-27 17:06:31 +00:00
Boris Kraut 009c48619b Update Lampshade to 1.3.4 (134) 2015-03-27 18:01:36 +01:00
Ciaran Gultnieks ad5e165bae Update known apks 2015-03-27 15:45:33 +00:00
أحمد المحمودي (Ahmed El-Mahmoudy) 5aab12a5eb Update Xabber to 0.10.45 (145) 2015-03-27 17:39:35 +02:00
Kilian Holzinger 0b26708698 Updated I2P to 0.9.18 2015-03-27 12:29:53 +01:00
F-Droid Builder cfbc4d17bc Update CV of Turbo Editor to 1.19 (47) 2015-03-27 10:36:32 +00:00
Xphnx e4f8342ba8 Add metadata for Onze CM11 Theme 2015-03-27 08:08:50 +00:00
F-Droid Builder d2870b74c0 Update CV of VLC to 1.2.0 (1020009) 2015-03-27 03:06:14 +00:00
F-Droid Builder ab30a5d20a Update QuickLyric to 1.7.1 (29) 2015-03-27 02:39:13 +00:00
Ciaran Gultnieks 4c2f27ab97 Stats, etc 2015-03-27 01:16:12 +00:00
Victor Ng fb9e4eee91 bumped mozilla stumbler to 1.7.10 2015-03-26 17:14:06 -04:00
Daniel Martí a5e911331e F-Droid: bump CV to 0.83 2015-03-26 21:56:39 +01:00
Daniel Martí 35a0a9d7fd Update F-Droid to 0.83 (830), no CV bump yet 2015-03-26 19:08:57 +01:00
micu 6259891a4b Issue #70: Fix Berlin vegan black screen issue
This commit actually does not fix the issue, it is just
a (not yet working) suggestion for fixing it:

The Berlin vegan guide needs a preparation phase, which inlucdes
copying some JS files and resources and stuff like that. This
preperation is done via

    ant prod.android

in the very root of the Berlin vegan guide git repository.

As you can see in the build.xml file in the root of the repo, the
target prod.android depends on the target prod, which in turn depends
on the target js.minify:

>     <target name="js.minify" depends="js.concatenate">
>
>         <apply executable="java" parallel="false">
>
>             <fileset dir="${build.dir}" includes="index.js"/>
>             <arg line="-jar"/>
>             <arg path="lib/tools/ycompressor.jar"/>
>             <srcfile/>
>             <arg line="-o"/>
>             <mapper type="glob" from="*.js"
>             to="${build.dir}/*-min.js"/>
>             <targetfile/>
>
>         </apply>
>         <delete file="${build.dir}/index.js"/>
>
>     </target>
>
> </project>

In the js.minify phase, the ycompressor.jar tool is used to compress
the java script files for mobile use.

By removing all the jar files in the prebuild phase, ycompressor.jar
gets removed, as well. Thus, the ant prod.android step does not work
properly.

I already managed to build this YUI compressor tool by hand from the sources.
But I could not figure out how to correctly add this external (non-Android)
host tool as dependency for this package.

Do you have any hint?

If I do it like this (in this commit) the build fails with:

> Running 'prebuild' commands in build/org.berlin_vegan.bvapp/platforms/android
> Cleaning subproject ../../../srclib/Cordova/framework
> Could not build app org.berlin_vegan.bvapp due to BuildException: Failed to update project at ../../../srclib/YUICompressor
> ==== detail begin ====
> Error: ../../../srclib/YUICompressor is not a valid project (AndroidManifest.xml not found).
2015-03-26 14:36:33 +01:00
Ciaran Gultnieks fc66c97b75 Update known apks 2015-03-26 09:20:22 +00:00
F-Droid Builder f751e46f2a Update CV of Lampshade to 1.3.4 (134) 2015-03-26 05:59:51 +00:00
F-Droid Builder 41b0ab0689 Update CV of Transports Bordeaux to 2.9.2 (292) 2015-03-26 05:16:51 +00:00
F-Droid Builder bc91e0575a Update CV of SMSsync to 2.8.0 (29) 2015-03-26 05:12:48 +00:00
F-Droid Builder ef52ec213a Update CV of Navit to 6031 (6031) 2015-03-26 05:03:37 +00:00
F-Droid Builder 3370f44340 Update CV of DataStats to 2.1.0 (13) 2015-03-26 04:44:58 +00:00
F-Droid Builder 98194b044b Update Boilr to 0.5.0 (7) 2015-03-26 03:46:56 +00:00
F-Droid Builder 3560f72212 Update CV of Kernel Adiutor to 0.8.8.2 beta (60) 2015-03-26 03:36:24 +00:00
F-Droid Builder e9d4d03793 Update CV of IceCondor to 20150302 (20150302) 2015-03-26 03:20:40 +00:00
F-Droid Builder a02ac7f0b8 Update CV of DSub to 4.9.5 (149) 2015-03-26 02:52:53 +00:00
F-Droid Builder 7283dc898c Update SoundWaves to 0.82 (102) 2015-03-26 02:05:28 +00:00
Ciaran Gultnieks b8bf150ac3 Stats, etc 2015-03-26 01:16:14 +00:00
Boris Kraut 97c26976aa SMSSecure: Rebase build against upstream 2015-03-25 22:54:12 +01:00
Boris Kraut 1329d29f4e Merge branch 'freeminer' into 'master'
Update freeminer to 0.4.12.6.15

See merge request !662
2015-03-25 21:31:29 +00:00
Boris Kraut 483f9fea05 Merge branch 'master' into 'master'
Lets try autoupdate

See merge request !661
2015-03-25 21:29:33 +00:00
Boris Kraut 3732bb6598 Add srclib ShortcutBadger 2015-03-25 22:27:02 +01:00