diff --git a/.gitignore b/.gitignore index 8762d35b3..9ad1a84be 100644 --- a/.gitignore +++ b/.gitignore @@ -135,3 +135,5 @@ _start _temp_*/**/* src/.idea/ +/npm_start.bat +/npm_start.bat diff --git a/src/UI/.idea/dictionaries/Keivan.xml b/src/UI/.idea/dictionaries/Keivan.xml index e85a39c0f..fb034b3af 100644 --- a/src/UI/.idea/dictionaries/Keivan.xml +++ b/src/UI/.idea/dictionaries/Keivan.xml @@ -8,7 +8,7 @@ rootfolder rootfolders signalr - sonarr + lidarr templated thetvdb trakt diff --git a/src/UI/Activity/Blacklist/BlacklistActionsCell.js b/src/UI/Activity/Blacklist/BlacklistActionsCell.js index 61ce7d102..ed013db1d 100644 --- a/src/UI/Activity/Blacklist/BlacklistActionsCell.js +++ b/src/UI/Activity/Blacklist/BlacklistActionsCell.js @@ -12,8 +12,8 @@ module.exports = NzbDroneCell.extend({ render : function() { this.$el.empty(); - this.$el.html('' + - ''); + this.$el.html('' + + ''); return this; }, diff --git a/src/UI/Activity/Blacklist/BlacklistLayout.js b/src/UI/Activity/Blacklist/BlacklistLayout.js index 22d7da60e..778a15d22 100644 --- a/src/UI/Activity/Blacklist/BlacklistLayout.js +++ b/src/UI/Activity/Blacklist/BlacklistLayout.js @@ -83,7 +83,7 @@ module.exports = Marionette.Layout.extend({ items : [ { title : 'Clear Blacklist', - icon : 'icon-sonarr-clear', + icon : 'icon-lidarr-clear', command : 'clearBlacklist' } ] diff --git a/src/UI/Activity/History/Details/HistoryDetailsViewTemplate.hbs b/src/UI/Activity/History/Details/HistoryDetailsViewTemplate.hbs index 89a757660..147504fc0 100644 --- a/src/UI/Activity/History/Details/HistoryDetailsViewTemplate.hbs +++ b/src/UI/Activity/History/Details/HistoryDetailsViewTemplate.hbs @@ -91,7 +91,7 @@ {{/if_eq}} {{#if_eq reason compare="MissingFromDisk"}} - Sonarr was unable to find the file on disk so it was removed + Lidarr was unable to find the file on disk so it was removed {{/if_eq}} {{#if_eq reason compare="Upgrade"}} diff --git a/src/UI/Activity/History/HistoryDetailsCell.js b/src/UI/Activity/History/HistoryDetailsCell.js index 4a1a8a53f..5c8a33b09 100644 --- a/src/UI/Activity/History/HistoryDetailsCell.js +++ b/src/UI/Activity/History/HistoryDetailsCell.js @@ -10,7 +10,7 @@ module.exports = NzbDroneCell.extend({ render : function() { this.$el.empty(); - this.$el.html(''); + this.$el.html(''); return this; }, diff --git a/src/UI/Activity/History/HistoryLayout.js b/src/UI/Activity/History/HistoryLayout.js index ae7e4c93e..d3d7206ff 100644 --- a/src/UI/Activity/History/HistoryLayout.js +++ b/src/UI/Activity/History/HistoryLayout.js @@ -99,35 +99,35 @@ module.exports = Marionette.Layout.extend({ key : 'all', title : '', tooltip : 'All', - icon : 'icon-sonarr-all', + icon : 'icon-lidarr-all', callback : this._setFilter }, { key : 'grabbed', title : '', tooltip : 'Grabbed', - icon : 'icon-sonarr-downloading', + icon : 'icon-lidarr-downloading', callback : this._setFilter }, { key : 'imported', title : '', tooltip : 'Imported', - icon : 'icon-sonarr-imported', + icon : 'icon-lidarr-imported', callback : this._setFilter }, { key : 'failed', title : '', tooltip : 'Failed', - icon : 'icon-sonarr-download-failed', + icon : 'icon-lidarr-download-failed', callback : this._setFilter }, { key : 'deleted', title : '', tooltip : 'Deleted', - icon : 'icon-sonarr-deleted', + icon : 'icon-lidarr-deleted', callback : this._setFilter } ] diff --git a/src/UI/Activity/Queue/QueueActionsCellTemplate.hbs b/src/UI/Activity/Queue/QueueActionsCellTemplate.hbs index 13bee034e..0f2301929 100644 --- a/src/UI/Activity/Queue/QueueActionsCellTemplate.hbs +++ b/src/UI/Activity/Queue/QueueActionsCellTemplate.hbs @@ -1,12 +1,12 @@ {{#if_eq status compare="Completed"}} {{#if_eq trackedDownloadStatus compare="Warning"}} - + {{/if_eq}} {{/if_eq}} {{#if_eq status compare="Pending"}} - - + + {{else}} - + {{/if_eq}} diff --git a/src/UI/Activity/Queue/QueueCollection.js b/src/UI/Activity/Queue/QueueCollection.js index 474cafe6b..ff390af7f 100644 --- a/src/UI/Activity/Queue/QueueCollection.js +++ b/src/UI/Activity/Queue/QueueCollection.js @@ -1,6 +1,6 @@ var _ = require('underscore'); var PageableCollection = require('backbone.pageable'); -//var PageableCollection = require('../../Shared/Grid/SonarrPageableCollection'); +//var PageableCollection = require('../../Shared/Grid/LidarrPageableCollection'); var QueueModel = require('./QueueModel'); var FormatHelpers = require('../../Shared/FormatHelpers'); var AsSortedCollection = require('../../Mixins/AsSortedCollection'); diff --git a/src/UI/Activity/Queue/QueueStatusCell.js b/src/UI/Activity/Queue/QueueStatusCell.js index 04c027b50..a345cac3c 100644 --- a/src/UI/Activity/Queue/QueueStatusCell.js +++ b/src/UI/Activity/Queue/QueueStatusCell.js @@ -11,43 +11,43 @@ module.exports = NzbDroneCell.extend({ if (this.cellValue) { var status = this.cellValue.get('status').toLowerCase(); var trackedDownloadStatus = this.cellValue.has('trackedDownloadStatus') ? this.cellValue.get('trackedDownloadStatus').toLowerCase() : 'ok'; - var icon = 'icon-sonarr-downloading'; + var icon = 'icon-lidarr-downloading'; var title = 'Downloading'; var itemTitle = this.cellValue.get('title'); var content = itemTitle; if (status === 'paused') { - icon = 'icon-sonarr-paused'; + icon = 'icon-lidarr-paused'; title = 'Paused'; } if (status === 'queued') { - icon = 'icon-sonarr-queued'; + icon = 'icon-lidarr-queued'; title = 'Queued'; } if (status === 'completed') { - icon = 'icon-sonarr-downloaded'; + icon = 'icon-lidarr-downloaded'; title = 'Downloaded'; } if (status === 'pending') { - icon = 'icon-sonarr-pending'; + icon = 'icon-lidarr-pending'; title = 'Pending'; } if (status === 'failed') { - icon = 'icon-sonarr-download-failed'; + icon = 'icon-lidarr-download-failed'; title = 'Download failed'; } if (status === 'warning') { - icon = 'icon-sonarr-download-warning'; + icon = 'icon-lidarr-download-warning'; title = 'Download warning: check download client for more details'; } if (trackedDownloadStatus === 'warning') { - icon += ' icon-sonarr-warning'; + icon += ' icon-lidarr-warning'; this.templateFunction = Marionette.TemplateCache.get(this.template); content = this.templateFunction(this.cellValue.toJSON()); @@ -55,10 +55,10 @@ module.exports = NzbDroneCell.extend({ if (trackedDownloadStatus === 'error') { if (status === 'completed') { - icon = 'icon-sonarr-import-failed'; + icon = 'icon-lidarr-import-failed'; title = 'Import failed: ' + itemTitle; } else { - icon = 'icon-sonarr-download-failed'; + icon = 'icon-lidarr-download-failed'; title = 'Download failed'; } diff --git a/src/UI/Activity/Queue/RemoveFromQueueViewTemplate.hbs b/src/UI/Activity/Queue/RemoveFromQueueViewTemplate.hbs index c0834ea69..b7853e2fa 100644 --- a/src/UI/Activity/Queue/RemoveFromQueueViewTemplate.hbs +++ b/src/UI/Activity/Queue/RemoveFromQueueViewTemplate.hbs @@ -31,7 +31,7 @@ - + @@ -42,7 +42,7 @@ {{/if}} diff --git a/src/UI/AddSeries/AddSeriesLayoutTemplate.hbs b/src/UI/AddSeries/AddSeriesLayoutTemplate.hbs index 69b78aedb..f3daf14aa 100644 --- a/src/UI/AddSeries/AddSeriesLayoutTemplate.hbs +++ b/src/UI/AddSeries/AddSeriesLayoutTemplate.hbs @@ -2,10 +2,10 @@
- +
diff --git a/src/UI/AddSeries/AddSeriesViewTemplate.hbs b/src/UI/AddSeries/AddSeriesViewTemplate.hbs index 56d69b616..05b1101d6 100644 --- a/src/UI/AddSeries/AddSeriesViewTemplate.hbs +++ b/src/UI/AddSeries/AddSeriesViewTemplate.hbs @@ -6,12 +6,12 @@ {{/if}} @@ -19,6 +19,6 @@
diff --git a/src/UI/AddSeries/RootFolders/RootFolderItemViewTemplate.hbs b/src/UI/AddSeries/RootFolders/RootFolderItemViewTemplate.hbs index 2203e1efd..c1378207a 100644 --- a/src/UI/AddSeries/RootFolders/RootFolderItemViewTemplate.hbs +++ b/src/UI/AddSeries/RootFolders/RootFolderItemViewTemplate.hbs @@ -5,5 +5,5 @@ {{Bytes freeSpace}} - + diff --git a/src/UI/AddSeries/RootFolders/RootFolderLayoutTemplate.hbs b/src/UI/AddSeries/RootFolders/RootFolderLayoutTemplate.hbs index 83cb9535d..d733c4ba7 100644 --- a/src/UI/AddSeries/RootFolders/RootFolderLayoutTemplate.hbs +++ b/src/UI/AddSeries/RootFolders/RootFolderLayoutTemplate.hbs @@ -13,9 +13,9 @@
-   +   - +
diff --git a/src/UI/AddSeries/SearchResultViewTemplate.hbs b/src/UI/AddSeries/SearchResultViewTemplate.hbs index 23cee51e9..a91fe80af 100644 --- a/src/UI/AddSeries/SearchResultViewTemplate.hbs +++ b/src/UI/AddSeries/SearchResultViewTemplate.hbs @@ -31,7 +31,7 @@ {{/unless}}
- +
- - + +
diff --git a/src/UI/Calendar/CalendarLayout.js b/src/UI/Calendar/CalendarLayout.js index 15aa74dfe..3cd289d85 100644 --- a/src/UI/Calendar/CalendarLayout.js +++ b/src/UI/Calendar/CalendarLayout.js @@ -42,7 +42,7 @@ module.exports = Marionette.Layout.extend({ items : [ { title : 'Get iCal Link', - icon : 'icon-sonarr-calendar-o', + icon : 'icon-lidarr-calendar-o', callback : this._showiCal, ownerContext : this } @@ -59,14 +59,14 @@ module.exports = Marionette.Layout.extend({ key : 'all', title : '', tooltip : 'All', - icon : 'icon-sonarr-all', + icon : 'icon-lidarr-all', callback : this._setCalendarFilter }, { key : 'monitored', title : '', tooltip : 'Monitored Only', - icon : 'icon-sonarr-monitored', + icon : 'icon-lidarr-monitored', callback : this._setCalendarFilter } ] diff --git a/src/UI/Calendar/CalendarView.js b/src/UI/Calendar/CalendarView.js index 871db9343..3fcc30334 100644 --- a/src/UI/Calendar/CalendarView.js +++ b/src/UI/Calendar/CalendarView.js @@ -57,23 +57,23 @@ module.exports = Marionette.ItemView.extend({ var errorMessage = event.downloading.get('errorMessage'); if (status === 'pending') { - this._addStatusIcon(element, 'icon-sonarr-pending', 'Release will be processed {0}'.format(estimatedCompletionTime)); + this._addStatusIcon(element, 'icon-lidarr-pending', 'Release will be processed {0}'.format(estimatedCompletionTime)); } else if (errorMessage) { if (status === 'completed') { - this._addStatusIcon(element, 'icon-sonarr-import-failed', 'Import failed: {0}'.format(errorMessage)); + this._addStatusIcon(element, 'icon-lidarr-import-failed', 'Import failed: {0}'.format(errorMessage)); } else { - this._addStatusIcon(element, 'icon-sonarr-download-failed', 'Download failed: {0}'.format(errorMessage)); + this._addStatusIcon(element, 'icon-lidarr-download-failed', 'Download failed: {0}'.format(errorMessage)); } } else if (status === 'failed') { - this._addStatusIcon(element, 'icon-sonarr-download-failed', 'Download failed: check download client for more details'); + this._addStatusIcon(element, 'icon-lidarr-download-failed', 'Download failed: check download client for more details'); } else if (status === 'warning') { - this._addStatusIcon(element, 'icon-sonarr-download-warning', 'Download warning: check download client for more details'); + this._addStatusIcon(element, 'icon-lidarr-download-warning', 'Download warning: check download client for more details'); } else { @@ -96,11 +96,11 @@ module.exports = Marionette.ItemView.extend({ } else if (event.model.get('unverifiedSceneNumbering')) { - this._addStatusIcon(element, 'icon-sonarr-form-warning', 'Scene number hasn\'t been verified yet.'); + this._addStatusIcon(element, 'icon-lidarr-form-warning', 'Scene number hasn\'t been verified yet.'); } else if (event.model.get('series').seriesType === 'anime' && event.model.get('seasonNumber') > 0 && !event.model.has('absoluteEpisodeNumber')) { - this._addStatusIcon(element, 'icon-sonarr-form-warning', 'Episode does not have an absolute episode number'); + this._addStatusIcon(element, 'icon-lidarr-form-warning', 'Episode does not have an absolute episode number'); } }, diff --git a/src/UI/Cells/ApprovalStatusCell.js b/src/UI/Cells/ApprovalStatusCell.js index 08c6ba575..96e2a45a4 100644 --- a/src/UI/Cells/ApprovalStatusCell.js +++ b/src/UI/Cells/ApprovalStatusCell.js @@ -17,7 +17,7 @@ module.exports = Backgrid.Cell.extend({ this.templateFunction = Marionette.TemplateCache.get(this.template); var html = this.templateFunction(rejections); - this.$el.html(''); + this.$el.html(''); this.$el.popover({ content : html, diff --git a/src/UI/Cells/DeleteEpisodeFileCell.js b/src/UI/Cells/DeleteEpisodeFileCell.js index 88ddf8b82..11aa9c4f6 100644 --- a/src/UI/Cells/DeleteEpisodeFileCell.js +++ b/src/UI/Cells/DeleteEpisodeFileCell.js @@ -10,7 +10,7 @@ module.exports = Backgrid.Cell.extend({ render : function() { this.$el.empty(); - this.$el.html(''); + this.$el.html(''); return this; }, diff --git a/src/UI/Cells/EpisodeActionsCell.js b/src/UI/Cells/EpisodeActionsCell.js index 383942d34..969c7c9a8 100644 --- a/src/UI/Cells/EpisodeActionsCell.js +++ b/src/UI/Cells/EpisodeActionsCell.js @@ -13,7 +13,7 @@ module.exports = NzbDroneCell.extend({ render : function() { this.$el.empty(); - this.$el.html('' + ''); + this.$el.html('' + ''); CommandController.bindToCommand({ element : this.$el.find('.x-automatic-search'), diff --git a/src/UI/Cells/EpisodeStatusCell.js b/src/UI/Cells/EpisodeStatusCell.js index 5913e372d..50de17206 100644 --- a/src/UI/Cells/EpisodeStatusCell.js +++ b/src/UI/Cells/EpisodeStatusCell.js @@ -69,7 +69,7 @@ module.exports = NzbDroneCell.extend({ var progress = 100 - (downloading.get('sizeleft') / downloading.get('size') * 100); if (progress === 0) { - icon = 'icon-sonarr-downloading'; + icon = 'icon-lidarr-downloading'; tooltip = 'Episode is downloading'; } @@ -81,20 +81,20 @@ module.exports = NzbDroneCell.extend({ } else if (this.model.get('grabbed')) { - icon = 'icon-sonarr-downloading'; + icon = 'icon-lidarr-downloading'; tooltip = 'Episode is downloading'; } else if (!this.model.get('airDateUtc')) { - icon = 'icon-sonarr-tba'; + icon = 'icon-lidarr-tba'; tooltip = 'TBA'; } else if (hasAired) { - icon = 'icon-sonarr-missing'; + icon = 'icon-lidarr-missing'; tooltip = 'Episode missing from disk'; } else { - icon = 'icon-sonarr-not-aired'; + icon = 'icon-lidarr-not-aired'; tooltip = 'Episode has not aired'; } } diff --git a/src/UI/Cells/EventTypeCell.js b/src/UI/Cells/EventTypeCell.js index 4ca9a85ae..d9c643795 100644 --- a/src/UI/Cells/EventTypeCell.js +++ b/src/UI/Cells/EventTypeCell.js @@ -12,27 +12,27 @@ module.exports = NzbDroneCell.extend({ switch (this.cellValue.get('eventType')) { case 'grabbed': - icon = 'icon-sonarr-downloading'; + icon = 'icon-lidarr-downloading'; toolTip = 'Episode grabbed from {0} and sent to download client'.format(this.cellValue.get('data').indexer); break; case 'seriesFolderImported': - icon = 'icon-sonarr-hdd'; + icon = 'icon-lidarr-hdd'; toolTip = 'Existing episode file added to library'; break; case 'downloadFolderImported': - icon = 'icon-sonarr-imported'; + icon = 'icon-lidarr-imported'; toolTip = 'Episode downloaded successfully and picked up from download client'; break; case 'downloadFailed': - icon = 'icon-sonarr-download-failed'; + icon = 'icon-lidarr-download-failed'; toolTip = 'Episode download failed'; break; case 'episodeFileDeleted': - icon = 'icon-sonarr-deleted'; + icon = 'icon-lidarr-deleted'; toolTip = 'Episode file deleted'; break; default: - icon = 'icon-sonarr-unknown'; + icon = 'icon-lidarr-unknown'; toolTip = 'unknown event'; } diff --git a/src/UI/Cells/SeriesActionsCell.js b/src/UI/Cells/SeriesActionsCell.js index eb62191ef..71f7b22a8 100644 --- a/src/UI/Cells/SeriesActionsCell.js +++ b/src/UI/Cells/SeriesActionsCell.js @@ -17,8 +17,8 @@ module.exports = NzbDroneCell.extend({ render : function() { this.$el.empty(); - this.$el.html(' ' + - ''); + this.$el.html(' ' + + ''); CommandController.bindToCommand({ element : this.$el.find('.x-refresh'), diff --git a/src/UI/Cells/SeriesStatusCell.js b/src/UI/Cells/SeriesStatusCell.js index e240f6100..7e99d8587 100644 --- a/src/UI/Cells/SeriesStatusCell.js +++ b/src/UI/Cells/SeriesStatusCell.js @@ -9,17 +9,17 @@ module.exports = NzbDroneCell.extend({ var status = this.model.get('status'); if (status === 'ended') { - this.$el.html(''); + this.$el.html(''); this._setStatusWeight(3); } else if (!monitored) { - this.$el.html(''); + this.$el.html(''); this._setStatusWeight(2); } else { - this.$el.html(''); + this.$el.html(''); this._setStatusWeight(1); } diff --git a/src/UI/Content/Overrides/bootstrap.less b/src/UI/Content/Overrides/bootstrap.less index 9ec9eb3be..a72e21e65 100644 --- a/src/UI/Content/Overrides/bootstrap.less +++ b/src/UI/Content/Overrides/bootstrap.less @@ -19,7 +19,7 @@ text-transform : none; } -.line &>[class^="icon-sonarr-"], .line &>[class*="icon-sonarr-"] { +.line &>[class^="icon-lidarr-"], .line &>[class*="icon-lidarr-"] { margin-top : 1em; height : 1em; line-height : 1em; diff --git a/src/UI/Content/icons.less b/src/UI/Content/icons.less index cce09293a..6de60fb04 100644 --- a/src/UI/Content/icons.less +++ b/src/UI/Content/icons.less @@ -55,22 +55,22 @@ &:before { color: @color; } } -.icon-sonarr-warning { +.icon-lidarr-warning { .fa-icon-content(@fa-var-exclamation-triangle); .fa-icon-color(@brand-warning); } -.icon-sonarr-edit { +.icon-lidarr-edit { .fa-icon-content(@fa-var-wrench); } -.icon-sonarr-blacklist { +.icon-lidarr-blacklist { .fa-icon-content(@fa-var-ban); .fa-icon-color(@brand-danger); } -.icon-sonarr-spinner { +.icon-lidarr-spinner { .fa-icon-content(@fa-var-spinner); } @@ -84,7 +84,7 @@ opacity : 0.0; margin : 0 !important; - &.icon-sonarr-spinner { + &.icon-lidarr-spinner { opacity : 1.0; margin : 0 -0.5em !important; } @@ -99,407 +99,407 @@ } } -.icon-sonarr-rename { +.icon-lidarr-rename { .fa-icon-content(@fa-var-sitemap) } -.icon-sonarr-add { +.icon-lidarr-add { .fa-icon-content(@fa-var-plus); } -.icon-sonarr-form-info { +.icon-lidarr-form-info { .fa-icon-content(@fa-var-question-circle); } -.icon-sonarr-form-warning { +.icon-lidarr-form-warning { .fa-icon-content(@fa-var-exclamation-triangle); .fa-icon-color(@brand-warning); } -.icon-sonarr-form-danger { +.icon-lidarr-form-danger { .fa-icon-content(@fa-var-exclamation-circle); .fa-icon-color(@brand-danger); } -.icon-sonarr-form-info-link { +.icon-lidarr-form-info-link { .clickable(); .fa-icon-content(@fa-var-info-circle); .fa-icon-color(@brand-primary) } -.icon-sonarr-form-external-link { +.icon-lidarr-form-external-link { .fa-icon-content(@fa-var-external-link); } -.icon-sonarr-update { +.icon-lidarr-update { .fa-icon-content(@fa-var-download); } -.icon-sonarr-download { +.icon-lidarr-download { .fa-icon-content(@fa-var-download); } -.icon-sonarr-downloading { +.icon-lidarr-downloading { .fa-icon-content(@fa-var-cloud-download); } -.icon-sonarr-downloaded { +.icon-lidarr-downloaded { .fa-icon-content(@fa-var-inbox); } -.icon-sonarr-pending { +.icon-lidarr-pending { .fa-icon-content(@fa-var-clock-o); } -.icon-sonarr-queued { +.icon-lidarr-queued { .fa-icon-content(@fa-var-cloud); } -.icon-sonarr-paused { +.icon-lidarr-paused { .fa-icon-content(@fa-var-pause); } -.icon-sonarr-active { +.icon-lidarr-active { .fa-icon-content(@fa-var-play); } -.icon-sonarr-tba { +.icon-lidarr-tba { .fa-icon-content(@fa-var-question-circle); } -.icon-sonarr-missing { +.icon-lidarr-missing { .fa-icon-content(@fa-var-exclamation-triangle); } -.icon-sonarr-not-aired { +.icon-lidarr-not-aired { .fa-icon-content(@fa-var-clock-o); } -.icon-sonarr-import { +.icon-lidarr-import { .fa-icon-content(@fa-var-inbox); } -.icon-sonarr-import-manual { +.icon-lidarr-import-manual { .fa-icon-content(@fa-var-user); } -.icon-sonarr-imported { +.icon-lidarr-imported { .fa-icon-content(@fa-var-download); } -.icon-sonarr-status { +.icon-lidarr-status { .fa-icon-content(@fa-var-circle); } -.icon-sonarr-monitored { +.icon-lidarr-monitored { .fa-icon-content(@fa-var-bookmark); } -.icon-sonarr-unmonitored { +.icon-lidarr-unmonitored { .fa-icon-content(@fa-var-bookmark-o); } -.icon-sonarr-log-info { +.icon-lidarr-log-info { .fa-icon-content(@fa-var-info-circle); .fa-icon-color(dodgerblue); } -.icon-sonarr-log-debug { +.icon-lidarr-log-debug { .fa-icon-content(@fa-var-info-circle); .fa-icon-color(gray); } -.icon-sonarr-log-trace { +.icon-lidarr-log-trace { .fa-icon-content(@fa-var-info-circle); .fa-icon-color(lightgrey); } -.icon-sonarr-log-warn { +.icon-lidarr-log-warn { .fa-icon-content(@fa-var-exclamation-circle); .fa-icon-color(@brand-warning); } -.icon-sonarr-log-error { +.icon-lidarr-log-error { .fa-icon-content(@fa-var-bug); .fa-icon-color(@brand-danger); } -.icon-sonarr-log-fatal { +.icon-lidarr-log-fatal { .fa-icon-content(@fa-var-times-circle); .fa-icon-color(purple); } -.icon-sonarr-import-failed { +.icon-lidarr-import-failed { .fa-icon-content(@fa-var-download); .fa-icon-color(@brand-danger); } -.icon-sonarr-download-failed { +.icon-lidarr-download-failed { .fa-icon-content(@fa-var-cloud-download); .fa-icon-color(@brand-danger); } -.icon-sonarr-download-warning { +.icon-lidarr-download-warning { .fa-icon-content(@fa-var-cloud-download); .fa-icon-color(@brand-warning); } -.icon-sonarr-shutdown { +.icon-lidarr-shutdown { .fa-icon-content(@fa-var-power-off); .fa-icon-color(@brand-danger); } -.icon-sonarr-restart { +.icon-lidarr-restart { .fa-icon-content(@fa-var-repeat); } -.icon-sonarr-health-warning { +.icon-lidarr-health-warning { .fa-icon-content(@fa-var-exclamation-circle); .fa-icon-color(@brand-warning); } -.icon-sonarr-health-error { +.icon-lidarr-health-error { .fa-icon-content(@fa-var-exclamation-circle); .fa-icon-color(@brand-danger); } -.icon-sonarr-search { +.icon-lidarr-search { .fa-icon-content(@fa-var-search); } -.icon-sonarr-search-manual { +.icon-lidarr-search-manual { .fa-icon-content(@fa-var-user); } -.icon-sonarr-search-automatic { +.icon-lidarr-search-automatic { .fa-icon-content(@fa-var-rocket); } -.icon-sonarr-delete { +.icon-lidarr-delete { .fa-icon-content(@fa-var-remove); .fa-icon-color(@brand-danger); } -.icon-sonarr-deleted { +.icon-lidarr-deleted { .fa-icon-content(@fa-var-trash); } -.icon-sonarr-clear { +.icon-lidarr-clear { .fa-icon-content(@fa-var-trash); } -.icon-sonarr-existing { +.icon-lidarr-existing { .fa-icon-content(@fa-var-minus); .fa-icon-color(@brand-danger); } -.icon-sonarr-suggested { +.icon-lidarr-suggested { .fa-icon-content(@fa-var-plus); .fa-icon-color(@brand-success); } -.icon-sonarr-info { +.icon-lidarr-info { .fa-icon-content(@fa-var-info-circle); } -.icon-sonarr-all { +.icon-lidarr-all { .fa-icon-content(@fa-var-circle-o); } //Navbar -.icon-sonarr-navbar-collapsed { +.icon-lidarr-navbar-collapsed { .fa-icon-content(@fa-var-bars); } -.icon-sonarr-navbar-series { +.icon-lidarr-navbar-series { .fa-icon-content(@fa-var-play); } -.icon-sonarr-navbar-calendar { +.icon-lidarr-navbar-calendar { .fa-icon-content(@fa-var-calendar); } -.icon-sonarr-navbar-activity { +.icon-lidarr-navbar-activity { .fa-icon-content(@fa-var-clock-o); } -.icon-sonarr-navbar-wanted { +.icon-lidarr-navbar-wanted { .fa-icon-content(@fa-var-exclamation-triangle); } -.icon-sonarr-navbar-settings { +.icon-lidarr-navbar-settings { .fa-icon-content(@fa-var-cogs); } -.icon-sonarr-navbar-system { +.icon-lidarr-navbar-system { .fa-icon-content(@fa-var-laptop); } -.icon-sonarr-navbar-donate { +.icon-lidarr-navbar-donate { .fa-icon-content(@fa-var-heart); .fa-icon-color(@nzbdroneRed); } -.icon-sonarr-back-to-top { +.icon-lidarr-back-to-top { .fa-icon-content(@fa-var-arrow-circle-up); } -.icon-sonarr-hdd { +.icon-lidarr-hdd { .fa-icon-content(@fa-var-hdd-o); } -.icon-sonarr-copy { +.icon-lidarr-copy { .fa-icon-content(@fa-var-clipboard); } -.icon-sonarr-unknown { +.icon-lidarr-unknown { .fa-icon-content(@fa-var-question); } -.icon-sonarr-load-more { +.icon-lidarr-load-more { .fa-icon-content(@fa-var-angle-down); } -.icon-sonarr-ok { +.icon-lidarr-ok { .fa-icon-content(@fa-var-check); } -.icon-sonarr-calendar-o { +.icon-lidarr-calendar-o { .fa-icon-content(@fa-var-calendar-o); } -.icon-sonarr-folder-open { +.icon-lidarr-folder-open { .fa-icon-content(@fa-var-folder-open); } -.icon-sonarr-refresh { +.icon-lidarr-refresh { .fa-icon-content(@fa-var-refresh); } -.icon-sonarr-series-ended { +.icon-lidarr-series-ended { .fa-icon-content(@fa-var-stop); } -.icon-sonarr-series-continuing { +.icon-lidarr-series-continuing { .fa-icon-content(@fa-var-play); } -.icon-sonarr-series-unmonitored { +.icon-lidarr-series-unmonitored { .fa-icon-content(@fa-var-pause); } -.icon-sonarr-checked { +.icon-lidarr-checked { .fa-icon-content(@fa-var-check-square); } -.icon-sonarr-unchecked { +.icon-lidarr-unchecked { .fa-icon-content(@fa-var-square-o); } -.icon-sonarr-expand { +.icon-lidarr-expand { .fa-icon-content(@fa-var-chevron-right); } -.icon-sonarr-expanded { +.icon-lidarr-expanded { .fa-icon-content(@fa-var-chevron-down); } -.icon-sonarr-panel-show { +.icon-lidarr-panel-show { .fa-icon-content(@fa-var-chevron-circle-down); } -.icon-sonarr-panel-hide { +.icon-lidarr-panel-hide { .fa-icon-content(@fa-var-chevron-circle-up); } -.icon-sonarr-comment { +.icon-lidarr-comment { .fa-icon-content(@fa-var-comment) } -.icon-sonarr-rss { +.icon-lidarr-rss { .fa-icon-content(@fa-var-rss) } -.icon-sonarr-view-poster { +.icon-lidarr-view-poster { .fa-icon-content(@fa-var-th-large) } -.icon-sonarr-view-list { +.icon-lidarr-view-list { .fa-icon-content(@fa-var-th-list) } -.icon-sonarr-view-table { +.icon-lidarr-view-table { .fa-icon-content(@fa-var-table) } -.icon-sonarr-reorder { +.icon-lidarr-reorder { .fa-icon-content(@fa-var-bars); } -.icon-sonarr-browser-computer { +.icon-lidarr-browser-computer { .fa-icon-content(@fa-var-desktop); } -.icon-sonarr-browser-up { +.icon-lidarr-browser-up { .fa-icon-content(@fa-var-level-up); } -.icon-sonarr-browser-folder { +.icon-lidarr-browser-folder { .fa-icon-content(@fa-var-folder-o); } -.icon-sonarr-browser-file { +.icon-lidarr-browser-file { .fa-icon-content(@fa-var-file-o); } -.icon-sonarr-sort-asc { +.icon-lidarr-sort-asc { .fa-icon-content(@fa-var-sort-asc); } -.icon-sonarr-sort-desc { +.icon-lidarr-sort-desc { .fa-icon-content(@fa-var-sort-desc); } -.icon-sonarr-pager-first { +.icon-lidarr-pager-first { .fa-icon-content(@fa-var-fast-backward); } -.icon-sonarr-pager-previous { +.icon-lidarr-pager-previous { .fa-icon-content(@fa-var-backward); } -.icon-sonarr-pager-next { +.icon-lidarr-pager-next { .fa-icon-content(@fa-var-forward); } -.icon-sonarr-pager-last { +.icon-lidarr-pager-last { .fa-icon-content(@fa-var-fast-forward); } -.icon-sonarr-logout { +.icon-lidarr-logout { .fa-icon-content(@fa-var-sign-out); } -.icon-sonarr-file-text { +.icon-lidarr-file-text { .fa-icon-content(@fa-var-file-text); } -.icon-sonarr-backup-scheduled { +.icon-lidarr-backup-scheduled { .fa-icon-content(@fa-var-clock-o); } -.icon-sonarr-backup-manual { +.icon-lidarr-backup-manual { .fa-icon-content(@fa-var-book); } -.icon-sonarr-backup-update { +.icon-lidarr-backup-update { .fa-icon-content(@fa-var-retweet); } -.icon-sonarr-episode-file { +.icon-lidarr-episode-file { .fa-icon-content(@fa-var-file-video-o); } -.icon-sonarr-header-rejections { +.icon-lidarr-header-rejections { .fa-icon-content(@fa-var-exclamation-circle); } \ No newline at end of file diff --git a/src/UI/Content/navbar.less b/src/UI/Content/navbar.less index be535a779..bc220bdd4 100644 --- a/src/UI/Content/navbar.less +++ b/src/UI/Content/navbar.less @@ -21,7 +21,7 @@ margin-bottom : 1px; } - .icon-sonarr-navbar-icon { + .icon-lidarr-navbar-icon { display: inline; } diff --git a/src/UI/Episode/EpisodeDetailsLayout.js b/src/UI/Episode/EpisodeDetailsLayout.js index ba1631d0e..8aa58a91d 100644 --- a/src/UI/Episode/EpisodeDetailsLayout.js +++ b/src/UI/Episode/EpisodeDetailsLayout.js @@ -112,19 +112,19 @@ module.exports = Marionette.Layout.extend({ var name = 'monitored'; this.model.set(name, !this.model.get(name), { silent : true }); - this.ui.monitored.addClass('icon-sonarr-spinner fa-spin'); + this.ui.monitored.addClass('icon-lidarr-spinner fa-spin'); this.model.save(); }, _setMonitoredState : function() { - this.ui.monitored.removeClass('fa-spin icon-sonarr-spinner'); + this.ui.monitored.removeClass('fa-spin icon-lidarr-spinner'); if (this.model.get('monitored')) { - this.ui.monitored.addClass('icon-sonarr-monitored'); - this.ui.monitored.removeClass('icon-sonarr-unmonitored'); + this.ui.monitored.addClass('icon-lidarr-monitored'); + this.ui.monitored.removeClass('icon-lidarr-unmonitored'); } else { - this.ui.monitored.addClass('icon-sonarr-unmonitored'); - this.ui.monitored.removeClass('icon-sonarr-monitored'); + this.ui.monitored.addClass('icon-lidarr-unmonitored'); + this.ui.monitored.removeClass('icon-lidarr-monitored'); } } }); \ No newline at end of file diff --git a/src/UI/Episode/EpisodeDetailsLayoutTemplate.hbs b/src/UI/Episode/EpisodeDetailsLayoutTemplate.hbs index bac2e4559..a65c9b27a 100644 --- a/src/UI/Episode/EpisodeDetailsLayoutTemplate.hbs +++ b/src/UI/Episode/EpisodeDetailsLayoutTemplate.hbs @@ -5,7 +5,7 @@

- + {{series.title}} - {{EpisodeNumber}} - {{title}}

diff --git a/src/UI/Episode/History/EpisodeHistoryActionsCell.js b/src/UI/Episode/History/EpisodeHistoryActionsCell.js index c8c352aab..ae4bbfafb 100644 --- a/src/UI/Episode/History/EpisodeHistoryActionsCell.js +++ b/src/UI/Episode/History/EpisodeHistoryActionsCell.js @@ -14,7 +14,7 @@ module.exports = NzbDroneCell.extend({ this.$el.empty(); if (this.model.get('eventType') === 'grabbed') { - this.$el.html(''); + this.$el.html(''); } return this; diff --git a/src/UI/Episode/History/EpisodeHistoryDetailsCell.js b/src/UI/Episode/History/EpisodeHistoryDetailsCell.js index 366a25040..231c40473 100644 --- a/src/UI/Episode/History/EpisodeHistoryDetailsCell.js +++ b/src/UI/Episode/History/EpisodeHistoryDetailsCell.js @@ -10,7 +10,7 @@ module.exports = NzbDroneCell.extend({ render : function() { this.$el.empty(); - this.$el.html(''); + this.$el.html(''); var html = new HistoryDetailsView({ model : this.model }).render().$el; diff --git a/src/UI/Episode/Search/ButtonsViewTemplate.hbs b/src/UI/Episode/Search/ButtonsViewTemplate.hbs index 6ad9474d5..9e578f9db 100644 --- a/src/UI/Episode/Search/ButtonsViewTemplate.hbs +++ b/src/UI/Episode/Search/ButtonsViewTemplate.hbs @@ -1,4 +1,4 @@
- - + +
\ No newline at end of file diff --git a/src/UI/Episode/Search/ManualLayout.js b/src/UI/Episode/Search/ManualLayout.js index 58c792063..7bb39bab5 100644 --- a/src/UI/Episode/Search/ManualLayout.js +++ b/src/UI/Episode/Search/ManualLayout.js @@ -54,7 +54,7 @@ module.exports = Marionette.Layout.extend({ }, { name : 'rejections', - label : '', + label : '', tooltip : 'Rejections', cell : ApprovalStatusCell, sortable : true, @@ -64,7 +64,7 @@ module.exports = Marionette.Layout.extend({ }, { name : 'download', - label : '', + label : '', tooltip : 'Auto-Search Prioritization', cell : DownloadReportCell, sortable : true, diff --git a/src/UI/Form/CaptchaTemplate.hbs b/src/UI/Form/CaptchaTemplate.hbs index 12e472df0..806c3a32e 100644 --- a/src/UI/Form/CaptchaTemplate.hbs +++ b/src/UI/Form/CaptchaTemplate.hbs @@ -4,12 +4,12 @@
- +
- - + + diff --git a/src/UI/Form/CheckboxTemplate.hbs b/src/UI/Form/CheckboxTemplate.hbs index d3803ab70..d382aaa00 100644 --- a/src/UI/Form/CheckboxTemplate.hbs +++ b/src/UI/Form/CheckboxTemplate.hbs @@ -15,7 +15,7 @@ {{#if helpText}} - + {{/if}} diff --git a/src/UI/Form/FormHelpPartial.hbs b/src/UI/Form/FormHelpPartial.hbs index b698ccdea..e8072f190 100644 --- a/src/UI/Form/FormHelpPartial.hbs +++ b/src/UI/Form/FormHelpPartial.hbs @@ -1,8 +1,8 @@ {{#if helpText}} - + {{/if}} {{#if helpLink}} - + {{/if}} diff --git a/src/UI/ManualImport/Folder/SelectFolderViewTemplate.hbs b/src/UI/ManualImport/Folder/SelectFolderViewTemplate.hbs index 0e0dc18f2..4f681aecb 100644 --- a/src/UI/ManualImport/Folder/SelectFolderViewTemplate.hbs +++ b/src/UI/ManualImport/Folder/SelectFolderViewTemplate.hbs @@ -31,12 +31,12 @@
- +
- +
diff --git a/src/UI/ManualImport/ManualImportLayout.js b/src/UI/ManualImport/ManualImportLayout.js index ba5a139fc..132f05fb6 100644 --- a/src/UI/ManualImport/ManualImportLayout.js +++ b/src/UI/ManualImport/ManualImportLayout.js @@ -81,7 +81,7 @@ module.exports = Marionette.Layout.extend({ }, { name : 'rejections', - label : '', + label : '', tooltip : 'Rejections', cell : ApprovalStatusCell, sortable : false, diff --git a/src/UI/Mixins/FileBrowser.js b/src/UI/Mixins/FileBrowser.js index ddcbefabf..a19318fb4 100644 --- a/src/UI/Mixins/FileBrowser.js +++ b/src/UI/Mixins/FileBrowser.js @@ -12,7 +12,7 @@ $.fn.fileBrowser = function(options) { var inputGroup = $('
'); var inputGroupButton = $(''); - var button = $(''); + var button = $(''); if (input.parent('.input-group').length > 0) { input.parent('.input-group').find('.input-group-btn').prepend(button); diff --git a/src/UI/Navbar/NavbarLayoutTemplate.hbs b/src/UI/Navbar/NavbarLayoutTemplate.hbs index 75cfc096f..b6d365f9e 100644 --- a/src/UI/Navbar/NavbarLayoutTemplate.hbs +++ b/src/UI/Navbar/NavbarLayoutTemplate.hbs @@ -4,28 +4,28 @@
-
{{existingPath}}
+
{{existingPath}}
-
{{newPath}}
+
{{newPath}}
diff --git a/src/UI/Rename/RenamePreviewLayout.js b/src/UI/Rename/RenamePreviewLayout.js index eb1cf604a..2a45443cc 100644 --- a/src/UI/Rename/RenamePreviewLayout.js +++ b/src/UI/Rename/RenamePreviewLayout.js @@ -95,11 +95,11 @@ module.exports = Marionette.Layout.extend({ _setCheckedState : function(checked) { if (checked) { - this.ui.checkboxIcon.addClass('icon-sonarr-checked'); - this.ui.checkboxIcon.removeClass('icon-sonarr-unchecked'); + this.ui.checkboxIcon.addClass('icon-lidarr-checked'); + this.ui.checkboxIcon.removeClass('icon-lidarr-unchecked'); } else { - this.ui.checkboxIcon.addClass('icon-sonarr-unchecked'); - this.ui.checkboxIcon.removeClass('icon-sonarr-checked'); + this.ui.checkboxIcon.addClass('icon-lidarr-unchecked'); + this.ui.checkboxIcon.removeClass('icon-lidarr-checked'); } }, diff --git a/src/UI/Rename/RenamePreviewLayoutTemplate.hbs b/src/UI/Rename/RenamePreviewLayoutTemplate.hbs index a3aa41d51..ccb5d9b3d 100644 --- a/src/UI/Rename/RenamePreviewLayoutTemplate.hbs +++ b/src/UI/Rename/RenamePreviewLayoutTemplate.hbs @@ -3,7 +3,7 @@ @@ -22,7 +22,7 @@ diff --git a/src/UI/SeasonPass/SeasonPassFooterViewTemplate.hbs b/src/UI/SeasonPass/SeasonPassFooterViewTemplate.hbs index 522b85745..c0178ba8e 100644 --- a/src/UI/SeasonPass/SeasonPassFooterViewTemplate.hbs +++ b/src/UI/SeasonPass/SeasonPassFooterViewTemplate.hbs @@ -29,7 +29,7 @@
- +
diff --git a/src/UI/SeasonPass/SeasonPassLayout.js b/src/UI/SeasonPass/SeasonPassLayout.js index 5330fcf77..7849575ed 100644 --- a/src/UI/SeasonPass/SeasonPassLayout.js +++ b/src/UI/SeasonPass/SeasonPassLayout.js @@ -43,8 +43,8 @@ module.exports = Marionette.Layout.extend({ name : 'monitored', label : '', cell : SeriesMonitoredCell, - trueClass : 'icon-sonarr-monitored', - falseClass : 'icon-sonarr-unmonitored', + trueClass : 'icon-lidarr-monitored', + falseClass : 'icon-lidarr-unmonitored', tooltip : 'Toggle series monitored status', sortable : false }, @@ -73,28 +73,28 @@ module.exports = Marionette.Layout.extend({ key : 'all', title : '', tooltip : 'All', - icon : 'icon-sonarr-all', + icon : 'icon-lidarr-all', callback : this._setFilter }, { key : 'monitored', title : '', tooltip : 'Monitored Only', - icon : 'icon-sonarr-monitored', + icon : 'icon-lidarr-monitored', callback : this._setFilter }, { key : 'continuing', title : '', tooltip : 'Continuing Only', - icon : 'icon-sonarr-series-continuing', + icon : 'icon-lidarr-series-continuing', callback : this._setFilter }, { key : 'ended', title : '', tooltip : 'Ended Only', - icon : 'icon-sonarr-series-ended', + icon : 'icon-lidarr-series-ended', callback : this._setFilter } ] diff --git a/src/UI/SeasonPass/SeasonsCellTemplate.hbs b/src/UI/SeasonPass/SeasonsCellTemplate.hbs index d9966aec8..e6067a5f2 100644 --- a/src/UI/SeasonPass/SeasonsCellTemplate.hbs +++ b/src/UI/SeasonPass/SeasonsCellTemplate.hbs @@ -11,7 +11,7 @@ {{/if_eq}} - + {{#if_eq seasonNumber compare="0"}} Specials diff --git a/src/UI/Series/Delete/DeleteSeriesTemplate.hbs b/src/UI/Series/Delete/DeleteSeriesTemplate.hbs index 7ff12ad0b..caccec733 100644 --- a/src/UI/Series/Delete/DeleteSeriesTemplate.hbs +++ b/src/UI/Series/Delete/DeleteSeriesTemplate.hbs @@ -29,8 +29,8 @@ - - + + @@ -43,7 +43,7 @@ diff --git a/src/UI/Series/Details/EpisodeWarningCell.js b/src/UI/Series/Details/EpisodeWarningCell.js index c9befe7a1..1178ac4ab 100644 --- a/src/UI/Series/Details/EpisodeWarningCell.js +++ b/src/UI/Series/Details/EpisodeWarningCell.js @@ -8,11 +8,11 @@ module.exports = NzbDroneCell.extend({ this.$el.empty(); if (this.model.get('unverifiedSceneNumbering')) { - this.$el.html(''); + this.$el.html(''); } else if (SeriesCollection.get(this.model.get('seriesId')).get('seriesType') === 'anime' && this.model.get('seasonNumber') > 0 && !this.model.has('absoluteEpisodeNumber')) { - this.$el.html(''); + this.$el.html(''); } this.delegateEvents(); diff --git a/src/UI/Series/Details/SeasonLayout.js b/src/UI/Series/Details/SeasonLayout.js index cf10b6fa8..f87553e79 100644 --- a/src/UI/Series/Details/SeasonLayout.js +++ b/src/UI/Series/Details/SeasonLayout.js @@ -41,8 +41,8 @@ module.exports = Marionette.Layout.extend({ name : 'monitored', label : '', cell : ToggleCell, - trueClass : 'icon-sonarr-monitored', - falseClass : 'icon-sonarr-unmonitored', + trueClass : 'icon-lidarr-monitored', + falseClass : 'icon-lidarr-unmonitored', tooltip : 'Toggle monitored status', sortable : false }, @@ -194,14 +194,14 @@ module.exports = Marionette.Layout.extend({ }, _setSeasonMonitoredState : function() { - this.ui.seasonMonitored.removeClass('icon-sonarr-spinner fa-spin'); + this.ui.seasonMonitored.removeClass('icon-lidarr-spinner fa-spin'); if (this.model.get('monitored')) { - this.ui.seasonMonitored.addClass('icon-sonarr-monitored'); - this.ui.seasonMonitored.removeClass('icon-sonarr-unmonitored'); + this.ui.seasonMonitored.addClass('icon-lidarr-monitored'); + this.ui.seasonMonitored.removeClass('icon-lidarr-unmonitored'); } else { - this.ui.seasonMonitored.addClass('icon-sonarr-unmonitored'); - this.ui.seasonMonitored.removeClass('icon-sonarr-monitored'); + this.ui.seasonMonitored.addClass('icon-lidarr-unmonitored'); + this.ui.seasonMonitored.removeClass('icon-lidarr-monitored'); } }, diff --git a/src/UI/Series/Details/SeasonLayoutTemplate.hbs b/src/UI/Series/Details/SeasonLayoutTemplate.hbs index 06034f19d..f16e6439d 100644 --- a/src/UI/Series/Details/SeasonLayoutTemplate.hbs +++ b/src/UI/Series/Details/SeasonLayoutTemplate.hbs @@ -25,23 +25,23 @@
- +
- +

{{#if showingEpisodes}} - + Hide Episodes {{else}} - + Show Episodes {{/if}}

diff --git a/src/UI/Series/Details/SeriesDetailsLayout.js b/src/UI/Series/Details/SeriesDetailsLayout.js index e3a0294e9..b1b004f9b 100644 --- a/src/UI/Series/Details/SeriesDetailsLayout.js +++ b/src/UI/Series/Details/SeriesDetailsLayout.js @@ -122,15 +122,15 @@ module.exports = Marionette.Layout.extend({ var monitored = this.model.get('monitored'); this.ui.monitored.removeAttr('data-idle-icon'); - this.ui.monitored.removeClass('fa-spin icon-sonarr-spinner'); + this.ui.monitored.removeClass('fa-spin icon-lidarr-spinner'); if (monitored) { - this.ui.monitored.addClass('icon-sonarr-monitored'); - this.ui.monitored.removeClass('icon-sonarr-unmonitored'); + this.ui.monitored.addClass('icon-lidarr-monitored'); + this.ui.monitored.removeClass('icon-lidarr-unmonitored'); this.$el.removeClass('series-not-monitored'); } else { - this.ui.monitored.addClass('icon-sonarr-unmonitored'); - this.ui.monitored.removeClass('icon-sonarr-monitored'); + this.ui.monitored.addClass('icon-lidarr-unmonitored'); + this.ui.monitored.removeClass('icon-lidarr-monitored'); this.$el.addClass('series-not-monitored'); } }, diff --git a/src/UI/Series/Details/SeriesDetailsTemplate.hbs b/src/UI/Series/Details/SeriesDetailsTemplate.hbs index 818cee455..605ead424 100644 --- a/src/UI/Series/Details/SeriesDetailsTemplate.hbs +++ b/src/UI/Series/Details/SeriesDetailsTemplate.hbs @@ -9,19 +9,19 @@ {{title}}
- +
- +
- +
- +
diff --git a/src/UI/Series/Edit/EditSeriesViewTemplate.hbs b/src/UI/Series/Edit/EditSeriesViewTemplate.hbs index 746504cc9..a85058ed3 100644 --- a/src/UI/Series/Edit/EditSeriesViewTemplate.hbs +++ b/src/UI/Series/Edit/EditSeriesViewTemplate.hbs @@ -27,7 +27,7 @@ - +
@@ -49,7 +49,7 @@ - + @@ -97,7 +97,7 @@ diff --git a/src/UI/Series/Editor/Organize/OrganizeFilesViewTemplate.hbs b/src/UI/Series/Editor/Organize/OrganizeFilesViewTemplate.hbs index 312c8b6e2..356db72db 100644 --- a/src/UI/Series/Editor/Organize/OrganizeFilesViewTemplate.hbs +++ b/src/UI/Series/Editor/Organize/OrganizeFilesViewTemplate.hbs @@ -6,7 +6,7 @@ @@ -64,7 +64,7 @@ - + @@ -84,7 +84,7 @@
- +
diff --git a/src/UI/Settings/DownloadClient/DroneFactory/DroneFactoryViewTemplate.hbs b/src/UI/Settings/DownloadClient/DroneFactory/DroneFactoryViewTemplate.hbs index 9043ad2f5..f500886e7 100644 --- a/src/UI/Settings/DownloadClient/DroneFactory/DroneFactoryViewTemplate.hbs +++ b/src/UI/Settings/DownloadClient/DroneFactory/DroneFactoryViewTemplate.hbs @@ -4,9 +4,9 @@
- - - + + +
@@ -18,8 +18,8 @@
- - + +
diff --git a/src/UI/Settings/DownloadClient/Edit/DownloadClientEditViewTemplate.hbs b/src/UI/Settings/DownloadClient/Edit/DownloadClientEditViewTemplate.hbs index e4e576209..245af60f8 100644 --- a/src/UI/Settings/DownloadClient/Edit/DownloadClientEditViewTemplate.hbs +++ b/src/UI/Settings/DownloadClient/Edit/DownloadClientEditViewTemplate.hbs @@ -49,8 +49,8 @@ {{/if}} - - + +
diff --git a/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingCollectionViewTemplate.hbs b/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingCollectionViewTemplate.hbs index 423bf84d8..fcaa91061 100644 --- a/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingCollectionViewTemplate.hbs +++ b/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingCollectionViewTemplate.hbs @@ -15,7 +15,7 @@ diff --git a/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingEditViewTemplate.hbs b/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingEditViewTemplate.hbs index bc7926439..b28850d15 100644 --- a/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingEditViewTemplate.hbs +++ b/src/UI/Settings/DownloadClient/RemotePathMapping/RemotePathMappingEditViewTemplate.hbs @@ -10,13 +10,13 @@
@@ -99,7 +99,7 @@ - +
@@ -113,7 +113,7 @@
- +
@@ -129,8 +129,8 @@ {{/if}} - - + +
diff --git a/src/UI/Settings/Notifications/NotificationCollectionViewTemplate.hbs b/src/UI/Settings/Notifications/NotificationCollectionViewTemplate.hbs index f58134e5e..47e34c168 100644 --- a/src/UI/Settings/Notifications/NotificationCollectionViewTemplate.hbs +++ b/src/UI/Settings/Notifications/NotificationCollectionViewTemplate.hbs @@ -6,7 +6,7 @@
  • - +
  • diff --git a/src/UI/Settings/Profile/Delay/DelayProfileItemViewTemplate.hbs b/src/UI/Settings/Profile/Delay/DelayProfileItemViewTemplate.hbs index bc2f9b96b..5f7450195 100644 --- a/src/UI/Settings/Profile/Delay/DelayProfileItemViewTemplate.hbs +++ b/src/UI/Settings/Profile/Delay/DelayProfileItemViewTemplate.hbs @@ -49,9 +49,9 @@
    {{#unless_eq id compare="1"}} - + {{/unless_eq}} - +
    \ No newline at end of file diff --git a/src/UI/Settings/Profile/Delay/DelayProfileLayoutTemplate.hbs b/src/UI/Settings/Profile/Delay/DelayProfileLayoutTemplate.hbs index aa9d246aa..7787c1456 100644 --- a/src/UI/Settings/Profile/Delay/DelayProfileLayoutTemplate.hbs +++ b/src/UI/Settings/Profile/Delay/DelayProfileLayoutTemplate.hbs @@ -15,7 +15,7 @@ diff --git a/src/UI/Settings/Profile/Delay/Edit/DelayProfileEditViewTemplate.hbs b/src/UI/Settings/Profile/Delay/Edit/DelayProfileEditViewTemplate.hbs index 5ff9c3bea..dedef6482 100644 --- a/src/UI/Settings/Profile/Delay/Edit/DelayProfileEditViewTemplate.hbs +++ b/src/UI/Settings/Profile/Delay/Edit/DelayProfileEditViewTemplate.hbs @@ -13,7 +13,7 @@
    - +
    @@ -30,7 +30,7 @@
    - +
    @@ -42,7 +42,7 @@
    - +
    @@ -57,7 +57,7 @@
    - +
    @@ -73,7 +73,7 @@ {{/if_gt}} {{/if}} - +
    diff --git a/src/UI/Settings/Profile/Edit/EditProfileItemViewTemplate.hbs b/src/UI/Settings/Profile/Edit/EditProfileItemViewTemplate.hbs index 85289bf22..7feea8fac 100644 --- a/src/UI/Settings/Profile/Edit/EditProfileItemViewTemplate.hbs +++ b/src/UI/Settings/Profile/Edit/EditProfileItemViewTemplate.hbs @@ -1,3 +1,3 @@ {{quality.name}} - + diff --git a/src/UI/Settings/Profile/Edit/EditProfileLayoutTemplate.hbs b/src/UI/Settings/Profile/Edit/EditProfileLayoutTemplate.hbs index 19ea12f77..d68c46fb6 100644 --- a/src/UI/Settings/Profile/Edit/EditProfileLayoutTemplate.hbs +++ b/src/UI/Settings/Profile/Edit/EditProfileLayoutTemplate.hbs @@ -20,7 +20,7 @@
    - +
    @@ -29,7 +29,7 @@ {{#if id}} {{/if}} - +
    diff --git a/src/UI/Settings/Profile/Edit/EditProfileViewTemplate.hbs b/src/UI/Settings/Profile/Edit/EditProfileViewTemplate.hbs index cae0f2447..9ed85d156 100644 --- a/src/UI/Settings/Profile/Edit/EditProfileViewTemplate.hbs +++ b/src/UI/Settings/Profile/Edit/EditProfileViewTemplate.hbs @@ -22,7 +22,7 @@
    - +
    @@ -40,6 +40,6 @@
    - +
    diff --git a/src/UI/Settings/Profile/ProfileCollectionTemplate.hbs b/src/UI/Settings/Profile/ProfileCollectionTemplate.hbs index 11e1d6711..194082875 100644 --- a/src/UI/Settings/Profile/ProfileCollectionTemplate.hbs +++ b/src/UI/Settings/Profile/ProfileCollectionTemplate.hbs @@ -6,7 +6,7 @@
  • - +
  • diff --git a/src/UI/Settings/Quality/Definition/QualityDefinitionCollectionTemplate.hbs b/src/UI/Settings/Quality/Definition/QualityDefinitionCollectionTemplate.hbs index ac514ba90..067a70fe3 100644 --- a/src/UI/Settings/Quality/Definition/QualityDefinitionCollectionTemplate.hbs +++ b/src/UI/Settings/Quality/Definition/QualityDefinitionCollectionTemplate.hbs @@ -6,7 +6,7 @@
    Quality Title - Size Limit + Size Limit
    diff --git a/src/UI/Settings/UI/UiViewTemplate.hbs b/src/UI/Settings/UI/UiViewTemplate.hbs index 5a3d46d27..4b5228870 100644 --- a/src/UI/Settings/UI/UiViewTemplate.hbs +++ b/src/UI/Settings/UI/UiViewTemplate.hbs @@ -17,7 +17,7 @@
    - +
    @@ -88,7 +88,7 @@ - +
    @@ -115,7 +115,7 @@ - + diff --git a/src/UI/Shared/FileBrowser/FileBrowserLayoutTemplate.hbs b/src/UI/Shared/FileBrowser/FileBrowserLayoutTemplate.hbs index ca5812b4e..3c09e7ecc 100644 --- a/src/UI/Shared/FileBrowser/FileBrowserLayoutTemplate.hbs +++ b/src/UI/Shared/FileBrowser/FileBrowserLayoutTemplate.hbs @@ -19,7 +19,7 @@ diff --git a/src/UI/Shared/FileBrowser/FileBrowserTypeCell.js b/src/UI/Shared/FileBrowser/FileBrowserTypeCell.js index ff829024f..81c31efcb 100644 --- a/src/UI/Shared/FileBrowser/FileBrowserTypeCell.js +++ b/src/UI/Shared/FileBrowser/FileBrowserTypeCell.js @@ -8,16 +8,16 @@ module.exports = NzbDroneCell.extend({ this.$el.empty(); var type = this.model.get(this.column.get('name')); - var icon = 'icon-sonarr-hdd'; + var icon = 'icon-lidarr-hdd'; if (type === 'computer') { - icon = 'icon-sonarr-browser-computer'; + icon = 'icon-lidarr-browser-computer'; } else if (type === 'parent') { - icon = 'icon-sonarr-browser-up'; + icon = 'icon-lidarr-browser-up'; } else if (type === 'folder') { - icon = 'icon-sonarr-browser-folder'; + icon = 'icon-lidarr-browser-folder'; } else if (type === 'file') { - icon = 'icon-sonarr-browser-file'; + icon = 'icon-lidarr-browser-file'; } this.$el.html(''.format(icon)); diff --git a/src/UI/Shared/Grid/HeaderCell.js b/src/UI/Shared/Grid/HeaderCell.js index 2e72c8cb4..73a906c49 100644 --- a/src/UI/Shared/Grid/HeaderCell.js +++ b/src/UI/Shared/Grid/HeaderCell.js @@ -1,7 +1,7 @@ module.exports = function() { var Backgrid = this; - Backgrid.SonarrHeaderCell = Backgrid.HeaderCell.extend({ + Backgrid.LidarrHeaderCell = Backgrid.HeaderCell.extend({ events : { 'click' : 'onClick' }, @@ -57,7 +57,7 @@ module.exports = function() { }, direction : function(dir) { - this.$el.children('i.sort-direction-icon').removeClass('icon-sonarr-sort-asc icon-sonarr-sort-desc'); + this.$el.children('i.sort-direction-icon').removeClass('icon-lidarr-sort-asc icon-lidarr-sort-desc'); if (arguments.length) { if (dir) { @@ -103,7 +103,7 @@ module.exports = function() { var column = this.column; var sortable = Backgrid.callByNeed(column.sortable(), column, collection); if (sortable) { - var isSorted = this.$el.children('.icon-sonarr-sort-asc,.icon-sonarr-sort-desc').length !== 0; + var isSorted = this.$el.children('.icon-lidarr-sort-asc,.icon-lidarr-sort-desc').length !== 0; var direction = collection.state.order; if (column.get('sortType') === 'fixed' || !isSorted) { direction = column.get('direction') || 'ascending'; @@ -135,10 +135,10 @@ module.exports = function() { _convertDirectionToIcon : function(dir) { if (dir === 'ascending' || dir === -1) { - return 'icon-sonarr-sort-asc'; + return 'icon-lidarr-sort-asc'; } - return 'icon-sonarr-sort-desc'; + return 'icon-lidarr-sort-desc'; }, _setSortIcon : function(dir) { @@ -147,9 +147,9 @@ module.exports = function() { }, _removeSortIcon : function() { - this.$el.children('i.sort-direction-icon').removeClass('icon-sonarr-sort-asc icon-sonarr-sort-desc'); + this.$el.children('i.sort-direction-icon').removeClass('icon-lidarr-sort-asc icon-lidarr-sort-desc'); } }); - return Backgrid.SonarrHeaderCell; + return Backgrid.LidarrHeaderCell; }; diff --git a/src/UI/Shared/Grid/Pager.js b/src/UI/Shared/Grid/Pager.js index 618117cf9..36cda08f7 100644 --- a/src/UI/Shared/Grid/Pager.js +++ b/src/UI/Shared/Grid/Pager.js @@ -15,10 +15,10 @@ module.exports = Paginator.extend({ windowSize : 1, fastForwardHandleLabels : { - first : 'icon-sonarr-pager-first', - prev : 'icon-sonarr-pager-previous', - next : 'icon-sonarr-pager-next', - last : 'icon-sonarr-pager-last' + first : 'icon-lidarr-pager-first', + prev : 'icon-lidarr-pager-previous', + next : 'icon-lidarr-pager-next', + last : 'icon-lidarr-pager-last' }, changePage : function(e) { @@ -35,7 +35,7 @@ module.exports = Paginator.extend({ var iconClass = $.trim(iconClasses[0]); icon.removeClass(iconClass); - icon.addClass('icon-sonarr-spinner fa-spin'); + icon.addClass('icon-lidarr-spinner fa-spin'); var label = target.attr('data-action'); var ffLabels = this.fastForwardHandleLabels; @@ -182,7 +182,7 @@ module.exports = Paginator.extend({ var selectedPage = parseInt(target.val(), 10); - this.$el.find('.x-page-number').html(''); + this.$el.find('.x-page-number').html(''); this.collection.getPage(selectedPage); } }); \ No newline at end of file diff --git a/src/UI/Shared/NzbDroneController.js b/src/UI/Shared/NzbDroneController.js index a97dea369..4cdbd2510 100644 --- a/src/UI/Shared/NzbDroneController.js +++ b/src/UI/Shared/NzbDroneController.js @@ -16,10 +16,10 @@ module.exports = Marionette.AppRouter.extend({ setTitle : function(title) { title = title; - if (title === 'Sonarr') { - document.title = 'Sonarr'; + if (title === 'Lidarr') { + document.title = 'Lidarr'; } else { - document.title = title + ' - Sonarr'; + document.title = title + ' - Lidarr'; } if (window.NzbDrone.Analytics && window.Piwik) { @@ -41,9 +41,9 @@ module.exports = Marionette.AppRouter.extend({ var label = window.location.pathname === window.NzbDrone.UrlBase + '/system/updates' ? 'Reload' : 'View Changes'; Messenger.show({ - message : 'Sonarr has been updated', + message : 'Lidarr has been updated', hideAfter : 0, - id : 'sonarrUpdated', + id : 'lidarrUpdated', actions : { viewChanges : { label : label, diff --git a/src/UI/Shared/Toolbar/Sorting/SortingButtonView.js b/src/UI/Shared/Toolbar/Sorting/SortingButtonView.js index 6f6833ed2..9ffb4f1e8 100644 --- a/src/UI/Shared/Toolbar/Sorting/SortingButtonView.js +++ b/src/UI/Shared/Toolbar/Sorting/SortingButtonView.js @@ -53,10 +53,10 @@ module.exports = Marionette.ItemView.extend({ _convertDirectionToIcon : function(dir) { if (dir === 'ascending' || dir === -1) { - return 'icon-sonarr-sort-asc'; + return 'icon-lidarr-sort-asc'; } - return 'icon-sonarr-sort-desc'; + return 'icon-lidarr-sort-desc'; }, _setSortIcon : function(dir) { @@ -65,6 +65,6 @@ module.exports = Marionette.ItemView.extend({ }, _removeSortIcon : function() { - this.ui.icon.removeClass('icon-sonarr-sort-asc icon-sonarr-sort-desc'); + this.ui.icon.removeClass('icon-lidarr-sort-asc icon-lidarr-sort-desc'); } }); \ No newline at end of file diff --git a/src/UI/Shared/piwikCheck.js b/src/UI/Shared/piwikCheck.js index 0146d36b5..fdda0639c 100644 --- a/src/UI/Shared/piwikCheck.js +++ b/src/UI/Shared/piwikCheck.js @@ -7,6 +7,6 @@ if(window.NzbDrone.Analytics) { g.type = 'text/javascript'; g.async = true; g.defer = true; - g.src = '//piwik.sonarr.tv/piwik.js'; + g.src = '//piwik.lidarr.tv/piwik.js'; s.parentNode.insertBefore(g, s); } diff --git a/src/UI/Shims/backgrid.js b/src/UI/Shims/backgrid.js index 0292b5264..40853cc90 100644 --- a/src/UI/Shims/backgrid.js +++ b/src/UI/Shims/backgrid.js @@ -13,7 +13,7 @@ backgrid.Column.prototype.defaults = { renderable : true, formatter : undefined, cell : undefined, - headerCell : 'Sonarr', + headerCell : 'Lidarr', sortType : 'toggle' }; module.exports = backgrid; \ No newline at end of file diff --git a/src/UI/System/Backup/BackupLayout.js b/src/UI/System/Backup/BackupLayout.js index c1eb341cd..3fa3be030 100644 --- a/src/UI/System/Backup/BackupLayout.js +++ b/src/UI/System/Backup/BackupLayout.js @@ -45,7 +45,7 @@ module.exports = Marionette.Layout.extend({ items : [ { title : 'Backup', - icon : 'icon-sonarr-file-text', + icon : 'icon-lidarr-file-text', command : 'backup', properties : { type : 'manual' }, successMessage : 'Database and settings were backed up successfully', diff --git a/src/UI/System/Backup/BackupTypeCell.js b/src/UI/System/Backup/BackupTypeCell.js index 2f2a3c16c..36bee0ccf 100644 --- a/src/UI/System/Backup/BackupTypeCell.js +++ b/src/UI/System/Backup/BackupTypeCell.js @@ -6,16 +6,16 @@ module.exports = NzbDroneCell.extend({ render : function() { this.$el.empty(); - var icon = 'icon-sonarr-backup-scheduled'; + var icon = 'icon-lidarr-backup-scheduled'; var title = 'Scheduled'; var type = this.model.get(this.column.get('name')); if (type === 'manual') { - icon = 'icon-sonarr-backup-manual'; + icon = 'icon-lidarr-backup-manual'; title = 'Manual'; } else if (type === 'update') { - icon = 'icon-sonarr-backup-update'; + icon = 'icon-lidarr-backup-update'; title = 'Before update'; } diff --git a/src/UI/System/Info/Health/HealthCell.js b/src/UI/System/Info/Health/HealthCell.js index 606b2b486..594ece55c 100644 --- a/src/UI/System/Info/Health/HealthCell.js +++ b/src/UI/System/Info/Health/HealthCell.js @@ -5,7 +5,7 @@ module.exports = NzbDroneCell.extend({ render : function() { var level = this._getValue(); - this.$el.html(''.format(this._getValue().toLowerCase(), level)); + this.$el.html(''.format(this._getValue().toLowerCase(), level)); return this; } diff --git a/src/UI/System/Info/MoreInfo/MoreInfoViewTemplate.hbs b/src/UI/System/Info/MoreInfo/MoreInfoViewTemplate.hbs index c3e5971de..34e9bbd57 100644 --- a/src/UI/System/Info/MoreInfo/MoreInfoViewTemplate.hbs +++ b/src/UI/System/Info/MoreInfo/MoreInfoViewTemplate.hbs @@ -3,26 +3,23 @@
    Home page
    -
    sonarr.tv
    +
    lidarr.audio
    Wiki
    -
    wiki.sonarr.tv
    +
    wiki.lidarr.audio
    Forums
    -
    forums.sonarr.tv
    +
    forums.lidarr.audio
    -
    Twitter
    -
    @sonarrtv
    - -
    IRC
    -
    #sonarr on Freenode or (webchat)
    +
    Reddit
    +
    reddit.com/r/Lidarr
    Source
    -
    github.com/Sonarr/Sonarr
    +
    github.com/Lidarr/Lidarr
    Feature Requests
    -
    forums.sonarr.tv
    -
    github.com/Sonarr/Sonarr/issues (Please post issues on the forum first and not on github)
    +
    feathub.com/mattman86/Lidarr
    +
    github.com/mattman86/Lidarr/issues (Please post issues on the forum first and not on github)
    diff --git a/src/UI/System/Logs/Files/LogFileLayout.js b/src/UI/System/Logs/Files/LogFileLayout.js index 60d9068ce..39516091e 100644 --- a/src/UI/System/Logs/Files/LogFileLayout.js +++ b/src/UI/System/Logs/Files/LogFileLayout.js @@ -64,13 +64,13 @@ module.exports = Marionette.Layout.extend({ items : [ { title : 'Refresh', - icon : 'icon-sonarr-refresh', + icon : 'icon-lidarr-refresh', ownerContext : this, callback : this._refreshTable }, { title : 'Clear Log Files', - icon : 'icon-sonarr-clear', + icon : 'icon-lidarr-clear', command : this.deleteFilesCommand, successMessage : 'Log files have been deleted', errorMessage : 'Failed to delete log files' diff --git a/src/UI/System/Logs/Table/LogLevelCell.js b/src/UI/System/Logs/Table/LogLevelCell.js index 63c5bb440..e09264cd8 100644 --- a/src/UI/System/Logs/Table/LogLevelCell.js +++ b/src/UI/System/Logs/Table/LogLevelCell.js @@ -5,7 +5,7 @@ module.exports = NzbDroneCell.extend({ render : function() { var level = this._getValue(); - this.$el.html(''.format(this._getValue().toLowerCase(), level)); + this.$el.html(''.format(this._getValue().toLowerCase(), level)); return this; } diff --git a/src/UI/System/Logs/Table/LogsTableLayout.js b/src/UI/System/Logs/Table/LogsTableLayout.js index f7d9430b6..d5668a9de 100644 --- a/src/UI/System/Logs/Table/LogsTableLayout.js +++ b/src/UI/System/Logs/Table/LogsTableLayout.js @@ -93,28 +93,28 @@ module.exports = Marionette.Layout.extend({ key : 'all', title : '', tooltip : 'All', - icon : 'icon-sonarr-all', + icon : 'icon-lidarr-all', callback : this._setFilter }, { key : 'info', title : '', tooltip : 'Info', - icon : 'icon-sonarr-log-info', + icon : 'icon-lidarr-log-info', callback : this._setFilter }, { key : 'warn', title : '', tooltip : 'Warn', - icon : 'icon-sonarr-log-warn', + icon : 'icon-lidarr-log-warn', callback : this._setFilter }, { key : 'error', title : '', tooltip : 'Error', - icon : 'icon-sonarr-log-error', + icon : 'icon-lidarr-log-error', callback : this._setFilter } ] @@ -126,13 +126,13 @@ module.exports = Marionette.Layout.extend({ items : [ { title : 'Refresh', - icon : 'icon-sonarr-refresh', + icon : 'icon-lidarr-refresh', ownerContext : this, callback : this._refreshTable }, { title : 'Clear Logs', - icon : 'icon-sonarr-clear', + icon : 'icon-lidarr-clear', command : 'clearLog' } ] diff --git a/src/UI/System/SystemLayout.js b/src/UI/System/SystemLayout.js index d0c71ca09..33e18db34 100644 --- a/src/UI/System/SystemLayout.js +++ b/src/UI/System/SystemLayout.js @@ -131,7 +131,7 @@ module.exports = Marionette.Layout.extend({ }); Messenger.show({ - message : 'Sonarr will shutdown shortly', + message : 'Lidarr will shutdown shortly', type : 'info' }); }, @@ -143,7 +143,7 @@ module.exports = Marionette.Layout.extend({ }); Messenger.show({ - message : 'Sonarr will restart shortly', + message : 'Lidarr will restart shortly', type : 'info' }); } diff --git a/src/UI/System/SystemLayoutTemplate.hbs b/src/UI/System/SystemLayoutTemplate.hbs index 47e30cf43..af2adf692 100644 --- a/src/UI/System/SystemLayoutTemplate.hbs +++ b/src/UI/System/SystemLayoutTemplate.hbs @@ -7,15 +7,15 @@
  • {{#if_eq authentication compare="forms"}} - + {{/if_eq}}
    diff --git a/src/UI/System/Task/ExecuteTaskCell.js b/src/UI/System/Task/ExecuteTaskCell.js index d5e655296..10a510dbb 100644 --- a/src/UI/System/Task/ExecuteTaskCell.js +++ b/src/UI/System/Task/ExecuteTaskCell.js @@ -14,7 +14,7 @@ module.exports = NzbDroneCell.extend({ var name = this.model.get('name'); var task = this.model.get('taskName'); - this.$el.html(''.format(name)); + this.$el.html(''.format(name)); CommandController.bindToCommand({ element : this.$el.find('.x-execute'), diff --git a/src/UI/Wanted/ControlsColumnTemplate.hbs b/src/UI/Wanted/ControlsColumnTemplate.hbs index 8943c7806..75f689167 100644 --- a/src/UI/Wanted/ControlsColumnTemplate.hbs +++ b/src/UI/Wanted/ControlsColumnTemplate.hbs @@ -1 +1 @@ - + diff --git a/src/UI/Wanted/Cutoff/CutoffUnmetLayout.js b/src/UI/Wanted/Cutoff/CutoffUnmetLayout.js index 2221f04fe..e9f7e3e77 100644 --- a/src/UI/Wanted/Cutoff/CutoffUnmetLayout.js +++ b/src/UI/Wanted/Cutoff/CutoffUnmetLayout.js @@ -26,7 +26,7 @@ module.exports = Marionette.Layout.extend({ }, ui : { - searchSelectedButton : '.btn i.icon-sonarr-search' + searchSelectedButton : '.btn i.icon-lidarr-search' }, columns : [ @@ -38,25 +38,25 @@ module.exports = Marionette.Layout.extend({ }, { name : 'series', - label : 'Series Title', + label : 'Artist', cell : SeriesTitleCell, sortValue : 'series.sortTitle' }, +// { +// name : 'this', +// label : 'Track Number', +// cell : EpisodeNumberCell, +// sortable : false +// }, { name : 'this', - label : 'Episode', - cell : EpisodeNumberCell, - sortable : false - }, - { - name : 'this', - label : 'Episode Title', + label : 'Track Title', cell : EpisodeTitleCell, sortable : false }, { name : 'airDateUtc', - label : 'Air Date', + label : 'Release Date', cell : RelativeDateCell }, { @@ -101,14 +101,14 @@ module.exports = Marionette.Layout.extend({ items : [ { title : 'Search Selected', - icon : 'icon-sonarr-search', + icon : 'icon-lidarr-search', callback : this._searchSelected, ownerContext : this, className : 'x-search-selected' }, { title : 'Season Pass', - icon : 'icon-sonarr-monitored', + icon : 'icon-lidarr-monitored', route : 'seasonpass' } ] @@ -124,14 +124,14 @@ module.exports = Marionette.Layout.extend({ key : 'monitored', title : '', tooltip : 'Monitored Only', - icon : 'icon-sonarr-monitored', + icon : 'icon-lidarr-monitored', callback : this._setFilter }, { key : 'unmonitored', title : '', tooltip : 'Unmonitored Only', - icon : 'icon-sonarr-unmonitored', + icon : 'icon-lidarr-unmonitored', callback : this._setFilter } ] diff --git a/src/UI/Wanted/Missing/MissingLayout.js b/src/UI/Wanted/Missing/MissingLayout.js index 3adb4876b..f50d506dc 100644 --- a/src/UI/Wanted/Missing/MissingLayout.js +++ b/src/UI/Wanted/Missing/MissingLayout.js @@ -29,7 +29,7 @@ module.exports = Marionette.Layout.extend({ }, ui : { - searchSelectedButton : '.btn i.icon-sonarr-search' + searchSelectedButton : '.btn i.icon-lidarr-search' }, columns : [ @@ -41,25 +41,25 @@ module.exports = Marionette.Layout.extend({ }, { name : 'series', - label : 'Series Title', + label : 'Artist', cell : SeriesTitleCell, sortValue : 'series.sortTitle' }, +// { +// name : 'this', +// label : 'Ttack Number', +// cell : EpisodeNumberCell, +// sortable : false +// }, { name : 'this', - label : 'Episode', - cell : EpisodeNumberCell, - sortable : false - }, - { - name : 'this', - label : 'Episode Title', + label : 'Track Title', cell : EpisodeTitleCell, sortable : false }, { name : 'airDateUtc', - label : 'Air Date', + label : 'Release Date', cell : RelativeDateCell }, { @@ -105,21 +105,21 @@ module.exports = Marionette.Layout.extend({ items : [ { title : 'Search Selected', - icon : 'icon-sonarr-search', + icon : 'icon-lidarr-search', callback : this._searchSelected, ownerContext : this, className : 'x-search-selected' }, { title : 'Search All Missing', - icon : 'icon-sonarr-search', + icon : 'icon-lidarr-search', callback : this._searchMissing, ownerContext : this, className : 'x-search-missing' }, { title : 'Toggle Selected', - icon : 'icon-sonarr-monitored', + icon : 'icon-lidarr-monitored', tooltip : 'Toggle monitored status of selected', callback : this._toggleMonitoredOfSelected, ownerContext : this, @@ -127,18 +127,18 @@ module.exports = Marionette.Layout.extend({ }, { title : 'Season Pass', - icon : 'icon-sonarr-monitored', + icon : 'icon-lidarr-monitored', route : 'seasonpass' }, { title : 'Rescan Drone Factory Folder', - icon : 'icon-sonarr-refresh', + icon : 'icon-lidarr-refresh', command : 'downloadedepisodesscan', properties : { sendUpdates : true } }, { title : 'Manual Import', - icon : 'icon-sonarr-search-manual', + icon : 'icon-lidarr-search-manual', callback : this._manualImport, ownerContext : this } @@ -154,14 +154,14 @@ module.exports = Marionette.Layout.extend({ key : 'monitored', title : '', tooltip : 'Monitored Only', - icon : 'icon-sonarr-monitored', + icon : 'icon-lidarr-monitored', callback : this._setFilter }, { key : 'unmonitored', title : '', tooltip : 'Unmonitored Only', - icon : 'icon-sonarr-unmonitored', + icon : 'icon-lidarr-unmonitored', callback : this._setFilter } ] diff --git a/src/UI/index.html b/src/UI/index.html index 94ebba2af..d5e11456f 100644 --- a/src/UI/index.html +++ b/src/UI/index.html @@ -1,7 +1,7 @@ - Sonarr + Lidarr @@ -38,7 +38,7 @@ - +
    @@ -63,7 +63,7 @@