diff --git a/README.md b/README.md index d075477..12e0a5a 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ NocoDB is an open source NoCode platform that turns any database into a smart sp *(from NocoDB's website)* -**Shipped version:** 0.109.7~ynh1 +**Shipped version:** 0.202.4~ynh1 **Demo:** https://www.nocodb.com/demos @@ -46,7 +46,6 @@ NocoDB has its own authentication system which does not rely on YunoHost's SSO o * Official app website: * Upstream app code repository: -* YunoHost documentation for this app: * Report a bug: ## Developer info diff --git a/README_fr.md b/README_fr.md index c1e8fc5..d53fcf9 100644 --- a/README_fr.md +++ b/README_fr.md @@ -28,7 +28,7 @@ NocoDB is an open source NoCode platform that turns any database into a smart sp *(from NocoDB's website)* -**Version incluse :** 0.109.7~ynh1 +**Version incluse :** 0.202.4~ynh1 **Démo :** https://www.nocodb.com/demos @@ -46,7 +46,6 @@ NocoDB has its own authentication system which does not rely on YunoHost's SSO o * Site officiel de l’app : * Dépôt de code officiel de l’app : -* Documentation YunoHost pour cette app : * Signaler un bug : ## Informations pour les développeurs diff --git a/conf/app.src b/conf/app.src index 5000ab3..a7c22db 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/nocodb/nocodb-seed/archive/f62dcd15b5b859fd8108b74518dcb12a8af180f1.zip -SOURCE_SUM=9f5b73ab6b4f562ea04a92b4a023bf27dd1edf29edd3d9cf1fec63b9feeb7153 +SOURCE_URL=https://github.com/nocodb/nocodb-seed/archive/c46e588bf143b04e519fec6e973a3da8fa260ace.zip +SOURCE_SUM=7f05ec8cf27c58fcac6c257f3d2e3ea209c663613b7240c12b12e59ed8d6b310 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=zip SOURCE_EXTRACT=true diff --git a/conf/env b/conf/env index 6408910..da59178 100644 --- a/conf/env +++ b/conf/env @@ -1,6 +1,6 @@ NODE_ENV=production PORT=__PORT__ -NC_DB=mysql2://localhost:3306?u=__DB_USER__&p=__DB_PWD__&d=__DB_NAME__ +NC_DB=mysql2://127.0.0.1:3306?u=__DB_USER__&p=__DB_PWD__&d=__DB_NAME__ NC_AUTH_JWT_SECRET=__JWT_SECRET__ NC_DISABLE_TELE=1 NC_PUBLIC_URL=https://__DOMAIN__ diff --git a/manifest.json b/manifest.json index 2ad9fbb..f673b87 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "No-code platform that turns any database into a smart spreadsheet", "fr": "Plateform sans code qui transforme toute base de données en un tableur intelligent." }, - "version": "0.109.7~ynh1", + "version": "0.202.4~ynh1", "url": "https://www.nocodb.com", "upstream": { "license": "AGPL-3.0-only", diff --git a/scripts/_common.sh b/scripts/_common.sh index 44d7f52..d5ff8a8 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -5,7 +5,7 @@ #================================================= # dependencies used by the app -nodejs_version=16 +nodejs_version=18 #================================================= # PERSONAL HELPERS diff --git a/scripts/upgrade b/scripts/upgrade index b85ba79..0f9d2c2 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -88,8 +88,10 @@ chown -R $app:www-data "$final_path" ynh_script_progression --message="Upgrading dependencies..." --weight=1 if [ $nodejs_version != $(ynh_app_setting_get --app=$app --key=nodejs_version) ]; then + # ynh_remove_nodejs will override the target nodejs_version + new_nodejs_version=$nodejs_version ynh_remove_nodejs - ynh_install_nodejs --nodejs_version=$nodejs_version + ynh_install_nodejs --nodejs_version=$new_nodejs_version fi #=================================================