aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Updates
AgeCommit message (Collapse)Author
2022-12-05Replace != null with is not nullBond_009
2022-12-05Replace == null with is nullBond_009
2022-10-06Use ArgumentNullException.ThrowIfNull helper methodBond_009
Did a simple search/replace on the whole repo (except the RSSDP project) This reduces LOC and should improve performance (methods containing a throw statement don't get inlined) ``` if \((\w+) == null\) \s+\{ \s+throw new ArgumentNullException\((.*)\); \s+\} ``` ``` ArgumentNullException.ThrowIfNull($1); ```
2022-02-21Optimize Guid comparisonsBond_009
* Use Guid.Equals(Guid) instead of the == override * Ban the usage of Guid.Equals(Object) to prevent accidental boxing * Compare to default(Guid) instead of Guid.Empty
2021-12-27Remove more warningsCody Robibero
2021-12-20Use our own Contains extensioncvium
2021-12-18Use System.IO.Compression instead of SharpCompress for zipsBond_009
Also removes unused methods from ZipClient
2021-11-09Fix some warningsBond_009
down to 580
2021-10-03Fix warnings in InstallationManagerPatrick Barron
2021-06-19Move non-jellyfin extensions to separate projectBond_009
2021-06-11Remove useless nullable directivesBond_009
2021-06-06Minor fixesBond_009
2021-05-20Enable nullable reference types for Emby.Server.ImplementationsBond_009
2021-04-08Update Emby.Server.Implementations/Updates/InstallationManager.csBaronGreenback
Co-authored-by: Cody Robibero <cody@robibe.ro>
2021-04-06Keep plugin status after update.BaronGreenback
2021-03-13FxCop -> Net Analyzers (part 2)Bond_009
2021-02-23add suggested changesdkanada
2021-02-12handle plugin manifests automaticallydkanada
2020-12-23Update Emby.Server.Implementations/Updates/InstallationManager.csBaronGreenback
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2020-12-23Update Emby.Server.Implementations/Updates/InstallationManager.csBaronGreenback
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
2020-12-18Update Emby.Server.Implementations/Updates/InstallationManager.csBaronGreenback
Co-authored-by: Cody Robibero <cody@robibe.ro>
2020-12-18Renamed guid to idGreenback
2020-12-18MaxAbi property removed.Greenback
2020-12-18Renamed Guid property to IdGreenback
2020-12-18Removed maxAbiGreenback
2020-12-16Corrections as recommended.Greenback
2020-12-15Replaced TryGetPlugin with GetPluginGreenback
2020-12-15Changes as recommended.Greenback
2020-12-15Changed as suggested.Greenback
2020-12-15Fixed gitmerge.Greenback
2020-12-15Merge branch 'master' into PluginDowngradeBaronGreenback
2020-12-15Enable local file repositoriesGreenback
2020-12-14Initial uploadGreenback
2020-12-11Merge pull request #4737 from crobibero/missing-ensure-successClaus Vium
2020-12-08Add missing EnsureSuccessStatusCodecrobibero
2020-12-06Don't return plugin versions that target newer Jellyfin versioncrobibero
2020-11-25Remove Hex class as the BCL has one nowBond_009
2020-11-22Handle invalid pluginscrobibero
2020-11-19updatedGreenback
2020-11-19Initialial uploadGreenback
2020-11-17Pass cancellation where possibleBond_009
2020-11-14remove custom HttpExceptioncrobibero
2020-11-08Merge pull request #4247 from crobibero/update-pluginClaus Vium
Update all on-disk plugins
2020-11-02Merge pull request #4068 from barronpm/event-fixesAnthony Lavado
Fix Plugin Events and Clean Up InstallationManager.cs
2020-09-30Update all on-disk pluginscrobibero
2020-09-29Merge pull request #3577 from crobibero/package-install-repoBond-009
Specify plugin repo on plugin installation
2020-09-28Fix SA1513, SA1514, SA1507, and SA1508Matt Montgomery
2020-09-26Merge remote-tracking branch 'upstream/master' into package-install-repocrobibero
2020-09-16Merge pull request #3401 from BaronGreenback/PluginsJoshua M. Boniface
Fix for windows plug-in upgrades issue: #1623
2020-09-08Update Emby.Server.Implementations/Updates/InstallationManager.csBaronGreenback
Co-authored-by: Cody Robibero <cody@robibe.ro>