aboutsummaryrefslogtreecommitdiff
path: root/src (unfollow)
Commit message (Collapse)Author
2019-04-10Rework how attributes and properties are accessed.Hugo Hörnquist
Made the fact that properties belong to an attribute shine through to scheme. This by setting the SCM field in the strbuf:ers in my vcomponents to a pair of their old SCM value, and a hash table representing the properties. This also meant that the primitive set-attribute! could be replaced by a set-car! on the pair returned by the primitive get-attribute. And that both set- and get-property now simple works on the hash table returned by get-attribute. The major problem with this release was that I for a while missed that DEEP_COPY(strbuf) now also needed to deep copy the SCM values. Without that attributes in a copied vcomponent would be shared with the original. This mainly lead to repeating events all being the same.
2019-04-10Add some stuff to guile_type_helpers.Hugo Hörnquist
2019-04-06Add temporary set-attributes!Hugo Hörnquist
2019-04-06Rename get_property to get_attributes.Hugo Hörnquist
2019-04-05Remove old termios bindings.Hugo Hörnquist
2019-03-31Add (read only) property access from scheme.Hugo Hörnquist
2019-03-31Add cval field to LLIST.Hugo Hörnquist
2019-03-29Cal name now set to basename of path.Hugo Hörnquist
2019-03-25Minor cleanups.Hugo Hörnquist
2019-03-24Add VIRTUAL vcomponents.Hugo Hörnquist
VIRTUAL vcomponents are vcomponents created without a source. Their primiary purpose is for creating brand new events, which will later be dumped to the proper files. They can however also be used in testing for great effect.
2019-03-22Add comment on NAME attr.Hugo Hörnquist
2019-03-22Add tests to C main.Hugo Hörnquist
2019-03-22Fix error when setting attr before ever accessing it.Hugo Hörnquist
2019-03-22Add empty constructor for vcomponent.Hugo Hörnquist
2019-03-22Fix GET(TRIE(T)) erroring when target was a neighbour.Hugo Hörnquist
2019-03-22Fix errors shown by scan-build.Hugo Hörnquist
2019-03-22Move C and Scheme code into subdirs.Hugo Hörnquist