version bump to 0.5.0
parent
131c330526
commit
1ca04133d9
|
@ -1,3 +1,24 @@
|
||||||
|
mitsuba (0.4.5-1) unstable; urgency=low
|
||||||
|
* Mitsuba can now perform renderings of images with multiple channels
|
||||||
|
(e.g. a path traced rendering plus surface normals and depth). All
|
||||||
|
channels are rendered in one pass and written to a multi-channel EXR file.
|
||||||
|
* Anton Kaplanyan contributed mtsgui GUI usability tweaks and several
|
||||||
|
MLT-related robustness improvements
|
||||||
|
* Greatly improved Python integration, nice interaction with PyQt and NumPy,
|
||||||
|
Python 3.3. support on all platforms
|
||||||
|
* The 'mfilm' plugin now supports writing binary NumPy files (Joe Kider)
|
||||||
|
* Switch tabs in the gui using Alt+Left/Right keys
|
||||||
|
* Ask whether to stop long-running rendering processes when dragging the
|
||||||
|
mouse in the GUI
|
||||||
|
* Windows 8 compatibility
|
||||||
|
* CMake build system working again (Edgar Velázquez-Armendáriz)
|
||||||
|
* Statistics are now automatically reset between renderings
|
||||||
|
* mtssrv robustness improvements on OSX
|
||||||
|
* The 'thindielectric' plugin still computed incorrect results in some
|
||||||
|
situations, which is now fixed
|
||||||
|
* Added a new 'default' XML tag
|
||||||
|
-- Wenzel Jakob <wenzel@cs.cornell.edu> Tue, 25 Feb 2014 00:00:00 -0400
|
||||||
|
|
||||||
mitsuba (0.4.5-1) unstable; urgency=low
|
mitsuba (0.4.5-1) unstable; urgency=low
|
||||||
* New height field intersection shape
|
* New height field intersection shape
|
||||||
* kd-tree precision improvements when rendering in double precision
|
* kd-tree precision improvements when rendering in double precision
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Name: mitsuba
|
Name: mitsuba
|
||||||
Version: 0.4.5
|
Version: 0.5.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Mitsuba renderer
|
Summary: Mitsuba renderer
|
||||||
Group: Applications/Graphics
|
Group: Applications/Graphics
|
||||||
|
@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||||
/usr/include/*
|
/usr/include/*
|
||||||
%changelog
|
%changelog
|
||||||
|
|
||||||
|
* Tue Feb 25 2014 Wenzel Jakob <wenzel@cs.cornell.edu> 0.5.0%{?dist}
|
||||||
|
- Upgrade to version 0.5.0
|
||||||
|
|
||||||
* Sun Nov 10 2013 Wenzel Jakob <wenzel@cs.cornell.edu> 0.4.5%{?dist}
|
* Sun Nov 10 2013 Wenzel Jakob <wenzel@cs.cornell.edu> 0.4.5%{?dist}
|
||||||
- Upgrade to version 0.4.5
|
- Upgrade to version 0.4.5
|
||||||
|
|
||||||
|
|
|
@ -40,8 +40,8 @@
|
||||||
\setcounter{secnumdepth}{3}
|
\setcounter{secnumdepth}{3}
|
||||||
\setcounter{tocdepth}{3}
|
\setcounter{tocdepth}{3}
|
||||||
|
|
||||||
\newcommand{\MitsubaVersion}{0.4.5}
|
\newcommand{\MitsubaVersion}{0.5.0}
|
||||||
\newcommand{\MitsubaYear}{2013}
|
\newcommand{\MitsubaYear}{2014}
|
||||||
|
|
||||||
\typearea[current]{last}
|
\typearea[current]{last}
|
||||||
\raggedbottom
|
\raggedbottom
|
||||||
|
|
|
@ -26,13 +26,13 @@ MTS_NAMESPACE_BEGIN
|
||||||
* \brief Current release of Mitsuba
|
* \brief Current release of Mitsuba
|
||||||
* \ingroup libcore
|
* \ingroup libcore
|
||||||
*/
|
*/
|
||||||
#define MTS_VERSION "0.4.5"
|
#define MTS_VERSION "0.5.0"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Year of the current release
|
* \brief Year of the current release
|
||||||
* \ingroup libcore
|
* \ingroup libcore
|
||||||
*/
|
*/
|
||||||
#define MTS_YEAR "2013"
|
#define MTS_YEAR "2014"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief A simple data structure for representing and
|
* \brief A simple data structure for representing and
|
||||||
|
|
Loading…
Reference in New Issue