David Herman
David Herman
Sounds like you're asking for two separate things here... 1) How to set up to use Kobweb 2) A list of all artifacts / modules Kobweb generates ### Build setup...
New Vanniktech user here, and I agree with the issue opened here. I have a case where locally I have a keyring file for signing, but I use in memory...
I believe the Vanniktech code could be updated like so: ```kotlin val inMemoryKeyId = project.findOptionalProperty("signingInMemoryKeyId") ?: project.findOptionalProperty("signing.keyId") val inMemoryKeyPassword = project.findOptionalProperty("signingInMemoryKeyPassword") ?: project.findOptionalProperty("signing.password") ?: "" ``` which would allow using...
FYI without power over here (in Southern California but in a totally safe place, they're just being cautious). Will review after getting power back, no idea when that will be....
(Set to 1.1 so this won't get lost in the noise in the future. Not against this going into 1.0 by any means though.)
Here's how I'm implementing it locally: ``` sealed class FlexBasis { companion object { val Fill get() = StringFlexBasis("fill") val MaxContent get() = StringFlexBasis("max-content") val MinContent get() = StringFlexBasis("min-content") val...
> Thanks for the fixes. Merging shortly. Sorry this hasn't gone in yet. I learned I responded too early, Dennis hadn't finished his review yet. Apologies for this -- that...
@sandeepjak2007 It does not seem like I can reopen this PR (GitHub UI shows me a greyed out button and says reopening is impossible because the repository backing it has...
> Can I raise the other API with Same changes? Sorry I don't understand the question.
Huh, I'm not sure why the ignore trailing slash plugin would have any difference on a URL (`"/about"`) that doesn't have a trailing slash. It seems that removing the plugin...