Commit graph

57 commits

Author SHA1 Message Date
F-Droid Builder 4dfb08e501 Update French Calendar to 1.18.1 (1181) 2017-10-21 00:58:04 +01:00
F-Droid Builder be16dcdd7c Update French Calendar to 1.18.0 (1180) 2017-10-02 11:16:55 +01:00
F-Droid Builder c5d1dfcbad Update French Calendar to 1.17.4 (1174) 2017-09-22 04:15:00 +01:00
F-Droid Builder e2f1f39904 Update French Calendar to 1.17.2 (1172) 2017-08-14 23:21:50 +01:00
F-Droid Builder b1a8b2c3c3 Update French Calendar to 1.17.1 (1171) 2017-08-07 16:24:42 +01:00
F-Droid Builder e532e7befa Update French Calendar to 1.16.0 (1160) 2017-07-22 07:23:57 +01:00
Hans-Christoph Steiner 726d360580 include Author Name/Author Email/Web Site/Auto Name from great scrape
This are all the data that the original app author submitted to represent
their apps.  I manually reviewed all of them to make sure that they were
an improvement over what we already had.
2017-05-16 09:56:32 +02:00
F-Droid Builder 9fd32b55d8 Update French Calendar to 1.15.2 (1152) 2017-03-12 04:43:03 +00:00
F-Droid Builder 619baf139b Update French Calendar to 1.15.0 (1150) 2017-03-04 15:12:06 +00:00
Carmen Alvarez 372700797b ca.rmen.android.frenchcalendar-1.14.0: removed wearable/google play services
* Google play services is no longer used in this project.
* There is only the default flavor now (previously there were foss and proprietary flavors).
* Moved the versionCode and versionName back to the app/ subproject.
2017-02-26 19:41:10 +01:00
F-Droid Builder db485bb9b6 Update French Calendar to 1.13.0 (1130) 2017-02-12 01:25:22 +00:00
Boris Kraut a57abbc1d3 Update French Calendar to 1.12.2 (1122) 2017-01-21 19:52:26 +01:00
Boris Kraut b89d04e532 Use SPDX names for popular licenses 2016-12-17 10:37:34 +01:00
Carmen Alvarez a25e94a4ec Update ca.rmen.android.frenchcalendar to 1.12.1
Manually updating ca.rmen.android.frenchcalendar to version 1.12.1.

Not sure why this hasn't been updated for several versions.  The following releases were not updated automatically:
* release-1.9.7
* release-1.10.0
* release-1.11.0
* release-1.11.1
* release-1.11.2
* release-1.11.3
* release-1.12.0
* release-1.12.1 (just released today)

`fdroid checkupdates ca.rmen.android.frenchcalendar` displays an error about the package not being found:

```
fdroid checkupdates ca.rmen.android.frenchcalendar
INFO: Processing ca.rmen.android.frenchcalendar...
WARNING: ...ca.rmen.android.frenchcalendar : Couldn't find package ID
INFO: Finished.
```

`fdroid build -v -l ca.rmen.android.frenchcalendar` seemed to work ok after this manual update.

I'm only adding the latest version to the metadata file.  Not sure if you really need 1.9.7 - 1.12.0.
2016-12-03 11:38:10 +01:00
F-Droid Builder 39dbd311d8 Update French Calendar to 1.9.6 (196) 2016-10-17 04:00:26 +01:00
F-Droid Builder 43721e3501 Update French Calendar to 1.9.4 (194) 2016-09-27 10:40:54 +01:00
F-Droid Builder 8788ea5371 Update French Calendar to 1.9.3 (193) 2016-09-04 07:06:32 +01:00
F-Droid Builder 3284ebbe19 Update French Calendar to 1.9.2 (192) 2016-06-20 04:10:52 +01:00
Boris Kraut 8a3938c0e2 French Calendar: Fix build 2016-05-31 18:19:06 +02:00
F-Droid Builder 5309b5126e Update French Calendar to 1.9.1 (191) 2016-05-22 01:32:46 +01:00
Daniel Martí f8771a5176 Disable a bunch of failing builds 2016-05-12 20:48:24 +01:00
F-Droid Builder feb007680d Update French Calendar to 1.9.0 (190) 2016-04-24 07:03:04 +01:00
Boris Kraut e28d6db4f0 French Calendar: Switch license to GPLv3 2015-12-07 20:43:59 +01:00
Carmen Alvarez 1a055d1847 french-calendar: don't scan the wearable/build.gradle file, as it is ignored by settings.gradle
Instead of sed-patching the wearable/build.gradle file, which isn't even
read when building french calendar, just ignore the file altogether,
for the scanning phase.
2015-11-09 01:37:58 +01:00
Carmen Alvarez a0c973a9f1 frenchcalendar: put back the sed patch, but only for the wearable build.gradle
Not sure why this is needed though.
2015-11-09 00:12:39 +01:00
Carmen Alvarez c6fb78ea32 Removed prebuild sed patch from ca.rmen.android.frenchcalendar.txt.
This is not needed. In addition to only declaring the google
play services dependency in the wear flavor (not used in frdoid),
like this:

