Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.1 #130

Merged
merged 137 commits into from
Oct 13, 2024
Merged

2.1 #130

merged 137 commits into from
Oct 13, 2024

Commits on Jul 26, 2024

  1. Configuration menu
    Copy the full SHA
    ab21096 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    003328e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    91f3e6f View commit details
    Browse the repository at this point in the history
  4. Added functionality for model annotation with genome accession, if mo…

    …del id is in BiGG.
    
    Parameter access now uniformly through getters/setters.
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    52f5403 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5f88a8a View commit details
    Browse the repository at this point in the history
  6. Bumped version to 2.1. Fixed typo in accession_value. Updated travis …

    …command to run with validation, without adb and combine archive. Hopefully secret for Slack integration is correct now
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    17bcc81 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    469af05 View commit details
    Browse the repository at this point in the history
  8. Some cleanup in BiGGDB - all queries using contract class again and r…

    …eplaced String.format with MessageFormat.format
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    eb29da1 View commit details
    Browse the repository at this point in the history
  9. Removed some unused variables, fixed spelling and corrected one logic…

    … error with regard to includeAnyURI. Added some form of documentation to BiGGAnnotation to give a better overview, what is done by each method.
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    e3aa18b View commit details
    Browse the repository at this point in the history
  10. Renamed mpMessageBundle to MESSAGES. Replaced nearly all occurrences …

    …of String.format with MessageFormat.format
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    3f20fd0 View commit details
    Browse the repository at this point in the history
  11. Moved code regarding annotation of model, compartments, species, reac…

    …tions and gene products out of BiGGAnnotation in to their own respective *Anntotation classes
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    b54e210 View commit details
    Browse the repository at this point in the history
  12. Unified CVTerm annotation code for species and reaction, as they alre…

    …ady shared much of their code and moved it into CVTermAnnotation, which is now an abstract class from which both Annotation Classes and GeneProductAnnotation inherit.
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    4f6b480 View commit details
    Browse the repository at this point in the history
  13. Implemented code to deal with Issue#100 for now. Moved combine archiv…

    …e code into own class
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    65d4ea3 View commit details
    Browse the repository at this point in the history
  14. Moved polishing tasks into own classes, analogously to how annotation…

    … is done now. Still needs a pass to implement alternative paths for code dealing with models. Removed unused/unnecessary code from SBMLPolisher class that can be directly accessed by the Parameters singleton
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    3771f0c View commit details
    Browse the repository at this point in the history
  15. Added explicit check if both input and output parameter are provided,…

    … as both are required and missing out on either would throw a NullPointer
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    ec59134 View commit details
    Browse the repository at this point in the history
  16. Simplified code in some places. Changed handling when dealing with re…

    …action compartment codes. These are only set, if all instances, i.e. reaction, reactants and products agree on the compartment. Polishing of Species and Reactions should now be possible without a model present
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    54814ad View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    c37185d View commit details
    Browse the repository at this point in the history
  18. Restructuring of COBRAParser finished, just needs a pass to check whi…

    …ch components are required and should thus throw an Exception, if they are missing. Moving parsers classes into subpackages somehow broke JSONParser, which needs fixing now
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    34d74f0 View commit details
    Browse the repository at this point in the history
  19. Moved all logged strings to polisher resource bundle. JSONParser shou…

    …ld work again, issue was a malformed formatting placeholder in a string. German translation needs to be done for the new messages and log levels still need to be adjusted
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    cfafc05 View commit details
    Browse the repository at this point in the history
  20. Somehow missed out on actually fixing the JSONParser strings and movi…

    …ng them into the resource bundle. Copied missing entries into german resource bundle, untranslated for now
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    6db7f57 View commit details
    Browse the repository at this point in the history
  21. Changed Boolean to boolean in parameter class, no need to carry boxin…

    …g over to call sites.
    
    Reordered parameters in ModelPolisherOptions and Parameters to be sorted alphabetically.
    Enchanced documentation in ModelPolisher class.
    Fixed small issue in JSONParser - forgot to wrap notes in XML namespace in one place, leading to unknown "p" elements.
    Some smaller refactoring.
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    c2b9deb View commit details
    Browse the repository at this point in the history
  22. Another try at travis integration. Will fail on testing, as new MIRIA…

    …M entries cause error
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    15d6fbc View commit details
    Browse the repository at this point in the history
  23. Finally fixed java.util.prefs issue waiting for lock delaying execution.

    Defined ModelPolisher as entrypoint, allowing to pass arguments directly to the container without need to explicitly pass java -jar ModelPolisher-?.jar, i.e. docker-compose run polisher java -jar ModelPolisher-?.jar [options] is now docker-compose run polisher [options].
    Need to update README.
    Next up: Dealing with MIRIAM.
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    61234d6 View commit details
    Browse the repository at this point in the history
  24. Nearly finished rewrite of MIRIAM/identifiers.org annotation Registry…

    … class. Correct handling of non identifiers URLs should now be possible, but integration still needs to be finished -> non identifiers.org URLs are currently not correctly handled for implemented workarounds for BiGG data
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    aa5893a View commit details
    Browse the repository at this point in the history
  25. Registry class should now be working as expected - some smaller issue…

    …s might exist, as testing still needs to be implemented for new code
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    1590a43 View commit details
    Browse the repository at this point in the history
  26. Reverted fix for SBML: namespace tag issue, as removing this in neste…

    …d namespaces leads to SBMLReader crashing on the respective inner elemnt without namespace tag
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    2897111 View commit details
    Browse the repository at this point in the history
  27. Updated dependecies to current versions. Added 'Gradle License Report…

    …' plugin (https://github.com/jk1/Gradle-License-Report) to get dependency licenses and removed (outdated) THIRD-PARTY.txt and licenses folder. Added instruction file (dependency-licenses.txt) on how to create the license report. Updated year in ModelPolisher license which still was 2015 (!). Further removed BuildSBMLFix, as this was outdated and not used anymore and contributor notes, as these were still based on a pre-2.0 version.
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    1436777 View commit details
    Browse the repository at this point in the history
  28. Almost functional version of JSON writing capabilities implemented. g…

    …eneReactionRules do not work currently. Notes are currently dumped as XMLString, which needs to be changed. getJSON{Gene,Metabolite,Reaction} methods need further testing
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    ef3612f View commit details
    Browse the repository at this point in the history
  29. Converting GeneProductAssociation to string should work now. Added op…

    …tion to write output model as JSON
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    8b4a52b View commit details
    Browse the repository at this point in the history
  30. Converting notes to JSON representation works now. Some cleanup and s…

    …maller tests remain
    mephenor authored and Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    2257624 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    c95207c View commit details
    Browse the repository at this point in the history
  32. issue #115: update README.md

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    81618c5 View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    4a8242c View commit details
    Browse the repository at this point in the history
  34. issue #116: add built javadocs

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    dfd86a6 View commit details
    Browse the repository at this point in the history
  35. gradle version bump

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    871c05b View commit details
    Browse the repository at this point in the history
  36. SBMLPolisher test

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    e71fbed View commit details
    Browse the repository at this point in the history
  37. gradle test workflow def

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    ae635f1 View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    0ec1ab1 View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    5d2e87b View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    717f2b6 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    0ad4c92 View commit details
    Browse the repository at this point in the history
  42. issue #117 remove non-comments

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    5e98bdb View commit details
    Browse the repository at this point in the history
  43. issue #119 unit test

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    9b4937d View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    8bd3163 View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    81ad955 View commit details
    Browse the repository at this point in the history
  46. issue #121: remove non-comments

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    26736ad View commit details
    Browse the repository at this point in the history
  47. just deleting some code

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    f0d8225 View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    f5ba799 View commit details
    Browse the repository at this point in the history
  49. Configuration menu
    Copy the full SHA
    793436b View commit details
    Browse the repository at this point in the history
  50. issue #121: cleaning out tests

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    5ab2fd5 View commit details
    Browse the repository at this point in the history
  51. issue #121 fix missing port bug

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    4b01758 View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    6b667d9 View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    0ac38c9 View commit details
    Browse the repository at this point in the history
  54. issue #121: remove pointless FUD

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    951b87f View commit details
    Browse the repository at this point in the history
  55. issue #121 annotation tests

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    fda2edd View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    4a35021 View commit details
    Browse the repository at this point in the history
  57. Configuration menu
    Copy the full SHA
    82c05b1 View commit details
    Browse the repository at this point in the history
  58. issue #121 test issue #76

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    f1b3565 View commit details
    Browse the repository at this point in the history
  59. issue #121 test #27

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    9d813b5 View commit details
    Browse the repository at this point in the history
  60. issue #121 test #47

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    51c81d3 View commit details
    Browse the repository at this point in the history
  61. issue #121 test #122

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    9a8cfaf View commit details
    Browse the repository at this point in the history
  62. issue #121 test #20

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    29830fb View commit details
    Browse the repository at this point in the history
  63. isse #121 test #20

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    580418e View commit details
    Browse the repository at this point in the history
  64. issue #121 test #20

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    1538292 View commit details
    Browse the repository at this point in the history
  65. issue #121 deactivate broken tests

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    5c65c11 View commit details
    Browse the repository at this point in the history
  66. Configuration menu
    Copy the full SHA
    b065019 View commit details
    Browse the repository at this point in the history
  67. Configuration menu
    Copy the full SHA
    adca85f View commit details
    Browse the repository at this point in the history
  68. llm-based documentation

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    7bf4408 View commit details
    Browse the repository at this point in the history
  69. clean out build

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    c8c8377 View commit details
    Browse the repository at this point in the history
  70. clean out project files

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    42144b0 View commit details
    Browse the repository at this point in the history
  71. dependency version bumps

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    086a3db View commit details
    Browse the repository at this point in the history
  72. changes for javadoc

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    4ddb4c5 View commit details
    Browse the repository at this point in the history
  73. updated javadoc

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    1e88b8d View commit details
    Browse the repository at this point in the history
  74. unused imports

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    38b9978 View commit details
    Browse the repository at this point in the history
  75. aktuelle Doku

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    2dd1f5f View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    92a6091 View commit details
    Browse the repository at this point in the history
  77. typo in workflow

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    11865ea View commit details
    Browse the repository at this point in the history
  78. add gradle-wrapper.properties

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    3bcf2c5 View commit details
    Browse the repository at this point in the history
  79. fix tests

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    8948f80 View commit details
    Browse the repository at this point in the history
  80. Configuration menu
    Copy the full SHA
    2a99a87 View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    b9b9b4a View commit details
    Browse the repository at this point in the history
  82. Configuration menu
    Copy the full SHA
    4cc304d View commit details
    Browse the repository at this point in the history
  83. Configuration menu
    Copy the full SHA
    9a62ea2 View commit details
    Browse the repository at this point in the history
  84. remove static parameters

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    8e43616 View commit details
    Browse the repository at this point in the history
  85. move code around

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    976e96d View commit details
    Browse the repository at this point in the history
  86. updated javadoc

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    76940d0 View commit details
    Browse the repository at this point in the history
  87. Configuration menu
    Copy the full SHA
    a2469e3 View commit details
    Browse the repository at this point in the history
  88. code consistency

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    2fbc36f View commit details
    Browse the repository at this point in the history
  89. IntelliJ code problems

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    6f4d3d7 View commit details
    Browse the repository at this point in the history
  90. Configuration menu
    Copy the full SHA
    7a68415 View commit details
    Browse the repository at this point in the history
  91. identifers.org rework

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    e205214 View commit details
    Browse the repository at this point in the history
  92. decomplect bigg and adb

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    6993237 View commit details
    Browse the repository at this point in the history
  93. intellij issues fixed

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    7b84b25 View commit details
    Browse the repository at this point in the history
  94. updated javadocs

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    bc7151f View commit details
    Browse the repository at this point in the history
  95. parameters rewrite and parser

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    b5a658b View commit details
    Browse the repository at this point in the history
  96. updated javadoc

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    477bbab View commit details
    Browse the repository at this point in the history
  97. Configuration menu
    Copy the full SHA
    5c8bdc4 View commit details
    Browse the repository at this point in the history
  98. updated javadocs

    Schmoho committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    435261f View commit details
    Browse the repository at this point in the history
  99. Configuration menu
    Copy the full SHA
    eeff80e View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. clean out repository

    Schmoho committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    f294dbf View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2024

  1. rampage

    Schmoho committed Aug 14, 2024
    Configuration menu
    Copy the full SHA
    8829f61 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2024

  1. rampage extended

    Schmoho committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    1b8a125 View commit details
    Browse the repository at this point in the history
  2. potential NPE

    Schmoho committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    7d57fdd View commit details
    Browse the repository at this point in the history
  3. static init biggdb

    Schmoho committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    76077ff View commit details
    Browse the repository at this point in the history
  4. logging

    Schmoho committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    91d8652 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    dfafe97 View commit details
    Browse the repository at this point in the history
  6. toString on parameters

    Schmoho committed Aug 15, 2024
    Configuration menu
    Copy the full SHA
    294b3bc View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

  1. Configuration menu
    Copy the full SHA
    9518897 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2024

  1. comments and minor code orga

    Schmoho committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    f433465 View commit details
    Browse the repository at this point in the history
  2. generate pom in the jar

    Schmoho committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    f7775cd View commit details
    Browse the repository at this point in the history
  3. new config options for fixer

    Schmoho committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    546261e View commit details
    Browse the repository at this point in the history
  4. add compartment fixer

    Schmoho committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    47ece05 View commit details
    Browse the repository at this point in the history
  5. debugging adb

    Schmoho committed Aug 18, 2024
    Configuration menu
    Copy the full SHA
    9052b57 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2024

  1. OCD and CLI mode debugging

    Schmoho committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    6dc07e1 View commit details
    Browse the repository at this point in the history
  2. example configs + compose

    Schmoho committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    64e78f4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a4537cc View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2024

  1. fix docker setup

    Schmoho committed Aug 20, 2024
    Configuration menu
    Copy the full SHA
    49eeef4 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2024

  1. fix pattern

    Schmoho committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    334e5f3 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2024

  1. fix patterns

    Schmoho committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    7ed5b33 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2024

  1. charge handling for iYS1720

    Schmoho committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    40c86aa View commit details
    Browse the repository at this point in the history
  2. update readme

    Schmoho committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    cb9180a View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2024

  1. restructure build

    Schmoho committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    9f35b28 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2024

  1. adapt dockerfile

    Schmoho committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    8af30f5 View commit details
    Browse the repository at this point in the history
  2. remove build folders from vcs

    Schmoho committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    e8026cf View commit details
    Browse the repository at this point in the history
  3. fix #106

    Schmoho committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    5bed11f View commit details
    Browse the repository at this point in the history
  4. updated javadoc

    Schmoho committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    340fb9f View commit details
    Browse the repository at this point in the history
  5. fix whitespace in gradle file

    Schmoho committed Sep 16, 2024
    Configuration menu
    Copy the full SHA
    cd94618 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2024

  1. Configuration menu
    Copy the full SHA
    fe192dd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    27b4e84 View commit details
    Browse the repository at this point in the history
  3. new entry in identifiers.org

    Schmoho committed Sep 29, 2024
    Configuration menu
    Copy the full SHA
    d4b14a1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e30a4bc View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2024

  1. Configuration menu
    Copy the full SHA
    10ca970 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1e3d367 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0045b80 View commit details
    Browse the repository at this point in the history
  4. unit tests

    Schmoho committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    a0934bf View commit details
    Browse the repository at this point in the history
  5. fix in CLI mode

    Schmoho committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    6692356 View commit details
    Browse the repository at this point in the history
  6. misc

    Schmoho committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    6968cf4 View commit details
    Browse the repository at this point in the history