aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-10-11recording fixesLuke Pulverenti
2015-10-10update schedules direct mappingLuke Pulverenti
2015-10-08make tv guide standalone componentLuke Pulverenti
2015-10-08update nfo savingLuke Pulverenti
2015-10-07update polymerLuke Pulverenti
2015-10-07update collection menusLuke Pulverenti
2015-10-06Merge pull request #1213 from softworkz/RemoteSearchDuplicatesLuke
Remote-Search: Suppress duplicates when agregating results from multiple providers
2015-10-06retry image saving to internal locationLuke Pulverenti
2015-10-05update polymerLuke Pulverenti
2015-10-05Merge branch 'dev' of https://github.com/MediaBrowser/Emby into devLuke Pulverenti
2015-10-05update commonioLuke Pulverenti
2015-10-05update library monitorLuke Pulverenti
2015-10-05Merge pull request #1214 from softworkz/ProvidersFixSeriesSearchLuke
Remote-Search: Fixed providers to return year information when searching for series
2015-10-06Remote-Search: Fixed providers to return year information when searching for ↵softworkz
series * OmdbProvider: The result often contains strings like '2010-' or '2010-2012'. I fixed the parsing to use the first 4 digits only in these cases * TheMovieDb: While the search method did send appropriate queries for different search types, it didn't differentiate for deserialization of results. I fixed this at least for the TvResults, in order to get the 'first_air_date' property parsed. * TheTvdb: The parsing of the 'FirstAired' node was missing here as well (for search results)
2015-10-06Remote-Search: Suppress duplicates when agregating results from multiple ↵softworkz
providers This is a revision to pull request #1205 which tries to avoid returning duplicate results from multiple providers. Duplicates are eliminated in two stages: * Check for duplicate provider ids * In case of movies and series: Also remove duplicates by title/year combination The second stage is required because search results of themoviedb and thetvdb do not contain external ids and performing separate queries for each individual result would be too expensive. This is not an ideal solution, but Name/Year is anyway just exactly that information which is presented to the client in the results - apart from the image, of course. Images are only aggregated on matching provider ids, though. To allow image aggregation over all search results, the breaking condition once the result list is full has been removed..
2015-10-05update subtitle transcodingLuke Pulverenti
2015-10-04rework peopleLuke Pulverenti
2015-10-04Merge pull request #1209 from softworkz/AutoOrganizeErrorHandlingLuke
Auto-Organize: Display errors in client on server exceptions
2015-10-04update logging levelsLuke Pulverenti
2015-10-04update trailerLuke Pulverenti
2015-10-04update editor cssLuke Pulverenti
2015-10-04update channelsLuke Pulverenti
2015-10-04update channel dbLuke Pulverenti
2015-10-04update portable projectLuke Pulverenti
2015-10-04rework identify popupLuke Pulverenti
2015-10-04fix nuget errorLuke Pulverenti
2015-10-04remove nuget restoresLuke Pulverenti
2015-10-04remove nuget targetsLuke Pulverenti
2015-10-04Complete rework of IFileSystemLuke Pulverenti
2015-10-04continue file system reworkLuke Pulverenti
2015-10-03begin file system reworkLuke Pulverenti
2015-10-03Merge pull request #1210 from softworkz/SourcePathTooLongLuke
Auto-Organize: PathTooLongException on source file should not break auto-organize task
2015-10-04Renamed filter methodsoftworkz
2015-10-04Auto-Organize: PathTooLongException on source file should not break ↵softworkz
auto-organize task PathTooLongException can not only occur with long destination paths but also with too long file names of files contained in a watch folder. Previously this condition caused the auto-organize task to break. With this change, we still log the exception, but auto-organize processing will continue to handle all other files. Conflicts: MediaBrowser.Server.Implementations/FileOrganization/TvFolderOrganizer.cs
2015-10-03hide library monitor from certain operating systemsLuke Pulverenti
2015-10-02fix marking seasons unplayedLuke Pulverenti
2015-10-02fixes #1166 - "Played" checkbox doesn't work for whole seasonsLuke Pulverenti
2015-10-02Merge branch 'dev' of https://github.com/MediaBrowser/Emby into devLuke Pulverenti
2015-10-02fixes #1131 - Proposed log level change in ↵Luke Pulverenti
MediaBrowser-master\MediaBrowser.Api\ApiEntryPoint.cs
2015-10-02Merge pull request #1207 from softworkz/MultiEpisodePatternLuke
Auto-Organize: Fix PathTooLongException due to long EpisodeTitle
2015-10-02Auto-Organize: Fix PathTooLongException due to long EpisodeTitle #2softworkz
2015-10-02update sync progress displayLuke Pulverenti
2015-10-02Auto-Organize: Fix PathTooLongException due to long EpisodeTitlesoftworkz
Especially with Multi-Episodes, the EpisodeTitle can become quite long, since all comprised titles get concatenated into it. By default, the EpisodeTitle is included in the single and multi-episode naming patterns and this in turn can quickly lead to a PathTooLongException. This fix tries to keep as much as possible from the title string while keeping the final path within the allowed limit.
2015-10-02update textLuke Pulverenti
2015-10-02fix sync status displayLuke Pulverenti
2015-10-01update schedules directLuke Pulverenti
2015-09-30Merge pull request #1205 from softworkz/AggregateRemoteSearchLuke
Remote-Search: Allow result aggregation of multiple providers
2015-09-30Merge pull request #1204 from softworkz/OmdbSearchLuke
OmdbItemProvider: Use search instead of title API
2015-10-01Remote-Search: Allow result aggregation of multiple providerssoftworkz
Previously, when a remote search (without provider restriction) was executed, the search used results from the first provider that returned at least a single result only. Other providers are ignored. This commit changes the behaviour in a way that all available providers are queried until a certain number of search results has been collected. The number is hardcoded to 10 (like it was before), but could be parametrized in the future.
2015-10-01OmdbItemProvider: Use search instead of title APIsoftworkz
In my configuration, the Omdb provider is the first in the list for movie metadata. This was the default at the time I installed MB and I never changed that (don't know what the current defaults are for a new installation). When I use the identify command for movies in the metadata editor, I always get a single result only. This is due to the fact that the Omdb provider used the title API with "t=moviename", while there is also a search api with "s=moviename" which will return multiple results. This commit modifies the OmdbItemProvider to use the search API variant and enable returning multiple results