Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Commit

Permalink
Merge pull request #243 from dirkgroenen/release/1.7.0
Browse files Browse the repository at this point in the history
Release 1.7.0
  • Loading branch information
dirkgroenen authored Apr 6, 2020
2 parents 8021e2d + e0af655 commit eab194e
Show file tree
Hide file tree
Showing 51 changed files with 5,041 additions and 38,862 deletions.
17 changes: 17 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- security
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
15 changes: 10 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
#Changelog

v1.6.1 (29-06-2017)
v1.7.0 (06-04-2020)
--------------------
- Remove Google Analytics [#236](https://github.com/dirkgroenen/mopidy-mopify/issues/236)
- Change imports to be absolute, fixing Python 3 errors [#242](https://github.com/dirkgroenen/mopidy-mopify/pull/242)

v1.6.1 (29-06-2017)
--------------------
Thanks to https://github.com/tobiasstrebitzer for the changes below:
- **Update angular** from 1.2.7 to 1.5.6.
- **Update angular-spotify** from 1.4.2 to 1.5.1 to resolve various bugs related to recent changes in the Spotify-API.
Expand All @@ -12,19 +17,19 @@ Thanks to https://github.com/tobiasstrebitzer for the changes below:
- **Refactored Artist list page and controller**, by changing the API collection from "User Artists" to "Followed Artists" (it seems the "User Artists" API is no longer provided by Spotify).

v1.6.0 (26-07-2016)

--------------------
- Remove deprecated TasteProfile and replace for Spotify API [#200](https://github.com/dirkgroenen/mopidy-mopify/issues/200)
- Upgrade Angular to 1.5.0
- Add official Spotify library and override method
- Add official Spotify library and override method

v1.5.17 (03-04-2016)

--------------------
- Use new Spotify API endpoints [#188](https://github.com/dirkgroenen/mopidy-mopify/pull/188)
- Improve playback speed

v1.5.16 (25-02-2016)
--------------------
- Add one time bindings
- Add one time bindings
- Add stop playback shortcut [#117](https://github.com/dirkgroenen/mopidy-mopify/issues/117)
- Make page title dynamic [#183](https://github.com/dirkgroenen/mopidy-mopify/issues/183)

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Mopify - Web client
[![Support me with some coffee](https://img.shields.io/badge/donate-paypal-orange.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QUDAJBCJVP2G6)
[![Support me with some coffee](https://img.shields.io/badge/donate-pledgie-orange.svg)](https://pledgie.com/campaigns/28130)

> Note [06-04-2020]: I'm no longer actively maintaining this project, but please do let me know when you're encountering critical issues preventing you from using this extension.
Mopify is a web client for [Mopidy](https://github.com/mopidy/mopidy). Instead
of most other Mopidy web clients, Mopify aims to provide a complete music
experience.
Expand Down Expand Up @@ -139,4 +141,4 @@ This will create a new `Mopidy-Mopify` web extension package.

## Changelog

See the [./CHANGELOG.md](./CHANGELOG.md) for a list of all changes during version upgrades.
See the [./CHANGELOG.md](./CHANGELOG.md) for a list of all changes during version upgrades.
14 changes: 7 additions & 7 deletions __init__.py.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import logging
import os
import tornado.web

import mem
import .mem

from services.sync import sync
from services.autoupdate import update
from .services.sync import sync
from .services.autoupdate import update

from services.queuemanager import core as QueueManagerCore
from services.queuemanager import frontend
from services.queuemanager import requesthandler as QueueManagerRequestHandler
from .services.queuemanager import core as QueueManagerCore
from .services.queuemanager import frontend
from .services.queuemanager import requesthandler as QueueManagerRequestHandler

from mopidy import config, ext

Expand All @@ -38,7 +38,7 @@ class MopifyExtension(ext.Extension):

def setup(self, registry):
sync.Sync();

# Create instances
mem.queuemanager = QueueManagerCore.QueueManager()

Expand Down
Binary file removed dist/Mopidy-Mopify-1.6.1.tar.gz
Binary file not shown.
9 changes: 0 additions & 9 deletions dist/assets/css/mopidy-mopify-1.6.1.css

This file was deleted.

9 changes: 9 additions & 0 deletions dist/assets/css/mopidy-mopify-1.7.0.css

Large diffs are not rendered by default.

39 changes: 0 additions & 39 deletions dist/assets/mopidy-mopify-1.6.1.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/assets/mopidy-mopify-1.6.1.js.map

This file was deleted.

18 changes: 18 additions & 0 deletions dist/assets/mopidy-mopify-1.7.0.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/assets/mopidy-mopify-1.7.0.js.map

Large diffs are not rendered by default.

106 changes: 50 additions & 56 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -1,75 +1,69 @@
<!DOCTYPE html>
<html ng-app="mopify" ng-controller="AppController">
<head>
<title ng-bind-template="&#9654; {{ pageTitle }}">Mopify</title>

<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<head>
<title ng-bind-template="&#9654; {{ pageTitle }}">Mopify</title>

<meta name="version" content="1.6.1">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">

<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/webfonts/ss-standard.css">
<meta name="version" content="1.7.0">

<link href="assets/images/favicon.ico" rel="icon" type="image/x-icon" />
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/webfonts/ss-standard.css">


<link rel="stylesheet" type="text/css" href="assets/css/mopidy-mopify-1.6.1.css" />
<link href="assets/images/favicon.ico" rel="icon" type="image/x-icon" />

<link rel="manifest" href="assets/manifest.json">
<link rel="apple-touch-icon" href="assets/images/musicicon-4x.png">
</head>

<link rel="stylesheet" type="text/css" href="assets/css/mopidy-mopify-1.7.0.css" />

<body>
<link rel="manifest" href="assets/manifest.json">
<link rel="apple-touch-icon" href="assets/images/musicicon-4x.png">
</head>

<!-- Main application -->
<div id="application" class="fullheight">
<div class="container-fluid fullheight">
<div class="row fullheight">
<div id="leftside" class="fullheight" ng-class="{ show: showmobilemenu }">
<div id="menu">
<ng-include src="'search/menu.tmpl.html'"></ng-include>
<ng-include src="'discover/menu.tmpl.html'"></ng-include>
<ng-include src="'music/menu.tmpl.html'"></ng-include>
<ng-include src="'account/menu.tmpl.html'"></ng-include>
</div>
<body>

<ng-include src="'account/services/services.menu.tmpl.html'"></ng-include>
<!-- Main application -->
<div id="application" class="fullheight">
<div class="container-fluid fullheight">
<div class="row fullheight">
<div id="leftside" class="fullheight" ng-class="{ show: showmobilemenu }">
<div id="menu">
<ng-include src="'search/menu.tmpl.html'"></ng-include>
<ng-include src="'discover/menu.tmpl.html'"></ng-include>
<ng-include src="'music/menu.tmpl.html'"></ng-include>
<ng-include src="'account/menu.tmpl.html'"></ng-include>
</div>

<div id="mainwrap" class="fullheight">
<div class="mobilemenutoggle" ng-click="showmobilemenu = !showmobilemenu">
<div class="line"></div>
</div>
<div class="container-fluid fullheight" ng-view></div>
<ng-include src="'account/services/services.menu.tmpl.html'"></ng-include>
</div>

<div id="mainwrap" class="fullheight">
<div class="mobilemenutoggle" ng-click="showmobilemenu = !showmobilemenu">
<div class="line"></div>
</div>
<div class="container-fluid fullheight" ng-view></div>
</div>
</div>
</div>

<div id="player" class="container-fluid" ng-controller="PlayerController">
<ng-include src="'player/player.tmpl.html'"></ng-include>
</div>
<div id="player" class="container-fluid" ng-controller="PlayerController">
<ng-include src="'player/player.tmpl.html'"></ng-include>
</div>
</div>

<!-- Grunt will handle this part -->

<script type="text/javascript" src="assets/mopidy-mopify-1.7.0.js"></script>

<!-- Start our clipboard handler -->
<script type="text/javascript">
new Clipboard('.clip-text');
</script>

</body>

<!-- Grunt will handle this part -->

<script type="text/javascript" src="assets/mopidy-mopify-1.6.1.js"></script>

<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-58065427-1', 'auto');
</script>

<!-- Start our clipboard handler -->
<script type="text/javascript">
new Clipboard('.clip-text');
</script>

</body>
</html>
</html>
16 changes: 8 additions & 8 deletions mopidy_mopify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
import os
import tornado.web

import mem
from . import mem

from services.sync import sync
from services.autoupdate import update
from .services.sync import sync
from .services.autoupdate import update

from services.queuemanager import core as QueueManagerCore
from services.queuemanager import frontend
from services.queuemanager import requesthandler as QueueManagerRequestHandler
from .services.queuemanager import core as QueueManagerCore
from .services.queuemanager import frontend
from .services.queuemanager import requesthandler as QueueManagerRequestHandler

from mopidy import config, ext

__version__ = '1.6.1'
__version__ = '1.7.0'
__ext_name__ = 'mopify'
__verbosemode__ = False

Expand All @@ -38,7 +38,7 @@ def get_config_schema(self):

def setup(self, registry):
sync.Sync();

# Create instances
mem.queuemanager = QueueManagerCore.QueueManager()

Expand Down
Loading

0 comments on commit eab194e

Please sign in to comment.