mopidy 4.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mopidy-4.0.0/.github/ISSUE_TEMPLATE/bug.md +31 -0
- mopidy-4.0.0/.github/ISSUE_TEMPLATE/config.yml +5 -0
- mopidy-4.0.0/.github/ISSUE_TEMPLATE/extension.md +12 -0
- mopidy-4.0.0/.github/ISSUE_TEMPLATE/feature.md +10 -0
- mopidy-4.0.0/.github/codecov.yml +5 -0
- mopidy-4.0.0/.github/workflows/ci.yml +70 -0
- mopidy-4.0.0/.github/workflows/release.yml +23 -0
- mopidy-4.0.0/.github/workflows/ubuntu-devel.yml +32 -0
- mopidy-4.0.0/.gitignore +11 -0
- mopidy-4.0.0/.mailmap +55 -0
- mopidy-4.0.0/.pre-commit-config.yaml +24 -0
- mopidy-4.0.0/.readthedocs.yml +76 -0
- mopidy-4.0.0/AUTHORS +151 -0
- mopidy-4.0.0/LICENSE +202 -0
- mopidy-4.0.0/PKG-INFO +70 -0
- mopidy-4.0.0/README.md +38 -0
- mopidy-4.0.0/docs/about/authors-update.sh +6 -0
- mopidy-4.0.0/docs/about/authors.md +17 -0
- mopidy-4.0.0/docs/about/codestyle.md +12 -0
- mopidy-4.0.0/docs/about/contributing.md +97 -0
- mopidy-4.0.0/docs/about/devenv.md +543 -0
- mopidy-4.0.0/docs/about/index.md +28 -0
- mopidy-4.0.0/docs/about/releasing.md +87 -0
- mopidy-4.0.0/docs/about/sponsors.md +14 -0
- mopidy-4.0.0/docs/about/versioning.md +33 -0
- mopidy-4.0.0/docs/changelog/0.x.md +2528 -0
- mopidy-4.0.0/docs/changelog/1.x.md +840 -0
- mopidy-4.0.0/docs/changelog/2.x.md +465 -0
- mopidy-4.0.0/docs/changelog/3.x.md +429 -0
- mopidy-4.0.0/docs/changelog/index.md +306 -0
- mopidy-4.0.0/docs/ext/file.md +69 -0
- mopidy-4.0.0/docs/ext/http.md +116 -0
- mopidy-4.0.0/docs/ext/index.md +22 -0
- mopidy-4.0.0/docs/ext/m3u.md +61 -0
- mopidy-4.0.0/docs/ext/softwaremixer.md +30 -0
- mopidy-4.0.0/docs/ext/stream.md +56 -0
- mopidy-4.0.0/docs/guides/audiosinks.md +45 -0
- mopidy-4.0.0/docs/guides/debian.md +333 -0
- mopidy-4.0.0/docs/guides/extensiondev.md +658 -0
- mopidy-4.0.0/docs/guides/icecast.md +84 -0
- mopidy-4.0.0/docs/guides/index.md +32 -0
- mopidy-4.0.0/docs/guides/pipewire.md +40 -0
- mopidy-4.0.0/docs/guides/pulseaudio.md +47 -0
- mopidy-4.0.0/docs/guides/raspberrypi.md +154 -0
- mopidy-4.0.0/docs/guides/upnp.md +64 -0
- mopidy-4.0.0/docs/images/logo.png +0 -0
- mopidy-4.0.0/docs/index.md +37 -0
- mopidy-4.0.0/docs/installation/index.md +10 -0
- mopidy-4.0.0/docs/installation/manual.md +178 -0
- mopidy-4.0.0/docs/installation/packages.md +216 -0
- mopidy-4.0.0/docs/reference/architecture.md +104 -0
- mopidy-4.0.0/docs/reference/audio.md +23 -0
- mopidy-4.0.0/docs/reference/backend.md +61 -0
- mopidy-4.0.0/docs/reference/command.md +115 -0
- mopidy-4.0.0/docs/reference/config.md +17 -0
- mopidy-4.0.0/docs/reference/core.md +5 -0
- mopidy-4.0.0/docs/reference/exceptions.md +5 -0
- mopidy-4.0.0/docs/reference/ext.md +8 -0
- mopidy-4.0.0/docs/reference/frontend.md +41 -0
- mopidy-4.0.0/docs/reference/glossary.md +30 -0
- mopidy-4.0.0/docs/reference/http-server.md +175 -0
- mopidy-4.0.0/docs/reference/http.md +86 -0
- mopidy-4.0.0/docs/reference/httpclient.md +5 -0
- mopidy-4.0.0/docs/reference/index.md +52 -0
- mopidy-4.0.0/docs/reference/js.md +10 -0
- mopidy-4.0.0/docs/reference/mixer.md +9 -0
- mopidy-4.0.0/docs/reference/models.md +78 -0
- mopidy-4.0.0/docs/reference/types.md +12 -0
- mopidy-4.0.0/docs/reference/zeroconf.md +5 -0
- mopidy-4.0.0/docs/usage/clients.md +78 -0
- mopidy-4.0.0/docs/usage/config.md +284 -0
- mopidy-4.0.0/docs/usage/index.md +13 -0
- mopidy-4.0.0/docs/usage/service.md +164 -0
- mopidy-4.0.0/docs/usage/terminal.md +101 -0
- mopidy-4.0.0/docs/usage/troubleshooting.md +174 -0
- mopidy-4.0.0/extra/desktop/mopidy.desktop +11 -0
- mopidy-4.0.0/extra/mopidyctl/mopidyctl +24 -0
- mopidy-4.0.0/extra/mopidyctl/mopidyctl.8 +17 -0
- mopidy-4.0.0/extra/systemd/mopidy.service +17 -0
- mopidy-4.0.0/pyproject.toml +243 -0
- mopidy-4.0.0/setup.cfg +4 -0
- mopidy-4.0.0/src/mopidy/__init__.py +14 -0
- mopidy-4.0.0/src/mopidy/_app/__init__.py +0 -0
- mopidy-4.0.0/src/mopidy/_app/cli.py +224 -0
- mopidy-4.0.0/src/mopidy/_app/config.py +380 -0
- mopidy-4.0.0/src/mopidy/_app/config_keyring.py +189 -0
- mopidy-4.0.0/src/mopidy/_app/default.conf +25 -0
- mopidy-4.0.0/src/mopidy/_app/deps.py +200 -0
- mopidy-4.0.0/src/mopidy/_app/extensions.py +299 -0
- mopidy-4.0.0/src/mopidy/_app/logs.py +141 -0
- mopidy-4.0.0/src/mopidy/_app/process.py +66 -0
- mopidy-4.0.0/src/mopidy/_app/server.py +261 -0
- mopidy-4.0.0/src/mopidy/_exts/file/__init__.py +32 -0
- mopidy-4.0.0/src/mopidy/_exts/file/backend.py +24 -0
- mopidy-4.0.0/src/mopidy/_exts/file/ext.conf +19 -0
- mopidy-4.0.0/src/mopidy/_exts/file/library.py +170 -0
- mopidy-4.0.0/src/mopidy/_exts/file/types.py +11 -0
- mopidy-4.0.0/src/mopidy/_exts/http/__init__.py +60 -0
- mopidy-4.0.0/src/mopidy/_exts/http/actor.py +244 -0
- mopidy-4.0.0/src/mopidy/_exts/http/data/clients.html +31 -0
- mopidy-4.0.0/src/mopidy/_exts/http/data/favicon.ico +0 -0
- mopidy-4.0.0/src/mopidy/_exts/http/data/mopidy.css +43 -0
- mopidy-4.0.0/src/mopidy/_exts/http/ext.conf +8 -0
- mopidy-4.0.0/src/mopidy/_exts/http/handlers.py +327 -0
- mopidy-4.0.0/src/mopidy/_exts/http/jsonrpc.py +487 -0
- mopidy-4.0.0/src/mopidy/_exts/http/network.py +31 -0
- mopidy-4.0.0/src/mopidy/_exts/http/types.py +33 -0
- mopidy-4.0.0/src/mopidy/_exts/m3u/__init__.py +30 -0
- mopidy-4.0.0/src/mopidy/_exts/m3u/backend.py +23 -0
- mopidy-4.0.0/src/mopidy/_exts/m3u/ext.conf +6 -0
- mopidy-4.0.0/src/mopidy/_exts/m3u/playlists.py +202 -0
- mopidy-4.0.0/src/mopidy/_exts/m3u/translator.py +106 -0
- mopidy-4.0.0/src/mopidy/_exts/m3u/types.py +11 -0
- mopidy-4.0.0/src/mopidy/_exts/softwaremixer/__init__.py +21 -0
- mopidy-4.0.0/src/mopidy/_exts/softwaremixer/ext.conf +2 -0
- mopidy-4.0.0/src/mopidy/_exts/softwaremixer/mixer.py +71 -0
- mopidy-4.0.0/src/mopidy/_exts/stream/__init__.py +28 -0
- mopidy-4.0.0/src/mopidy/_exts/stream/actor.py +200 -0
- mopidy-4.0.0/src/mopidy/_exts/stream/ext.conf +11 -0
- mopidy-4.0.0/src/mopidy/_exts/stream/http.py +68 -0
- mopidy-4.0.0/src/mopidy/_exts/stream/parsers.py +145 -0
- mopidy-4.0.0/src/mopidy/_lib/__init__.py +0 -0
- mopidy-4.0.0/src/mopidy/_lib/gi.py +91 -0
- mopidy-4.0.0/src/mopidy/_lib/logs.py +18 -0
- mopidy-4.0.0/src/mopidy/_lib/paths.py +181 -0
- mopidy-4.0.0/src/mopidy/_lib/process.py +12 -0
- mopidy-4.0.0/src/mopidy/audio/__init__.py +12 -0
- mopidy-4.0.0/src/mopidy/audio/_api.py +161 -0
- mopidy-4.0.0/src/mopidy/audio/_gst.py +755 -0
- mopidy-4.0.0/src/mopidy/audio/_listener.py +93 -0
- mopidy-4.0.0/src/mopidy/audio/_utils.py +93 -0
- mopidy-4.0.0/src/mopidy/audio/scan.py +412 -0
- mopidy-4.0.0/src/mopidy/audio/tags.py +216 -0
- mopidy-4.0.0/src/mopidy/backend/__init__.py +18 -0
- mopidy-4.0.0/src/mopidy/backend/_backend.py +99 -0
- mopidy-4.0.0/src/mopidy/backend/_library.py +112 -0
- mopidy-4.0.0/src/mopidy/backend/_listener.py +29 -0
- mopidy-4.0.0/src/mopidy/backend/_playback.py +184 -0
- mopidy-4.0.0/src/mopidy/backend/_playlists.py +99 -0
- mopidy-4.0.0/src/mopidy/config/__init__.py +58 -0
- mopidy-4.0.0/src/mopidy/config/_types.py +125 -0
- mopidy-4.0.0/src/mopidy/config/schemas.py +143 -0
- mopidy-4.0.0/src/mopidy/config/types.py +506 -0
- mopidy-4.0.0/src/mopidy/config/validators.py +61 -0
- mopidy-4.0.0/src/mopidy/core/__init__.py +28 -0
- mopidy-4.0.0/src/mopidy/core/_actor.py +341 -0
- mopidy-4.0.0/src/mopidy/core/_history.py +81 -0
- mopidy-4.0.0/src/mopidy/core/_library.py +388 -0
- mopidy-4.0.0/src/mopidy/core/_listener.py +203 -0
- mopidy-4.0.0/src/mopidy/core/_mixer.py +135 -0
- mopidy-4.0.0/src/mopidy/core/_playback.py +597 -0
- mopidy-4.0.0/src/mopidy/core/_playlists.py +287 -0
- mopidy-4.0.0/src/mopidy/core/_state_storage.py +202 -0
- mopidy-4.0.0/src/mopidy/core/_tracklist.py +664 -0
- mopidy-4.0.0/src/mopidy/core/_validation.py +189 -0
- mopidy-4.0.0/src/mopidy/exceptions.py +38 -0
- mopidy-4.0.0/src/mopidy/ext/__init__.py +7 -0
- mopidy-4.0.0/src/mopidy/ext/_extension.py +128 -0
- mopidy-4.0.0/src/mopidy/ext/_registry.py +49 -0
- mopidy-4.0.0/src/mopidy/httpclient.py +52 -0
- mopidy-4.0.0/src/mopidy/listener.py +53 -0
- mopidy-4.0.0/src/mopidy/mixer/__init__.py +9 -0
- mopidy-4.0.0/src/mopidy/mixer/_listener.py +42 -0
- mopidy-4.0.0/src/mopidy/mixer/_mixer.py +122 -0
- mopidy-4.0.0/src/mopidy/models/__init__.py +16 -0
- mopidy-4.0.0/src/mopidy/models/_base.py +25 -0
- mopidy-4.0.0/src/mopidy/models/_collections.py +57 -0
- mopidy-4.0.0/src/mopidy/models/_models.py +147 -0
- mopidy-4.0.0/src/mopidy/models/_refs.py +85 -0
- mopidy-4.0.0/src/mopidy/models/_tracklist.py +49 -0
- mopidy-4.0.0/src/mopidy/py.typed +0 -0
- mopidy-4.0.0/src/mopidy/types.py +105 -0
- mopidy-4.0.0/src/mopidy/zeroconf.py +158 -0
- mopidy-4.0.0/src/mopidy.egg-info/PKG-INFO +70 -0
- mopidy-4.0.0/src/mopidy.egg-info/SOURCES.txt +303 -0
- mopidy-4.0.0/src/mopidy.egg-info/dependency_links.txt +1 -0
- mopidy-4.0.0/src/mopidy.egg-info/entry_points.txt +9 -0
- mopidy-4.0.0/src/mopidy.egg-info/requires.txt +8 -0
- mopidy-4.0.0/src/mopidy.egg-info/top_level.txt +1 -0
- mopidy-4.0.0/tests/__init__.py +6 -0
- mopidy-4.0.0/tests/_app/__init__.py +0 -0
- mopidy-4.0.0/tests/_app/test_cli.py +76 -0
- mopidy-4.0.0/tests/_app/test_config.py +189 -0
- mopidy-4.0.0/tests/_app/test_deps.py +118 -0
- mopidy-4.0.0/tests/_app/test_extensions.py +406 -0
- mopidy-4.0.0/tests/_app/test_logs.py +27 -0
- mopidy-4.0.0/tests/_exts/__init__.py +0 -0
- mopidy-4.0.0/tests/_exts/file/__init__.py +0 -0
- mopidy-4.0.0/tests/_exts/file/conftest.py +38 -0
- mopidy-4.0.0/tests/_exts/file/test_browse.py +56 -0
- mopidy-4.0.0/tests/_exts/file/test_lookup.py +33 -0
- mopidy-4.0.0/tests/_exts/http/__init__.py +0 -0
- mopidy-4.0.0/tests/_exts/http/test_events.py +29 -0
- mopidy-4.0.0/tests/_exts/http/test_extension.py +24 -0
- mopidy-4.0.0/tests/_exts/http/test_handlers.py +280 -0
- mopidy-4.0.0/tests/_exts/http/test_jsonrpc.py +717 -0
- mopidy-4.0.0/tests/_exts/http/test_network.py +40 -0
- mopidy-4.0.0/tests/_exts/http/test_server.py +534 -0
- mopidy-4.0.0/tests/_exts/m3u/__init__.py +0 -0
- mopidy-4.0.0/tests/_exts/m3u/test_playlists.py +368 -0
- mopidy-4.0.0/tests/_exts/m3u/test_translator.py +150 -0
- mopidy-4.0.0/tests/_exts/stream/__init__.py +0 -0
- mopidy-4.0.0/tests/_exts/stream/test_http.py +56 -0
- mopidy-4.0.0/tests/_exts/stream/test_library.py +62 -0
- mopidy-4.0.0/tests/_exts/stream/test_parsers.py +149 -0
- mopidy-4.0.0/tests/_exts/stream/test_playback.py +262 -0
- mopidy-4.0.0/tests/_lib/__init__.py +0 -0
- mopidy-4.0.0/tests/_lib/test_paths.py +233 -0
- mopidy-4.0.0/tests/_lib/test_paths_xdg.py +66 -0
- mopidy-4.0.0/tests/audio/__init__.py +0 -0
- mopidy-4.0.0/tests/audio/test_gst.py +705 -0
- mopidy-4.0.0/tests/audio/test_listener.py +40 -0
- mopidy-4.0.0/tests/audio/test_scan.py +122 -0
- mopidy-4.0.0/tests/audio/test_tags.py +383 -0
- mopidy-4.0.0/tests/backend/__init__.py +0 -0
- mopidy-4.0.0/tests/backend/test_backend.py +40 -0
- mopidy-4.0.0/tests/backend/test_listener.py +19 -0
- mopidy-4.0.0/tests/config/__init__.py +0 -0
- mopidy-4.0.0/tests/config/test_schemas.py +113 -0
- mopidy-4.0.0/tests/config/test_types.py +1356 -0
- mopidy-4.0.0/tests/config/test_validator.py +74 -0
- mopidy-4.0.0/tests/core/__init__.py +0 -0
- mopidy-4.0.0/tests/core/test_actor.py +307 -0
- mopidy-4.0.0/tests/core/test_events.py +108 -0
- mopidy-4.0.0/tests/core/test_history.py +114 -0
- mopidy-4.0.0/tests/core/test_library.py +651 -0
- mopidy-4.0.0/tests/core/test_listener.py +68 -0
- mopidy-4.0.0/tests/core/test_mixer.py +234 -0
- mopidy-4.0.0/tests/core/test_playback.py +1369 -0
- mopidy-4.0.0/tests/core/test_playlists.py +422 -0
- mopidy-4.0.0/tests/core/test_tracklist.py +291 -0
- mopidy-4.0.0/tests/core/test_validation.py +165 -0
- mopidy-4.0.0/tests/data/.skip_this_file +0 -0
- mopidy-4.0.0/tests/data/blank.flac +0 -0
- mopidy-4.0.0/tests/data/blank.mp3 +0 -0
- mopidy-4.0.0/tests/data/blank.ogg +0 -0
- mopidy-4.0.0/tests/data/blank.wav +0 -0
- mopidy-4.0.0/tests/data/comment-ext.m3u +5 -0
- mopidy-4.0.0/tests/data/comment.m3u +2 -0
- mopidy-4.0.0/tests/data/conf1.d/file1.conf +2 -0
- mopidy-4.0.0/tests/data/conf1.d/file2.conf +2 -0
- mopidy-4.0.0/tests/data/conf2.d/file1.conf +2 -0
- mopidy-4.0.0/tests/data/conf2.d/file2.conf.disabled +2 -0
- mopidy-4.0.0/tests/data/empty-ext.m3u +1 -0
- mopidy-4.0.0/tests/data/empty.m3u +0 -0
- mopidy-4.0.0/tests/data/encoding-ext.m3u +3 -0
- mopidy-4.0.0/tests/data/encoding.m3u +1 -0
- mopidy-4.0.0/tests/data/file1.conf +2 -0
- mopidy-4.0.0/tests/data/file2.conf +2 -0
- mopidy-4.0.0/tests/data/file3.conf +3 -0
- mopidy-4.0.0/tests/data/file4.conf +3 -0
- mopidy-4.0.0/tests/data/one-ext.m3u +3 -0
- mopidy-4.0.0/tests/data/one.m3u +1 -0
- mopidy-4.0.0/tests/data/scanner/advanced/song1.mp3 +0 -0
- mopidy-4.0.0/tests/data/scanner/advanced/song2.mp3 +0 -0
- mopidy-4.0.0/tests/data/scanner/advanced/song3.mp3 +0 -0
- mopidy-4.0.0/tests/data/scanner/advanced/subdir1/song4.mp3 +0 -0
- mopidy-4.0.0/tests/data/scanner/advanced/subdir1/song5.mp3 +0 -0
- mopidy-4.0.0/tests/data/scanner/advanced/subdir1/subsubdir/song8.mp3 +0 -0
- mopidy-4.0.0/tests/data/scanner/advanced/subdir1/subsubdir/song9.mp3 +0 -0
- mopidy-4.0.0/tests/data/scanner/advanced/subdir2/song6.mp3 +0 -0
- mopidy-4.0.0/tests/data/scanner/advanced/subdir2/song7.mp3 +0 -0
- mopidy-4.0.0/tests/data/scanner/empty/.gitignore +0 -0
- mopidy-4.0.0/tests/data/scanner/empty.wav +0 -0
- mopidy-4.0.0/tests/data/scanner/example.log +0 -0
- mopidy-4.0.0/tests/data/scanner/image/test.png +0 -0
- mopidy-4.0.0/tests/data/scanner/plain.txt +1 -0
- mopidy-4.0.0/tests/data/scanner/playlist.m3u +1 -0
- mopidy-4.0.0/tests/data/scanner/sample.mp3 +0 -0
- mopidy-4.0.0/tests/data/scanner/simple/song1.mp3 +0 -0
- mopidy-4.0.0/tests/data/scanner/simple/song1.ogg +0 -0
- mopidy-4.0.0/tests/data/song1.flac +0 -0
- mopidy-4.0.0/tests/data/song1.mp3 +0 -0
- mopidy-4.0.0/tests/data/song1.ogg +0 -0
- mopidy-4.0.0/tests/data/song1.wav +0 -0
- mopidy-4.0.0/tests/data/song2.flac +0 -0
- mopidy-4.0.0/tests/data/song2.mp3 +0 -0
- mopidy-4.0.0/tests/data/song2.ogg +0 -0
- mopidy-4.0.0/tests/data/song2.wav +0 -0
- mopidy-4.0.0/tests/data/song3.flac +0 -0
- mopidy-4.0.0/tests/data/song3.mp3 +0 -0
- mopidy-4.0.0/tests/data/song3.ogg +0 -0
- mopidy-4.0.0/tests/data/song3.wav +0 -0
- mopidy-4.0.0/tests/data/song4.wav +0 -0
- mopidy-4.0.0/tests/data/symlink.m3u +1 -0
- mopidy-4.0.0/tests/data/two-ext.m3u +5 -0
- mopidy-4.0.0/tests/dummy_audio.py +143 -0
- mopidy-4.0.0/tests/dummy_backend.py +149 -0
- mopidy-4.0.0/tests/dummy_mixer.py +30 -0
- mopidy-4.0.0/tests/factories.py +125 -0
- mopidy-4.0.0/tests/models/__init__.py +0 -0
- mopidy-4.0.0/tests/models/test_album.py +118 -0
- mopidy-4.0.0/tests/models/test_artist.py +79 -0
- mopidy-4.0.0/tests/models/test_image.py +27 -0
- mopidy-4.0.0/tests/models/test_playlist.py +159 -0
- mopidy-4.0.0/tests/models/test_ref.py +89 -0
- mopidy-4.0.0/tests/models/test_replace.py +37 -0
- mopidy-4.0.0/tests/models/test_search_result.py +60 -0
- mopidy-4.0.0/tests/models/test_tl_track.py +67 -0
- mopidy-4.0.0/tests/models/test_track.py +181 -0
- mopidy-4.0.0/tests/test_exceptions.py +28 -0
- mopidy-4.0.0/tests/test_ext.py +63 -0
- mopidy-4.0.0/tests/test_httpclient.py +47 -0
- mopidy-4.0.0/tests/test_mixer.py +25 -0
- mopidy-4.0.0/zensical.toml +248 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Create a bug report to help us improve.
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
If you are not sure about anything below then please post on our [forum](https://discourse.mopidy.com/) first.
|
|
11
|
+
|
|
12
|
+
**Describe the bug**
|
|
13
|
+
A clear and concise description of what the bug is. Is this specific to a particular Backend (e.g. Mopidy-Spotify), Frontend (e.g. Mopidy-MPD) or client?
|
|
14
|
+
|
|
15
|
+
**How to reproduce**
|
|
16
|
+
Steps to reproduce the behaviour including any error messages that occur.
|
|
17
|
+
|
|
18
|
+
**Expected behaviour**
|
|
19
|
+
A clear and concise description of what you expected to happen.
|
|
20
|
+
|
|
21
|
+
**Environment**
|
|
22
|
+
Please complete the following information:
|
|
23
|
+
|
|
24
|
+
- Operating system (e.g. Debian Buster, Ubuntu 20.04)
|
|
25
|
+
- [Running Mopidy](https://docs.mopidy.com/en/latest/running/) as a service or in the terminal?
|
|
26
|
+
- Your config (output of `sudo mopidyctl config`)
|
|
27
|
+
- Software versions (output of `sudo mopidyctl deps`)
|
|
28
|
+
- Any specific hardware (e.g. an exotic USB soundcard)
|
|
29
|
+
|
|
30
|
+
**Additional context**
|
|
31
|
+
Add any other context about the problem here. If appropriate, upload an [appropriately verbose](https://docs.mopidy.com/en/latest/troubleshooting/#debug-logging) log file showing the bug.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Extension request
|
|
3
|
+
about: Share your idea for a new Mopidy extension.
|
|
4
|
+
title: ''
|
|
5
|
+
labels: C-extension-request
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
Please explain your idea and provide any information on how the extension might be implemented. See [this forum thread](https://discourse.mopidy.com/t/supporting-new-streaming-services-and-other-music-sources/22) for more information.
|
|
11
|
+
|
|
12
|
+
Note: these issues are closed as they cannot be fixed in Mopidy itself. However, they will be added to our [Extension wishlist](https://github.com/mopidy/mopidy/issues?utf8=%E2%9C%93&q=label%3AC-extension-request+) label for potential authors/collaborators to find and discuss.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest an idea for this project.
|
|
4
|
+
title: ''
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
Mopidy's GitHub Issues are reserved for well-defined feature requests. If this is a more general idea or question, please post on the [forum](https://discourse.mopidy.com) first.
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
workflow_dispatch:
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
build:
|
|
12
|
+
name: Build
|
|
13
|
+
runs-on: ubuntu-24.04
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v6
|
|
16
|
+
- uses: hynek/build-and-inspect-python-package@v2
|
|
17
|
+
|
|
18
|
+
main:
|
|
19
|
+
strategy:
|
|
20
|
+
fail-fast: false
|
|
21
|
+
matrix:
|
|
22
|
+
include:
|
|
23
|
+
- name: "pytest (3.13)"
|
|
24
|
+
python: "3.13"
|
|
25
|
+
tox: "3.13"
|
|
26
|
+
- name: "pytest (3.14)"
|
|
27
|
+
python: "3.14"
|
|
28
|
+
tox: "3.14"
|
|
29
|
+
coverage: true
|
|
30
|
+
- name: "pyright"
|
|
31
|
+
python: "3.14"
|
|
32
|
+
tox: "pyright"
|
|
33
|
+
- name: "rumdl"
|
|
34
|
+
python: "3.14"
|
|
35
|
+
tox: "rumdl"
|
|
36
|
+
- name: "ruff check"
|
|
37
|
+
python: "3.14"
|
|
38
|
+
tox: "ruff-check"
|
|
39
|
+
- name: "ruff format"
|
|
40
|
+
python: "3.14"
|
|
41
|
+
tox: "ruff-format"
|
|
42
|
+
- name: "ty"
|
|
43
|
+
python: "3.14"
|
|
44
|
+
tox: "ty"
|
|
45
|
+
- name: "Docs"
|
|
46
|
+
python: "3.13"
|
|
47
|
+
tox: "docs"
|
|
48
|
+
|
|
49
|
+
name: ${{ matrix.name }}
|
|
50
|
+
runs-on: ubuntu-24.04
|
|
51
|
+
container: ghcr.io/mopidy/ci:latest
|
|
52
|
+
|
|
53
|
+
steps:
|
|
54
|
+
- uses: actions/checkout@v6
|
|
55
|
+
- name: Fix home dir permissions to enable pip caching
|
|
56
|
+
run: chown -R root /github/home
|
|
57
|
+
- uses: actions/setup-python@v6
|
|
58
|
+
with:
|
|
59
|
+
python-version: ${{ matrix.python }}
|
|
60
|
+
cache: pip
|
|
61
|
+
allow-prereleases: true
|
|
62
|
+
- run: python -m pip install tox
|
|
63
|
+
- run: python -m tox -e ${{ matrix.tox }}
|
|
64
|
+
if: ${{ ! matrix.coverage }}
|
|
65
|
+
- run: python -m tox -e ${{ matrix.tox }} -- --cov-report=xml
|
|
66
|
+
if: ${{ matrix.coverage }}
|
|
67
|
+
- uses: codecov/codecov-action@v5
|
|
68
|
+
if: ${{ matrix.coverage }}
|
|
69
|
+
with:
|
|
70
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
release:
|
|
9
|
+
runs-on: ubuntu-24.04
|
|
10
|
+
environment:
|
|
11
|
+
name: pypi
|
|
12
|
+
url: https://pypi.org/project/mopidy/
|
|
13
|
+
permissions:
|
|
14
|
+
id-token: write
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v6
|
|
17
|
+
- uses: hynek/build-and-inspect-python-package@v2
|
|
18
|
+
id: build
|
|
19
|
+
- uses: actions/download-artifact@v4
|
|
20
|
+
with:
|
|
21
|
+
name: ${{ steps.build.outputs.artifact-name }}
|
|
22
|
+
path: dist
|
|
23
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: "Ubuntu devel"
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
schedule:
|
|
5
|
+
# Every Friday at 18:20 UTC, so we can fix the issue over the weekend
|
|
6
|
+
- cron: "20 18 * * 5"
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
main:
|
|
11
|
+
name: "Test: Python 3.13"
|
|
12
|
+
runs-on: ubuntu-24.04
|
|
13
|
+
|
|
14
|
+
# The container should be automatically updated from time to time.
|
|
15
|
+
container: ubuntu:devel
|
|
16
|
+
|
|
17
|
+
steps:
|
|
18
|
+
- name: Install dependencies
|
|
19
|
+
run: |
|
|
20
|
+
apt-get update
|
|
21
|
+
DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
|
22
|
+
git \
|
|
23
|
+
python3 \
|
|
24
|
+
tox \
|
|
25
|
+
gstreamer1.0-plugins-good \
|
|
26
|
+
gstreamer1.0-plugins-ugly \
|
|
27
|
+
python3-gst-1.0 \
|
|
28
|
+
libcairo2-dev \
|
|
29
|
+
libgirepository-2.0-dev \
|
|
30
|
+
libglib2.0-dev
|
|
31
|
+
- uses: actions/checkout@v6
|
|
32
|
+
- run: tox -e py313
|
mopidy-4.0.0/.gitignore
ADDED
mopidy-4.0.0/.mailmap
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
Stein Magnus Jodal <stein.magnus@jodal.no> <stein.magnus.jodal@oda.com>
|
|
2
|
+
Stein Magnus Jodal <stein.magnus@jodal.no> <jodal@cardboard.inc>
|
|
3
|
+
Thomas Adamcik <thomas@adamcik.no> <adamcik@samfundet.no>
|
|
4
|
+
Thomas Adamcik <thomas@adamcik.no> <thomas+github@adamcik.no>
|
|
5
|
+
Thomas Adamcik <thomas@adamcik.no> Thomas Adacmik <thomas@adamcik.no>
|
|
6
|
+
Kristian Klette <klette@samfundet.no>
|
|
7
|
+
Johannes Knutsen <johannes@knutseninfo.no> <johannes@iterate.no>
|
|
8
|
+
Johannes Knutsen <johannes@knutseninfo.no> <johannes@barbarmaclin.(none)>
|
|
9
|
+
John Bäckstrand <sopues@gmail.com> <sandos@XBMCLive.(none)>
|
|
10
|
+
David Caruso <deibido.caruso@gmail.com> <dav@dav.com>
|
|
11
|
+
Adam Rigg <adam@adamrigg.id.au> <radx@live.com.au>
|
|
12
|
+
Ernst Bammer <herr.ernst@gmail.com>
|
|
13
|
+
Alli Witheford <alzeih@gmail.com>
|
|
14
|
+
Alexandre Petitjean <alpetitjean@gmail.com>
|
|
15
|
+
Alexandre Petitjean <alpetitjean@gmail.com> <alexandre.petitjean@lne.fr>
|
|
16
|
+
Javier Domingo Cansino <javierdo1@gmail.com> <javier.domingo@fon.com>
|
|
17
|
+
Lasse Bigum <lasse@bigum.org> <l.bigum@samsung.com>
|
|
18
|
+
Nick Steel <nick@nsteel.co.uk> <kingosticks@gmail.com>
|
|
19
|
+
Nick Steel <nick@nsteel.co.uk> <nickasteel@gmail.com>
|
|
20
|
+
Nick Steel <nick@nsteel.co.uk> <nick.steel@nokia.com>
|
|
21
|
+
Nick Steel <nick@nsteel.co.uk> <nsteel@fastmail.com>
|
|
22
|
+
Janez Troha <janez.troha@gmail.com> <dz0ny@users.noreply.github.com>
|
|
23
|
+
Janez Troha <janez.troha@gmail.com> <dz0ny@ubuntu.si>
|
|
24
|
+
Luke Giuliani <luke@giuliani.com.au>
|
|
25
|
+
Colin Montgomerie <kiteflyingmonkey@gmail.com>
|
|
26
|
+
Nathan Harper <nathan.sam.harper@gmail.com>
|
|
27
|
+
Ignasi Fosch <natx@y10k.ws> <ifosch@serenity-2.local>
|
|
28
|
+
Christopher Schirner <christopher@hackerspace-bamberg.de> <schinken@hackerspace-bamberg.de>
|
|
29
|
+
Laura Barber <laura.c.barber@gmail.com> <artzii.laura@gmail.com>
|
|
30
|
+
John Cass <john.cass77@gmail.com>
|
|
31
|
+
Ronald Zielaznicki <zielaznickizm@g.cofc.edu> <zielaznickiz@g.cofc.edu>
|
|
32
|
+
Kyle Heyne <kyleheyne@gmail.com>
|
|
33
|
+
Tom Roth <rawdlite@googlemail.com>
|
|
34
|
+
Eric Jahn <ejahn@newstore.com>
|
|
35
|
+
Loïck Bonniot <git@lesterpig.com>
|
|
36
|
+
Jens Lütjen <dublok@users.noreply.github.com>
|
|
37
|
+
Jens Lütjen <dublok@users.noreply.github.com> <dublok@users.noreplay.github.com>
|
|
38
|
+
Daniel T <thomas_d_j@yahoo.com.au>
|
|
39
|
+
Ismael Asensio <ismailof@github.com>
|
|
40
|
+
Brendan Jones <btjones711@gmail.com> <Btjones711@gmail.com>
|
|
41
|
+
Marvin Preuss <marvin@xsteadfastx.org>
|
|
42
|
+
Bernhard Gehl <bernhard.gehl@gmail.com>
|
|
43
|
+
Caysho <caysho@internode.on.net> <mopidy-dev@mopidy-dev.mopidy-dev>
|
|
44
|
+
Nick Aquina <nickaquina@gmail.com> <fantostisch@users.noreply.github.com>
|
|
45
|
+
Jarryd Tilbrook <jrad.tilbrook@gmail.com>
|
|
46
|
+
Matthieu Melquiond <matt.llvw@gmail.com>
|
|
47
|
+
Geoffroy Youri Berret <kaliko@azylum.org>
|
|
48
|
+
Hugo van Kemenade <hugovk@users.noreply.github.com>
|
|
49
|
+
Tobias Girstmair <girst@users.noreply.github.com>
|
|
50
|
+
Jonathan Jefferies <jonathan@jjok.co.uk>
|
|
51
|
+
Matthew H. Flamm <matthewhflamm@gmail.com>
|
|
52
|
+
Keith Scroggs <very-amused@pm.me>
|
|
53
|
+
Jan Iversen <jancasacondor@gmail.com>
|
|
54
|
+
Thomas Kern <thomas@kernwelt.de>
|
|
55
|
+
Benoit Hagenbourger <benoit@hagenbourger.fr>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Run `pre-commit install` to install the pre-commit hooks.
|
|
2
|
+
#
|
|
3
|
+
# Run `pre-commit autoupdate` to update all the plugins here.
|
|
4
|
+
#
|
|
5
|
+
# See https://pre-commit.com for more information.
|
|
6
|
+
|
|
7
|
+
repos:
|
|
8
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
9
|
+
rev: v4.5.0
|
|
10
|
+
hooks:
|
|
11
|
+
- id: trailing-whitespace
|
|
12
|
+
- id: check-toml
|
|
13
|
+
- repo: local
|
|
14
|
+
hooks:
|
|
15
|
+
- id: ruff-check
|
|
16
|
+
name: ruff check
|
|
17
|
+
entry: ruff check
|
|
18
|
+
language: system
|
|
19
|
+
types: [python]
|
|
20
|
+
- id: ruff-format
|
|
21
|
+
name: ruff format
|
|
22
|
+
entry: ruff format
|
|
23
|
+
language: system
|
|
24
|
+
types: [python]
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
|
|
3
|
+
build:
|
|
4
|
+
os: ubuntu-24.04
|
|
5
|
+
tools:
|
|
6
|
+
python: latest
|
|
7
|
+
apt_packages:
|
|
8
|
+
# pyobject dependencies
|
|
9
|
+
- libcairo2-dev
|
|
10
|
+
- libgirepository-2.0-dev
|
|
11
|
+
jobs:
|
|
12
|
+
post_create_environment:
|
|
13
|
+
- pip install uv
|
|
14
|
+
post_install:
|
|
15
|
+
- UV_PROJECT_ENVIRONMENT=$READTHEDOCS_VIRTUALENV_PATH uv sync --all-extras --group docs --link-mode copy
|
|
16
|
+
build:
|
|
17
|
+
html:
|
|
18
|
+
- zensical build
|
|
19
|
+
post_build:
|
|
20
|
+
- mkdir -p $READTHEDOCS_OUTPUT/html/
|
|
21
|
+
- cp -r site/* $READTHEDOCS_OUTPUT/html/
|
|
22
|
+
|
|
23
|
+
# Page redirects for the new docs site
|
|
24
|
+
#
|
|
25
|
+
# When the new Zensical-based docs replace the old Sphinx docs on ReadTheDocs,
|
|
26
|
+
# configure the following as "Page Redirect" entries in the ReadTheDocs admin UI
|
|
27
|
+
# (Admin > Redirects > Add Redirect, type = Page Redirect).
|
|
28
|
+
#
|
|
29
|
+
# The old site was built with Sphinx's dirhtml builder, so all URLs end with /.
|
|
30
|
+
#
|
|
31
|
+
# From To
|
|
32
|
+
# /audiosinks/ /guides/audiosinks/
|
|
33
|
+
# /authors/ /about/authors/
|
|
34
|
+
# /clients/ /usage/clients/
|
|
35
|
+
# /codestyle/ /about/codestyle/
|
|
36
|
+
# /command/ /reference/command/
|
|
37
|
+
# /config/ /usage/config/
|
|
38
|
+
# /contributing/ /about/contributing/
|
|
39
|
+
# /devenv/ /about/devenv/
|
|
40
|
+
# /extensiondev/ /guides/extensiondev/
|
|
41
|
+
# /glossary/ /reference/glossary/
|
|
42
|
+
# /icecast/ /guides/icecast/
|
|
43
|
+
# /releasing/ /about/releasing/
|
|
44
|
+
# /sponsors/ /about/sponsors/
|
|
45
|
+
# /troubleshooting/ /usage/troubleshooting/
|
|
46
|
+
# /upnp/ /guides/upnp/
|
|
47
|
+
# /versioning/ /about/versioning/
|
|
48
|
+
# /api/ /reference/
|
|
49
|
+
# /api/architecture/ /reference/architecture/
|
|
50
|
+
# /api/audio/ /reference/audio/
|
|
51
|
+
# /api/backend/ /reference/backend/
|
|
52
|
+
# /api/config/ /reference/config/
|
|
53
|
+
# /api/core/ /reference/core/
|
|
54
|
+
# /api/ext/ /reference/ext/
|
|
55
|
+
# /api/frontend/ /reference/frontend/
|
|
56
|
+
# /api/http-server/ /reference/http-server/
|
|
57
|
+
# /api/http/ /reference/http/
|
|
58
|
+
# /api/httpclient/ /reference/httpclient/
|
|
59
|
+
# /api/js/ /reference/js/
|
|
60
|
+
# /api/mixer/ /reference/mixer/
|
|
61
|
+
# /api/models/ /reference/models/
|
|
62
|
+
# /api/zeroconf/ /reference/zeroconf/
|
|
63
|
+
# /history/ /changelog/
|
|
64
|
+
# /history/changelog-0.x/ /changelog/0.x/
|
|
65
|
+
# /history/changelog-1.x/ /changelog/1.x/
|
|
66
|
+
# /history/changelog-2.x/ /changelog/2.x/
|
|
67
|
+
# /history/changelog-3.x/ /changelog/3.x/
|
|
68
|
+
# /installation/arch/ /installation/packages/
|
|
69
|
+
# /installation/debian/ /installation/packages/
|
|
70
|
+
# /installation/fedora/ /installation/packages/
|
|
71
|
+
# /installation/macos/ /installation/packages/
|
|
72
|
+
# /installation/pypi/ /installation/manual/
|
|
73
|
+
# /installation/raspberrypi/ /guides/raspberrypi/
|
|
74
|
+
# /running/ /usage/
|
|
75
|
+
# /running/service/ /usage/service/
|
|
76
|
+
# /running/terminal/ /usage/terminal/
|
mopidy-4.0.0/AUTHORS
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
- Stein Magnus Jodal <stein.magnus@jodal.no>
|
|
2
|
+
- Johannes Knutsen <johannes@knutseninfo.no>
|
|
3
|
+
- Thomas Adamcik <thomas@adamcik.no>
|
|
4
|
+
- Kristian Klette <klette@samfundet.no>
|
|
5
|
+
- Martins Grunskis <martins@grunskis.com>
|
|
6
|
+
- Henrik Olsson <henrik@fixme.se>
|
|
7
|
+
- Antoine Pierlot-Garcin <antoine@bokbox.com>
|
|
8
|
+
- John Bäckstrand <sopues@gmail.com>
|
|
9
|
+
- Fred Hatfull <fred.hatfull@gmail.com>
|
|
10
|
+
- Erling Børresen <erling@fenicore.net>
|
|
11
|
+
- David Caruso <deibido.caruso@gmail.com>
|
|
12
|
+
- Christian Johansen <christian@cjohansen.no>
|
|
13
|
+
- Matt Bray <mattjbray@gmail.com>
|
|
14
|
+
- Trygve Aaberge <trygveaa@gmail.com>
|
|
15
|
+
- Wouter van Wijk <woutervanwijk@gmail.com>
|
|
16
|
+
- Jeremy B. Merrill <jeremybmerrill@gmail.com>
|
|
17
|
+
- Adam Rigg <adam@adamrigg.id.au>
|
|
18
|
+
- Ernst Bammer <herr.ernst@gmail.com>
|
|
19
|
+
- Nick Steel <nick@nsteel.co.uk>
|
|
20
|
+
- Zan Dobersek <zandobersek@gmail.com>
|
|
21
|
+
- Thomas Refis <refis.thomas@gmail.com>
|
|
22
|
+
- Janez Troha <janez.troha@gmail.com>
|
|
23
|
+
- Tobias Sauerwein <cgtobi@gmail.com>
|
|
24
|
+
- Alli Witheford <alzeih@gmail.com>
|
|
25
|
+
- Alexandre Petitjean <alpetitjean@gmail.com>
|
|
26
|
+
- Terje Larsen <terlar@gmail.com>
|
|
27
|
+
- Javier Domingo Cansino <javierdo1@gmail.com>
|
|
28
|
+
- Pavol Babincak <scroolik@gmail.com>
|
|
29
|
+
- Javier Domingo <javierdo1@gmail.com>
|
|
30
|
+
- Lasse Bigum <lasse@bigum.org>
|
|
31
|
+
- David Eisner <david.eisner@oriel.oxon.org>
|
|
32
|
+
- Pål Ruud <ruudud@gmail.com>
|
|
33
|
+
- Thomas Kemmer <tkemmer@computer.org>
|
|
34
|
+
- Paul Connolley <paul.connolley@gmail.com>
|
|
35
|
+
- Luke Giuliani <luke@giuliani.com.au>
|
|
36
|
+
- Colin Montgomerie <kiteflyingmonkey@gmail.com>
|
|
37
|
+
- Simon de Bakker <simon@simbits.nl>
|
|
38
|
+
- Arnaud Barisain-Monrose <abarisain@gmail.com>
|
|
39
|
+
- Nathan Harper <nathan.sam.harper@gmail.com>
|
|
40
|
+
- Pierpaolo Frasa <pfrasa@smail.uni-koeln.de>
|
|
41
|
+
- Thomas Scholtes <thomas-scholtes@gmx.de>
|
|
42
|
+
- Sam Willcocks <sam@wlcx.cc>
|
|
43
|
+
- Ignasi Fosch <natx@y10k.ws>
|
|
44
|
+
- Arjun Naik <arjun@arjunnaik.in>
|
|
45
|
+
- Christopher Schirner <christopher@hackerspace-bamberg.de>
|
|
46
|
+
- Dmitry Sandalov <dmitry@sandalov.org>
|
|
47
|
+
- Lukas Vogel <lukas@vogelnest.org>
|
|
48
|
+
- Thomas Amland <thomas.amland@gmail.com>
|
|
49
|
+
- Deni Bertovic <deni@kset.org>
|
|
50
|
+
- Ali Ukani <ali.ukani@gmail.com>
|
|
51
|
+
- Dirk Groenen <dirk_groenen@live.nl>
|
|
52
|
+
- John Cass <john.cass77@gmail.com>
|
|
53
|
+
- Laura Barber <laura.c.barber@gmail.com>
|
|
54
|
+
- Jakab Kristóf <jaksi07c8@gmail.com>
|
|
55
|
+
- Ronald Zielaznicki <zielaznickizm@g.cofc.edu>
|
|
56
|
+
- Wojciech Wnętrzak <w.wnetrzak@gmail.com>
|
|
57
|
+
- Camilo Nova <camilo.nova@gmail.com>
|
|
58
|
+
- Dražen Lučanin <kermit666@gmail.com>
|
|
59
|
+
- Naglis Jonaitis <njonaitis@gmail.com>
|
|
60
|
+
- Kyle Heyne <kyleheyne@gmail.com>
|
|
61
|
+
- Tom Roth <rawdlite@googlemail.com>
|
|
62
|
+
- Mark Greenwood <fatgerman@gmail.com>
|
|
63
|
+
- Stein Karlsen <karlsen.stein@gmail.com>
|
|
64
|
+
- Dejan Prokić <dejanp@nordeus.eu>
|
|
65
|
+
- Eric Jahn <ejahn@newstore.com>
|
|
66
|
+
- Mikhail Golubev <qsolo825@gmail.com>
|
|
67
|
+
- Danilo Bargen <mail@dbrgn.ch>
|
|
68
|
+
- Bjørnar Snoksrud <bjornar@snoksrud.no>
|
|
69
|
+
- Giorgos Logiotatidis <seadog@sealabs.net>
|
|
70
|
+
- Ben Evans <ben@bensbit.co.uk>
|
|
71
|
+
- vrs01 <vrs01@users.noreply.github.com>
|
|
72
|
+
- Cadel Watson <cadel@cadelwatson.com>
|
|
73
|
+
- Loïck Bonniot <git@lesterpig.com>
|
|
74
|
+
- Gustaf Hallberg <ghallberg@gmail.com>
|
|
75
|
+
- kozec <kozec@kozec.com>
|
|
76
|
+
- Jelle van der Waa <jelle@vdwaa.nl>
|
|
77
|
+
- Alex Malone <jalexmalone@gmail.com>
|
|
78
|
+
- Daniel Hahler <git@thequod.de>
|
|
79
|
+
- Bryan Bennett <bbenne10@gmail.com>
|
|
80
|
+
- Jens Lütjen <dublok@users.noreply.github.com>
|
|
81
|
+
- Lina He <linahe93@gmail.com>
|
|
82
|
+
- Daniel T <thomas_d_j@yahoo.com.au>
|
|
83
|
+
- Lars Kruse <devel@sumpfralle.de>
|
|
84
|
+
- Benjamin Chrétien <chretien.b@gmail.com>
|
|
85
|
+
- SeppSTA <s.staats@gmx.de>
|
|
86
|
+
- Ismael Asensio <ismailof@github.com>
|
|
87
|
+
- Tom Parker <palfrey@tevp.net>
|
|
88
|
+
- Nantas Nardelli <nantas.nardelli@gmail.com>
|
|
89
|
+
- Naglis Jonaitis <naglis@mailbox.org>
|
|
90
|
+
- Alexander Jaworowski <alexander@jaworowski.se>
|
|
91
|
+
- Don Armstrong <don@donarmstrong.com>
|
|
92
|
+
- Nadav Tau <nadavt@sedonasys.com>
|
|
93
|
+
- Aleksandar Benic <aleksandar.benic@protonmail.com>
|
|
94
|
+
- Tom Swirly <tom@swirly.com>
|
|
95
|
+
- Piotr Dobrowolski <Informatic@users.noreply.github.com>
|
|
96
|
+
- Tomas Susanka <tsusanka@gmail.com>
|
|
97
|
+
- James Barnsley <james@barnsley.nz>
|
|
98
|
+
- Caysho <caysho@internode.on.net>
|
|
99
|
+
- Brendan Jones <btjones711@gmail.com>
|
|
100
|
+
- Marvin Preuss <marvin@xsteadfastx.org>
|
|
101
|
+
- Bernhard Gehl <bernhard.gehl@gmail.com>
|
|
102
|
+
- CL123123 <clairclair628@gmail.com>
|
|
103
|
+
- Piotr Dobrowolski <admin@tastycode.pl>
|
|
104
|
+
- Nick Aquina <nickaquina@gmail.com>
|
|
105
|
+
- Marcus Götling <marcus@gotling.se>
|
|
106
|
+
- Dominique Tardif <dommtardif@users.noreply.github.com>
|
|
107
|
+
- Alexey Murz Korepov <murznn@gmail.com>
|
|
108
|
+
- Jarryd Tilbrook <jrad.tilbrook@gmail.com>
|
|
109
|
+
- Dan Brough <dan@danbrough.org>
|
|
110
|
+
- Jonathan Jefferies <jjok@users.noreply.github.com>
|
|
111
|
+
- Matthieu Melquiond <matt.llvw@gmail.com>
|
|
112
|
+
- Damien Cassou <damien@cassou.me>
|
|
113
|
+
- Leonid Bogdanov <leonid_bogdanov@mail.ru>
|
|
114
|
+
- Geoffroy Youri Berret <kaliko@azylum.org>
|
|
115
|
+
- Dan Stowell <danstowell@users.sourceforge.net>
|
|
116
|
+
- Gildas Le Nadan <gildas@endemic-systems.com>
|
|
117
|
+
- Zvonimir Fras <zvonimir@zvonimirfras.com>
|
|
118
|
+
- Simon <schaefer@fidion.de>
|
|
119
|
+
- Vivien Henry <vivien.henry@outlook.fr>
|
|
120
|
+
- Hugo van Kemenade <hugovk@users.noreply.github.com>
|
|
121
|
+
- Tobias Girstmair <girst@users.noreply.github.com>
|
|
122
|
+
- Jakub Fijałkowski <kuba@codinginfinity.me>
|
|
123
|
+
- Jonathan Jefferies <jonathan@jjok.co.uk>
|
|
124
|
+
- Prajjwal Nijhara <prajjwalnijhara@gmail.com>
|
|
125
|
+
- Asmi Jafar <47150162+asmijafar20@users.noreply.github.com>
|
|
126
|
+
- Saloni Gupta <60188408+salonigupta1@users.noreply.github.com>
|
|
127
|
+
- Parth Verma <v.parth98@gmail.com>
|
|
128
|
+
- Matthew H. Flamm <matthewhflamm@gmail.com>
|
|
129
|
+
- Matthew Gamble <git@matthewgamble.net>
|
|
130
|
+
- Keith Scroggs <very-amused@pm.me>
|
|
131
|
+
- Andrzej Rybczak <arybczak@users.noreply.github.com>
|
|
132
|
+
- Tim Gates <tim.gates@iress.com>
|
|
133
|
+
- Davis Mosenkovs <davikovs@gmail.com>
|
|
134
|
+
- Jonathan <github@jhacker.de>
|
|
135
|
+
- Kunal Attri <attrikunal16@gmail.com>
|
|
136
|
+
- Archish Thakkar <archishthakkar@gmail.com>
|
|
137
|
+
- grdorin <94456679+grdorin@users.noreply.github.com>
|
|
138
|
+
- solo <solonovamax@12oclockpoint.com>
|
|
139
|
+
- lmdc45 <47163513+lmdc45@users.noreply.github.com>
|
|
140
|
+
- Matthias Meulien <orontee@gmail.com>
|
|
141
|
+
- Jan Iversen <jancasacondor@gmail.com>
|
|
142
|
+
- SandeshPyakurel <85491057+SandeshPyakurel@users.noreply.github.com>
|
|
143
|
+
- ayushrakesh <115995339+ayushrakesh@users.noreply.github.com>
|
|
144
|
+
- Rakesh Chatrath <rakesh.chatrath@shopify.com>
|
|
145
|
+
- Thomas Kern <thomas@kernwelt.de>
|
|
146
|
+
- Xavier Chevalier <chevalierxavier38@gmail.com>
|
|
147
|
+
- Frank Anderson <frob@users.noreply.github.com>
|
|
148
|
+
- Aarni Koskela <akx@iki.fi>
|
|
149
|
+
- Fabio Manganiello <fabio@manganiello.tech>
|
|
150
|
+
- Raphael Nestler <raphael.nestler@renuo.ch>
|
|
151
|
+
- Benoit Hagenbourger <benoit@hagenbourger.fr>
|