diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a007fea --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/* diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9b0e6aa --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +APP_NAME=minimalprofile +VERSION=$(shell grep '' appinfo/info.xml | sed -E 's/.*(.*)<\/version>.*/\1/') + +.PHONY: appstore + +appstore: + mkdir -p build + tar --exclude-vcs --exclude='build' --exclude='*.tar.gz' -czf build/$(APP_NAME)-$(VERSION).tar.gz -C .. $(notdir $(CURDIR)) diff --git a/README.md b/README.md index 058f6a8..e9f2197 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,23 @@ -# nextcloud_minimalprofile +# Minimal Profile Display for Nextcloud +**Minimal Profile Display** is a lightweight Nextcloud app that allows users and administrators to simplify user profile pages by hiding certain optional fields, such as pronouns. + +This app is perfect for those who prefer a cleaner, distraction-free interface without altering the underlying user data. + +--- + +## ✨ Features + +- Hide the Pronouns field from user profiles +- Lightweight: No database changes or backend processing +- Fully reversible: Simply disable the app to restore default profiles +- Compatible with Nextcloud 26 to 31 + +--- + +## 📥 Installation + +1. Download the latest release from the [Releases page](https://code.taurix.net/TaurixIT/nextcloud_minimalprofile/releases). +2. Extract the archive into your Nextcloud `custom_apps/` directory: + ```bash + tar -xvzf minimalprofile-*.tar.gz -C /var/www/nextcloud/custom_apps/