aboutsummaryrefslogtreecommitdiff
path: root/module/main.scm (unfollow)
Commit message (Collapse)Author
2020-07-20Change TODO to NOTE.Hugo Hörnquist
2020-07-07Remove faulty top error handler from main.Hugo Hörnquist
2020-07-07Fix check for empty log file.Hugo Hörnquist
2020-07-07Merge (datetime util) into (datetime).Hugo Hörnquist
2020-06-10Add --config flag.Hugo Hörnquist
2020-06-10Main error handler how handles different arities.Hugo Hörnquist
2020-06-05Add TODO about -o in sub-commands.Hugo Hörnquist
2020-06-05Minor parse fix for -o, + spelling.Hugo Hörnquist
2020-06-05Change top error handler.Hugo Hörnquist
2020-06-01Break text procedures into modules.Hugo Hörnquist
2020-06-01Remove *TOP* tags from descriptions.Hugo Hörnquist
2020-06-01Extend and document benchmark main.Hugo Hörnquist
2020-06-01Add --option flag.Hugo Hörnquist
2020-06-01Fix configuration help, print with --help.Hugo Hörnquist
2020-05-23Remove (vcomponent output) module.Hugo Hörnquist
2020-05-04Remove execute-flag from module/main.scm.Hugo Hörnquist
2020-05-04Remove 'info' entry point.Hugo Hörnquist
2020-05-04Slightly change main --help.Hugo Hörnquist
2020-05-04Add --help to main!Hugo Hörnquist
2020-05-04Allow program to throw 'return to exit gracefully.Hugo Hörnquist
2020-05-04Add shutdown-hook.Hugo Hörnquist
2020-05-01Add missing dependency.Hugo Hörnquist
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