fdroiddata/metadata/com.samebits.beacon.locator.yml
Hans-Christoph Steiner cf4e8a40ff convert all MediaWiki links to HTML links
```python
import yaml, glob, re, os
from fdroidserver import metadata

pat = re.compile(r'\[(https?://[^ \]]+)\s+([^\]]+)\]')

for f in glob.glob('metadata/*.yml'):
    with open(f) as fp:
        data = yaml.load(fp)
    description = data.get('Description', '')
    for m in pat.finditer(data.get('Description', '')):
        link = m.group(1)
        text = m.group(2)
        print(f, link, text, flush=True)
        description = description.replace(m.group(), '<a href="%s">%s</a>' % (link, text))
    data['Description'] = description
    app = metadata.App(data)
    metadata.write_metadata(f, app)
```

```
sed -i 's,^      - true,      - yes,' metadata/*.yml
sed -i 's,^      - false,      - no,' metadata/*.yml
```

closes fdroid-website#510
2020-12-09 19:10:44 +01:00

155 lines
3.1 KiB
YAML

Categories:
- System
License: Apache-2.0
WebSite: https://github.com/vitas/beaconloc/wiki
SourceCode: https://github.com/vitas/beaconloc
IssueTracker: https://github.com/vitas/beaconloc/issues
Changelog: https://github.com/vitas/beaconloc/releases
AutoName: Beacon Locator
Description: |-
Scan, locate and track Bluetooth LE beacons (Eddystone, iBeacons or AltBeacons)
allows you to define actions that will be triggered when a specified event
occurs.
These events are supported:
* Beacon enters a region (beacon in range)
* Beacon leaves the region (beacon is out of range)
* Beacon is near you
For each event you can define unlimited number of actions :
* Start an application
* Open url
* Get current location
* Broadcast intent action
* Set Normal / Silent mode
* Execute tasker action (http://tasker.dinglisch.net) for unlimited action possibilities
For example, you may set a silent mode entering your bedroom...and set normal
sound profile leaving it.
Additional information is supplied in the
<a href="https://github.com/vitas/beaconloc/wiki/Help">help section</a> of the wiki.
RepoType: git
Repo: https://github.com/vitas/beaconloc
Builds:
- versionName: 1.0.1
versionCode: 101
commit: 50d3f4f49b5d17f14e94c390cbfeee6588459b3b
subdir: app
gradle:
- yes
- versionName: 1.0.2
versionCode: 102
commit: c6466bbaf254db0f2010cc94a1ee4f1f5bc21de8
subdir: app
gradle:
- yes
- versionName: 1.0.3
versionCode: 103
commit: fe211ea54132d586e2eb76397cf15114453c94f9
subdir: app
gradle:
- yes
- versionName: 1.0.5
versionCode: 105
commit: 3a26727c4eb1cf06665de734d7daddec5db25d30
subdir: app
gradle:
- yes
- versionName: 1.0.6
versionCode: 106
commit: 343af568e27cdb0257dadd0bf48e0a6879e5ee6a
subdir: app
gradle:
- yes
- versionName: 1.0.7
versionCode: 107
commit: bbd21288ae6a61dffd5e92895633d79cc1acaad4
subdir: app
gradle:
- yes
- versionName: 1.0.8
versionCode: 108
commit: 8207969c5ccbd91119aa8963657d789ce55887e1
subdir: app
gradle:
- yes
- versionName: 1.0.9
versionCode: 109
commit: 1.0.9
subdir: app
gradle:
- yes
- versionName: 1.1.1
versionCode: 111
commit: 1.1.1
subdir: app
gradle:
- yes
- versionName: 1.1.4
versionCode: 114
commit: 1.1.4
subdir: app
gradle:
- yes
- versionName: 1.1.5
versionCode: 115
commit: 1.1.5
subdir: app
gradle:
- yes
- versionName: 1.1.6
versionCode: 116
commit: 1.1.6
subdir: app
gradle:
- yes
- versionName: 1.1.8
versionCode: 118
commit: 1.1.8
subdir: app
gradle:
- yes
- versionName: 1.1.9
versionCode: 119
commit: 1.1.9
subdir: app
gradle:
- yes
- versionName: 1.2.1
versionCode: 121
commit: 1.2.1
subdir: app
gradle:
- yes
- versionName: 1.2.2
versionCode: 122
commit: 1.2.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.2.2
CurrentVersionCode: 122