Plugin assets (css file) are not loaded - need help

Hi

I'm developing a plugin for Joplin for which I need some custom css. I defined it like this:

module.exports = {
    default: function (context) {
        return {
            plugin: plugin,
            assets: function () {
                return [
                    { name: './todoKanban.css' }
                ];
            }
        }
    }
}

CSS file is in the same directory. Unfortunately it is not being picked up. What I'm doing wrong?

Link to source code - it's very small so far. Joplin version 1.4.18 (also tried 1.5.7). Ubuntu 20.04

Also I tried "inline" style - and it does not work as well. Defining style in html element works.

Sample note that I'm using for testing:

# Test me

## Column 1

- [ ] task 11
- [ ] task 12

## Column 2

- [ ] task 21

## Column 3

Does it work without ./? As in { name: 'todoKanban.css' }

Hi. No, it does not.

Also it does not work if I use inline styles like this:

function pluginAssets() {
    return [
        {
            inline: true,
            mime: 'text/css',
            text: `
            .kanban-column {
                float: left;
              }`,
        },
        //{ name: './todoKanban.css'}
    ];
}

Don't understand what I'm doing wrong.

Turns out it wasn't implemented at all. But I've just added the feature and it will be in the next pre-release.

Awesome. Thanks a lot for your time!

btw, when the next pre-release will be available?