Sébastien Règne

Results 65 comments of Sébastien Règne

- For a clickable link in the browser: right-click on the link, then _Cast to Kodi_. - For a link that is not clickable in the browser: select (highlight) the...

@jayshomebrew In the latest version 6.9.0 of Cast Kodi, there is a new option to pre-fill the field with the clipboard content.

@Tolriq I tested with active audio player, active video player, and no active player: everything is working. Do you see other test cases?

@Tolriq @a1rwulf When no player is active, there is no instance of `VideoPlayer`, but the `Player.GetProperties` method works. I had only tested with the `position` property which already [verifies](https://github.com/xbmc/xbmc/blob/07b189aac987b9b49a14ff6786dedb3e5aa3f566/xbmc/interfaces/json-rpc/PlayerOperations.cpp#L1550) that...

Thanks for the [`pathprefix`](https://www.11ty.dev/docs/config/#deploy-to-a-subdirectory-with-a-path-prefix) option. I will define both scripts in the _package.json_: ```JSON { "scripts": { "docs:build": "eleventy", "docs:serve": "eleventy --serve" } } ``` And execute this command in...

I am developing a project that aggregates several linters (using at API) : [Metalint](https://github.com/regseb/metalint). I integrate LintHTML and I found this difference by upgrading to version _0.9.0_. I can work...

If the default export isn't possible, the `linthtml` method should be exported _normally_. | Version | Import | | --- | --- | | 0.8.x | `import linthtml from "@linthtml/linthtml";`...

You can keep the default export to not break the API. And add the _normal_ export of the `linthtml` method. ```JavaScript // In 0.9.x and 0.10.x import LintHTML from "@linthtml/linthtml";...

@Wolvverine Two types of addresses are accepted: - IP address : `192.168.1.16` (Cast Kodi will use the default values and connect to `ws://192.168.1.16:9090/jsonrpc`) - Full address : `ws://192.168.1.16:18080/jsonrpc` Kodi user/password...

@chris48s @calebcartwright Is there anything I should do to advance this pull request?