Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico-Duduf committed Sep 9, 2021
2 parents 85bf0a1 + 786ffc3 commit fdf4979
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dublast-docs.rainboxlab.org
dublast.rxlab.guide
6 changes: 6 additions & 0 deletions docs/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@

<ul>

<li><a class="toctree-l3" href="#203">2.0.3</a></li>

<li><a class="toctree-l3" href="#202">2.0.2</a></li>

<li><a class="toctree-l3" href="#200">2.0.0</a></li>
Expand Down Expand Up @@ -142,6 +144,10 @@

<h1 id="changelog">Changelog</h1>
<p>This is the list of what has changed since the first public version of <em>DuBlast</em>.</p>
<h2 id="203">2.0.3</h2>
<ul>
<li>Render color depth is now correctly restored after a playblast.</li>
</ul>
<h2 id="202">2.0.2</h2>
<ul>
<li>Fixed compatibility issues with Blender 2.82</li>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -252,5 +252,5 @@ <h3 id="documentation">Documentation</h3>

<!--
MkDocs version : 1.0.4
Build Date UTC : 2020-12-08 16:30:18
Build Date UTC : 2021-05-13 14:20:05
-->
2 changes: 1 addition & 1 deletion docs/search/search_index.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://rainboxlab.org/index.html</loc>
<lastmod>2020-12-08</lastmod>
<lastmod>2021-05-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>http://rainboxlab.org/settings.html</loc>
<lastmod>2020-12-08</lastmod>
<lastmod>2021-05-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>http://rainboxlab.org/changelog.html</loc>
<lastmod>2020-12-08</lastmod>
<lastmod>2021-05-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>http://rainboxlab.org/gnu-gpl.html</loc>
<lastmod>2020-12-08</lastmod>
<lastmod>2021-05-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>http://rainboxlab.org/doc-license.html</loc>
<lastmod>2020-12-08</lastmod>
<lastmod>2021-05-13</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
Expand Down
Binary file modified docs/sitemap.xml.gz
Binary file not shown.
6 changes: 6 additions & 0 deletions dublast/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
"name" : "DuBlast",
"author" : "Nicolas 'Duduf' Dufresne",
"blender" : (2, 81, 0),
<<<<<<< HEAD
"version" : (2,0,4),
=======
"version" : (2,0,3),
>>>>>>> master
"location" : "Properties > Output Properties > Playblast, 3D View > View menu,",
"description" : "Create playblasts: Quickly render and play viewport animation.",
"warning" : "",
Expand Down Expand Up @@ -258,6 +262,7 @@ def execute(self, context):
compression = render.image_settings.compression
use_stamp = render.use_stamp
stamp_font_size = render.stamp_font_size
color_depth = render.image_settings.color_depth

use_stamp_date = render.use_stamp_date
use_stamp_render_time = render.use_stamp_render_time
Expand Down Expand Up @@ -383,6 +388,7 @@ def execute(self, context):
render.image_settings.color_mode = color_mode
render.image_settings.quality = quality
render.image_settings.compression = compression
render.image_settings.color_depth = color_depth
render.use_stamp = use_stamp
render.stamp_font_size = stamp_font_size
render.ffmpeg.format = scformat
Expand Down
4 changes: 4 additions & 0 deletions src-docs/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This is the list of what has changed since the first public version of *DuBlast*.

## 2.0.3

- Render color depth is now correctly restored after a playblast.

## 2.0.2

- Fixed compatibility issues with Blender 2.82
Expand Down

0 comments on commit fdf4979

Please sign in to comment.