aboutsummaryrefslogtreecommitdiff
path: root/module/output/terminal.scm (unfollow)
Commit message (Collapse)Author
2020-04-01Update remaining code to use new config scheme.Hugo Hörnquist
2020-03-31Attempt at decentralized configuration system.Hugo Hörnquist
Placing all possible configuration items in a central (parameters) module scales really badly. This idea that any module can register configuration parameters is better. The current implementation however has the drawback that it requires that the module exposing the parameter is loaded before the value can be sat, but that scales even worse. A probable solution would be to abandon binding everything to guile's module system, and instead let (util config) provide a `conf-ref' and a `conf-set!' procedures. A `define-configuration' similar to emacs `defcustom' could be of use, mainly for retroactively type checking parameters.
2020-03-23Remove deprecated get-time.Hugo Hörnquist
2020-02-18Freed datetime from its srfi-19 prison.Hugo Hörnquist
2020-02-14Add missing spaces in terminal output.Hugo Hörnquist
2020-02-14Repair terminal output.Hugo Hörnquist
2020-01-24Start of new date structures.Hugo Hörnquist
2020-01-22Fix basic ability to edit events.Hugo Hörnquist
2019-12-28Move config from module to config directory.Hugo Hörnquist
2019-12-24Rework program initialization.Hugo Hörnquist
Old init setup had the fancy idea to parse all files before anything could be done with them. This however led to problems when a part of the program which didn't care for the calendar files (such as text formatting). It also made testing performance almost impossible since to much code was run before I had a chance to init statprof.
2019-10-06Minor cleanup in scheme code.Hugo Hörnquist
2019-10-05Fix day-stream, and in effect terminal output.Hugo Hörnquist
2019-10-04HTML output seems to work in full now.Hugo Hörnquist
2019-06-01Reword terminal output to better modularization.Hugo Hörnquist
2019-06-01Rename {terminal => vulgar}.Hugo Hörnquist
2019-06-01Work on cloning events through editor.Hugo Hörnquist
2019-05-04Handle no event groups in interval.Hugo Hörnquist
2019-04-25Change vulgar output to also use grouped events.Hugo Hörnquist
2019-04-25Made SUMMARY stick out in vulgar view.Hugo Hörnquist
2019-04-24Made keys in vulgar output bold.Hugo Hörnquist
2019-04-24Remembered about define-values existance.Hugo Hörnquist
2019-04-24Add 'from' and 'to' flags to HTML.Hugo Hörnquist
2019-04-24Improve text layout code.Hugo Hörnquist
2019-04-23Term display now reacts more to terminal size.Hugo Hörnquist
2019-04-23Get terminal size of terminal output.Hugo Hörnquist
2019-04-23Replace text-flow function.Hugo Hörnquist
2019-04-23Add ability to set start-date of term mode.Hugo Hörnquist
2019-04-23Move stuff from main.Hugo Hörnquist
2019-04-23Add command line option parsing.Hugo Hörnquist
2019-04-23Fix terminal output.Hugo Hörnquist
2019-04-23Change how util is loaded.Hugo Hörnquist
2019-04-23Rename module vcalendar => vcomponent.Hugo Hörnquist
2019-04-22General cleanup.Hugo Hörnquist
2019-04-22Add rudamentary HTML output.HTMLHugo Hörnquist
2019-04-21Move where streams are merged.Hugo Hörnquist
2019-04-20Rename (vcalendar {recur => recurrence}).Hugo Hörnquist
2019-04-20Add binding to dump vcomponent to stdout.Hugo Hörnquist
2019-04-10Minor cleanups.Hugo Hörnquist
2019-04-09Start using multi-set!Hugo Hörnquist
2019-04-09Add slightly better terminal drawing procedures.Hugo Hörnquist
2019-03-29Minor whitespace fixup.Hugo Hörnquist
2019-03-29Replace recur loop with while.Hugo Hörnquist
2019-03-29Add summary-filter to SUMMARY field.Hugo Hörnquist
2019-03-29Move TTY input to end of loop.Hugo Hörnquist
2019-03-25Fix #\q in main loop.Hugo Hörnquist
2019-03-25Minor cleanups.Hugo Hörnquist
2019-03-25Fix events being dropped by sorting them.Hugo Hörnquist
2019-03-25Replace one filter.Hugo Hörnquist
2019-03-22Move C and Scheme code into subdirs.Hugo Hörnquist
2019-03-22Move take-to to util.Hugo Hörnquist