You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
41
41
- We fixed an issue where imports to a custom group would only work for the first entry [#11085](https://github.com/JabRef/jabref/issues/11085), [#11269](https://github.com/JabRef/jabref/issues/11269)
42
42
- We fixed an issue where a new entry was not added to the selected group [#8933](https://github.com/JabRef/jabref/issues/8933)
43
43
- We fixed an issue where the horizontal position of the Entry Preview inside the entry editor was not remembered across restarts [#11281](https://github.com/JabRef/jabref/issues/11281)
44
+
- We fixed an issue where the entry editor context menu was not shown correctly when JabRef is opened on a second, extended screen [#11323](https://github.com/JabRef/jabref/issues/11323), [#11174](https://github.com/JabRef/jabref/issues/11174)
* A date picker with configurable datetime format where both date and time can be changed via the text field and the
30
29
* date can additionally be changed via the JavaFX default date picker. Also supports incomplete dates.
31
-
*
30
+
* <p>
32
31
* First recall how the date picker normally works: - The user selects a date in the popup, which sets {@link
33
32
* #valueProperty()} to the selected date. - The converter ({@link #converterProperty()}) is used to transform the date
34
33
* to a string representation and display it in the text field.
35
-
*
34
+
* <p>
36
35
* The idea is now to intercept the process and add an additional step: - The user selects a date in the popup, which
37
36
* sets {@link #valueProperty()} to the selected date. - The date is converted to a {@link TemporalAccessor} (i.e,
38
37
* enriched by a time component) using {@link #addCurrentTime(LocalDate)} - The string converter ({@link
39
38
* #stringConverterProperty()}) is used to transform the temporal accessor to a string representation and display it in
40
39
* the text field.
41
-
*
42
-
* Inspiration taken from https://github.com/edvin/tornadofx-controls/blob/master/src/main/java/tornadofx/control/DateTimePicker.java
40
+
* <p>
41
+
* Inspiration taken from <a href="https://github.com/edvin/tornadofx-controls/blob/master/src/main/java/tornadofx/control/DateTimePicker.java">Controlsfx DateTimePicker</a>
0 commit comments