Skip to content

Commit

Permalink
Merge pull request #6 from LI-COR/version-6.2.2
Browse files Browse the repository at this point in the history
Version 6.2.2
  • Loading branch information
emiola committed Jul 8, 2019
2 parents 3b19683 + bde10cc commit 5b4f49e
Show file tree
Hide file tree
Showing 243 changed files with 1,452 additions and 847 deletions.
5 changes: 2 additions & 3 deletions ACKNOWLEDGEMENTS
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,16 @@ this free software.
- University of Chicago: m_levenberg_marquardt from the MINPACK package
- netlib.org: FFT routines from the SLATEC Common Mathematical Library
- The Qt Company: Qt framework
- Boost
- Boost C++ Libraries
- Trenton Schulz (former Trolltech AS): Fader widget
- Morgan Leborgne: QProgressIndicator widget
- Witold Wysota: Debug helper class
- Sergey A. Tachenov: QuaZIP
- Mark Summerfield: classes from the book 'Advanced Qt Programming'
- Mark Summerfield: helper classes from the book 'Advanced Qt Programming'

## Tools

- GFortran compiler
- MinGW compiler and GDB debugger
- Clang compiler
- The Qt Company: Qt Creator IDE
- Code::Blocks IDE
13 changes: 12 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
6.2.2 (2018-05-11)

Engine
- Add: support for Young 81000V, 81000RE, 81000VRE sonic anemometers.

GUI
- Add: support for Young 81000V, 81000RE, 81000VRE sonic anemometers.
- Add: references to the Tovi platform.
- Fix: Raw File Settings persistency.
- Fix: local help not showing.

6.2.1 (2017-10-09)

Engine
- Add: support for new LI-7500DS instruments.

GUI
- Add: support for new LI-7500DS instruments.
- Fix magnetic declination retrieval from NOAA.
- Fix: magnetic declination retrieval from NOAA.

6.2.0 (2016-08-23)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ To compile the Engine use [gfortran](https://gcc.gnu.org/wiki/GFortran)

To compile the GUI:

1. install the [Qt framework](http://qt-project.org/)
1. install the [Qt framework](https://www.qt.io/developers/)
2. install [git](http://git-scm.com/)
3. build the Qt `eddypro.pro` project file using custom build scripts available
under `source/scripts/build` or using QtCreator
Expand Down
81 changes: 81 additions & 0 deletions css/eddypro-lin.qss
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,82 @@ QLabel[applogoSmallLabel="true"]:hover {
min-height: 70px;
}


ClickLabel[toviLabel="true"] {
image: url(:/icons/tovi-ad-normal);
min-width: 578px;
min-height: 165px;
}

ClickLabel[toviLabel="true"]:hover {
image: url(:/icons/tovi-ad-hover);
min-width: 578px;
min-height: 165px;
}

ClickLabel[toviLabel="true"]:pressed {
image: url(:/icons/tovi-ad-pressed);
min-width: 578px;
min-height: 165px;
}

ClickLabel[toviWideLabel="true"] {
image: url(:/icons/tovi-wide-ad-normal);
min-width: 513px;
min-height: 97px;
}

ClickLabel[toviWideLabel="true"]:hover {
image: url(:/icons/tovi-wide-ad-hover);
min-width: 513px;
min-height: 97px;
}

ClickLabel[toviWideLabel="true"]:pressed {
image: url(:/icons/tovi-wide-ad-pressed);
min-width: 513px;
min-height: 97px;
}

ClickLabel[toviThinLabel="true"] {
image: url(:/icons/tovi-thin-ad-normal);
min-width: 305px;
min-height: 108px;
margin-left: -15px;
padding-left: 0px;
}

ClickLabel[toviThinLabel="true"]:hover {
image: url(:/icons/tovi-thin-ad-hover);
min-width: 305px;
min-height: 108px;
}

ClickLabel[toviThinLabel="true"]:pressed {
image: url(:/icons/tovi-thin-ad-pressed);
min-width: 305px;
min-height: 108px;
}

QPushButton#toviLogoImg {
background-color: transparent;
border: none;
image: url(:/icons/tovi-icon-normal);
min-width: 35px;
max-width: 35px;
min-height: 30px;
max-height: 30px;
margin-left: 5px;
}

QPushButton#toviLogoImg:hover {
image: url(:/icons/tovi-icon-hover);
}

QPushButton#toviLogoImg:pressed {
image: url(:/icons/tovi-icon-pressed);
}

QLabel[feedbackLabel="true"] {
image: url(:/icons/feedback-button);
min-width: 168px;
Expand Down Expand Up @@ -1001,6 +1077,11 @@ QLabel[groupLabel="true"] {
margin-bottom: 5px;
}

QLabel[toviAds="true"] {
font-size: 14px;
font-style: italic;
}

/*QLabel[groupLabel="true"] {
color: #007FBD;
font-size: 12px;
Expand Down
110 changes: 110 additions & 0 deletions css/eddypro-mac.qss
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,10 @@ QComboBox::drop-down {
border-bottom-right-radius: 3px;
}

/* QComboBox::drop-down::item {
min-width: 50px;
} */

QComboBox::down-arrow {
image: url(:/icons/combo-normal);
}
Expand All @@ -354,6 +358,32 @@ QComboBox::down-arrow:off {
image: url(:/icons/combo-disabled);
}

/* dropdown popup list */
QComboBox QListView {
background-color: #eee;
border: 1px solid gray;
border-radius: 3px;
padding: 1px 3px;
min-width: 7em;
}

QComboBox::item:alternate {
background: white;
}

QComboBox::item:selected {
border: 1px solid transparent;
color: white;
background: #318ef4;
}

QComboBox::indicator {
background-color: transparent;
selection-background-color: transparent;
color: transparent;
selection-color: transparent;
}

MainWindow {
background-color: white;
}
Expand Down Expand Up @@ -870,6 +900,81 @@ QLabel[applogoSmallLabel="true"]:hover {
min-height: 70px;
}

ClickLabel[toviLabel="true"] {
image: url(:/icons/tovi-ad-normal);
min-width: 578px;
min-height: 165px;
}

ClickLabel[toviLabel="true"]:hover {
image: url(:/icons/tovi-ad-hover);
min-width: 578px;
min-height: 165px;
}

ClickLabel[toviLabel="true"]:pressed {
image: url(:/icons/tovi-ad-pressed);
min-width: 578px;
min-height: 165px;
}

ClickLabel[toviWideLabel="true"] {
image: url(:/icons/tovi-wide-ad-normal);
min-width: 513px;
min-height: 97px;
}

ClickLabel[toviWideLabel="true"]:hover {
image: url(:/icons/tovi-wide-ad-hover);
min-width: 513px;
min-height: 97px;
}

ClickLabel[toviWideLabel="true"]:pressed {
image: url(:/icons/tovi-wide-ad-pressed);
min-width: 513px;
min-height: 97px;
}

ClickLabel[toviThinLabel="true"] {
image: url(:/icons/tovi-thin-ad-normal);
min-width: 305px;
min-height: 108px;
margin-left: -15px;
padding-left: 0px;
}

ClickLabel[toviThinLabel="true"]:hover {
image: url(:/icons/tovi-thin-ad-hover);
min-width: 305px;
min-height: 108px;
}

ClickLabel[toviThinLabel="true"]:pressed {
image: url(:/icons/tovi-thin-ad-pressed);
min-width: 305px;
min-height: 108px;
}

QPushButton#toviLogoImg {
background-color: transparent;
border: none;
image: url(:/icons/tovi-icon-normal);
min-width: 35px;
max-width: 35px;
min-height: 30px;
max-height: 30px;
margin-left: 5px;
}

QPushButton#toviLogoImg:hover {
image: url(:/icons/tovi-icon-hover);
}

