mumo icon indicating copy to clipboard operation
mumo copied to clipboard

Mumble Moderator framework simplifying development of plugins that connect to Mumble servers via Ice. (handles basic ICE connectivity, contains basic module loading and message multiplexing)

Results 6 mumo issues
Sort by recently updated
recently updated
newest added

I tried setting it up/using it on Windows. 1. Install python 3.10 from MS Store 2. python -m pip install zeroc-ice 3. python mumo.py --app It works up to `Ice.loadSlice()`...

This PR adds support for connecting to Murmur via gRPC instead of Ice. Almost all of the Murmur Ice API is bridged to gRPC and existing modules do not need...

See [here](https://github.com/mumble-voip/mumo/blob/master/modules/test.py#L62). The `subscribeContextCallbacks` method was removed [when proper context menu support was added](https://github.com/mumble-voip/mumo/commit/cc68e673f1394d7284aaa5458d2fddebd330d38e#diff-3d8d9d8c1f01a2a983639dfdb9d32e0eL142). Considering there's the `samplecontext` module, that line should probably just be removed.

The function in [mumo.py line 251](https://github.com/mumble-voip/mumo/blob/master/mumo.py#L251) causes mumo to attach callbacks multiple times after running a longer time causing mumo plugins to answer multiple times to commands. Temporary fix is...

Doing so creates a warning as that property didn't exist before which can confuse users.

enhancement

As the title says, it'd be nice to have the [ServerAuthenticator](http://mumble.sourceforge.net/slice/Murmur/ServerAuthenticator.html#ServerAuthenticator) and [ServerUpdatingAuthenticator](http://mumble.sourceforge.net/slice/Murmur/ServerUpdatingAuthenticator.html#ServerUpdatingAuthenticator) callbacks exposed. This would allow one to implement an authenticator as a Mumo module rather than having...