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

Merge master into v1.5 #362

Merged
merged 333 commits into from
Jan 23, 2019
Merged

Merge master into v1.5 #362

merged 333 commits into from
Jan 23, 2019
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Jan 17, 2019

  1. Configuration menu
    Copy the full SHA
    1afea2e View commit details
    Browse the repository at this point in the history
  2. Remove old src/ files

    Accidentally added when merging changes from master branch.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    4b7131c View commit details
    Browse the repository at this point in the history
  3. Clarify test skip reason

    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    55a7011 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7669f9d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d02ecfb View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    24bd4cd View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e4e7340 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    692611f View commit details
    Browse the repository at this point in the history
  9. [File] Remove Mixin, simplify File constructor

    The removal of the bindings lets us clean out the Mixins so we can
    rewrite the class in a much cleaner fashion. The File.open() function
    now simply calls the File() constructor.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    95956d8 View commit details
    Browse the repository at this point in the history
  10. [Section] Duplicating SectionProxyList

    ProxyLists are going to be removed but for now, I need to duplicate this
    definition to avoid an import cycle.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    2344cfb View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    99afd61 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    9837608 View commit details
    Browse the repository at this point in the history
  13. Remove File.validate() method

    Was only supported in HDF5 backend.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    651cb98 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    364a48b View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    ea580f5 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    02c9e5c View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    642e57b View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    24624a6 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    43fb79a View commit details
    Browse the repository at this point in the history
  20. Merge all remaining mixins into their respective classes

    - Dimension
    - EntityWithSources
    - Property
    - Section
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    cc58cb0 View commit details
    Browse the repository at this point in the history
  21. Move nix objects out of pycore submodule

    HDF5 object wrappers (h5group and h5dataset) submodule is now called
    HDF5.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    03456f0 View commit details
    Browse the repository at this point in the history
  22. Cleanup MANIFEST.in

    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    e46717d View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    ef7f8c0 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    fb049fb View commit details
    Browse the repository at this point in the history
  25. Remove __future__ imports

    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    c489847 View commit details
    Browse the repository at this point in the history
  26. Copyright dates: Revert top-level file dates

    Top level files should retain original dates:
    2015 for group.py and 2014 for the rest.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    43c53d1 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    5658f10 View commit details
    Browse the repository at this point in the history
  28. [travis] Temporarily disable brew upgrade boost

    Travis issue causes packages to be built from source, which times out.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    e2fa3fd View commit details
    Browse the repository at this point in the history
  29. Move nix objects out of pycore submodule

    HDF5 object wrappers (h5group and h5dataset) submodule is now called
    HDF5.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    bb09503 View commit details
    Browse the repository at this point in the history
  30. New Container and LinkContainer classes

    More efficient versions of ProxyList and RefProxyList
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    38177e0 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    fa8b1dd View commit details
    Browse the repository at this point in the history
  32. [H5Group] Initialise group prop if it exists

    Before it was assumed that if the group property is None then the
    underlying HDF5 group does not exist, since instantiating a group sets
    the property in such cases. With the new Container class, a long living
    H5Group object may be created that does not have a group prop set
    initially but ends up being created in another place (presumably, from a
    _create_obj() method).
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    505bf34 View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    2bfec3e View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    f283349 View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    45173a8 View commit details
    Browse the repository at this point in the history
  36. [Group] Using LinkContainer instead of RefProxyList

    LinkContainer requires reference to parent Block containers.
    Container and LinkContainer __init__ docstrings added.
    LinkContainer reimplements certain functions due to difference in
    indexing links in the backend.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    41acc10 View commit details
    Browse the repository at this point in the history
  37. Containers need reference to parent NIX object

    With parent backend (H5Group) reference, it can't instantiate new NIX
    objects properly when loading from the backend.
    
    LinkContainer bugfixes
    - append after all checks pass
    - return super getitem call
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    46c93ac View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    81cd9ff View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    073012b View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    6a66320 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    d1236db View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    91f1054 View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    6ee48ac View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    2e854ad View commit details
    Browse the repository at this point in the history
  45. [LinkContainer] FIX parent ref in linked objects

    Objects retrieved from LinkContainers would have a '_parent' reference
    to the linking parent (e.g., Group) instead of the location where they
    were created (e.g., Block). This is fixed now. The objects are created
    with a reference to the 'itemstore' parent.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    0a701ef View commit details
    Browse the repository at this point in the history
  46. [Test] Linking deep source to object

    Currently fails because LinkContainer doesn't handle Sources properly.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    2a6eeb5 View commit details
    Browse the repository at this point in the history
  47. [EWSources] New container for Source links

    Subclasses LinkContainer
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    ffeb492 View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    9e1debb View commit details
    Browse the repository at this point in the history
  49. [tests] Create test files in temporary directories

    Creating test files in temporary directories avoids polluting the user's
    project directories with leftover nix files.
    
    More importantly, each setUp() function creates its own temporary
    directory, which allows tests to be run concurrently (use pytest -n
    auto).
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    09d14c8 View commit details
    Browse the repository at this point in the history
  50. Configuration menu
    Copy the full SHA
    6f42be1 View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    484a205 View commit details
    Browse the repository at this point in the history
  52. Add metadata to block

    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    5cc1c6e View commit details
    Browse the repository at this point in the history
  53. Flatten Entity class hierarchy

    Entity as common base class. No more EntityWithMetadata and
    EntityWithSources
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    a3bc4fc View commit details
    Browse the repository at this point in the history
  54. Metadata property creation function

    The create_metadata_prop() function returns a property for setting,
    getting, and deleting metadata properties. We set it in the constructor
    of each object that can point to metadata (Block, Group, DataArray, Tag,
    MultiTag, Source)
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    a169b86 View commit details
    Browse the repository at this point in the history
  55. Special SourceLinkContainer

    The LinkContainer for Sources requires a slightly different append()
    function, so we override the LinkContainer base class.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    8cc4e05 View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    a00e387 View commit details
    Browse the repository at this point in the history
  57. OverflowError check no longer relevant

    Check and test removed.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    78f88fb View commit details
    Browse the repository at this point in the history
  58. Configuration menu
    Copy the full SHA
    b163d26 View commit details
    Browse the repository at this point in the history
  59. Remove slice to count & offset conversions

    Instead of converting back and forth between slices and (count, offset)
    pairs, we now work directly with slice objects or indices as they are
    provided.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    9e621be View commit details
    Browse the repository at this point in the history
  60. [DataArray] Old fix for poly coeff on integer arrays

    The fix got lost in the merging and flattening of the classes. Bringing
    it back.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    1efb7ef View commit details
    Browse the repository at this point in the history
  61. [h5dataset] Catch H5Py indexing ValueError

    H5Py throws ValueError for out-of-bounds indexing. We catch it and throw
    IndexError instead, reusing the error message from H5Py.
    
    This also makes indexing more flexible. Slices now work the same as in
    numpy, so no slice is ever out-of-bounds. The corresponding test has
    been updated accordingly.
    
    This is an updated version of PR G-Node#303, which was a fix for G-Node#299.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    6b08c0a View commit details
    Browse the repository at this point in the history
  62. Configuration menu
    Copy the full SHA
    7650c0c View commit details
    Browse the repository at this point in the history
  63. Add Container.items() iterator

    Returns (id, item) tuples
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    b05ac6b View commit details
    Browse the repository at this point in the history
  64. Metadata property: add straightforwardly

    The create_metadata_prop() function had some limitations which could
    cause issues. Every object now implements a metadata property getter,
    setter, and deleter explicitly. No fancy central md property, no
    baseclass for EntityWithMetadata, just plain properties on each class
    that supports it.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    57c7220 View commit details
    Browse the repository at this point in the history
  65. Configuration menu
    Copy the full SHA
    cd0b31a View commit details
    Browse the repository at this point in the history
  66. Configuration menu
    Copy the full SHA
    cbf9a57 View commit details
    Browse the repository at this point in the history
  67. Configuration menu
    Copy the full SHA
    fa99cc8 View commit details
    Browse the repository at this point in the history
  68. Configuration menu
    Copy the full SHA
    5586989 View commit details
    Browse the repository at this point in the history
  69. Configuration menu
    Copy the full SHA
    c49b098 View commit details
    Browse the repository at this point in the history
  70. Cleanup: Remove old obsolete ProxyList functions

    Getters, appenders, deleters, contains checkers.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    5c83e54 View commit details
    Browse the repository at this point in the history
  71. Configuration menu
    Copy the full SHA
    10bb1af View commit details
    Browse the repository at this point in the history
  72. [H5Group] Don't raise StopIteration when no values

    StopIteration should not be raised manually by __iter__. See PEP 479
    (Python 3.7).
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    b569b6b View commit details
    Browse the repository at this point in the history
  73. [property] Add uncertainty

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    2b872f0 View commit details
    Browse the repository at this point in the history
  74. [property] Add reference

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    b9b9cca View commit details
    Browse the repository at this point in the history
  75. [property] Add value origin

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    b991a78 View commit details
    Browse the repository at this point in the history
  76. [section] Add reference

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    71d69ef View commit details
    Browse the repository at this point in the history
  77. [property] Add dependency (value)

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    defde91 View commit details
    Browse the repository at this point in the history
  78. Configuration menu
    Copy the full SHA
    30b5ae3 View commit details
    Browse the repository at this point in the history
  79. Configuration menu
    Copy the full SHA
    9351b19 View commit details
    Browse the repository at this point in the history
  80. Configuration menu
    Copy the full SHA
    98f1942 View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    c90f4b5 View commit details
    Browse the repository at this point in the history
  82. [property] Add newvalue property

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    889605e View commit details
    Browse the repository at this point in the history
  83. Configuration menu
    Copy the full SHA
    4c3feb2 View commit details
    Browse the repository at this point in the history
  84. [property] Add newvalue prop setter

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    20000ae View commit details
    Browse the repository at this point in the history
  85. Configuration menu
    Copy the full SHA
    2bdaa5a View commit details
    Browse the repository at this point in the history
  86. Configuration menu
    Copy the full SHA
    43b86c9 View commit details
    Browse the repository at this point in the history
  87. [property] Add OdmlType class

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    bfdb3d3 View commit details
    Browse the repository at this point in the history
  88. Configuration menu
    Copy the full SHA
    06ebe4c View commit details
    Browse the repository at this point in the history
  89. Configuration menu
    Copy the full SHA
    81bad61 View commit details
    Browse the repository at this point in the history
  90. [property] Add odml_type property

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    485b409 View commit details
    Browse the repository at this point in the history
  91. [section] Update docstring

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    8280a3b View commit details
    Browse the repository at this point in the history
  92. [property] Add DataType class

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    93641c7 View commit details
    Browse the repository at this point in the history
  93. Configuration menu
    Copy the full SHA
    5f20378 View commit details
    Browse the repository at this point in the history
  94. Configuration menu
    Copy the full SHA
    c4e0d00 View commit details
    Browse the repository at this point in the history
  95. Resolve changed DataType imports

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    5197d8d View commit details
    Browse the repository at this point in the history
  96. [datatype] Use DataType class

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    62b6cd9 View commit details
    Browse the repository at this point in the history
  97. Configuration menu
    Copy the full SHA
    1531c37 View commit details
    Browse the repository at this point in the history
  98. Configuration menu
    Copy the full SHA
    de48bd8 View commit details
    Browse the repository at this point in the history
  99. [section] Fix create value bug

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    db7d971 View commit details
    Browse the repository at this point in the history
  100. Configuration menu
    Copy the full SHA
    af9f228 View commit details
    Browse the repository at this point in the history
  101. [test] Update xcompat tests to post-nix1.4

    - C++ files use nix::Variant instead of old nix::Value
    - Python functions write values directly and don't compare against
    nix.Value collections.
    - Compile script uses nixio as library name.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    f1d76cb View commit details
    Browse the repository at this point in the history
  102. [property] Remove mapping

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    400fde7 View commit details
    Browse the repository at this point in the history
  103. [section] Remove mapping

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    98cf1ff View commit details
    Browse the repository at this point in the history
  104. Configuration menu
    Copy the full SHA
    020b06e View commit details
    Browse the repository at this point in the history
  105. [travis] build against master

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    6905355 View commit details
    Browse the repository at this point in the history
  106. [property] Reorder OdmlType

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    b411c27 View commit details
    Browse the repository at this point in the history
  107. [property] Code cleanup

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    212ecd9 View commit details
    Browse the repository at this point in the history
  108. Configuration menu
    Copy the full SHA
    4cabc6e View commit details
    Browse the repository at this point in the history
  109. [section] Code cleanup

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    f0eae96 View commit details
    Browse the repository at this point in the history
  110. [datatype] Code cleanup

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    6b56433 View commit details
    Browse the repository at this point in the history
  111. [property] Refactor OdmlType class

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    5632d81 View commit details
    Browse the repository at this point in the history
  112. Configuration menu
    Copy the full SHA
    cb87daa View commit details
    Browse the repository at this point in the history
  113. Configuration menu
    Copy the full SHA
    d849524 View commit details
    Browse the repository at this point in the history
  114. [init] Expose new OdmlType class

    mpsonntag authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    b10ae8f View commit details
    Browse the repository at this point in the history
  115. Configuration menu
    Copy the full SHA
    76d09a3 View commit details
    Browse the repository at this point in the history
  116. Configuration menu
    Copy the full SHA
    128d901 View commit details
    Browse the repository at this point in the history
  117. Add me to LICENSE file

    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    0e9059b View commit details
    Browse the repository at this point in the history
  118. [file] __enter__ and __exit__ methods for context

    Files can now be opened using the 'with' statement for context
    management.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    2ea84d5 View commit details
    Browse the repository at this point in the history
  119. Configuration menu
    Copy the full SHA
    8a8a614 View commit details
    Browse the repository at this point in the history
  120. [section] Convert single-value strings to list as well

    When creating a property using create_property(), strings are identified
    as Sequence and not converted to lists.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    0a24c40 View commit details
    Browse the repository at this point in the history
  121. Configuration menu
    Copy the full SHA
    e2e99f0 View commit details
    Browse the repository at this point in the history
  122. Configuration menu
    Copy the full SHA
    9c3742b View commit details
    Browse the repository at this point in the history
  123. Configuration menu
    Copy the full SHA
    bedaa1d View commit details
    Browse the repository at this point in the history
  124. Configuration menu
    Copy the full SHA
    b69f83c View commit details
    Browse the repository at this point in the history
  125. Configuration menu
    Copy the full SHA
    eddc495 View commit details
    Browse the repository at this point in the history
  126. Check property values against Iterable for numpy

    Numpy arrays are not Sequence types, but they are Iterable.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    61d0b05 View commit details
    Browse the repository at this point in the history
  127. Value setter: special string case

    Setting an existing property to a single string (no list) breaks when
    np.shape(str) returns () and tries to resize the existing dataset.
    Including test for the issue.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    304a6bd View commit details
    Browse the repository at this point in the history
  128. Configuration menu
    Copy the full SHA
    7ab7c40 View commit details
    Browse the repository at this point in the history
  129. Configuration menu
    Copy the full SHA
    ec66ae5 View commit details
    Browse the repository at this point in the history
  130. Configuration menu
    Copy the full SHA
    88f9522 View commit details
    Browse the repository at this point in the history
  131. Configuration menu
    Copy the full SHA
    edd066d View commit details
    Browse the repository at this point in the history
  132. Configuration menu
    Copy the full SHA
    e99a6e3 View commit details
    Browse the repository at this point in the history
  133. Configuration menu
    Copy the full SHA
    6ab2d03 View commit details
    Browse the repository at this point in the history
  134. Configuration menu
    Copy the full SHA
    9933a5c View commit details
    Browse the repository at this point in the history
  135. Configuration menu
    Copy the full SHA
    f6b0be9 View commit details
    Browse the repository at this point in the history
  136. Reference for underlying h5object

    Same name for both H5Group and H5DataSet
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    3b784ea View commit details
    Browse the repository at this point in the history
  137. Configuration menu
    Copy the full SHA
    5de571f View commit details
    Browse the repository at this point in the history
  138. Configuration menu
    Copy the full SHA
    cfcae06 View commit details
    Browse the repository at this point in the history
  139. Configuration menu
    Copy the full SHA
    f570998 View commit details
    Browse the repository at this point in the history
  140. Configuration menu
    Copy the full SHA
    b487980 View commit details
    Browse the repository at this point in the history
  141. More correct but more inefficient delete_all method

    This can almost certainly be optimised, but it's more correct than the
    previous implementation, which risked infinite recursion.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    d40785f View commit details
    Browse the repository at this point in the history
  142. Configuration menu
    Copy the full SHA
    ed64ccb View commit details
    Browse the repository at this point in the history
  143. Configuration menu
    Copy the full SHA
    3a4a706 View commit details
    Browse the repository at this point in the history
  144. Configuration menu
    Copy the full SHA
    517f4c9 View commit details
    Browse the repository at this point in the history
  145. Subclass Container for Sections and Sources

    Both of these require a different delete method that first collects
    their descendants and then searches through the entire tree to find
    references in order to delete them.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    7b70440 View commit details
    Browse the repository at this point in the history
  146. Configuration menu
    Copy the full SHA
    a1690ea View commit details
    Browse the repository at this point in the history
  147. Configuration menu
    Copy the full SHA
    32530e5 View commit details
    Browse the repository at this point in the history
  148. Configuration menu
    Copy the full SHA
    a075e94 View commit details
    Browse the repository at this point in the history
  149. Configuration menu
    Copy the full SHA
    2528b2a View commit details
    Browse the repository at this point in the history
  150. Configuration menu
    Copy the full SHA
    6ad082f View commit details
    Browse the repository at this point in the history
  151. Configuration menu
    Copy the full SHA
    6ada27d View commit details
    Browse the repository at this point in the history
  152. Configuration menu
    Copy the full SHA
    237a545 View commit details
    Browse the repository at this point in the history
  153. Configuration menu
    Copy the full SHA
    3445ca1 View commit details
    Browse the repository at this point in the history
  154. Configuration menu
    Copy the full SHA
    0c55f19 View commit details
    Browse the repository at this point in the history
  155. Minor docstring typo fix

    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    14e503d View commit details
    Browse the repository at this point in the history
  156. [dimensions] Bugfix: Set .index properly on __init__

    DimensionContainer failed to set the dimension properly when
    initialising a Dimension that was being loaded from the file. It was
    looking for an "index" attribute and was returning None. Should be using
    the name of the HDF5 Group object.
    
    Added tests to catch regressions.
    
    Wrapping index in int() when returning and when setting the object
    attribute to catch unwanted behaviour.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    ee11186 View commit details
    Browse the repository at this point in the history
  157. Configuration menu
    Copy the full SHA
    b025ff0 View commit details
    Browse the repository at this point in the history
  158. Configuration menu
    Copy the full SHA
    34562f6 View commit details
    Browse the repository at this point in the history
  159. [dorelease] Don't validate version

    Let it be freeform. Could do X.Y.Z.beta, or X.Y.Z.dev.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    3dde022 View commit details
    Browse the repository at this point in the history
  160. [compile] Two step compile+link for xcompat tests

    + simplifications and fixes
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    48f1561 View commit details
    Browse the repository at this point in the history
  161. [travis] xenial & sudo required for Python 3.7

    Updated NIX_LIBDIR
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    0e47075 View commit details
    Browse the repository at this point in the history
  162. [section] Default type="undefined"

    For uniformity with odML
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    ab427c7 View commit details
    Browse the repository at this point in the history
  163. Configuration menu
    Copy the full SHA
    ba7f1dd View commit details
    Browse the repository at this point in the history
  164. [dimensions] Allow "labels" to be resized in SetDimension

    Addressing issue G-Node#330 (partially)
    
    Use write_data() when creating labels instead of create_dataset(). The
    former creates the dataset if necessary and resizes is if it already
    exists.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    ca0f259 View commit details
    Browse the repository at this point in the history
  165. [dimensions] Allow "ticks" to be resized in RangeDimension

    Closes G-Node#330
    
    Use write_data() when creating ticks instead of create_dataset(). The
    former creates the dataset if necessary and resizes is if it already
    exists.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    111c699 View commit details
    Browse the repository at this point in the history
  166. [DataArray] Initialise dim attributes on append

    Support optionally setting dimension attributes when creating
    (append_<>_dimension) a new dimension:
    - SetDimension: labels
    - RangeDimension: label, unit
    - SampledDimension: label, unit, offset
    
    Closes G-Node#331
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    40bfc1c View commit details
    Browse the repository at this point in the history
  167. Configuration menu
    Copy the full SHA
    627bc09 View commit details
    Browse the repository at this point in the history
  168. no-bindings-dev section pprint

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    6688c76 View commit details
    Browse the repository at this point in the history
  169. remove id-printing for pprint() for section

    help
    help
    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    8050426 View commit details
    Browse the repository at this point in the history
  170. writing basic API

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    d4f7106 View commit details
    Browse the repository at this point in the history
  171. basic structure of dataframe obj

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    5ff2b58 View commit details
    Browse the repository at this point in the history
  172. adding create function to Block

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    6984edc View commit details
    Browse the repository at this point in the history
  173. basic dataframe model done

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    2a033a1 View commit details
    Browse the repository at this point in the history
  174. row as obj

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    c3a04f1 View commit details
    Browse the repository at this point in the history
  175. adding properties and ordereddict

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    bde37eb View commit details
    Browse the repository at this point in the history
  176. finish write_cell

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    789d464 View commit details
    Browse the repository at this point in the history
  177. loop to write columns

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    8ccffb2 View commit details
    Browse the repository at this point in the history
  178. Configuration menu
    Copy the full SHA
    0a53627 View commit details
    Browse the repository at this point in the history
  179. Configuration menu
    Copy the full SHA
    db40895 View commit details
    Browse the repository at this point in the history
  180. support multiple cols reading

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    5d364bf View commit details
    Browse the repository at this point in the history
  181. Configuration menu
    Copy the full SHA
    6a86cd0 View commit details
    Browse the repository at this point in the history
  182. append_rows works

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    f7adde0 View commit details
    Browse the repository at this point in the history
  183. experiment on append_column

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    be6c9e8 View commit details
    Browse the repository at this point in the history
  184. Configuration menu
    Copy the full SHA
    2c23f97 View commit details
    Browse the repository at this point in the history
  185. validator for No bindings dev branch (G-Node#322)

    Squashed commits:
    
    * initial change in no-binding branch
    
    * start writing valid_da
    
    * valid da with units and poly
    
    * def val-functions and val dimension corectly
    
    * add check_file and check_blk function
    
    * del "is not None"/ Add poly & ex_origin
    
    * add check_for_basics function to perform common id, name type checks
    
    * adding loops
    
    * setting up validate file structure
    
    * finish blk and grp check and dict_struct
    
    * validate da
    
    * finish check_da function
    
    * finish check dim rdim setdim samdim exp sorted ticks
    
    * 1st draft
    
    * extent and pos
    
    * start testing files
    
    * writing test
    
    * not append, but eq to list/ finish test_blk
    
    * finish test_check_grp
    
    * finish test_data_array
    
    * testing tags
    
    * add get ref units function as seperate func
    
    * finish test tag
    
    * finish test_tag
    
    * finish test_mt
    
    * add test_prop
    
    * some small fixes
    
    * change the struct of props/dims/feas in dict
    
    * write the dim_test
    
    * all test done
    
    * changed param and add obj_ref
    
    * PEP8 fixes
    
    * add error_count for file.validate()
    
    * PEP8 fixes
    
    * cleanup
    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    d158e69 View commit details
    Browse the repository at this point in the history
  186. printing table

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    f874ea1 View commit details
    Browse the repository at this point in the history
  187. add table format printing function

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    465144a View commit details
    Browse the repository at this point in the history
  188. [MultiTag] Fix for retrieve_data with 1D pos

    1D position arrays are handled as a special case. This used to work
    before because the DataArray would allow indexing with more indexes than
    the length of the array itself. The new DataArray indexing function
    doesn't allow this and tries to follow numpy array indexing rules.
    
    Test added to catch regression.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    e37488e View commit details
    Browse the repository at this point in the history
  189. write_to_csv bug

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    71f4017 View commit details
    Browse the repository at this point in the history
  190. add a columns property

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    920ed01 View commit details
    Browse the repository at this point in the history
  191. [property] Force "uncertainty" to float

    Always convert uncertainty to float for compatibility with odML
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    5c0f6c0 View commit details
    Browse the repository at this point in the history
  192. Configuration menu
    Copy the full SHA
    ce4effd View commit details
    Browse the repository at this point in the history
  193. Configuration menu
    Copy the full SHA
    6b6cd37 View commit details
    Browse the repository at this point in the history
  194. skip test to pass CI

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    589a391 View commit details
    Browse the repository at this point in the history
  195. Configuration menu
    Copy the full SHA
    5b6570a View commit details
    Browse the repository at this point in the history
  196. Change collections ABC imports to new module

    Importing abstract base classes directly from collections will cause an
    error in Python 3.8. Currently, in 3.7, it raises a warning. In 3.8,
    they will have to be imported from collections.abc.
    
    Wrapping in exception catcher for compatibility with older versions.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    b22f51f View commit details
    Browse the repository at this point in the history
  197. Configuration menu
    Copy the full SHA
    281675b View commit details
    Browse the repository at this point in the history
  198. Configuration menu
    Copy the full SHA
    05f3d9f View commit details
    Browse the repository at this point in the history
  199. PEP8 fixes and cleanups

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    8d98ce0 View commit details
    Browse the repository at this point in the history
  200. validator for No bindings dev branch (G-Node#322)

    Squashed commits:
    
    * initial change in no-binding branch
    
    * start writing valid_da
    
    * valid da with units and poly
    
    * def val-functions and val dimension corectly
    
    * add check_file and check_blk function
    
    * del "is not None"/ Add poly & ex_origin
    
    * add check_for_basics function to perform common id, name type checks
    
    * adding loops
    
    * setting up validate file structure
    
    * finish blk and grp check and dict_struct
    
    * validate da
    
    * finish check_da function
    
    * finish check dim rdim setdim samdim exp sorted ticks
    
    * 1st draft
    
    * extent and pos
    
    * start testing files
    
    * writing test
    
    * not append, but eq to list/ finish test_blk
    
    * finish test_check_grp
    
    * finish test_data_array
    
    * testing tags
    
    * add get ref units function as seperate func
    
    * finish test tag
    
    * finish test_tag
    
    * finish test_mt
    
    * add test_prop
    
    * some small fixes
    
    * change the struct of props/dims/feas in dict
    
    * write the dim_test
    
    * all test done
    
    * changed param and add obj_ref
    
    * PEP8 fixes
    
    * add error_count for file.validate()
    
    * PEP8 fixes
    
    * cleanup
    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    0c6a061 View commit details
    Browse the repository at this point in the history
  201. [MultiTag] Fix for retrieve_data with 1D pos

    1D position arrays are handled as a special case. This used to work
    before because the DataArray would allow indexing with more indexes than
    the length of the array itself. The new DataArray indexing function
    doesn't allow this and tries to follow numpy array indexing rules.
    
    Test added to catch regression.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    83ed8d0 View commit details
    Browse the repository at this point in the history
  202. Change collections ABC imports to new module

    Importing abstract base classes directly from collections will cause an
    error in Python 3.8. Currently, in 3.7, it raises a warning. In 3.8,
    they will have to be imported from collections.abc.
    
    Wrapping in exception catcher for compatibility with older versions.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    88d2c63 View commit details
    Browse the repository at this point in the history
  203. Configuration menu
    Copy the full SHA
    f20ad7b View commit details
    Browse the repository at this point in the history
  204. Configuration menu
    Copy the full SHA
    9a3db33 View commit details
    Browse the repository at this point in the history
  205. [DataFrame] write_to_csv and write_to_pandas (G-Node#351)

    * finish write_to_pandas df
    
    * write_to_csv working! but very verbose
    
    * write_to_csv improvement/ cleanup variable
    
    * PEP8 fixes
    
    * some attr adpations after rebase
    
    * remove pandas
    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    be6737c View commit details
    Browse the repository at this point in the history
  206. support create with list type data

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    58df922 View commit details
    Browse the repository at this point in the history
  207. allow data to be None in creation

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    c33907f View commit details
    Browse the repository at this point in the history
  208. del some redundancy

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    62fb7a0 View commit details
    Browse the repository at this point in the history
  209. no param dtype

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    99e6786 View commit details
    Browse the repository at this point in the history
  210. Configuration menu
    Copy the full SHA
    e0300b0 View commit details
    Browse the repository at this point in the history
  211. PEP8 fixes

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    24623d2 View commit details
    Browse the repository at this point in the history
  212. fix bug when data is None

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    01333e7 View commit details
    Browse the repository at this point in the history
  213. creation with data fix bug with str

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    8d1aaba View commit details
    Browse the repository at this point in the history
  214. fix bug if str in struct_arr

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    c708c95 View commit details
    Browse the repository at this point in the history
  215. some changes to the test

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    e819e0b View commit details
    Browse the repository at this point in the history
  216. changes after rebase

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    9951b4f View commit details
    Browse the repository at this point in the history
  217. Configuration menu
    Copy the full SHA
    40baaf5 View commit details
    Browse the repository at this point in the history
  218. Configuration menu
    Copy the full SHA
    5e474ab View commit details
    Browse the repository at this point in the history
  219. Configuration menu
    Copy the full SHA
    602cbbe View commit details
    Browse the repository at this point in the history
  220. write test for write_col and read_row

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    aa9c5df View commit details
    Browse the repository at this point in the history
  221. add test for read_cell

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    f55e2db View commit details
    Browse the repository at this point in the history
  222. add test for write_cell

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    e2957c5 View commit details
    Browse the repository at this point in the history
  223. add test for append_col

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    9172fb5 View commit details
    Browse the repository at this point in the history
  224. add test for append_rows

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    741fd1a View commit details
    Browse the repository at this point in the history
  225. fix df bugs/ add slice for read_col/ del df_shape setter/ app_col add…

    … err for len(col) not correct/ del col_idx for unit.setter
    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    eff9cf6 View commit details
    Browse the repository at this point in the history
  226. add tests for properties

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    030a38c View commit details
    Browse the repository at this point in the history
  227. PEP8 fixes

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    d19125e View commit details
    Browse the repository at this point in the history
  228. change read_row() and super() in init

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    25ee891 View commit details
    Browse the repository at this point in the history
  229. Configuration menu
    Copy the full SHA
    5344c40 View commit details
    Browse the repository at this point in the history
  230. Configuration menu
    Copy the full SHA
    08d9c8d View commit details
    Browse the repository at this point in the history
  231. create test_df

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    379346f View commit details
    Browse the repository at this point in the history
  232. initial df compat test commit

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    f1ec7c1 View commit details
    Browse the repository at this point in the history
  233. add compat for attrs

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    d33db22 View commit details
    Browse the repository at this point in the history
  234. readrow compat

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    60f7518 View commit details
    Browse the repository at this point in the history
  235. completed the read in CPP test

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    91e0bd0 View commit details
    Browse the repository at this point in the history
  236. finish basic test write_in_cpp

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    1af0c5a View commit details
    Browse the repository at this point in the history
  237. PEP8 fixes

    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    81f9ef4 View commit details
    Browse the repository at this point in the history
  238. Configuration menu
    Copy the full SHA
    8ec787a View commit details
    Browse the repository at this point in the history
  239. Fixed tutorial pages source (G-Node#359)

    * fixed broken links eddited install instruction to install nixio no bindings
    
    * deleted all NIX c++ dependencies and information, added new "advance install"
    
    * added mising link to NIXPy
    
    * added beta version install instructions, fixed stable version install instruction
    JiriVanek authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    bec7fcd View commit details
    Browse the repository at this point in the history
  240. Fix Dataframe bug with numpy strings

    * small fix to append_column/ short col too long
    
    * write_df_compat sole test
    
    * fix bug for np.string not converted to vlen_str
    
    * Revert "write_df_compat sole test" in this branch
    
    This reverts commit a1c0ab1.
    hkchekc authored and achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    e130af1 View commit details
    Browse the repository at this point in the history
  241. [compile] Search both /usr and /usr/local by default

    When looking for NIX to compile cross-compatibility tests, search both
    in /usr and /usr/local directories, as well as any directories supplied
    by the user through the env vars (NIX_LIBDIR, NIX_INCDIR, BOOST_LIBDIR,
    BOOST_INCDIR)
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    6b42acd View commit details
    Browse the repository at this point in the history
  242. Configuration menu
    Copy the full SHA
    e18638f View commit details
    Browse the repository at this point in the history
  243. Reimplementing force-compat test option

    Old way is deprecated and produces warnings.
    Now building in conftest and sending bindir to tests via fixture. Tests
    are disabled by being marked with 'skip' if the build fails and
    force-compat is not specified.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    20c86b9 View commit details
    Browse the repository at this point in the history
  244. Run compatibility tests only when requested

    The compatibility tests are no longer run by default when NIX is
    detected. They can be run by specifying --nix-compat. If specified, the
    tests are compiled and any errors will cause failure of the
    compatibility tests. If the option is not specified, the tests are
    skipped, even if NIX is available.
    
    One reason for this change is that the compatibility tests were always
    compiled when NIX was available, even when they are unselected, and
    compilation slows down the tests.
    
    With this change, they are only compiled and run when explicitly
    enabled.
    achilleas-k committed Jan 17, 2019
    Configuration menu
    Copy the full SHA
    0572c55 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2019

  1. Rebase cleanup

    Rebasing of no-bindings-dev branch off master had leftover files that
    were modified in master after the merge-base. Removing them here.
    achilleas-k committed Jan 18, 2019
    Configuration menu
    Copy the full SHA
    3d03ed8 View commit details
    Browse the repository at this point in the history
  2. [MultiTag] Change extent behaviour to match NIX

    Counterpart to 779ee10 from before 1.5
    dev rebase.
    achilleas-k committed Jan 18, 2019
    Configuration menu
    Copy the full SHA
    102cfb3 View commit details
    Browse the repository at this point in the history
  3. [Tag] Change extent behaviour to match NIX

    Counterpart to cca977c from before 1.5
    dev rebase.
    achilleas-k committed Jan 18, 2019
    Configuration menu
    Copy the full SHA
    6487b8f View commit details
    Browse the repository at this point in the history
  4. Merge pull request G-Node#361 from achilleas-k/dev15

    Bindings removal and internals rewrite: Merge to master
    jgrewe committed Jan 18, 2019
    Configuration menu
    Copy the full SHA
    6de77cd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    389edd7 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2019

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