-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from leeroybrun/v0.2.0
v0.2.0 Changelog: - All tasks are performed on the background script - Logging and logs export - Cleaning of all extension's data - Rotating icon when update is in progress - Handle adding more than 100 tracks to Spotify playlists, API calls will be splitted - Support new MyShazam website and download tags in only one request (from history download) - Update script to apply changes between versions - Removed jQuery from Angular part - Add intro to help user setup the accounts - New font (Helvetiva Neue is not available on Windows...) - Small UI improvement & fixes - Bugfixes
- Loading branch information
Showing
48 changed files
with
2,913 additions
and
473 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,6 @@ | |
node_modules/ | ||
popup/popup.css | ||
popup/popup.js | ||
background/background.js | ||
dist/ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "chrome-shazam2spotify", | ||
"version": "0.1.6", | ||
"version": "0.2.0", | ||
"author": "Leeroy Brun <[email protected]>", | ||
"private": true, | ||
"description": "Chrome extension used to export your Shazam tags to a Spotify playlist", | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
var _gaq = _gaq || []; | ||
_gaq.push(['_setAccount', 'UA-57493072-3']); | ||
|
||
(function() { | ||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | ||
ga.src = 'https://ssl.google-analytics.com/ga.js'; | ||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<div class="intro-steps" ng-switch="currentStep"> | ||
<div class="step step-1" ng-switch-when="1"> | ||
<div class="content"> | ||
<h1 chrome-translate>introWelcome</h1> | ||
<div chrome-translate>introWelcomeText</div> | ||
<div class="buttons"> | ||
<p><a class="pure-button next" ng-click="goTo(2)" chrome-translate analytics-on analytics-event="Start" analytics-category="Intro">introStart</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="step step-2" ng-switch-when="2"> | ||
<div class="content"> | ||
<h1> | ||
<span class="iconmelon" ng-class="{red: !login.shazam.status, green: login.shazam.status}"> | ||
<svg viewBox="0 0 32 32"> | ||
<g filter=""> | ||
<use xlink:href="#unlock" ng-if="!login.shazam.status"></use> | ||
<use xlink:href="#lock" ng-if="login.shazam.status"></use> | ||
</g> | ||
</svg> | ||
</span> | ||
Shazam | ||
</h1> | ||
<div chrome-translate ng-if="!login.shazam.status">introShazamLoggedOutText</div> | ||
<div chrome-translate ng-if="login.shazam.status">introShazamLoggedInText</div> | ||
<div class="buttons"> | ||
<p ng-if="!login.shazam.status"><a class="pure-button pure-button-primary next" ng-click="login.shazam.openLogin()" chrome-translate analytics-on analytics-event="Open Shazam login" analytics-category="Intro">introOpenShazamLogin</a></p> | ||
<p ng-if="login.shazam.status"><a class="pure-button next" ng-click="goTo(3)" chrome-translate analytics-on analytics-event="Go to Spotify slide" analytics-category="Intro">introNext</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="step step-3" ng-switch-when="3"> | ||
<div class="content"> | ||
<h1> | ||
<span class="iconmelon" ng-class="{red: !login.spotify.status, green: login.spotify.status}"> | ||
<svg viewBox="0 0 32 32"> | ||
<g filter=""> | ||
<use xlink:href="#unlock" ng-if="!login.spotify.status"></use> | ||
<use xlink:href="#lock" ng-if="login.spotify.status"></use> | ||
</g> | ||
</svg> | ||
</span> | ||
Spotify | ||
</h1> | ||
<div chrome-translate ng-if="!login.spotify.status">introSpotifyLoggedOutText</div> | ||
<div chrome-translate ng-if="login.spotify.status">introSpotifyLoggedInText</div> | ||
<div class="buttons"> | ||
<p ng-if="!login.spotify.status"><a class="pure-button pure-button-primary centered-loader-container" ng-class="{'centered-loader-active': login.spotify.loginOpened}" ng-click="login.spotify.openLogin()" analytics-on analytics-event="Open Spotify login" analytics-category="Intro"><span ng-if="login.spotify.loginOpened" class="centered-loader"></span><span chrome-translate>introOpenSpotifyLogin</span></a></p> | ||
<p ng-if="login.spotify.status"><a class="pure-button next" ng-click="goToTags()" chrome-translate analytics-on analytics-event="End" analytics-category="Intro">introEnd</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.