|
6 | 6 |
|
7 | 7 | ### Added |
8 | 8 |
|
9 | | -* `pathtools.join2` can be used to join paths, much like `os.path.join` except |
10 | | - that it will work with `java.io.File` objects as well (but doesn't support |
11 | | - more than two path components / parameters). |
12 | | -* `resultstable` sub-module with the following functions: |
13 | | - * `add_results_to_resultstable` |
14 | | - * `get_resultstable` |
15 | | - * `preset_results_column` |
16 | | -* `misc.timed_log` for printing log messages with a timestamp. |
17 | | -* Several functions in the `misc` submodule: |
18 | | - * `calculate_mean_and_stdv` |
19 | | - * `elapsed_time_since` |
20 | | - * `find_focus` |
21 | | - * `get_free_memory` |
22 | | - * `percentage` |
23 | | - * `progressbar` |
24 | | - * `setup_clean_ij_environment` |
25 | | - * `timed_log` |
| 9 | +* `imcflibs.pathtools.join2` can be used to join paths, much like `os.path.join` |
| 10 | + except that it will work with `java.io.File` objects as well (but doesn't |
| 11 | + support more than two path components / parameters). |
| 12 | +* `imcflibs.imagej.resultstable` sub-module with the following functions: |
| 13 | + * `imcflibs.imagej.resultstable.add_results_to_resultstable` |
| 14 | + * `imcflibs.imagej.resultstable.get_resultstable` |
| 15 | + * `imcflibs.imagej.resultstable.preset_results_column` |
| 16 | +* `imcflibs.imagej.misc.timed_log` for printing log messages with a timestamp. |
| 17 | +* Several functions in the `imcflibs.imagej.misc` submodule: |
| 18 | + * `imcflibs.imagej.misc.calculate_mean_and_stdv` |
| 19 | + * `imcflibs.imagej.misc.elapsed_time_since` |
| 20 | + * `imcflibs.imagej.misc.find_focus` |
| 21 | + * `imcflibs.imagej.misc.get_free_memory` |
| 22 | + * `imcflibs.imagej.misc.percentage` |
| 23 | + * `imcflibs.imagej.misc.progressbar` |
| 24 | + * `imcflibs.imagej.misc.setup_clean_ij_environment` |
| 25 | + * `imcflibs.imagej.misc.timed_log` |
26 | 26 |
|
27 | 27 | ### Changed |
28 | 28 |
|
29 | | -* `strtools.filename` and `pathtools.parse_path` can now also work on |
30 | | - `java.io.File` objects, which happen to be the type when using ImageJ2's |
31 | | - *Script Parameter* `@# File`. |
32 | | -* The dict returned by `pathtools.parse_path` now also contains the key |
| 29 | +* `imcflibs.strtools.filename` and `imcflibs.pathtools.parse_path` can now also |
| 30 | + work on `java.io.File` objects, which happen to be the type when using |
| 31 | + ImageJ2's *Script Parameter* `@# File`. |
| 32 | +* The dict returned by `imcflibs.pathtools.parse_path` now also contains the key |
33 | 33 | `basename` that provides the filename without extension. |
34 | 34 | * Many improvements / clarifications in function docstrings. |
0 commit comments