From c4e0fc7e87207997adab8e3d454ae64b6e5e93eb Mon Sep 17 00:00:00 2001 From: Justin Cooper Date: Wed, 22 May 2019 11:42:38 -0500 Subject: [PATCH] add sections for libraries page --- libraries/index.html | 200 ++++++++++++++++++++++--------------------- 1 file changed, 102 insertions(+), 98 deletions(-) diff --git a/libraries/index.html b/libraries/index.html index 3dfbcadd..2113d051 100644 --- a/libraries/index.html +++ b/libraries/index.html @@ -22,107 +22,111 @@ permalink: /libraries The full list of all the CircuitPython libraries contained in the following bundles can be found on the libraries page. -

Download and Installation Instructions

-

- The libraries in each release are compiled to .mpy for all recent major versions - of CircuitPython. Please download the bundle that matches the major version - of your CircuitPython. For example, if you are running 4.0.0 you should - download the 4.x bundle. The .mpy files are designed to take up less space on - your CIRCUITPY drive. Unless you have a specific reason, choose the appropiate - .mpy library bundle! -

-

- To install, download the appropriate bundle for your version of CircuitPython. - Unzip the file, open the resulting folder and find the lib folder. Open the lib - folder and find the library files you need to load. Create a lib folder on your - CIRCUITPY drive. Copy the individual library files you need to the lib folder - on your CIRCUITPY drive. -

-

- You can always find the - latest releases of the libraries bundle - on GitHub. -

-
-

Bundle Version 4.x

-

- This bundle is built for use with CircuitPython 4.x.x. If you are using - CircuitPython 4, please download this bundle. -

+
+

Download and Installation Instructions

+

+ The libraries in each release are compiled to .mpy for all recent major versions + of CircuitPython. Please download the bundle that matches the major version + of your CircuitPython. For example, if you are running 4.0.0 you should + download the 4.x bundle. The .mpy files are designed to take up less space on + your CIRCUITPY drive. Unless you have a specific reason, choose the appropiate + .mpy library bundle! +

+

+ To install, download the appropriate bundle for your version of CircuitPython. + Unzip the file, open the resulting folder and find the lib folder. Open the lib + folder and find the library files you need to load. Create a lib folder on your + CIRCUITPY drive. Copy the individual library files you need to the lib folder + on your CIRCUITPY drive. +

+

+ You can always find the + latest releases of the libraries bundle + on GitHub. +

+
+

Bundle Version 4.x

+

+ This bundle is built for use with CircuitPython 4.x.x. If you are using + CircuitPython 4, please download this bundle. +

+
+
+

Bundle Version 3.x

+

+ This bundle is built for use with CircuitPython 3.x.x. If you are using + CircuitPython 3, please download this bundle. +

+
+
+

Bundle Version py

+

+ This bundle is the uncompiled source code for every library. It is not + intended for general use! It is only recommended if you need to edit + a library file. This bundle works with all versions of CircuitPython. +

+
+
+

Bundle Examples

+

+ Every CircuitPython library has examples to go along with it. This bundle + contains every library example. This bundle will have examples that + require the latest version of CircuitPython, and therefore contains files + that may not work with all versions. +

+
-
-

Bundle Version 3.x

-

- This bundle is built for use with CircuitPython 3.x.x. If you are using - CircuitPython 3, please download this bundle. -

+
+
+

Contributing

+

+ If you'd like to contribute to the CircuitPython project, the CircuitPython + libraries are a great way to begin. Everyone is welcome to contribute! + Regardless of your experience level, we have many resources to get you + started. Check out the Contributing page for detailed information! +

+

+ Find out more about how you can + contribute to CircuitPython libraries. +

+

Library Activity for Week of {{ site.data.libraries.updated_at | date: "%a, %b %d, %Y" }}

+

+ Thank you to all of our contributors! +

+

+ This week there were {{ site.data.libraries.merged_pr_count }} pull requests merged: +

    +
  • + Authors: + {% for contributor in site.data.libraries.contributors %} + {{contributor}}{% if forloop.last != true %}, {% endif %} + {% endfor %} +
  • +
  • + Reviewers: + {% for reviewer in site.data.libraries.reviewers %} + {{reviewer}}{% if forloop.last != true %}, {% endif %} + {% endfor %} +
  • +
+

+
+

New Libraries

+
    + {% for library in site.data.libraries.library_updates.new %} +
  • {{library[0]}}
  • + {% endfor %} +
-
-

Bundle Version py

-

- This bundle is the uncompiled source code for every library. It is not - intended for general use! It is only recommended if you need to edit - a library file. This bundle works with all versions of CircuitPython. -

+
+

Updated Libraries

+
    + {% for library in site.data.libraries.library_updates.updated %} +
  • {{library[0]}}
  • + {% endfor %} +
-
-

Bundle Examples

-

- Every CircuitPython library has examples to go along with it. This bundle - contains every library example. This bundle will have examples that - require the latest version of CircuitPython, and therefore contains files - that may not work with all versions. -

-
-
-

Contributing

-

- If you'd like to contribute to the CircuitPython project, the CircuitPython - libraries are a great way to begin. Everyone is welcome to contribute! - Regardless of your experience level, we have many resources to get you - started. Check out the Contributing page for detailed information! -

-

- Find out more about how you can - contribute to CircuitPython libraries. -

-

Library Activity for Week of {{ site.data.libraries.updated_at | date: "%a, %b %d, %Y" }}

-

- Thank you to all of our contributors! -

-

- This week there were {{ site.data.libraries.merged_pr_count }} pull requests merged: -

    -
  • - Authors: - {% for contributor in site.data.libraries.contributors %} - {{contributor}}{% if forloop.last != true %}, {% endif %} - {% endfor %} -
  • -
  • - Reviewers: - {% for reviewer in site.data.libraries.reviewers %} - {{reviewer}}{% if forloop.last != true %}, {% endif %} - {% endfor %} -
  • -
-

-
-

New Libraries

-
    - {% for library in site.data.libraries.library_updates.new %} -
  • {{library[0]}}
  • - {% endfor %} -
-
-
-

Updated Libraries

-
    - {% for library in site.data.libraries.library_updates.updated %} -
  • {{library[0]}}
  • - {% endfor %} -
-
+