Thunderforge
Thunderforge
> In your case, you would want to use a `resolutionStrategy`, such as `rejectVersionIf`. This allows fine-grained control over versioning which falls outside of Maven's conventions. Can this plugin be...
For what it's worth, the Dependencies view in the newly released Intellij IDEA 2021.2 does what I want.
Regarding the calendar, [this page](https://en.uesp.net/wiki/Lore:Calendar#Arena_Calendar) says that the reference sheet included with the game shows a Tamriel-ified Gregorian calendar (which is pretty much what Morrowind and later use), but in...
Most apps that I see either clear the log out at the beginning of a session (this is what OpenMW does), so I'm not sure that timestamps are really necessary...
Looks like there is already some preliminary work for logging in the Debug class, like an unused `LOG_FILENAME` String constant and the` __file__` parameter. Would this system work with what...
I've had similar experiences as @abelsromero and would prefer that we use a logging library from the start. As the project grows, be relying on log files more and more...
[Easylogging++](https://muflihun.github.io/easyloggingpp/) seems to fit your requirement of being only a single header file and C++. Every other framework I see is multiple files, but have benefits by being very fast...
Just found out that SDL has [a built-in logging framework](https://wiki.libsdl.org/CategoryLog). Does that serve our purposes?
Which document style do we want to use in this app? It looks like several are [supported in Doxygen](https://www.stack.nl/~dimitri/doxygen/manual/docblocks.html).
I assume that means that multi-line comments look like this then: ``` /*! * A longer block */ ``` I asked because I was interested in adding some documentation to...