Skip to content

Commit

Permalink
possible apfs compatibility issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aaaaa committed Feb 22, 2020
1 parent 5983bcc commit 95c60d5
Show file tree
Hide file tree
Showing 7 changed files with 405 additions and 86 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# G-Code Generator
## Overview
This is a G-Code generation program, created during my summer internship with SE3D. The program receives user input and interpolates the data into G-Code compatible with SE3D's r3bEL X and r3bEL mini bioprinters. Use with other 3D printers is possible, but extrusion should only take place on appropriately sized petri dishes (at least 100mm), or the [Greiner 650161 96-Well Microplate](https://shop.gbo.com/en/row/products/bioscience/microplates/96-well-microplates/96-well-microplates-clear/650161.html).
This is a CNC control program, created during my summer internship with SE3D. The program receives user input and interpolates the data into G-Code compatible with SE3D's r3bEL X and r3bEL mini bioprinters. Use with other 3D printers is possible, but extrusion should only take place on appropriately sized petri dishes (at least 100mm), or the [Greiner 650161 96-Well Microplate](https://shop.gbo.com/en/row/products/bioscience/microplates/96-well-microplates/96-well-microplates-clear/650161.html).

### Supported Materials
* Calcium Chloride Solution
Expand Down
2 changes: 1 addition & 1 deletion constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static const int Y_BORDER = 40;
static const int DISH_DIAMETER = 100;

//GUI Constants
static const QString VERSION = "1.2.0";
static const QString VERSION = "1.2.1";

static const QString PORTAL_LINK = "http://portal.se3d.com";
static const QString VISIT_LINK = "https://www.se3d.com/";
Expand Down
148 changes: 65 additions & 83 deletions gcg-gui.pro.user

Large diffs are not rendered by default.

336 changes: 336 additions & 0 deletions gcg-gui.pro.user.baac062.4.8-pre1

Large diffs are not rendered by default.

Binary file modified resources/.DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion wizard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void Wizard::buildSideBar(QHBoxLayout *mainLayout)
title->setStyleSheet("color: #ffffff;"
"font: 20px;");

//version instantiation + properties. it looks more official :)
//version instantiation + properties
QLabel *version = new QLabel;
version->setText("Version " + VERSION);
version->setAlignment(Qt::AlignCenter);
Expand Down Expand Up @@ -133,6 +133,7 @@ void Wizard::buildSideBar(QHBoxLayout *mainLayout)
sidebar->setMinimumWidth(SIDEBAR_WIDTH);
sidebar->setMaximumWidth(SIDEBAR_WIDTH);


sidebar->setLayout(sidebarLayout);
mainLayout->addWidget(sidebar);
}
Expand Down

0 comments on commit 95c60d5

Please sign in to comment.