Buildout
This commit is contained in:
@ -121343,10 +121343,11 @@ var MopidyMiddleware = function () {
|
||||
return;
|
||||
}
|
||||
|
||||
store.dispatch(uiActions.updateProcess(processKey, Object(_locale__WEBPACK_IMPORTED_MODULE_4__["i18n"])('services.mopidy.searching', {
|
||||
provider: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_5__["titleCase"])(uri_scheme.replace(':', '')),
|
||||
type: requestType
|
||||
}), {
|
||||
store.dispatch(uiActions.updateProcess(processKey, {
|
||||
content: Object(_locale__WEBPACK_IMPORTED_MODULE_4__["i18n"])('services.mopidy.searching', {
|
||||
provider: Object(_util_helpers__WEBPACK_IMPORTED_MODULE_5__["titleCase"])(uri_scheme.replace(':', '')),
|
||||
type: requestType
|
||||
}),
|
||||
remaining: queue.length
|
||||
})); // Each type has a different method of formatting and destructuring.
|
||||
|
||||
@ -122108,7 +122109,8 @@ var MopidyMiddleware = function () {
|
||||
});
|
||||
|
||||
if (_queue.length) {
|
||||
store.dispatch(uiActions.startProcess('MOPIDY_GET_SEARCH_RESULTS', Object(_locale__WEBPACK_IMPORTED_MODULE_4__["i18n"])('services.mopidy.searching'), {
|
||||
store.dispatch(uiActions.startProcess(action.type, {
|
||||
content: Object(_locale__WEBPACK_IMPORTED_MODULE_4__["i18n"])('services.mopidy.searching'),
|
||||
total: _queue.length,
|
||||
remaining: _queue.length
|
||||
}));
|
||||
@ -122716,7 +122718,7 @@ var MopidyMiddleware = function () {
|
||||
return Object(_util_helpers__WEBPACK_IMPORTED_MODULE_5__["uriSource"])(playlistUri) !== 'spotify';
|
||||
});
|
||||
var libraryPlaylists = [];
|
||||
store.dispatch(uiActions.updateProcess('MOPIDY_GET_LIBRARY_PLAYLISTS', {
|
||||
store.dispatch(uiActions.updateProcess(action.type, {
|
||||
total: playlist_uris.length,
|
||||
remaining: playlist_uris.length
|
||||
}));
|
||||
@ -123979,7 +123981,9 @@ var PusherMiddleware = function () {
|
||||
var notification_key = "command_".concat(action.id);
|
||||
|
||||
if (action.notify) {
|
||||
store.dispatch(uiActions.startProcess(notification_key, 'Running command'));
|
||||
store.dispatch(uiActions.startProcess(notification_key, {
|
||||
content: 'Running command'
|
||||
}));
|
||||
}
|
||||
|
||||
request(store, 'run_command', {
|
||||
@ -125810,7 +125814,9 @@ function getSearchResults(_ref3) {
|
||||
var offset = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
|
||||
var processKey = 'SPOTIFY_GET_SEARCH_RESULTS';
|
||||
return function (dispatch, getState) {
|
||||
dispatch(uiActions.startProcess(processKey, 'Searching Spotify'));
|
||||
dispatch(uiActions.startProcess(processKey, {
|
||||
content: 'Searching Spotify'
|
||||
}));
|
||||
var typeString = type.replace(/s+$/, '');
|
||||
|
||||
if (typeString === 'all') {
|
||||
|
||||
File diff suppressed because one or more lines are too long
4
mopidy_iris/static/app.min.js
vendored
4
mopidy_iris/static/app.min.js
vendored
File diff suppressed because one or more lines are too long
@ -106,7 +106,7 @@
|
||||
|
||||
// Release details
|
||||
// These are automatically injected to built HTML
|
||||
var build = "1603785471";
|
||||
var build = "1603833816";
|
||||
var version = "3.53.0";
|
||||
|
||||
// Construct the script tag
|
||||
|
||||
Reference in New Issue
Block a user