Skip to content

Commit

Permalink
update 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierpascalhenry committed Sep 5, 2019
1 parent 6f24f8f commit 70eb3ca
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
\setlength{\voffset}{.0cm}

\logoeufar
\title{EUFAR, Olivier Henry}{}{EGADS Lineage Algorithm Handbook}{Version 1.1.0}
\title{EUFAR, Olivier Henry}{}{EGADS Lineage Algorithm Handbook}{Version 1.1.1}
%\author{}{}


Expand Down
Binary file not shown.
Binary file not shown.
6 changes: 6 additions & 0 deletions Documentation/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ To fix list:
------------


September 5 2019, Release version 1.1.1
=======================================
MODIFIED:
- a new function has been introduced to reload all user-defined algorithms. It is not intended to be used directly in a script, but by the GUI when a user creates an algorithm via the dedicated window. The move of all files created by EGADS in the $HOME directory leads to difficulties with the GUI and this solution is now used until a better solution is found.


September 4 2019, Release version 1.1.0
=======================================
The configuration file and user algorithm structure have been moved to a dedicated directory in the $HOME folder (Windows, Linux and MacOS), to avoid issues when Python is installed in a system folder. Read the documentation for more details.
Expand Down
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: egads-lineage
Version: 1.1.0
Version: 1.1.1
Summary: EGADS: EUFAR General Airborne Data-processing Software
Home-page: https://github.com/EUFAR/egads/tree/Lineage
Author: EUFAR, Olivier Henry
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Version:
-------

EGADS Lineage 1.1.0
EGADS Lineage 1.1.1


Developments:
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '1.1.0'
version = '1.1.1'
# The full version, including alpha/beta/rc tags.
release = '1.1.0'
release = '1.1.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
10 changes: 10 additions & 0 deletions egads/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,16 @@ def check_update():
logging.debug('egads - __init__.py - check_update - app is frozen, no update check')


def _reload_user_algorithms():
"""
function to reload algorithms created by a user. It is intended to be used by the GUI.
"""

logging.debug('egads - __init__.py - _reload_user_algorithms')
import importlib
importlib.reload(user_algorithms)


if rq_version != 'requests is not available':
if not frozen:
if config_dict.getboolean('OPTIONS', 'check_update'):
Expand Down
2 changes: 1 addition & 1 deletion egads/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.1.0'
__version__ = '1.1.1'
__branch__ = 'Lineage'
2 changes: 1 addition & 1 deletion egads_lineage.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: egads-lineage
Version: 1.1.0
Version: 1.1.1
Summary: EGADS: EUFAR General Airborne Data-processing Software
Home-page: https://github.com/EUFAR/egads/tree/Lineage
Author: EUFAR, Olivier Henry
Expand Down
4 changes: 2 additions & 2 deletions egads_lineage.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ MANIFEST.in
README.md
setup.cfg
setup.py
Documentation/EGADS Lineage Algorithm Handbook - v1.1.0.pdf
Documentation/EGADS Lineage Documentation - v1.1.0.pdf
Documentation/EGADS Lineage Algorithm Handbook - v1.1.1.pdf
Documentation/EGADS Lineage Documentation - v1.1.1.pdf
Documentation/changelog.txt
Documentation/EGADS Algorithm Handbook - LATEX/EGADS_alg_doc.tex
Documentation/EGADS Algorithm Handbook - LATEX/example.py
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
doclines = __doc__.split('\n')

setup(name='egads-lineage',
version='1.1.0',
version='1.1.1',
description=doclines[0],
long_description='\n'.join(doclines[2:]),
author='EUFAR, Olivier Henry',
Expand Down

0 comments on commit 70eb3ca

Please sign in to comment.