mirror of
https://github.com/chenasraf/nextcloud-autocurrency.git
synced 2026-05-17 17:28:06 +00:00
52 lines
2.1 KiB
XML
52 lines
2.1 KiB
XML
<?xml version="1.0"?>
|
|
<info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
|
|
<id>autocurrency</id>
|
|
<name>Auto Currency</name>
|
|
<summary>Automatically fills the currency rates for your Cospend projects daily.</summary>
|
|
<description><![CDATA[This NextCloud app automatically fetches currency information for your Cospend projects, and fills
|
|
them up using the main currency as base. No more manually updating exchange rates!
|
|
|
|
It will automatically run once a day and use your currency names to fetch the correct rate.
|
|
|
|
The name will be fetched using the first 3-uppercase-letter appearance in the name.
|
|
|
|
For example:
|
|
|
|
- USD
|
|
- $ USD
|
|
- USD $
|
|
- United States Dollars (USD)
|
|
|
|
Will all be considered "USD" for conversion purposes.
|
|
|
|
This rule applies to main and additional currencies.
|
|
|
|
I am developing this package on my free time, so any support, whether code, issues, or just stars is
|
|
very helpful to sustaining its life. If you are feeling incredibly generous and would like to donate
|
|
just a small amount to help sustain this project, I would be very very thankful!
|
|
|
|
<a href='https://ko-fi.com/casraf' target='_blank'>
|
|
<img height='36' style='border:0px;height:36px;' src='https://cdn.ko-fi.com/cdn/kofi1.png?v=3' alt='Buy Me a Coffee at ko-fi.com' />
|
|
</a>
|
|
|
|
I welcome any issues or pull requests on GitHub. If you find a bug, or would like a new feature,
|
|
don't hesitate to open an appropriate issue and I will do my best to reply promptly.]]></description>
|
|
<version>1.0.0</version>
|
|
<licence>agpl</licence>
|
|
<author mail="contact@casraf.dev" homepage="https://casraf.dev">Chen Asraf</author>
|
|
<namespace>AutoCurrency</namespace>
|
|
<category>organization</category>
|
|
<bugs>https://github.com/chenasraf/nextcloud-autocurrency/issues</bugs>
|
|
<dependencies>
|
|
<nextcloud min-version="29" max-version="31"/>
|
|
</dependencies>
|
|
<background-jobs>
|
|
<job>OCA\AutoCurrency\Cron\FetchCurrenciesJob</job>
|
|
</background-jobs>
|
|
<settings>
|
|
<admin>OCA\AutoCurrency\Settings\CurrencyAdmin</admin>
|
|
<admin-section>OCA\AutoCurrency\Sections\CurrencyAdmin</admin-section>
|
|
</settings>
|
|
</info>
|