bb8df8dfa0
Added ProductName and ServerVersion to API. Added build version and build step. Addressed issues wtih indentation. Made the BuildVersion an actual object. This lets up link to the github page of that commit. Fixed class method type and styled link. Fixed languages and split out the information in the UI. Moved update-version script and gave it executable permissions. Windows correctly finds the .bat file. And linux takes the one without extension. Removed tempfiles from replace sessions from csproj. Updated version generation scripts. Will also work with pre existing version files. (Source tarballs etc.) Added simple replace for ssh github links. Add execute rights to update-version. Wrapped long line in ApplicationHost.cs Fixed some small issues. Fixed some small issues, and flipped some if's around. Converted parameter names to camelBack casing. Sealed the attribute class. Removed MPLv2 license. Fixed file headers. Added newline. Moved links in *.csproj files as well. Fix issues caused by rebase auto merging. Removed default constructor and added init values to properties, also hid the Remote value form API.
49 lines
1.8 KiB
C#
49 lines
1.8 KiB
C#
// Jellyfin.Versioning/AssemblyExtendedVersion.cs
|
|
// Part of the Jellyfin project (https://jellyfin.media)
|
|
//
|
|
// All copyright belongs to the Jellyfin contributors; a full list can
|
|
// be found in the file CONTRIBUTORS.md
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
|
|
namespace Jellyfin.Versioning
|
|
{
|
|
[AttributeUsage(AttributeTargets.Assembly)]
|
|
public sealed class AssemblyExtendedVersion : Attribute
|
|
{
|
|
public ExtendedVersion ExtendedVersion { get; }
|
|
|
|
public AssemblyExtendedVersion(ExtendedVersion ExtendedVersion)
|
|
{
|
|
this.ExtendedVersion = ExtendedVersion;
|
|
}
|
|
|
|
public AssemblyExtendedVersion(string apiVersion, bool readResource = true)
|
|
{
|
|
var assembly = Assembly.GetExecutingAssembly();
|
|
var resourceName = "Jellyfin.Versioning.jellyfin_version.ini";
|
|
|
|
using (var stream = assembly.GetManifestResourceStream(resourceName))
|
|
{
|
|
ExtendedVersion = new ExtendedVersion(new Version(apiVersion), stream);
|
|
}
|
|
}
|
|
}
|
|
}
|