aboutsummaryrefslogtreecommitdiff
path: root/module/main.scm (unfollow)
Commit message (Collapse)Author
2020-04-30Minor changes.Hugo Hörnquist
2020-04-30Update ical parts to use app context.Hugo Hörnquist
2020-04-30Add global basedir var.Hugo Hörnquist
2020-04-30Move environment setup to standalone sh file.Hugo Hörnquist
2020-04-07Introduce --repl.Hugo Hörnquist
2020-04-05Minor changes.Hugo Hörnquist
2020-04-03Enable REPL server in main.Hugo Hörnquist
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-18Remove output flag to main main.Hugo Hörnquist
2020-03-09Sprinkled in some time prints.Hugo Hörnquist
2020-02-18Freed datetime from its srfi-19 prison.Hugo Hörnquist
2020-01-30Once again compiles.Hugo Hörnquist
2019-12-30Add simple benchmark main.Hugo Hörnquist
2019-12-28Made error on missing main not print trace.Hugo Hörnquist
2019-12-28Allow running without config file.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-11-11Add error for invalid main.Hugo Hörnquist
2019-11-05Move remaining stuff out of vcomponent.Hugo Hörnquist
2019-11-04Set geiser scheme to guile in main.Hugo Hörnquist
2019-11-04Slight improvement to main.Hugo Hörnquist
2019-11-03Remove make-vcomponent.Hugo Hörnquist
2019-10-29Start work on ical output.Hugo Hörnquist
2019-10-29Move env init out from main.scm.Hugo Hörnquist
2019-10-08Remove 'none' output.Hugo Hörnquist
This dummy output was earlier used to force a compilation, but since I have (hopefully) figured out how to actually compile stuff it's no longer necesarry.
2019-10-04HTML output seems to work in full now.Hugo Hörnquist
2019-10-03Locate bug with DTEND.Hugo Hörnquist
2019-10-01Add --width flag to format.Hugo Hörnquist
2019-09-26Add missing '$' sign in main.Hugo Hörnquist
2019-07-21Rewrote build and main execution.Hugo Hörnquist
2019-05-29Reword how statprof is loaded.Hugo Hörnquist
2019-05-13Add basic server.Hugo Hörnquist
2019-05-08Add flags for just running the text flower.Hugo Hörnquist
It's twisted if one program should do many things, or just a single thing. If we assume that this program does two things: reading calendar files, and writing output, then it should be ok to allow any of those parts to run independentally of the other. Making it ok to just run the text flower.
2019-05-01Add options to --statprof.Hugo Hörnquist
2019-04-25Move statprof to encompass all.Hugo Hörnquist
2019-04-25Made none-output print statprof info.Hugo Hörnquist
2019-04-24Add option to disable everything.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