This release fixes issues #27 and #33.
Enlighter was generating a copy phase to place the resources into the target bundle, because Xcode originally didn't do that. This resulted in a conflicting copy phase in the build system. Which could be worked around by removed the .db/.sql as an explicit resource file of the project.
This is now fixed for Xcode 16+. Enlighter now lets Xcode do the copying.
Further, default values have always been reported as strings. E.g. this:
DEFAULT 'Hello'Would end up as the expression 'Hello', not as a parsed Hello string (e.g. in the constructor of the model structure). This has been improved a lot as described in #33, but still has some open ends for String-current-time conversions.