Skip to content

Commit

Permalink
sphinx build from Action 222fe5c
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Dec 7, 2023
1 parent 571b51c commit 36cb4a3
Show file tree
Hide file tree
Showing 17 changed files with 519 additions and 205 deletions.
5 changes: 5 additions & 0 deletions python_sdk/_sources/changelog.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,15 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0

Unreleased
----------
* Fix livestream demo.

0.15.0 (December-6-2021)
------------------------
* Add alpha support for COHN (Camera-on-the-Home-Network)
* A real implementation is going to require a major rearchitecture to dynamically add connection types.
* Remove TKinter GUI. Will be replaced with Textual TUI in the future
* Improve wifi SSID matching
* Fix unhashable pydantic base models

0.14.1 (September-21-2022)
--------------------------
Expand Down
7 changes: 7 additions & 0 deletions python_sdk/_sources/installation.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ To additionally install the extra dependencies to run the GUI demos:
$ pip install open-gopro[gui]
External Dependencies
^^^^^^^^^^^^^^^^^^^^^

In order to use any of the Webcam API's, ensure first that your system is setup to
`Use the GoPro as a Webcam <https://community.gopro.com/s/article/GoPro-Webcam?language=de>`_


From sources
------------

Expand Down
668 changes: 476 additions & 192 deletions python_sdk/api.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion python_sdk/authors.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Open GoPro Python SDK
</a>
<div class="version">
0.14.1
0.15.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down
10 changes: 9 additions & 1 deletion python_sdk/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Open GoPro Python SDK
</a>
<div class="version">
0.14.1
0.15.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand All @@ -59,6 +59,7 @@
<li class="toctree-l1"><a class="reference internal" href="authors.html">Credits</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">Changelog</a><ul>
<li class="toctree-l2"><a class="reference internal" href="#unreleased">Unreleased</a></li>
<li class="toctree-l2"><a class="reference internal" href="#december-6-2021">0.15.0 (December-6-2021)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#september-21-2022">0.14.1 (September-21-2022)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#september-13-2022">0.14.0 (September-13-2022)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#february-24-2023">0.13.0 (February-24-2023)</a></li>
Expand Down Expand Up @@ -138,6 +139,12 @@ <h1>Changelog<a class="headerlink" href="#changelog" title="Permalink to this he
<section id="unreleased">
<h2>Unreleased<a class="headerlink" href="#unreleased" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><p>Fix livestream demo.</p></li>
</ul>
</section>
<section id="december-6-2021">
<h2>0.15.0 (December-6-2021)<a class="headerlink" href="#december-6-2021" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><dl class="simple">
<dt>Add alpha support for COHN (Camera-on-the-Home-Network)</dt><dd><ul>
<li><p>A real implementation is going to require a major rearchitecture to dynamically add connection types.</p></li>
Expand All @@ -147,6 +154,7 @@ <h2>Unreleased<a class="headerlink" href="#unreleased" title="Permalink to this
</li>
<li><p>Remove TKinter GUI. Will be replaced with Textual TUI in the future</p></li>
<li><p>Improve wifi SSID matching</p></li>
<li><p>Fix unhashable pydantic base models</p></li>
</ul>
</section>
<section id="september-21-2022">
Expand Down
2 changes: 1 addition & 1 deletion python_sdk/contributing.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Open GoPro Python SDK
</a>
<div class="version">
0.14.1
0.15.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down
2 changes: 1 addition & 1 deletion python_sdk/future_work.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
Open GoPro Python SDK
</a>
<div class="version">
0.14.1
0.15.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down
4 changes: 3 additions & 1 deletion python_sdk/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
Open GoPro Python SDK
</a>
<div class="version">
0.14.1
0.15.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down Expand Up @@ -1325,6 +1325,8 @@ <h2 id="M">M</h2>
<li><a href="api.html#open_gopro.models.general.CameraInfo.model_name">model_name (CameraInfo attribute)</a>
</li>
<li><a href="api.html#open_gopro.models.general.CameraInfo.model_number">model_number (CameraInfo attribute)</a>
</li>
<li><a href="api.html#open_gopro.models.media_list.MediaList.model_post_init">model_post_init() (MediaList method)</a>
</li>
<li><a href="api.html#open_gopro.models.media_list.MediaItem.modified_time">modified_time (MediaItem attribute)</a>
</li>
Expand Down
4 changes: 3 additions & 1 deletion python_sdk/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
Open GoPro Python SDK
</a>
<div class="version">
0.14.1
0.15.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down Expand Up @@ -165,6 +165,7 @@ <h2>Development<a class="headerlink" href="#development" title="Permalink to thi
<li class="toctree-l2"><a class="reference internal" href="installation.html#stable-release">Stable release</a><ul>
<li class="toctree-l3"><a class="reference internal" href="installation.html#minimal-install">Minimal Install</a></li>
<li class="toctree-l3"><a class="reference internal" href="installation.html#additional-gui-install">Additional GUI Install</a></li>
<li class="toctree-l3"><a class="reference internal" href="installation.html#external-dependencies">External Dependencies</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="installation.html#from-sources">From sources</a><ul>
Expand Down Expand Up @@ -986,6 +987,7 @@ <h2>Development<a class="headerlink" href="#development" title="Permalink to thi
</li>
<li class="toctree-l1"><a class="reference internal" href="changelog.html">Changelog</a><ul>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#unreleased">Unreleased</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#december-6-2021">0.15.0 (December-6-2021)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#september-21-2022">0.14.1 (September-21-2022)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#september-13-2022">0.14.0 (September-13-2022)</a></li>
<li class="toctree-l2"><a class="reference internal" href="changelog.html#february-24-2023">0.13.0 (February-24-2023)</a></li>
Expand Down
8 changes: 7 additions & 1 deletion python_sdk/installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Open GoPro Python SDK
</a>
<div class="version">
0.14.1
0.15.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand All @@ -54,6 +54,7 @@
<li class="toctree-l2"><a class="reference internal" href="#stable-release">Stable release</a><ul>
<li class="toctree-l3"><a class="reference internal" href="#minimal-install">Minimal Install</a></li>
<li class="toctree-l3"><a class="reference internal" href="#additional-gui-install">Additional GUI Install</a></li>
<li class="toctree-l3"><a class="reference internal" href="#external-dependencies">External Dependencies</a></li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="#from-sources">From sources</a><ul>
Expand Down Expand Up @@ -119,6 +120,11 @@ <h3>Additional GUI Install<a class="headerlink" href="#additional-gui-install" t
</pre></div>
</div>
</section>
<section id="external-dependencies">
<h3>External Dependencies<a class="headerlink" href="#external-dependencies" title="Permalink to this heading"></a></h3>
<p>In order to use any of the Webcam API’s, ensure first that your system is setup to
<a class="reference external" href="https://community.gopro.com/s/article/GoPro-Webcam?language=de">Use the GoPro as a Webcam</a></p>
</section>
</section>
<section id="from-sources">
<h2>From sources<a class="headerlink" href="#from-sources" title="Permalink to this heading"></a></h2>
Expand Down
Binary file modified python_sdk/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion python_sdk/py-modindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Open GoPro Python SDK
</a>
<div class="version">
0.14.1
0.15.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down
2 changes: 1 addition & 1 deletion python_sdk/quickstart.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Open GoPro Python SDK
</a>
<div class="version">
0.14.1
0.15.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down
2 changes: 1 addition & 1 deletion python_sdk/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Open GoPro Python SDK
</a>
<div class="version">
0.14.1
0.15.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="#" method="get">
Expand Down
2 changes: 1 addition & 1 deletion python_sdk/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion python_sdk/troubleshooting.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Open GoPro Python SDK
</a>
<div class="version">
0.14.1
0.15.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down
2 changes: 1 addition & 1 deletion python_sdk/usage.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Open GoPro Python SDK
</a>
<div class="version">
0.14.1
0.15.0
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
Expand Down

0 comments on commit 36cb4a3

Please sign in to comment.