Skip to content

Commit

Permalink
settle on a name
Browse files Browse the repository at this point in the history
  • Loading branch information
kacrouse committed Jul 6, 2019
1 parent b496d89 commit 9ef8773
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pco-to-spotify",
"name": "planning-center-playlist",
"version": "1.0.0",
"description": "A web extension to create a Spotify playlist from a Planning Center Service",
"description": "A browser extension to create a Spotify playlist from a Planning Center Services plan.",
"author": "Kyle Crouse",
"scripts": {
"lint": "eslint --ext .js,.vue src",
Expand Down
2 changes: 1 addition & 1 deletion src/components/SpotifyPlaylistSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
ref="autocomplete"
:data="filteredPlaylists"
field="name"
placeholder="Find a playlist"
placeholder="Find a Spotify playlist"
class="playlist-selection"
icon="magnify"
v-model="playlistSearchString"
Expand Down
11 changes: 6 additions & 5 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pco-to-spotify",
"description": "A web extension to create a Spotify playlist from a Planning Center Service",
"version": null,
"name": "Planning Center Playlist",
"description": "Create a Spotify playlist from a Planning Center Services plan. Navigate to a plan page to try it out!",
"version": "1.0.0",
"manifest_version": 2,
"icons": {
"16": "icons/icon-16.png",
Expand All @@ -16,7 +16,8 @@
"background": {
"scripts": [
"background.js"
]
],
"persistent": false
},
"permissions": [
"identity",
Expand All @@ -25,4 +26,4 @@
"https://api.planningcenteronline.com/*",
"https://*.spotify.com/*"
]
}
}
2 changes: 1 addition & 1 deletion src/popup/App.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<section class="root">
<b-loading :is-full-page="true" :active="isLoading" />
<bulma-hero title="Planning Center to Spotify" icon="playlist-music" />
<bulma-hero title="Planning Center Playlist" icon="playlist-music" />

<main>
<section>
Expand Down
2 changes: 1 addition & 1 deletion src/popup/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<head>
<meta charset="UTF-8">
<title>Title</title>
<title>Planning Center Playlist</title>
<link rel="stylesheet" href="popup.css">
<link rel="stylesheet" href="https://cdn.materialdesignicons.com/3.7.95/css/materialdesignicons.min.css">
<% if (NODE_ENV === 'development') { %>
Expand Down

0 comments on commit 9ef8773

Please sign in to comment.