Skip to content

Commit

Permalink
Merge pull request #2466 from architecture-building-systems/release-2.26
Browse files Browse the repository at this point in the history
Release 2.26
  • Loading branch information
daren-thomas committed Nov 18, 2019
2 parents 01d4939 + 53708bf commit d819a09
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2019-11-15 - 2.25.2 - #2455 2349 suspend simulations
2019-11-14 - 2.25.1 - #2448 Ventilation to avoid unrealistically high temperatures during heating season
2019-11-12 - 2.25.1 - #2452 Update epwreader.py
2019-11-11 - 2.25.1 - #2439 Databases major refactoring
2019-11-07 - 2.25.1 - #2444 Update input api
2019-11-06 - 2.25.1 - #2420 I1633 gains and losses proportional to conditioned area
2019-11-05 - 2.25.1 - #2441 Release 2.25, I also updated the CEA website to reflect this
2019-11-04 - 2.24 - #2434 Delete converter_old_schedules_to_csv.py
2019-11-04 - 2.24 - #2437 Update input api
2019-11-04 - 2.24 - #2354 2082 add remaining network plots to dashboard
2019-11-04 - 2.24 - #2431 Update scripts.yml
Expand Down
36 changes: 36 additions & 0 deletions CREDITS.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,42 @@ The CEA team
Starting from version 2.9.1 the credits are structured alphabetically (surname) and split into the categories of developers,
scrum master, project owner, project sponsor and collaborators.

- Version 2.26.0 - November 2019

Developers:
* [Amr Elesawy](http://www.systems.arch.ethz.ch/about-us/team/team-zurich/amr-elesawy.html)
* [Jimeno A. Fonseca](http://www.systems.arch.ethz.ch/about-us/team/team-singapore/jimeno-fonseca.html)
* [Gabriel Happle](http://www.systems.arch.ethz.ch/about-us/team/team-singapore/gabriel-happle.html)
* [Shanshan Hsieh](http://www.systems.arch.ethz.ch/about-us/team/team-singapore/shanshan-hsieh.html)
* [Reynold Mok](http://https://cityenergyanalyst.com/community)
* [Martín Mosteiro Romero](http://www.systems.arch.ethz.ch/about-us/team/team-zurich/martin-mosteiro-romero.html)
* [Zhongming Shi](http://www.systems.arch.ethz.ch/about-us/team/team-singapore/zhongming-shi.html)
* [Bhargava Krishna Sreepathi ](http://www.systems.arch.ethz.ch/about-us/team/team-singapore/sreepathi-bhargava-krishna.html)
* [Daren Thomas](http://www.systems.arch.ethz.ch/about-us/team/team-zurich/daren-thomas.html)

Scrum master:
* [Daren Thomas](http://www.systems.arch.ethz.ch/about-us/team/team-zurich/daren-thomas.html)

Project owner:
* [Jimeno A. Fonseca](http://www.systems.arch.ethz.ch/about-us/team/team-singapore/jimeno-fonseca.html)

Project sponsor:
* [Arno Schlueter](http://www.systems.arch.ethz.ch/about-us/team/arno-schlueter.html)

Collaborators:
* Sebastian Troiztsch
* Jose Bello
* Kian Wee Chen
* Jack Hawthorne
* Fazel Khayatian
* Victor Marty
* Paul Neitzel
* Thuy-An Nguyen
* Bo Lie Ong
* Lennart Rogenhofer
* Toivo Säwén
* Tim Vollrath

- Version 2.25 - November 2019

Developers:
Expand Down
2 changes: 1 addition & 1 deletion cea/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.25.2"
__version__ = "2.26.0"


class ConfigError(Exception):
Expand Down
9 changes: 6 additions & 3 deletions setup/cityenergyanalyst.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ${StrRep}
!define CEA_ENV_FILENAME "Dependencies.7z"
!define RELATIVE_GIT_PATH "Dependencies\cmder\vendor\git-for-windows\bin\git.exe"
!define CEA_REPO_URL "https://github.com/architecture-building-systems/CityEnergyAnalyst.git"
!define CEA_ELECTRON_URL "https://github.com/architecture-building-systems/CityEnergyAnalyst-GUI/releases/latest/download/win-unpacked.7z"
!define CEA_ELECTRON_URL "https://github.com/architecture-building-systems/CityEnergyAnalyst-GUI/releases/download/v${VER}/win-unpacked.7z"

!define CEA_TITLE "City Energy Analyst"

Expand Down Expand Up @@ -143,9 +143,9 @@ Section "Base Installation" Base_Installation_Section
download_electron_ok:
# get on with life...

# unzip the electron interface
# unzip the electron interface (note, expect a subdirectory called win-unpacked inside the archive)
DetailPrint "Extracting win-unpacked.7z"
SetOutPath "$INSTDIR\win-unpacked"
SetOutPath "$INSTDIR"
Nsis7z::ExtractWithDetails "$INSTDIR\win-unpacked.7z" "Extracting Electron interface %s..."
Delete "$INSTDIR\win-unpacked.7z"
SetOutPath "$INSTDIR"
Expand Down Expand Up @@ -189,6 +189,9 @@ Section "Base Installation" Base_Installation_Section
DetailPrint "Pip installing Jupyter"
nsExec::ExecToLog '"$INSTDIR\Dependencies\Python\python.exe" -m pip install --force-reinstall jupyter ipython'

DetailPrint "Pip installing Sphinx"
nsExec::ExecToLog '"$INSTDIR\Dependencies\Python\python.exe" -m pip install --force-reinstall --no-deps sphinx'

# create cea.config file in the %userprofile% directory by calling `cea --help` and set daysim paths
nsExec::ExecToLog '"$INSTDIR\Dependencies\Python\Scripts\cea.exe" --help'
WriteINIStr "$PROFILE\cea.config" radiation daysim-bin-directory "$INSTDIR\Dependencies\Daysim"
Expand Down

0 comments on commit d819a09

Please sign in to comment.