Merge branch 'develop'
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2019-09-27 03:54:53 +02:00
commit fe526f8e94
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
4 changed files with 19 additions and 14 deletions

View File

@ -6,6 +6,7 @@ root = true
[*] [*]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
tab_width = 4
end_of_line = lf end_of_line = lf
charset = utf-8 charset = utf-8
trim_trailing_whitespace = true trim_trailing_whitespace = true

View File

@ -1,4 +1,4 @@
:coc_contact: tastytea@tastytea.de :contact-coc: tastytea@tastytea.de
== Code of Conduct == Code of Conduct
@ -32,7 +32,7 @@ Examples of unacceptable behavior by participants include:
=== Enforcement === Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at {coc_contact}. reported by contacting the project team at {contact-coc}.
All complaints will be reviewed and investigated and will result in a response All complaints will be reviewed and investigated and will result in a response
that is deemed necessary and appropriate to the circumstances. The project team that is deemed necessary and appropriate to the circumstances. The project team

View File

@ -1,8 +1,13 @@
:project: mastodon-cpp :project: mastodon-cpp
:uri-base: https://schlomp.space/tastytea/{project}
:uri-coc: {uri-base}/src/branch/master/CODE_OF_CONDUCT.adoc
:contact-email: tastytea@tastytea.de
:contact-xmpp: {contact-email}
:contact-fediverse: https://likeable.space/users/tastytea
== How to contribute == How to contribute
Read the link:CODE_OF_CONDUCT.adoc[Code of Conduct]. Read the link:{uri-coc}[Code of Conduct].
=== Reporting bugs or suggesting enhancements === Reporting bugs or suggesting enhancements
@ -11,12 +16,14 @@ https://schlomp.space/tastytea/{project}/issues[perform a search] to see if the
problem has already been reported. If it has, add a comment to the existing problem has already been reported. If it has, add a comment to the existing
issue instead of opening a new one. Same for enhancements. issue instead of opening a new one. Same for enhancements.
You can also contact me via mailto:tastytea@tastytea.de[E-Mail], You can also contact me via mailto:{contact-email}[E-Mail],
link:xmpp:tastytea@tastytea.de[XMPP] or the link:xmpp:{contact-xmpp}[XMPP] or the {contact-fediverse}[Fediverse] if you
https://likeable.space/users/tastytea[Fediverse] if you don't want to open an don't want to open an account.
account.
=== Pull requests === Pull requests
Please use similar coding conventions as the rest of the project. The basic rule Please use similar coding conventions as the rest of the project. The basic rule
to remember is to write code in the same style as the existing/surrounding code. to remember is to write code in the same style as the existing/surrounding code.
You can also send me your patches via mailto:{contact-email}[E-Mail], ideally
using `git format-patch` or `git send-email`.

View File

@ -1,6 +1,8 @@
= mastodon-cpp = mastodon-cpp
:toc: preamble :toc: preamble
:project: mastodon-cpp :project: mastodon-cpp
:uri-base: https://schlomp.space/tastytea/{project}
:uri-branch-main: {uri-base}/src/branch/master
*{project}* is a C++ wrapper for the Mastodon API. You submit an API call *{project}* is a C++ wrapper for the Mastodon API. You submit an API call
and get the raw JSON or easy to use abstractions. and get the raw JSON or easy to use abstractions.
@ -10,9 +12,7 @@ and get the raw JSON or easy to use abstractions.
The HTML reference can be generated with `build_doc.sh`, if doxygen is The HTML reference can be generated with `build_doc.sh`, if doxygen is
installed. It is also available at installed. It is also available at
https://doc.schlomp.space/{project}/annotated.html[doc.schlomp.space/{project}/]. https://doc.schlomp.space/{project}/annotated.html[doc.schlomp.space/{project}/].
There are more There are more {uri-branch-main}/examples[examples] in `examples/`.
https://schlomp.space/tastytea/{project}/src/branch/master/examples[examples]
in `examples/`.
=== Examples === Examples
@ -257,10 +257,7 @@ the filter ID with `MASTODON_CPP_FILTER_ID`. You can select the list ID with
* Have at least 1 list with at least one account in it. * Have at least 1 list with at least one account in it.
* have at least 1 account muted. * have at least 1 account muted.
== Contributing include::{uri-base}/raw/branch/master/CONTRIBUTING.adoc[]
See
https://schlomp.space/tastytea/{project}/src/branch/master/CONTRIBUTING.adoc[CONTRIBUTING.adoc].
== Status of implementation == Status of implementation