QPushButton#toviLogoImg:pressed {
image: url(:/icons/tovi-icon-pressed);
}

QLabel[feedbackLabel="true"] {
image: url(:/icons/feedback-button);
min-width: 168px;
Expand Down Expand Up @@ -1001,6 +1106,11 @@ QLabel[groupLabel="true"] {
margin-bottom: 5px;
}

QLabel[toviAds="true"] {
font-size: 14px;
font-style: italic;
}

/*QLabel[groupLabel="true"] {
color: #007FBD;
font-size: 12px;
Expand Down
81 changes: 81 additions & 0 deletions css/eddypro-win.qss
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,82 @@ QLabel[applogoSmallLabel="true"]:hover {
min-height: 70px;
}


ClickLabel[toviLabel="true"] {
image: url(:/icons/tovi-ad-normal);
min-width: 578px;
min-height: 165px;
}

ClickLabel[toviLabel="true"]:hover {
image: url(:/icons/tovi-ad-hover);
min-width: 578px;
min-height: 165px;
}

ClickLabel[toviLabel="true"]:pressed {
image: url(:/icons/tovi-ad-pressed);
min-width: 578px;
min-height: 165px;
}

ClickLabel[toviWideLabel="true"] {
image: url(:/icons/tovi-wide-ad-normal);
min-width: 513px;
min-height: 97px;
}

ClickLabel[toviWideLabel="true"]:hover {
image: url(:/icons/tovi-wide-ad-hover);
min-width: 513px;
min-height: 97px;
}

ClickLabel[toviWideLabel="true"]:pressed {
image: url(:/icons/tovi-wide-ad-pressed);
min-width: 513px;
min-height: 97px;
}

ClickLabel[toviThinLabel="true"] {
image: url(:/icons/tovi-thin-ad-normal);
min-width: 305px;
min-height: 108px;
margin-left: -15px;
padding-left: 0px;
}

ClickLabel[toviThinLabel="true"]:hover {
image: url(:/icons/tovi-thin-ad-hover);
min-width: 305px;
min-height: 108px;
}

ClickLabel[toviThinLabel="true"]:pressed {
image: url(:/icons/tovi-thin-ad-pressed);
min-width: 305px;
min-height: 108px;
}

QPushButton#toviLogoImg {
background-color: transparent;
border: none;
image: url(:/icons/tovi-icon-normal);
min-width: 35px;
max-width: 35px;
min-height: 30px;
max-height: 30px;
margin-left: 5px;
}

QPushButton#toviLogoImg:hover {
image: url(:/icons/tovi-icon-hover);
}

QPushButton#toviLogoImg:pressed {
image: url(:/icons/tovi-icon-pressed);
}

QLabel[feedbackLabel="true"] {
image: url(:/icons/feedback-button);
min-width: 168px;
Expand Down Expand Up @@ -1001,6 +1077,11 @@ QLabel[groupLabel="true"] {
margin-bottom: 5px;
}

QLabel[toviAds="true"] {
font-size: 12px;
font-style: italic;
}

/*QLabel[groupLabel="true"] {
color: #007FBD;
font-size: 12px;
Expand Down
Binary file modified docs/EddyPro_Manual_12025.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion eddypro_lin.pro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ TEMPLATE = app
# EddyPro version
VER_MAJ = 6
VER_MIN = 2
VER_PAT = 1
VER_PAT = 2
VERSION = $$sprintf("%1.%2.%3",$$VER_MAJ,$$VER_MIN,$$VER_PAT)

# Qt version and path
Expand Down
Loading

0 comments on commit 5b4f49e

Please sign in to comment.