diff --git a/README.md b/README.md index d0f9a88..699e6c7 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Installer Monica with YunoHost](https://install-app.yunohost.org/install-with-yunohost.png)](https://install-app.yunohost.org/?app=monica) -Shipped version: **2.10.2** +Shipped version: **2.11.1**

Personal Relationship Manager

diff --git a/conf/.env b/conf/.env index 07286f3..886e959 100644 --- a/conf/.env +++ b/conf/.env @@ -54,6 +54,7 @@ MAIL_ENCRYPTION= MAIL_FROM_ADDRESS=monica@yunodomain MAIL_FROM_NAME="Monica" APP_EMAIL_NEW_USERS_NOTIFICATION=yunomail +APP_EMAIL_NEW_USERS_NOTIFICATION=monica@yunodomain # Default locale used in the application. @@ -133,3 +134,46 @@ ALLOW_STATISTICS_THROUGH_PUBLIC_API_ACCESS=false # Indicates that each user in the instance must comply to international policies # like CASL or GDPR POLICY_COMPLIANT=true + +# Have access to paid features available on https://monicahq.com, for free. +# Can be true or false. Default to false. +# If set to true, that means your users will have to pay to access the paid +# features. We use Stripe to do this. +REQUIRES_SUBSCRIPTION=false + +# Number of contacts allowed in the Free version if the instance requires +# a subscription +NUMBER_OF_ALLOWED_CONTACTS_FREE_ACCOUNT=10 + +# ONLY NECESSARY IF MONICA REQUIRES A SUBSCRIPTION TO WORK +# Leave blank unless you know what you are doing. +STRIPE_KEY= +STRIPE_SECRET= +PAID_PLAN_MONTHLY_FRIENDLY_NAME= +PAID_PLAN_MONTHLY_ID= +PAID_PLAN_MONTHLY_PRICE= +PAID_PLAN_ANNUAL_FRIENDLY_NAME= +PAID_PLAN_ANNUAL_ID= +PAID_PLAN_ANNUAL_PRICE= + +# Enable geolocation services +# This is used to translate addresses to GPS coordinates. +ENABLE_GEOLOCATION=false + +# API key for geolocation services +# We use LocationIQ (https://locationiq.com/) to translate addresses to +# latitude/longitude coordinates. We could use Google instead but we don't +# want to give anything to Google, ever. +# LocationIQ offers 10,000 free requests per day. +LOCATION_IQ_API_KEY= + +# Enable weather on contact profile page +# Weather can only be fetched if we know longitude/latitude - this is why +# you also need to activate the geolocation service above to make it work +ENABLE_WEATHER=false + +# Access to weather data from darksky api +# https://darksky.net/dev/register +# Darksky provides an api with 1000 free API calls per day +# You need to enable the weather above if you provide an API key here. +DARKSKY_API_KEY= diff --git a/conf/app.src b/conf/app.src index d30aec2..5c46fa6 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/monicahq/monica/archive/v2.10.2.zip -SOURCE_SUM=1e1b052fbe37106e6c804dd0e007e181f0b53fb0a29e0db4faed9bde55557069 +SOURCE_URL=https://github.com/monicahq/monica/archive/v2.11.1.zip +SOURCE_SUM=d935f00d5f901b1ad63bff44c3a5f242d1c8eef167a3ea1195639a4e6e21eca3 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=zip SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 935dcdd..9d8fc3a 100644 --- a/manifest.json +++ b/manifest.json @@ -7,7 +7,7 @@ }, "url": "https://monica.com", "license": "GPL-3.0", - "version": "2.10.2", + "version": "2.11.1", "maintainer": { "name": "Sebastian Gumprich", "email": "yunohost@gumpri.ch",