forked from fritzing/fritzing-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Silence empty polyline assertion Replace arg(QString).arg(QString) with arg(QString, QString) Fix more warnings Upload to fab, happy flow passes Fix build warning on windows Refactor renderthing into own file Fix quirk with disabled rotate and align submenus addToBin now also re-enabled Always center mouse when draging from the parts bin. Fixes some quirks with rapid mouse movement or when leaving and re-entering the window. Fixed fritzing#3807 without breaking fritzing#3647 by fixing svg lexer float exponent separation bug. Added simplified unit test case for pathlexer clean of float exponents aka fritzing#3807. Fix some Qt5.12 deprecations Fix unused variable weightmap was not used refer fritzing.org with TLS in generator Implement missing fzp drag and drop support Fix error message Bump up version to 0.9.7b Fix issue: Mystery part terminal points disapeared Fixed routing menu problem: alt-r now only has to be pressed once. Fix issue fritzing#3839 . If file can not be loaded, allow empty (null) itemBase Fix issue fritzing#3838. Do not add part if part is null Fix fritzing#3833, use darker background for dropdowns in code editor Fix about box text color for dark themes Moved setTitle so it is also executed for the welcome view. Fixed warning about unused variable in autoroute panelizer. Fixed warning about unused variable in items partfactory. Fixed warning about unused variable in items ruler. Fixed warning about unused variable in kicad module. Fixed warning about unused typedef in graph utils. Changed clickable labels into push buttons to allow operation by keyboard. Fix some english errors NULL -> nullptr Fix QtSplitBehavior deprecation warning Fix QFlags warnings Fix qt deprecation warnings Replace hard to understand access to first item, use empty instead of count == 0 Flatten condition tree, avoid NULL Preferences color labels now have both correct color and text after change. Made preferences dialog fit on a laptop screen with 768 vertical resolution. Translated using Weblate (German) Currently translated at 99.4% (1793 of 1803 strings) lupdate phoenix.pro Gerber: Inherit stroke-width from parent objects Fix parsing release date, ok button opens update in browser. Do not search for part updates. Seraching for part updates is a frequent source of error, and introduces a dependency to github. Fritzing might hang during start if github does not answer. Also their service is quite reliable, we can not assume it for granted (and free). With a higher release frequency of Fritzing, there also is less need for part updates. Note: We still use git, and users who wish can directly work on the git repo for parts, for example call 'git pull' to update the parts manually. Fixed bug that caused schematic logos to disappear in svg image exports. Fix include for MSVC2019 Remove Snootlab from order, add Spresense
- Loading branch information
1 parent
3498684
commit 0e398a6
Showing
111 changed files
with
33,875 additions
and
29,170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,6 @@ win32 { | |
} | ||
|
||
LIBS += -L$$LIBGIT2LIB -lgit2 | ||
message($$PKGCONFIG) | ||
} | ||
|
||
unix { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#include "fabuploaddialog.h" | ||
#include "ui_fabuploaddialog.h" | ||
|
||
#include <QFile> | ||
|
||
FabUploadDialog::FabUploadDialog(QNetworkAccessManager *manager, | ||
QString filename, | ||
QWidget *parent) : | ||
QDialog(parent), | ||
ui(new Ui::FabUploadDialog) | ||
{ | ||
ui->setupUi(this); | ||
setWindowFlags(Qt::Dialog | windowFlags()); | ||
ui->stackedWidget->setCurrentIndex(0); | ||
ui->upload->init(manager, filename); | ||
ui->uploadButton_2->setEnabled(false); | ||
} | ||
|
||
|
||
FabUploadDialog::~FabUploadDialog() | ||
{ | ||
delete ui; | ||
} | ||
|
||
void FabUploadDialog::onUploadStarted() | ||
{ | ||
ui->stackedWidget->setCurrentIndex(1); | ||
} | ||
|
||
void FabUploadDialog::onUploadReady() | ||
{ | ||
ui->uploadButton_2->setEnabled(true); | ||
ui->uploadButton_2->setText("Open in browser"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#ifndef FABUPLOADDIALOG_H | ||
#define FABUPLOADDIALOG_H | ||
|
||
#include <QDialog> | ||
#include <QNetworkAccessManager> | ||
|
||
namespace Ui { | ||
class FabUploadDialog; | ||
} | ||
|
||
class FabUploadDialog : public QDialog | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit FabUploadDialog(QNetworkAccessManager* manager, | ||
QString filename, | ||
// double area, | ||
// double boardCount, | ||
QWidget *parent = nullptr); | ||
~FabUploadDialog(); | ||
|
||
private slots: | ||
void onUploadStarted(); | ||
void onUploadReady(); | ||
|
||
private: | ||
Ui::FabUploadDialog *ui; | ||
|
||
}; | ||
|
||
#endif // FABUPLOADDIALOG_H |
Oops, something went wrong.