Slavi Pantaleev

Results 346 comments of Slavi Pantaleev

Thanks! A few things I've noticed: - you're not doing any versioning of the role and in `templates/requirements.yml`. Given that Wallabag is now at version `2.6.12` (as seen in your...

I'm not sure if this can be gotten to work that easily. I've adjusted it to define a `requirements_file` (`requirements.yml`), so that roles could be installed. Roles are installed now,...

Some Ansible modules, like `htpasswd`, import `passlib` like [this](https://github.com/ansible-collections/community.general/blob/85053728cebe31fcf4fc7ab63fbcd7d8b3a3c029/plugins/modules/htpasswd.py#L114-L116): ```python with deps.declare("passlib"): from passlib.apache import HtpasswdFile, htpasswd_context from passlib.context import CryptContext ``` **Any exception** being thrown during these imports will...

Sounds like the default setup (power-level-patching being disabled) still works OK, which is good! This issue should probably also be raised (and hopefully fixed) here: https://github.com/digitalentity/matrix_encryption_disabler

Even now, we introduce breaking changes all the time. We have to, in order to keep going forward. Major releases obviously imply minor releases, so it's a complication -- us...

The Traefik Ansible role should also be extensible enough to allow you to define new entrypoints (`ident` with an internal container port of `1234`) and expose additional ports (via something...

There are likely tens of such issues on this repository already. The case is always the same - Traefik fails to obtain an SSL certificate for the `matrix.` domain (but...

In f19f3bea2d83957dac90bd2bc7f1149213bd2c95 I've pushed some obvious fixes. I have also adjusted the path to the `webpack.config.js` file (though it was forgotten to be mentioned in the commit message). As the...

This depends on the Matrix client that is used. baibot tries to determine if it's been mentioned by inspecting the `m.mentions` field of message payload (as per the [user mentions...

Element Web/Desktop should be adding a `m.mentions` field. Only old Element on iOS and Android lacks support for it. ------ Element X supports threads in the sense that it can...