转到文件
Joas Schilling 09b766840c
chore(CI): Adjust testing matrix for Nextcloud 29 on main
Signed-off-by: Joas Schilling <coding@schilljs.com>
2024-03-28 12:24:10 +01:00
.github chore(CI): Adjust testing matrix for Nextcloud 29 on main 2024-03-28 12:24:10 +01:00
.tx [tx-robot] Update transifex configuration 2022-10-01 02:22:46 +00:00
appinfo Release v6.0.0-rc1 2024-03-12 13:21:05 +01:00
composer perf(autoloader): Use Composer's authoritative classmap 2023-01-20 12:06:26 +01:00
css feat(contacts): implement final design enhancements from mockups 2023-05-03 13:29:03 +02:00
img feat: Rebrand circles to teams in the frontend 2024-02-21 10:53:36 +01:00
l10n Fix(l10n): Update translations from Transifex 2024-03-28 00:33:32 +00:00
lib fix(socialavatars): Fix HTTP client usage 2023-11-30 17:19:21 +01:00
src Merge pull request #3846 from nextcloud/chore/vue3/migrate-v-deep 2024-03-11 12:50:00 +01:00
templates Remove OC_Util::isIe() 2022-01-03 15:41:52 +01:00
tests fix(socialavatars): Fix HTTP client usage 2023-11-30 17:19:21 +01:00
.eslintrc.js chore(eslint): ignore generated *.d.ts files 2023-10-17 14:39:41 +02:00
.gitignore Adjust ignore lists 2022-08-05 08:45:55 +02:00
.nextcloudignore Adjust ignore lists 2022-08-05 08:45:55 +02:00
.npmignore Vue cleanup and init 2018-07-11 15:31:29 +02:00
.php-cs-fixer.dist.php Reinstall version so php-cs-fixer is up to date 2022-08-05 08:42:47 +02:00
CHANGELOG.md Release v6.0.0-rc1 2024-03-12 13:21:05 +01:00
COPYING Copyright fix 2018-10-25 17:30:29 +02:00
Makefile Build package using krankerl 2022-06-10 22:30:47 +02:00
README.md add composer install to readme 2023-05-22 13:31:48 +02:00
babel.config.js 4.0.0-alpha.0 2021-05-30 10:28:57 +02:00
composer.json chore(deps-dev): bump christophwurst/nextcloud_testing 2023-11-04 02:48:23 +00:00
composer.lock chore(deps-dev): bump phpunit/phpunit from 9.6.15 to 9.6.17 2024-02-24 03:40:51 +00:00
jest.config.js perf(bundles): migrate nc-vue imports 2023-05-02 10:55:19 +02:00
krankerl.toml Build package using krankerl 2022-06-10 22:30:47 +02:00
package-lock.json chore(deps-dev): bump webpack-dev-middleware from 5.3.3 to 5.3.4 2024-03-23 09:21:47 +00:00
package.json Release v6.0.0-rc1 2024-03-12 13:21:05 +01:00
phpunit.xml Adjust phpunit config in main 2022-04-07 12:09:36 +02:00
stylelint.config.js Bump deps and use npm7 2021-06-15 11:36:47 +02:00
tsconfig.json New member button and virtual list 2021-05-30 10:28:56 +02:00
webpack.config.js chore: cleanup webpack config 2024-02-19 19:22:24 +01:00

README.md

Nextcloud Contacts

Downloads Code coverage Dependabot status

A contacts app for Nextcloud. Easily sync contacts from various devices with your Nextcloud and edit them online.

This app only support vCard 3.0 and 4.0. This app is compatible with the same browsers as server except IE!

💙 🎉 Why is this so awesome?

  • 🚀 Integration with other Nextcloud apps! Currently Mail and Calendar – more to come.
  • 🎉 Never forget a birthday! You can sync birthdays and other recurring events with your Nextcloud Calendar.
  • 👥 Sharing of address books! You want to share your contacts with your friends or coworkers? No problem!
  • 🙈 We’re not reinventing the wheel! Based on the great and open SabreDAV library.

Maintainers

🛠️ Installation

The app is distributed through the app store and you can install it right from your Nextcloud installation.

Release tarballs are hosted at https://github.com/nextcloud-releases/contacts/releases.

📡 Support

If you need assistance or want to ask a question about Contacts, you are welcome to ask for support in our forums. If you have found a bug, feel free to open a new Issue on GitHub. Keep in mind, that this repository only manages the frontend. If you find bugs or have problems with the CardDAV-Backend, you should ask the team at Nextcloud server for help!

Could you add XXX property?

This is a complicated answer. We did not invent the way contacts works. We are following the official vCard format. This format include a predefined set of properties that other applications/devices supports too (Android, iOS, Windows, Gnome...). Adding a custom property would just make it compatible with Nextcloud and will not be understood by any other clients and make it complicated for us to ensure its sustainability over time. Long story short, we suggest you use the Notes field to add your custom data :)

If you'd like to join, just go through the issue list and fix some. :)

Build the app

# set up and build for production
composer install
npm ci
npm run build

# install dependencies
composer install
npm ci

# build for dev and watch changes
npm run watch

# build for dev
npm run dev

# build for production with minification
npm run build

Running tests

You can run all front-end tests by using:

# run tests once
npm run test

# run tests continuously after every change
npm run test:watch

✌️ Code of conduct

The Nextcloud community has core values that are shared between all members during conferences, hackweeks and on all interactions in online platforms including Github and Forums. If you contribute, participate or interact with this community, please respect our shared values. 😌

❤️ How to create a pull request

This guide will help you get started:

Thanks