Commit 276d3be1 authored by Guillaume Seguin's avatar Guillaume Seguin

Update, add NEWS.md and favicon, update logo

parent 030f666b
printrun-20140406
=================
New features
------------
- New 3D visualization
- New GCode plater
- Updated "standard" controls
- New "mini" controls mode
- New print speed control slider in Pronterface
- New plater features:
* STL cutter
* STL rebase
- G-Code injection at beginning of layer and edition of entire G-Code
- The G-Code modified using the injector or layer editor can be saved
- Controls and log pane can be folded to leave more space for visualization
- Added a lighter GCode parser for non-graphical interfaces
- Window size and configuration is now saved across runs
- Power management: Printrun now runs on high priority during prints and should
inhibit sleep modes
- New host commands, `run_script` and `run_gcode_script` to run custom scripts
during prints. The output of the script ran by `run_gcode_script` will in
turn be processed as G-Code or host commands
- 3D viewer colors are now configurable
Bugs fixed
----------
- Many fixes around custom buttons
This diff is collapsed.
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content=""> <meta name="description" content="">
<meta name="author" content=""> <meta name="author" content="">
<link rel="shortcut icon" href=""> <link rel="shortcut icon" href="images/favicon.png">
<title>Printrun: Pure Python 3d printing host software</title> <title>Printrun: Pure Python 3d printing host software</title>
...@@ -40,10 +40,10 @@ ...@@ -40,10 +40,10 @@
</div> </div>
<div class="navbar-collapse collapse"> <div class="navbar-collapse collapse">
<ul class="nav navbar-nav"> <ul class="nav navbar-nav">
<li><a href="#features">Features</a></li> <li><a href="index.html#features">Features</a></li>
<li><a href="#download">Download</a></li> <li><a href="index.html#download">Download</a></li>
<li><a href="#docs">Docs</a></li> <li><a href="index.html#docs">Docs</a></li>
<li><a href="#about">About</a></li> <li><a href="index.html#about">About</a></li>
</ul> </ul>
</div> </div>
</div> </div>
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
<script src="js/bootstrap.min.js"></script> <script src="js/bootstrap.min.js"></script>
<script type="text/javascript"> <script type="text/javascript">
$(function() { $(function() {
$('a[href*=#]:not([href=#]):not([href=#carousel])').click(function() { $('a[href*="index.html#"]:not([href="index.html#"])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash); var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
......
...@@ -39,7 +39,7 @@ h2 { ...@@ -39,7 +39,7 @@ h2 {
.navbar { .navbar {
background-color: transparent; background-color: transparent;
border: 0; border: 0;
margin-bottom: 10px; margin-bottom: 5px;
} }
.navbar-brand { .navbar-brand {
......
...@@ -10,3 +10,10 @@ layout: default ...@@ -10,3 +10,10 @@ layout: default
If all else fails, please <a href="https://github.com/kliment/Printrun/issues">open an issue on GitHub</a>.</p> If all else fails, please <a href="https://github.com/kliment/Printrun/issues">open an issue on GitHub</a>.</p>
</div> </div>
</div> </div>
<div class="main">
<div id="docs" class="separator bg-pink"></div>
<div class="container content">
{% capture md %}{% include docs.md %}{% endcapture %}
{{ md | markdownify }}
</div>
</div>
images/printrun.png

11.5 KB | W: | H:

images/printrun.png

2.75 KB | W: | H:

images/printrun.png
images/printrun.png
images/printrun.png
images/printrun.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -177,6 +177,9 @@ layout: default ...@@ -177,6 +177,9 @@ layout: default
<p>Printrun can be used on many platforms, and is regularly tested on several Linux distributions, on Windows and on OSX.<br /> <p>Printrun can be used on many platforms, and is regularly tested on several Linux distributions, on Windows and on OSX.<br />
Compilation and installation instructions for Linux are available in <a href="https://github.com/kliment/Printrun/blob/master/README.md">README.md</a>. Compilation and installation instructions for Linux are available in <a href="https://github.com/kliment/Printrun/blob/master/README.md">README.md</a>.
</p> </p>
<h3>Latest release:</h3>
{% capture md %}{% include NEWS.md %}{% endcapture %}
{{ md | markdownify }}
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment