From e3037f0f06f12e546882acd3b1197ec0aed34cdb Mon Sep 17 00:00:00 2001 From: Person Date: Sun, 15 Mar 2020 15:20:11 -0700 Subject: [PATCH 1/3] 1.0.0.19 Re-release --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index c83fc08..a1d09d1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +fractorium (1.0.0.19a-0ubuntu1) bionic; urgency=low + + * release 1.0.0.19 + + -- Matt Feemster Sun, 15 Mar 2020 15:18:06 -0700 + fractorium (1.0.0.19-0ubuntu1) bionic; urgency=low * release 1.0.0.19 From 572617ff5be89daa8afa3b5fa93ee548c05629b1 Mon Sep 17 00:00:00 2001 From: Matt Feemster Date: Mon, 16 Mar 2020 01:05:48 +0000 Subject: [PATCH 2/3] README.md edited online with Bitbucket --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 000c135..29d0de4 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,11 @@ of the cuburn algorithm in OpenCL. ## Windows -Download: [Fractorium_1.0.0.18.msi](https://drive.google.com/open?id=1b-Mt8M2-MABhIx7KgjdTmtHtgrjUSgGh) +Download: [Fractorium_1.0.0.19.msi](https://drive.google.com/open?id=1GerFr8VRLFtfvV57acJawZg0bJVfhac-) ## Mac -Download: [Fractorium_1.0.0.18.dmg](https://drive.google.com/open?id=1ukLsCfE3_MtZcZxdyC9ZXwFxXQ2NNcwe) +Download: [Fractorium_1.0.0.19.dmg](https://drive.google.com/open?id=1YH49dE858cUrPXl92jfclB00LDPQfBtY) ## Linux @@ -37,16 +37,16 @@ sudo apt-get install fractorium Install ubuntu. -Download: [Fractorium-1.0.0.18.x86_64.deb](https://drive.google.com/open?id=1vQMHRMZpkQXgVjuKRDHVlQb7WZm9VAue) +Download: [Fractorium-1.0.0.19.x86_64.deb](https://drive.google.com/open?id=1sYoLK27-w7RERxmh10GK4eTcwI2wuagO) ``` cd ~/Downloads -sudo dpkg -i Fractorium-1.0.0.18.x86_64.deb +sudo dpkg -i Fractorium-1.0.0.19.x86_64.deb ``` ### Install from App Image .rpm -Download: [Fractorium-1.0.0.18.x86_64.rpm](https://drive.google.com/open?id=1p4hT6E9byE8YLda-VGV7UUWQ9iXU_5sp) +Download: [Fractorium-1.0.0.19.x86_64.rpm](https://drive.google.com/open?id=17zHmJghSM_hCjSNRXyf5PL6oWoy--Sq4) # Building from git From 0323d035bf9c743e717a846298dca0ab1904b964 Mon Sep 17 00:00:00 2001 From: Person Date: Sun, 15 Mar 2020 23:51:25 -0700 Subject: [PATCH 3/3] 1.0.0.19 Re-release --Bug fixes -New Blur Curve math was not applied on the CPU. --- Source/Ember/Ember.h | 12 ++++++------ debian/changelog | 6 ++++++ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Source/Ember/Ember.h b/Source/Ember/Ember.h index 8af5f08..818eb29 100644 --- a/Source/Ember/Ember.h +++ b/Source/Ember/Ember.h @@ -1237,10 +1237,10 @@ public: z = m_CamMat[1][2] * point.m_Y + m_CamMat[2][2] * z; zr = Zeps(1 - m_CamPerspective * z); sincos(t, &dsin, &dcos); - T prcx = (point.m_X - ctr.CarCenterX()) / ctr.CarHalfX(); - T prcy = (y - ctr.CarCenterY()) / ctr.CarHalfY(); + T prcx = point.m_X / ctr.CarHalfX(); + T prcy = y / ctr.CarHalfY(); T dist = VarFuncs::Hypot(prcx, prcy) * 10; - T scale = m_BlurCurve ? std::min(T(1), Sqr(dist) / (4 * m_BlurCurve)) : T(1); + T scale = m_BlurCurve ? (Sqr(dist) / (4 * m_BlurCurve)) : T(1); T dr = rand.Frand01() * (m_BlurCoef * scale) * z; point.m_X = (point.m_X + dr * dcos) / zr; point.m_Y = (y + dr * dsin) / zr; @@ -1261,10 +1261,10 @@ public: T y = m_CamMat[0][1] * point.m_X + m_CamMat[1][1] * point.m_Y + m_CamMat[2][1] * z; z = m_CamMat[0][2] * point.m_X + m_CamMat[1][2] * point.m_Y + m_CamMat[2][2] * z; T zr = Zeps(1 - m_CamPerspective * z); - T prcx = (x - ctr.CarCenterX()) / ctr.CarHalfX(); - T prcy = (y - ctr.CarCenterY()) / ctr.CarHalfY(); + T prcx = x / ctr.CarHalfX(); + T prcy = y / ctr.CarHalfY(); T dist = VarFuncs::Hypot(prcx, prcy) * 10; - T scale = m_BlurCurve ? std::min(T(1), Sqr(dist) / (4 * m_BlurCurve)) : T(1); + T scale = m_BlurCurve ? (Sqr(dist) / (4 * m_BlurCurve)) : T(1); T dr = rand.Frand01() * (m_BlurCoef * scale) * z; sincos(t, &dsin, &dcos); point.m_X = (x + dr * dcos) / zr; diff --git a/debian/changelog b/debian/changelog index a1d09d1..fbb13d1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +fractorium (1.0.0.19b-0ubuntu1) bionic; urgency=low + + * release 1.0.0.19 + + -- Matt Feemster Sun, 15 Mar 2020 23:42:24 -0700 + fractorium (1.0.0.19a-0ubuntu1) bionic; urgency=low * release 1.0.0.19