-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #718 from matty0ung/3.0.X
Remove duplicate combo box entries on Hop editor
- Loading branch information
Showing
28 changed files
with
249 additions
and
453 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* HopEditor.cpp is part of Brewtarget, and is Copyright the following | ||
* authors 2009-2021 | ||
* authors 2009-2023 | ||
* - Kregg K <[email protected]> | ||
* - Matt Young <[email protected]> | ||
* - Mik Firestone <[email protected]> | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* database/Database.cpp is part of Brewtarget, and is copyright the following | ||
* authors 2009-2021: | ||
* authors 2009-2023: | ||
* • Aidan Roberts <[email protected]> | ||
* • A.J. Drobnich <[email protected]> | ||
* • Brian Rower <[email protected]> | ||
|
@@ -682,7 +682,12 @@ bool Database::load() { | |
|
||
void Database::checkForNewDefaultData() { | ||
// See if there are new ingredients that we need to merge from the data-space db. | ||
// Don't do this if we JUST copied the dataspace database. | ||
// Don't do this if we JUST copied the default database. | ||
qDebug() << | ||
Q_FUNC_INFO << "dataDbFile:" << this->pimpl->dataDbFile.fileName() << ", dbFile:" << | ||
this->pimpl->dbFile.fileName() << ", userDatabaseDidNotExist: " << | ||
(this->pimpl->userDatabaseDidNotExist ? "True" : "False") << ", dataDbFile.lastModified:" << | ||
QFileInfo(this->pimpl->dataDbFile).lastModified() << ", lastDbMergeRequest" << Database::lastDbMergeRequest; | ||
if (this->pimpl->dataDbFile.fileName() != this->pimpl->dbFile.fileName() && | ||
!this->pimpl->userDatabaseDidNotExist && | ||
QFileInfo(this->pimpl->dataDbFile).lastModified() > Database::lastDbMergeRequest) { | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* | ||
* model/Hop.h is part of Brewtarget, and is Copyright the following | ||
* authors 2009-2021 | ||
* authors 2009-2023 | ||
* - Jeff Bailey <[email protected]> | ||
* - Matt Young <[email protected]> | ||
* - Mik Firestone <[email protected]> | ||
|
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
Oops, something went wrong.