bumped the version to 0.4.1

metadata
Wenzel Jakob 2012-10-10 12:07:14 -04:00
parent b6f762069e
commit ec89683281
4 changed files with 20 additions and 3 deletions

View File

@ -1,3 +1,17 @@
mitsuba (0.4.1-1) unstable; urgency=low
* negative pixel values in textures and environment maps are handled more gracefully.
* minor robustness improvements to the OBJ and COLLADA importers.
* fixed the Ubuntu packages so that they don't depend on a specific version of the libjpeg development headers.
* fixed a stack overflow issue in the bidirectional path tracer, as well as some other crash-causing bugs that were found via the Breakpad reports.
* fixed an issue where sun and sky interpreted the combination of a 'toWorld' transform and explicit 'sunDirection' differently, causing misalignment.
* fixed a photon mapper regression involving environment maps.
* Edgar Velázquez-Armendáriz rewrote a piece of initialization code that prevented Mitsuba from running on Windows XP.
* Sean Bell contributed an improved setpath.sh script, which adds ZSH autocompletion on Linux.
* fixed some issues in the bidirectional abstraction layer when dealing with alpha masks.
* fixed a bug where the rectangle shape produced incorrect results when used as an area light.
* on OSX, the python bindings could not be loaded due to invalid library import paths - this now works.
-- Wenzel Jakob <wenzel@cs.cornell.edu> Wed, 10 Oct 2012 00:00:00 -0400
mitsuba (0.4.0-1) unstable; urgency=low mitsuba (0.4.0-1) unstable; urgency=low
* New bidirectional rendering algorithms: Bidirectional path tracing, * New bidirectional rendering algorithms: Bidirectional path tracing,
Primary sample space MLT, Path space MLT, Energy redistribution path Primary sample space MLT, Path space MLT, Energy redistribution path

View File

@ -1,5 +1,5 @@
Name: mitsuba Name: mitsuba
Version: 0.4.0 Version: 0.4.1
Release: 1%{?dist} Release: 1%{?dist}
Summary: Mitsuba renderer Summary: Mitsuba renderer
Group: Applications/Graphics Group: Applications/Graphics
@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT
/usr/include/* /usr/include/*
%changelog %changelog
* Wed Oct 10 2012 Wenzel Jakob <wenzel@cs.cornell.edu> 0.4.1%{?dist}
- Upgrade to version 0.4.1
* Thu Sep 27 2012 Wenzel Jakob <wenzel@cs.cornell.edu> 0.4.0%{?dist} * Thu Sep 27 2012 Wenzel Jakob <wenzel@cs.cornell.edu> 0.4.0%{?dist}
- Upgrade to version 0.4.0 - Upgrade to version 0.4.0

View File

@ -39,7 +39,7 @@
\setcounter{secnumdepth}{3} \setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3} \setcounter{tocdepth}{3}
\newcommand{\MitsubaVersion}{0.4.0} \newcommand{\MitsubaVersion}{0.4.1}
\newcommand{\MitsubaYear}{2012} \newcommand{\MitsubaYear}{2012}
\typearea[current]{last} \typearea[current]{last}

View File

@ -26,7 +26,7 @@ MTS_NAMESPACE_BEGIN
* \brief Current release of Mitsuba * \brief Current release of Mitsuba
* \ingroup libcore * \ingroup libcore
*/ */
#define MTS_VERSION "0.4.0" #define MTS_VERSION "0.4.1"
/** /**
* \brief Year of the current release * \brief Year of the current release