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
* Fix level for PicaXmlParser
* Use withers
* Use "withField"
* Add debub statement
* Modernize test
* Add 2024_SPLC_Becker.pdf
* Reuse object
* Use well-known array list
* Refactor xmpUtilReader to avoid double-loading of the PDF
* Fail faster
* Simplify test code
* Reorder for better readability
* Fix casing
* Fix comments in XmpUtilReaderTest
* Revert "Reorder for better readability"
This reverts commit 7f398ee.
* Make code more readable
* Add support for UnknownField{name='rights'}
* WIP: Fix of XmpUtilReader
* Add skeletton for test
* Introduce constant
* Map more fields
* Fix links
* Add links to related classes
* Add initial Markdown doc
* Remove unnecessary method
* Revert "WIP: Fix of XmpUtilReader"
This reverts commit 85cf9f1.
* Try to cache DOM parser
* Merge also merges type
* Remove "doi:" prefix at identifier
* Return one entry only
* Try to have org.jabref.logic.importer.fileformat.pdf.PdfMergeMetadataImporterTest#importRelativizesFilePath working
* Fix tabs
* Update CHANGELOG.md
Co-authored-by: Subhramit Basu <[email protected]>
* Fix path relativation
* Use withers
* Use "List.of"
* Add comment on testing
* Re-use merge logig of BibEntry
* Add support of merging file field
* Streamline code in PdfMergeMetadataImporter
* Adapt test to real data
* Refine JavaDoc
* Fix issue in field writing
* Introduce BibEntryCompare
* Ease test
* Add month handling during loading of XMP data
* Add refined JavaDoc
* Fix checkstyle
* Remvoe "// TODO"
---------
Co-authored-by: Subhramit Basu <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
25
25
- We added a feature for enabling drag-and-drop of files into groups [#12540](https://github.com/JabRef/jabref/issues/12540)
26
26
- We added support for reordering keywords via drag and drop, automatic alphabetical ordering, and improved pasting and editing functionalities in the keyword editor. [#10984](https://github.com/JabRef/jabref/issues/10984)
27
27
- We added a new functionality where author names having multiple spaces in-between will be considered as separate user block as it does for " and ". [#12701](https://github.com/JabRef/jabref/issues/12701)
28
+
- We enhanced support for parsing XMP metadata from PDF files. [#12829](https://github.com/JabRef/jabref/issues/12829)
28
29
- We added a "Preview" header in the JStyles tab in the "Select style" dialog, to make it consistent with the CSL styles tab. [#12838](https://github.com/JabRef/jabref/pull/12838)
29
30
30
31
### Changed
@@ -86,6 +87,7 @@ Note that this project **does not** adhere to [Semantic Versioning](https://semv
86
87
- We fixed an issue where duplicate items cannot be removed correctly when merging groups or keywords. [#12585](https://github.com/JabRef/jabref/issues/12585)
87
88
- We fixed an issue where JabRef displayed an incorrect deletion notification when canceling entry deletion [#12645](https://github.com/JabRef/jabref/issues/12645)
88
89
- We fixed an issue where JabRef displayed an incorrect deletion notification when canceling entry deletion. [#12645](https://github.com/JabRef/jabref/issues/12645)
90
+
- We fixed an issue where JabRref wrote wrong field names into the PDF. [#12833](https://github.com/JabRef/jabref/pulls/12833)
89
91
- We fixed an issue where an exception would occur when running abbreviate journals for multiple entries. [#12634](https://github.com/JabRef/jabref/issues/12634)
90
92
- We fixed an issue where JabRef displayed dropdown triangle in wrong place in "Search for unlinked local files" dialog [#12713](https://github.com/JabRef/jabref/issues/12713)
91
93
- We fixed an issue where JabRef would not open if an invalid external journal abbreviation path was encountered. [#12776](https://github.com/JabRef/jabref/issues/12776)
Copy file name to clipboardExpand all lines: docs/code-howtos/testing.md
+16
Original file line number
Diff line number
Diff line change
@@ -150,6 +150,22 @@ Fetcher tests can be run locally by executing the Gradle task `fetcherTest`. Thi
150
150
151
151
Alternatively, if one is using IntelliJ, this can also be done by double-clicking the `fetcherTest` task under the `other` group in the GradleTool window (`JabRef>Tasks> other > fetcherTest`).
152
152
153
+
## "No matching tests found"
154
+
155
+
Incase the output is "No matching tests found", the wrong test category is used.
0 commit comments