├── w3c.json ├── Bullet Chatting Rendering API Proposal.pdf ├── README.md ├── LICENSE.md └── CONTRIBUTING.md /w3c.json: -------------------------------------------------------------------------------- 1 | { 2 | "group": ["109611"], 3 | "contacts": ["xfq", "xueyuanjia"], 4 | "repo-type": "others" 5 | } 6 | -------------------------------------------------------------------------------- /Bullet Chatting Rendering API Proposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/bullet-chatting-docs/main/Bullet Chatting Rendering API Proposal.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # bullet-chatting-docs 2 | 3 | This repo contains some auxiliary documents related to [Bullet Chatting](https://github.com/w3c/danmaku). -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | All Reports in this Repository are licensed by Contributors 2 | under the 3 | [W3C Software and Document License](https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document). 4 | 5 | Contributions to Specifications are made under the 6 | [W3C CLA](https://www.w3.org/community/about/agreements/cla/). 7 | 8 | Contributions to Test Suites are made under the 9 | [W3C 3-clause BSD License](https://www.w3.org/Consortium/Legal/2008/03-bsd-license.html) 10 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Bullet Chatting Community Group 2 | 3 | This repository is being used for work in the W3C Bullet Chatting Community Group, governed by the [W3C Community License Agreement (CLA)](https://www.w3.org/community/about/agreements/cla/). To make substantive contributions, you must join the CG. 4 | 5 | If you are not the sole contributor to a contribution (pull request), please identify all 6 | contributors in the pull request comment. 7 | 8 | To add a contributor (other than yourself, that's automatic), mark them one per line as follows: 9 | 10 | ``` 11 | +@github_username 12 | ``` 13 | 14 | If you added a contributor by mistake, you can remove them in a comment with: 15 | 16 | ``` 17 | -@github_username 18 | ``` 19 | 20 | If you are making a pull request on behalf of someone else but you had no part in designing the 21 | feature, you can remove yourself with the above syntax. --------------------------------------------------------------------------------