circuitpython-org/_layouts/contributing.html
2021-12-01 11:54:19 -06:00

57 lines
2.2 KiB
HTML

---
layout: common
---
<!-- https://github.com/adafruit/circuitpython/issues/1246 -->
<div id="contributing-page">
<h1>Contributing</h1>
<p>
If you'd like to contribute to the CircuitPython project, the CircuitPython
libraries are a great way to begin. This page is updated with daily status
information from the CircuitPython libraries, including open pull requests,
open issues and library infrastructure issues.
</p>
<p>
Do you write a language other than English? Another great way to contribute
to the project is to contribute new localizations (translations) of
CircuitPython, or update current localizations, using
<a href="https://hosted.weblate.org/engage/circuitpython/">Weblate</a>.
</p>
<p>
If this is your first time contributing, or you'd
like to see our recommended contribution workflow, we have a guide on
<a href="https://learn.adafruit.com/contribute-to-circuitpython-with-git-and-github">Contributing to CircuitPython with Git and Github</a>.
You can also find us in the #circuitpython channel on the
<a href="https://adafru.it/discord">Adafruit Discord</a>.
</p>
<p>
Have an idea for a new driver or library?
<a href="https://github.com/adafruit/circuitpython/issues">File an issue on the CircuitPython repo!</a>
</p>
<h2>Current Status for {{ site.data.libraries.updated_at | date: "%a, %b %d, %Y" }}</h2>
{% assign current = page.url | downcase | split: '/' %}
<ul class='tabbed-navigation'>
<li>
<a href="/contributing" {% if current[2] ==
nil %}class='active'{% endif %}>Pull Requests</a>
</li>
<li>
<a href="/contributing/open-issues" {% if current[2] ==
'open-issues' %}class='active'{% endif %}>Open Issues</a>
</li>
<li>
<a href="/contributing/library-infrastructure-issues" {% if
current[2] ==
'library-infrastructure-issues' %}class='active'{% endif %}>Library Infrastructure Issues</a>
</li>
<li>
<a href="/contributing/weblate" {% if current[2] ==
'weblate' %}class='active'{% endif %}>CircuitPython Localization</a>
</li>
</ul>
<div class="clear"></div>
{{ content }}
</div>
<script src="/assets/javascript/contributing.js"></script>