Initial Commit

This commit is contained in:
Mario Steele 2025-09-26 20:54:51 -05:00
commit 3e881fe33f
11 changed files with 131 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.godot/
.idea/

View file

@ -0,0 +1,23 @@
using Godot;
using System;
[GlobalClass]
public partial class LabelLineEdit : HBoxContainer
{
#region Exports
#endregion
#region Nodes
private Label _labelNode;
private LineEdit _lineEdit;
#endregion
public LabelLineEdit()
{
_labelNode = new Label();
_lineEdit = new LineEdit();
_lineEdit.SizeFlagsHorizontal = SizeFlags.ExpandFill;
AddChild(_labelNode);
AddChild(_lineEdit);
}
}

View file

@ -0,0 +1 @@
uid://c3juujxln4m38

13
MediaPortal.csproj Normal file
View file

@ -0,0 +1,13 @@
<Project Sdk="Godot.NET.Sdk/4.5.0">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'android' ">net9.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GodotSharpExtras" Version="0.5.0" />
<PackageReference Include="Jellyfin.Sdk" Version="2024.10.28" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
</ItemGroup>
</Project>

19
MediaPortal.sln Normal file
View file

@ -0,0 +1,19 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaPortal", "MediaPortal.csproj", "{E5296C6C-6C54-45D4-9F01-02CB04517764}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
ExportDebug|Any CPU = ExportDebug|Any CPU
ExportRelease|Any CPU = ExportRelease|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E5296C6C-6C54-45D4-9F01-02CB04517764}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E5296C6C-6C54-45D4-9F01-02CB04517764}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E5296C6C-6C54-45D4-9F01-02CB04517764}.ExportDebug|Any CPU.ActiveCfg = ExportDebug|Any CPU
{E5296C6C-6C54-45D4-9F01-02CB04517764}.ExportDebug|Any CPU.Build.0 = ExportDebug|Any CPU
{E5296C6C-6C54-45D4-9F01-02CB04517764}.ExportRelease|Any CPU.ActiveCfg = ExportRelease|Any CPU
{E5296C6C-6C54-45D4-9F01-02CB04517764}.ExportRelease|Any CPU.Build.0 = ExportRelease|Any CPU
EndGlobalSection
EndGlobal

5
TestingInterface.cs Normal file
View file

@ -0,0 +1,5 @@
using Godot;
public partial class TestingInterface : Control
{
}

1
TestingInterface.cs.uid Normal file
View file

@ -0,0 +1 @@
uid://demxhjphd8gkg

7
default_env.tres Normal file
View file

@ -0,0 +1,7 @@
[gd_resource type="Environment" load_steps=2 format=2]
[sub_resource type="ProceduralSky" id=1]
[resource]
background_mode = 2
background_sky = SubResource(1)

BIN
icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

40
icon.png.import Normal file
View file

@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bs21uv2pk1njv"
path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://icon.png"
dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

20
project.godot Normal file
View file

@ -0,0 +1,20 @@
; Engine configuration file.
; It's best edited using the editor UI and not directly,
; since the parameters that go here are not all obvious.
;
; Format:
; [section] ; section goes between []
; param=value ; assign values to parameters
config_version=5
[application]
config/name="MediaPortal"
config/description="Enter an interesting project description here!"
config/features=PackedStringArray("4.5")
config/icon="res://icon.png"
[dotnet]
project/assembly_name="MediaPortal"