]> git.mdlowis.com Git - archive/tide-ocaml.git/shortlog
archive/tide-ocaml.git
2017-12-12 Michael D.... tweaked lexers for text and ruby lexers
2017-12-12 Michael D.... first attempt at extending lexers
2017-12-12 Michael D.... Added logic to pick lexers based on filename and filetype
2017-12-09 Michael D.... added context to lexer logic and added range handling...
2017-12-09 Michael D.... updated docs
2017-12-08 Michael D.... fleshed out highlighter rules for C
2017-12-08 Michael D.... first pass at syntax highlighting for c. most things...
2017-12-07 Michael D.... started integrating lexers
2017-12-04 Michael D.... laid the ground work for lexer integration for syntax...
2017-12-03 Michael D.... added lexers to libtide
2017-11-25 Michael D.... added rule for generating lexers
2017-11-23 Michael D.... overhauled makefile rules
2017-11-20 Michael D.... updated html docs
2017-11-18 Michael D.... updated dependency tracking
2017-11-18 Michael D.... added descriptions to tools
2017-11-18 Michael D.... updated docs
2017-11-18 Michael D.... fixed ocamldeps dependency tracking
2017-11-14 Michael D.... Added some tool scripts for use later. Also added the...
2017-11-14 Michael D.... fleshed out tests for rope module
2017-11-13 Michael D.... added stub unit test files and switched Draw.ml over...
2017-11-13 Michael D.... fixed Rope.nextln/prevln which was breaking scrolling
2017-11-13 Michael D.... Fixed an out of bounds error in rope. Turned on excepti...
2017-11-11 Michael D.... broke view module out into it's own file and updated...
2017-11-11 Michael D.... fixed up scroll parameters
2017-11-10 Michael D.... Updated scrollbar to adjust thumb position based on...
2017-11-10 Michael D.... added minimum thumb size
2017-11-10 Michael D.... updated drawing code to draw scrollbar thumb based...
2017-11-09 Michael D.... fixed join operation and some broken unit tests. Also...
2017-11-09 Michael D.... Added node coalescing to join
2017-11-08 Michael D.... Implemented various cursor and offset movement and...
2017-11-08 Michael D.... Fixed scrolling and cleaned up buffer/cursor interface
2017-11-08 Michael D.... totally broke scrolling but im not sure how...
2017-11-07 Michael D.... Removed rope accessor from buf.ml and switched scrollma...
2017-11-07 Michael D.... Switched scrollmap over to using the cursor
2017-11-07 Michael D.... switched glyph cache from a map to a hashtable
2017-11-07 Michael D.... sketched out cursor inerface a bit more
2017-11-07 Michael D.... added cursor type and manipulation functions
2017-11-07 Michael D.... reworked index manipulation for next and previous lines...
2017-11-06 Michael D.... Added todo file to track bugs and issues that need...
2017-11-06 Michael D.... fixed bug in scrollmap creation that was creating empty...
2017-11-06 Michael D.... Added documentation generation for lib files
2017-11-04 Michael D.... added and tested nextc and prevc functions. Updated...
2017-11-03 Michael D.... added getb function and height tracking to rope
2017-10-31 Michael D.... getc now returns newlines for windows line endings
2017-10-31 Michael D.... whittled down rope.ml and added an interface file
2017-10-28 Michael D.... added some more utf8 examples
2017-10-27 Michael D.... Added test documents to test preformance for specific...
2017-10-27 Michael D.... Fixed compiler warnings
2017-10-27 Michael D.... removed vestigial run_unit_tests function from scrollmap
2017-10-27 Michael D.... moved unit tests to separate modules and folder
2017-10-27 Michael D.... tweaked scrollmap implementation. Behavior is still...
2017-10-26 Michael D.... First, buggy, attempt at scrolling using a scrollmap...
2017-10-26 Michael D.... implemented scanning portion of scrollmap generation
2017-10-25 Michael D.... Added skeleton logic for building the scrollmap
2017-10-25 Michael D.... overhauled drawing code to hopefully allow reuse for...
2017-10-25 Michael D.... fixed some warnings about record member access in draw.ml
2017-10-25 Michael D.... overhauled drawing code to use new mutable cursor type
2017-10-24 Michael D.... Added functions for drawing the regions. stubs currentl...
2017-10-24 Michael D.... Added acme command cheatsheet
2017-10-24 Michael D.... Added draw module and functions for common drawing...
2017-10-24 Michael D.... tweaked interfaces and added a scrollmap hook for unit...
2017-10-24 Michael D.... Added scrollmap and remove some unnecessary functions
2017-10-24 Michael D.... implemented tab handling
2017-10-23 Michael D.... added some basic functions for navigating a rope
2017-10-21 Michael D.... added function to create a cursor
2017-10-21 Michael D.... Added unit minimal unit testing framework
2017-10-20 Michael D.... stripped buf down to bare minimum
2017-10-18 Michael D.... removed X11.flip
2017-10-18 Michael D.... added grouping logic to glyphs drawn with the same...
2017-10-18 Michael D.... simplified event loop until the implementation is flesh...
2017-10-17 Michael D.... added file descriptor polling to event loop
2017-10-16 Michael D.... Added some timestamps for event loop profiling
2017-10-16 Michael D.... tweak glyph drawing
2017-10-13 Michael D.... Added logic to draw edit buffer to the edit region
2017-10-11 Michael D.... replaced imperative iterator with more idiomatic iter_f...
2017-10-09 Michael D.... added glyph caching to X11 module to speed up redraw
2017-10-07 Michael D.... implemented Buf.load
2017-10-07 Michael D.... Added function to load file to string
2017-10-03 Michael D.... minor cleanup
2017-10-02 Michael D.... refactored drawing code to draw each region's backgroun...
2017-09-28 Michael D.... sketched out basic window drawing code
2017-09-27 Michael D.... Added preliminary buffer implementation based on a...
2017-09-13 Michael D.... tweaked draw_glyph to align proportional font glyphs
2017-09-12 Michael D.... prototyped drawing a cursor
2017-09-12 Michael D.... Added logic for drawing strings to the window
2017-09-12 Michael D.... implemented glyph retrieval primitive for loaded font
2017-09-11 Michael D.... more minor cleanup
2017-09-11 Michael D.... minor cleanup
2017-09-11 Michael D.... added primitive for laoding a font into an ocaml type...
2017-09-08 Michael D.... fixed update event to ensure correct behavior
2017-09-08 Michael D.... Sketched out config option handling
2017-09-07 Michael D.... Added draw rectangle fucntion to x11
2017-09-07 Michael D.... onshutdown wasnt a fucntion before but is now. ocaml...
2017-09-07 Michael D.... fixed segfault in handling of TShutdown
2017-09-06 Michael D.... rework event handling to call dedicated functions for...
2017-09-06 Michael D.... added code to destructure events and call subfunctions...
2017-09-05 Michael D.... removed resize event in favor of Update event with...
2017-09-05 Michael D.... Fixed xevent type handling in x11 primitives
2017-09-04 Michael D.... fleshed out event handling primitives a bit more. still...
2017-09-01 Michael D.... implemented skeleton event loop as an x11 primitive
next