From 5e83f3a3b1ed153450b6ffaaa632b09624ceefe3 Mon Sep 17 00:00:00 2001 From: sommersoft Date: Sat, 10 Mar 2018 11:27:19 -0600 Subject: [PATCH 1/2] updated README; added Travis badge, fixed RTD badge --- README.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index fbc080d..c96ad49 100644 --- a/README.rst +++ b/README.rst @@ -2,14 +2,18 @@ Introduction ============ -.. image:: https://readthedocs.org/projects/adafruit-circuitpython-sdcard/badge/?version=latest - :target: https://circuitpython.readthedocs.io/projects/sdcard/en/latest/ +.. image:: https://readthedocs.org/projects/adafruit-circuitpython-sd/badge/?version=latest + :target: https://circuitpython.readthedocs.io/projects/sd/en/latest/ :alt: Documentation Status .. image :: https://img.shields.io/discord/327254708534116352.svg :target: https://adafru.it/discord :alt: Discord +.. image:: https://travis-ci.org/adafruit/Adafruit_CircuitPython_SD.svg?branch=master + :target: https://travis-ci.org/adafruit/Adafruit_CircuitPython_SD + :alt: Build Status + CircuitPython driver for SD cards. This implements the basic reading and writing block functionality needed to mount an SD card using `storage.VfsFat`. From 0c91832315c1629cd45ca45859128e8c4613cedf Mon Sep 17 00:00:00 2001 From: sommersoft Date: Sat, 10 Mar 2018 11:27:41 -0600 Subject: [PATCH 2/2] updated conf.py; bus device intersphinx link --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 1d991d1..e1e6630 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ autodoc_mock_imports = ["adafruit_bus_device", "micropython"] intersphinx_mapping = {'python': ('https://docs.python.org/3.4', None), - 'BusDevice': ('https://circuitpython.readthedocs.io/projects/bus_device/en/latest/', None), + 'BusDevice': ('https://circuitpython.readthedocs.io/projects/busdevice/en/latest/', None), 'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None)} # Add any paths that contain templates here, relative to this directory.