Ben Boyter
Ben Boyter
Add the ability to override all styles. This will mean changing the code to allow http://sparkjava.com/documentation#static-files static files by path. Need to investigate how to do these sort of changes...
Should add a shutdown hook allowing as clean as possible termination of the application. Java 8 makes this pretty easy, ``` Runtime.getRuntime().addShutdownHook(new Thread(() -> { // Do stuff in here...
Move the storage of the admin password into the database storage. Be sure to hash it as well. For logging in create a one time use password that is printed...
Would be nice to upgrade the UI somewhat. Switch from having white background to grey for bottom portion, white for the main elements and white for the top. Playing around...
Depending on the install some may find it easier to have an upgrade script.
Occasionally you want to be able to search restricted to a group of projects. It would be useful to add this to the UI. Probably can just add it as...
The current comparison page https://github.com/XAMPPRocky/tokei/blob/master/COMPARISON.md is a little out of date. Would be good to update it. Loc is now at version 0.5.0 Scc is now at version 2.3.0 Cloc...
If go-gitignore is supplied with a gitignore that consists of a single character `/` then it will panic with the following, ``` panic: runtime error: slice bounds out of range...
Needs to be there to allow setting up how scc should count things without needing to invoke arcane commands. Possibly allow a global one as well? Something to consider. It...
https://github.com/boyter/scc/pull/364 See the problem mentioned above. How to cater for these situations? Seems like it is language specific, so perhaps the old plan of custom implementations for some languages is...