Skip to content

Commit

Permalink
production
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewdias committed Dec 12, 2016
1 parent 2e92edc commit cdc4036
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kitsu-updater",
"description": "Automatically update your Kitsu.io library from streaming sites",
"version": "0.1.2",
"version": "0.1.3",
"scripts": {
"clean": "rm -rf build dist",
"clean:chrome": "rm -rf build/chrome dist/chrome",
Expand Down
2 changes: 1 addition & 1 deletion src/browser/chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Kitsu Updater",
"description": "Automatically update your Kitsu.io library from streaming sites",
"version": "0.1.2",
"version": "0.1.3",
"permissions": [
"background",
"contextMenus",
Expand Down
4 changes: 2 additions & 2 deletions src/common/js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ contextMenu({
contexts: [ 'selection' ],
onclick: (info) => {
let { selectionText } = info
openTab('https://staging.kitsu.io/anime?text=' + selectionText)
openTab('https://kitsu.io/anime?text=' + selectionText)
}
})

Expand All @@ -38,7 +38,7 @@ contextMenu({
contexts: [ 'selection' ],
onclick: (info) => {
let { selectionText } = info
openTab('https://staging.kitsu.io/manga?text=' + selectionText)
openTab('https://kitsu.io/manga?text=' + selectionText)
}
})

Expand Down
4 changes: 2 additions & 2 deletions src/common/js/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ const saveButton = document.getElementById('save')

sendMessage({ action: 'sendpause', anime: animeId })
sendMessage({ action: 'anime', id: animeId }, (anime) => {
animeLink.href = `http://staging.kitsu.io/anime/${anime.slug}`
animeLink.href = `https://kitsu.io/anime/${anime.slug}`
poster.src = anime.posterImage.original
animeSave.disabled = true
let ignored = localStorage.getItem('ignored')
ignore.checked = ignored && ignored.includes(title)
episodeLink.href = `https://staging.kitsu.io/anime/${anime.slug}`
episodeLink.href = `https://kitsu.io/anime/${anime.slug}`
episodeSave.disabled = true
reconsuming.disabled = true
reconsumes.value = 0
Expand Down
2 changes: 1 addition & 1 deletion src/common/js/kitsu.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const OAuth2 = require('client-oauth2')
const JsonApi = require('devour-client')
const baseUrl = 'https://staging.kitsu.io/api'
const baseUrl = 'https://kitsu.io/api'

class Kitsu {
constructor() {
Expand Down

0 comments on commit cdc4036

Please sign in to comment.