Go to file
John Molakvoæ b34df2d302
Add codecov upload
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2022-03-15 17:08:58 +01:00
.github Add codecov upload 2022-03-15 17:08:58 +01:00
.tx Fix transifex config 2020-09-15 12:37:14 +02:00
appinfo Update info.xml authors with new maintainers and co-maintainers 2021-12-27 12:06:08 +01:00
css fix some settings styling 2021-08-30 16:42:52 +02:00
img fix the contacts icon 2021-07-06 10:18:02 +02:00
l10n [tx-robot] updated from transifex 2022-03-03 02:35:30 +00:00
lib Merge pull request #2645 from nextcloud/enhancement/sensitive-insensitive-background-jobs 2022-02-22 09:49:59 +01:00
src Add testing 2022-03-15 17:08:58 +01:00
templates Remove OC_Util::isIe() 2022-01-03 15:41:52 +01:00
tests Add testing 2022-03-15 17:08:58 +01:00
.eslintrc.js Properly check for circles version 2021-06-04 08:52:38 +02:00
.gitignore Fix makefile 2020-07-10 17:59:38 +02:00
.npmignore Vue cleanup and init 2018-07-11 15:31:29 +02:00
.php_cs.dist Add php cs 2020-07-09 17:25:12 +02:00
CHANGELOG.md Forward-port v4.0.8 changelog 2022-02-17 16:29:58 +01:00
COPYING Copyright fix 2018-10-25 17:30:29 +02:00
Makefile Remove all obsolete make targets 2021-12-30 12:04:23 +01:00
README.md Fix dev setup errors 2021-12-29 12:24:04 +01:00
babel.config.js 4.0.0-alpha.0 2021-05-30 10:28:57 +02:00
composer.json Bump nextcloud/coding-standard from 0.3.0 to 0.5.0 2021-03-16 09:54:14 +01:00
composer.lock Bump phpunit/phpunit from 9.5.9 to 9.5.10 2021-10-02 01:01:24 +00:00
jest.config.js Add codecov upload 2022-03-15 17:08:58 +01:00
package-lock.json Add testing 2022-03-15 17:08:58 +01:00
package.json Add testing 2022-03-15 17:08:58 +01:00
phpunit.xml Travis bump 2019-01-23 12:47:27 +01: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 Fix usage of IgnorePlugin 2022-01-25 15:14:00 +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!
  • 🙈 Were not reinventing the wheel! Based on the great and open SabreDAV library.

🛠️ 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 or the IRC-Channel. 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
npm ci
npm run build

# install dependencies
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