```
wearCompile 'com.google.android.gms:play-services:6.1.71'
```

there is an additional check to ensure that this line is not
even executed, as long as at least one of the tasks in the
gradle command line contains the string "foss".

In settings.gradle:

```
boolean includeWear=true;
// If we are building with a "foss" task, don't include the wearable module.
for(String taskName : startParameter.taskNames) {
    if(taskName.contains("Foss"))
        includeWear=false;
}
include ':handheld', ':common'
if(includeWear)
  include ':wearable'
```

In handheld/build.gradle:
```
    // Package the wear apk inside this one (only for the 'wear' flavor)
    if(rootProject.findProject("wearable") != null) {
        wearCompile 'com.google.android.gms:play-services:6.1.71'
        wearWearApp project(':wearable')
    }
```

I understand that most projects with proprietary vs foss flavors
don't have this additional check, which is why the sed patch is
usually needed.
2015-11-08 23:25:21 +01:00
Daniel Martí ec0801fa6d Mass removal of last lines 2015-10-04 07:54:12 -07:00
F-Droid Builder 06a6b19f1c Update French Calendar to 1.8.1 (181) 2015-09-23 06:04:11 +00:00
Daniel Martí f64020e146 Run rewritemeta with text wrapping 2015-09-11 22:52:14 -07:00
Daniel Martí 8026803316 Second Office category cleanup (#238) 2015-08-29 22:38:37 -07:00
Daniel Martí 1ac4757607 Rename Wallpaper category into Theming (#238) 2015-08-29 17:55:59 -07:00
Daniel Martí ac5507a9b3 Avoid very long lines in metadata descriptions
This doesn't change the html description in the index, it only makes the
metadata easier to read and deal with.
2015-08-28 19:04:01 -07:00
Daniel Martí 9903ec33f1 French Calendar: please scanner to fix build 2015-08-17 18:07:43 -07:00
F-Droid Builder 662837bc8c Update French Calendar to 1.8.0 (180) 2015-08-17 05:55:13 +00:00
F-Droid Builder df6b137499 Update French Calendar to 1.7.2 (172) 2015-06-24 02:53:45 +02:00
F-Droid Builder f5748ff20e Update French Calendar to 1.7.1 (171) 2015-06-22 02:53:55 +02:00
Boris Kraut 662e35b593 French Calendar: Fix AUM 2015-06-15 20:04:27 +02:00
F-Droid Builder 1216f77f3f Update French Calendar to 1.7.0 (170) 2015-06-15 02:52:25 +02:00
Daniel Martí bbe04c1de2 French Calendar: no longer necessary to sed out unused deps 2015-01-02 22:29:13 +01:00
Boris Kraut 4c2d22a7f8 French Calendar: Remove disabled builds. 2014-12-16 19:12:14 +01:00
Boris Kraut 9d6c15ec46 Update French Calendar to 1.6.1 (161) 2014-12-13 12:10:47 +01:00
F-Droid Builder a975139efc Update CV of French Calendar to 1.6.1 (161) 2014-12-13 03:16:02 +00:00
Boris Kraut 72f1e9dbc4 French Calendar: Fix more gradle stuff. 2014-12-09 23:15:20 +01:00
Boris Kraut 3625325c3b French Calendar: Downgrade gradle. 2014-12-09 22:39:38 +01:00
Carmen Alvarez f8ac87286c Update French Calendar to 1.6.0 (160) 2014-12-06 01:20:13 +01:00
Carmen Alvarez 233e708d90 Update French Calendar to 1.5.0 (150) 2014-12-04 23:52:15 +01:00
Carmen Alvarez 5b4bae5dc2 Update French Calendar to 1.4.1 (141)
* New feature to change the color of the widget
* Updated the app description, which was already out of date.
* Simpler gradle configuration in the metadata file:
  The source repo (https://github.com/caarmen/FRCAndroidWidget)
  has been modified so that if you build with any task containing
  "Foss" in the task name, the wearable module is not included.
  This was done in this commit: 92bd523959
  fdroid builds with "assembleFossRelease", so the wearable module
  will be skipped.
2014-11-30 15:31:26 +01:00
Boris Kraut 71803b0406 French Calendar: Switch to jCenter. 2014-11-23 23:09:51 +01:00
Boris Kraut 6b06b1e40e French Calendar: Fix build. 2014-11-23 19:41:52 +01:00
Carmen Alvarez a5cccf28a0 Update CV of French Calendar to 1.4.0 (140).
Version 1.4.0 of French Calendar is built using gradle.
The "foss" flavor uses only open source software.
The "wear" flavor uses Google Play Services for android wear
integration.

For F-Droid the build is configured to use the "foss" flavor.
2014-11-23 14:58:22 +01:00