Skip to content

Commit

Permalink
get_flist added
Browse files Browse the repository at this point in the history
  • Loading branch information
ARSadri committed Aug 19, 2023
1 parent 95c978b commit f7398e1
Show file tree
Hide file tree
Showing 10 changed files with 523 additions and 326 deletions.
10 changes: 9 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,12 @@ History

0.8.6 (2023-08-04)
-----------------
* plt_utils was not added tp 0.8.5
* plt_utils was not added tp 0.8.5

0.9.0 (2023-08-09)
-----------------
* copy() is now possible from a file or a variable name into another
* default suffix in get_flist is *
* logviewer.get_stack_of_files is only useful for reading data.
* more tests are added.
* moved multichannel_to_frame to utils
9 changes: 5 additions & 4 deletions lognflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

__author__ = 'Alireza Sadri'
__email__ = '[email protected]'
__version__ = '0.8.6'
__version__ = '0.9.0'

from .lognflow import lognflow
from .logviewer import logviewer
from .printprogress import printprogress
from .utils import select_directory, select_file
from .utils import repr_raw, replace_all, text_to_object
from .plt_utils import plt_colorbar
from .plt_utils import plt_colorbar
from .utils import (
select_directory, select_file, repr_raw, replace_all,
text_to_object, multichannel_to_frame)
Loading

0 comments on commit f7398e1

Please sign in to comment.