labimotion 2.2.0.rc9 → 2.2.0.rc11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +117 -0
- data/LICENSE +661 -0
- data/README.md +68 -0
- data/lib/labimotion/apis/generic_element_api.rb +0 -1
- data/lib/labimotion/apis/labimotion_api.rb +3 -0
- data/lib/labimotion/apis/labimotion_doi_api.rb +170 -0
- data/lib/labimotion/apis/labimotion_template_browse_api.rb +120 -0
- data/lib/labimotion/apis/user_api.rb +56 -0
- data/lib/labimotion/entities/labimotion_template_doi_entity.rb +30 -0
- data/lib/labimotion/entities/user_entity.rb +9 -0
- data/lib/labimotion/helpers/element_helpers.rb +15 -21
- data/lib/labimotion/libs/converter.rb +2 -1
- data/lib/labimotion/libs/nmr_mapper.rb +2 -2
- data/lib/labimotion/models/concerns/attachment_converter.rb +1 -0
- data/lib/labimotion/models/concerns/element_fetchable.rb +2 -2
- data/lib/labimotion/models/element.rb +2 -2
- data/lib/labimotion/utils/search.rb +2 -2
- data/lib/labimotion/version.rb +1 -1
- data/lib/labimotion.rb +5 -0
- metadata +10 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 491f3e3075c83954b5e49caeb8b091d1aba68ddf0135fe82ddbaf6aeb4b244e9
|
|
4
|
+
data.tar.gz: ae5dc4a93ecb31559feff1060f8fb449aa3e618f86890ea25324410226f4d166
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ce1f326748ee1ae7c9a71f97f43b2eef7d3273c28c9d7d7d3e87516cfcef58002927563dedbaad66ca87f6c396fd462cab6f827eb95d052cdf4f2703bfe8e307
|
|
7
|
+
data.tar.gz: 958083e170c64e0c378b38ecf9996343a88dfa6756617d0a7d6d9e548d3dbefc3b53c00eda2ec8412fd6da59ca3b959b7d0fa20f67e32a559fa74da9d01e695b
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
# LabIMotion Changelog
|
|
2
|
+
|
|
3
|
+
## [2.0.0]
|
|
4
|
+
> 2025-03-25
|
|
5
|
+
* Features and enhancements:
|
|
6
|
+
* Upgraded the main UI component, introducing a breaking change with react-bootstrap. Please note that this version is only compatible with ELN version using react-bootstrap v2.
|
|
7
|
+
* Added new units ([#43](https://github.com/LabIMotion/labimotion/issues/43)).
|
|
8
|
+
* Introduced a new form layout for **Designer**.
|
|
9
|
+
* Introduced a new field type, `Select (Multiple)`, for **Designers**; the multiple selections feature is now supported.
|
|
10
|
+
* Introduced the `Arrange Layers` and `Arrange Fields` feature for reordering the layers and fields.
|
|
11
|
+
* Expanded the `LabIMotion Vocabulary (Lab-Vocab)`, more vocabularies are added.
|
|
12
|
+
* Template version information is now available for **Users**.
|
|
13
|
+
* Introduced the `Quick Filter` feature for **Designers**.
|
|
14
|
+
* Set the first layer to be expanded by default for improved usability.
|
|
15
|
+
* Added a feature allowing **User** to collapse or expand all layers with a single click.
|
|
16
|
+
* Metadata Auto Mapper: Automatically prioritises the retrieval of parameters from Bruker's primary files.
|
|
17
|
+
|
|
18
|
+
For more details, see the [Discussion](https://github.com/LabIMotion/labimotion/discussions/39).
|
|
19
|
+
|
|
20
|
+
* LabIMotion Vocabulary (Lab-Vocab).
|
|
21
|
+
* [Concept of LabIMotion Vocabulary (Lab-Vocab)](https://doi.org/10.5281/zenodo.13881070)
|
|
22
|
+
* Standard Layer.
|
|
23
|
+
* User Interface Foundation.
|
|
24
|
+
* Extract "other solvent" for dataset.
|
|
25
|
+
|
|
26
|
+
For more details, see the [Discussion](https://github.com/LabIMotion/labimotion/discussions/37).
|
|
27
|
+
|
|
28
|
+
* Bug fixes:
|
|
29
|
+
* Fixed an issue where the links for `Drag Element` and `Drag Sample` would vanish. ([#42](https://github.com/LabIMotion/labimotion/issues/42))
|
|
30
|
+
* Fixed an issue where the `Record Time` text would disappear. ([#40](https://github.com/LabIMotion/labimotion/issues/40))
|
|
31
|
+
* Fixed an issue where an unexpected page was dislayed when no dataset existed for the CV case.
|
|
32
|
+
* Fixed an issue where the selection was not working in the dataset after the library upgrade.
|
|
33
|
+
* Fixed an issue where the new selection list does not immediately reflect in the table after the library upgrade.
|
|
34
|
+
* Fixed a JavaScript warning related to the missing key prop for unique elements.
|
|
35
|
+
|
|
36
|
+
* Chores:
|
|
37
|
+
* Updated library dependencies.
|
|
38
|
+
|
|
39
|
+
#### Note: The planned 1.5.0 release was postponed due to dependencies in a consuming project. All updates from 1.5.0 are included in 2.0.0, along with additional features and a breaking change.
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## [1.4.1]
|
|
43
|
+
> 2024-10-24
|
|
44
|
+
|
|
45
|
+
* Bug fixes
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
## [1.4.0]
|
|
49
|
+
> 2024-08-22
|
|
50
|
+
|
|
51
|
+
* Features and enhancements:
|
|
52
|
+
* **Preview image function for the “Upload” field type**: An image preview is provided once the uploaded file is an image. Furthermore, users can zoom in/out by changing the percentage, and the original file can be opened with one click. See the [idea](https://github.com/LabIMotion/labimotion/discussions/19) and a [visual demonstration](https://www.youtube.com/watch?v=FzNT2NSk_wc&feature=youtu.be).
|
|
53
|
+
* **Labeling feature**: Allows users to add custom labels to elements for better organization and categorization. This feature enhances searchability and management within the system. See the [idea](https://github.com/LabIMotion/labimotion/discussions/28) and a [visual demonstration](https://www.youtube.com/watch?v=geuMQzN91aQ&feature=youtu.be).
|
|
54
|
+
* **Drag reactions to elements**: Users can now drag and drop reactions onto elements, making the interface more interactive and intuitive. Consequently, the Export/Import Collection function and Reporting function will also include reaction data. See the [idea](https://github.com/LabIMotion/labimotion/discussions/22) and a [visual demonstration](https://www.youtube.com/watch?v=-oYkJaqhZPE).
|
|
55
|
+
* **Change layer or field order via drag-and-drop**: Designers can rearrange layers or fields by simply dragging and dropping them into the desired order. This provides a more flexible and user-friendly way to manage data. A [visual demonstration](https://www.youtube.com/watch?v=V4nMukebAyA) is available.
|
|
56
|
+
* **Custom flow**: Enables users to record their steps/work and visualize them as a flow diagram. A [video](https://www.youtube.com/watch?v=n6Q9sybhzmc) for your reference.
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
## [1.3.0]
|
|
60
|
+
> 2024-04-24
|
|
61
|
+
|
|
62
|
+
* Features and enhancements:
|
|
63
|
+
* **Export/Import Collection function**: This function now includes self-designed elements within the same instance. See [discussion](https://github.com/LabIMotion/labimotion/discussions/15) for further details.
|
|
64
|
+
* **Restriction Setting**: New restriction options are available, and you can also assign an alternative name for the field. Refer to the [discussion](https://github.com/LabIMotion/labimotion/discussions/8) for more information.
|
|
65
|
+
* **Generic Element Split Function**: Introduce the 'Split' function, allowing users to split elements and establish parent-child relationships. Check [discussion](https://github.com/LabIMotion/labimotion/discussions/9) for more details.
|
|
66
|
+
* **Generic Element Reporting Function**: This feature enables users to generate a basic report based on a generic element in docx format. Check [discussion](https://github.com/LabIMotion/labimotion/discussions/12) for more details. A [visual demonstration](https://youtu.be/XUbMF99Aku0) is available.
|
|
67
|
+
* **System Units**: Additional system units are now supported. Click [here](https://github.com/LabIMotion/labimotion/wiki) to view the complete list.
|
|
68
|
+
* **Customize Default Unit for Field**: As a Designer, you can set a preferred unit for a field as the default option within the template. A [visual demonstration](https://youtu.be/mEmDDS9z19s) is available.
|
|
69
|
+
* Additional information has been added to the field header to provide designers with a quick overview.
|
|
70
|
+
* Bug fixes:
|
|
71
|
+
* Resolved issue with importing segments.
|
|
72
|
+
* Fixed issue where metadata download displayed labels instead of values.
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
## [1.1.4]
|
|
76
|
+
> 2024-02-15
|
|
77
|
+
|
|
78
|
+
* Bug fixes:
|
|
79
|
+
* fix generic dataset general info for CV
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
## [1.1.3]
|
|
83
|
+
> 2024-01-31
|
|
84
|
+
|
|
85
|
+
* Upgrade ruby to 2.7.8
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
## [1.1.2]
|
|
89
|
+
> 2024-01-30
|
|
90
|
+
|
|
91
|
+
* Bug fixes:
|
|
92
|
+
* fix: data cannot be removed from segment of element
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
## [1.1.1]
|
|
96
|
+
> 2024-01-16
|
|
97
|
+
|
|
98
|
+
* Bug fixes:
|
|
99
|
+
* fix the zip upload issue
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
## [1.1.0]
|
|
103
|
+
> 2024-01-15
|
|
104
|
+
|
|
105
|
+
* “Dataset Excel” improvement - more information is provided in the `Description` sheet. See the documentation: [https://www.chemotion.net/docs/labimotion/guides/user/datasets/download].
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
## [1.0.18]
|
|
109
|
+
> 2023-10-30
|
|
110
|
+
|
|
111
|
+
* Initial version
|
|
112
|
+
* Generic Designer
|
|
113
|
+
* Workflow of Generic Element
|
|
114
|
+
* Repetitation of layers
|
|
115
|
+
* Drag Element to Element
|
|
116
|
+
* Dataset Metadata
|
|
117
|
+
* LabIMotion Template Hub Synchronization
|