Skip to content

Commit

Permalink
reflect release of 1.4.1, minor png++ fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse-V committed Oct 21, 2013
1 parent 82b5812 commit 2faa4b7
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 4 deletions.
20 changes: 20 additions & 0 deletions debian/changelog
@@ -1,3 +1,23 @@
folding-atomata (1.4.1.0) quantal; urgency=medium

* Significant efficiency improvements to rendering engine.
* Light on resources when idle.
* Increased compatibility with FAHViewer.
* Bug fixes and ticket closures:
- Added skybox, textured with soft square-point gradient. (#3)
- Display proteins from all readable slots. (#9)
- Low FPS mode. Render only when necessary. (#27 and #49)
- Ability to choose background images for skybox. (#41)
- Significant reduction in CPU usage. (#44)
- Flag to enable FAHViewer-like bouncing animation. (#51)
- Fixed visual echo bug for some models introduced from #27 and #49. (#52)
- Fixed discoloration of .png images introduced with #3. (#53)
- Fixed camera movement occasionally lagging. (#54)
- Fixed missing or orphaned atoms. (#55)
- Drew light green wire-mesh bounding box around each protein. (#56)

-- Jesse Victors <jvictors@jessevictors.com> Mon, 21 Oct 2013 11:46:00 -0600

folding-atomata (0.6.8.0) quantal; urgency=medium

* Slight reduction in camera control acceleration.
Expand Down
2 changes: 1 addition & 1 deletion debian/extra_includes/manpage
@@ -1,6 +1,6 @@
.\" Manpage for Folding Atomata
.\" Visit github.com/Jesse-V/Folding-Atomata to report bugs, errors, or typos.
.TH man 8 "17 October 2013" "0.6.8.0" "FoldingAtomata man page"
.TH man 8 "21 October 2013" "1.4.1.0" "FoldingAtomata man page"

.SH NAME
FoldingAtomata \- third-party 3D simulation viewer for Folding@home
Expand Down
4 changes: 2 additions & 2 deletions src/Options.cpp
Expand Up @@ -41,7 +41,7 @@ Options& Options::getInstance()


Options::Options() :
highVerbosity_(true), cycleSnapshots_(true), skyboxDisabled_(false),
highVerbosity_(false), cycleSnapshots_(false), skyboxDisabled_(false),
connectionPath_("127.0.0.1:36330"),
imageApath_("/usr/share/FoldingAtomata/images/gradient.png"),
imageBpath_("/usr/share/FoldingAtomata/images/gradient.png"),
Expand Down Expand Up @@ -93,7 +93,7 @@ bool Options::handleFlags(int argc, char** argv)

if (options[index] == "--version")
{
std::cout << "0.6.8.0" << std::endl;
std::cout << "1.4.1.0" << std::endl;
return false;
}

Expand Down
2 changes: 2 additions & 0 deletions src/libs/png++/error.hpp
Expand Up @@ -34,6 +34,8 @@
#include <stdexcept>
#include <cerrno>
#include <cstdlib>
#include <stdlib.h>
#include <string.h>

namespace png
{
Expand Down
2 changes: 1 addition & 1 deletion src/pushPackage.sh
Expand Up @@ -2,7 +2,7 @@

./clean.sh

name="folding-atomata_0.6.8.0" #major.minor.patch.build
name="folding-atomata_1.4.1.0" #major.minor.patch.build

cd ..
tar -czf ${name}.orig.tar.gz src/ #http://xkcd.com/1168/
Expand Down

0 comments on commit 2faa4b7

Please sign in to comment.