Liam

Results 11 comments of Liam

This would also be useful for me, I tried adding the "£" character but I cannot access it via the suggested "\x7f" encoding because I'm using Java/Kotlin, and that's an...

The closest I've come to getting the actual file name is via some protected methods: ```kotlin val ttf = FontAccess.getFontAccess().getFont2D(segoeScript) as TrueTypeFont println(ttf.getPublicFileName()) ///////// getPublicFileName() is a protected function ```...

Because I am hoping to build an app (similar to https://github.com/pavius/the-dot-factory ) for a Rasperry Pi project I have. I need access to the system fonts. Surely that's not an...

I prepared a local build for my Raspberry Pi 4, and it just worked. I added: ```kotlin kotlin { infra { target("linuxArm32Hfp") } } ``` To `build.gradle.kts` and executed `gradle...

Thank you. After I wrote the link extension I had the feeling I had gone down the wrong path. I will take a look at ext-jekyll.

The workaround is to manually delete the `test_delete` method from the API gateway manually, then redeploy.

May be the same as #121 - there is nothing unusual about the folder path D:\Development\Games\TheAlchemist\src\commonMain\resources\sprites\icons\seeds

I saw the note not to upgrade to 4.10.1, so I didn't.

Closing as ext-jekyll provided the template for the solution.

I find it works with Typescript, but VSCode doesn't like the `options` parameter. ``` notifier.danger('Error saving: ' + error, { persist: true }); ``` VSCode underlines `{ persist: true}` because...