commit 3e881fe33fb5350018fab6b217aa05c310a915ff Author: Mario Steele Date: Fri Sep 26 20:54:51 2025 -0500 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1084d09 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.godot/ +.idea/ diff --git a/Library/UI/LabelLineEdit.cs b/Library/UI/LabelLineEdit.cs new file mode 100644 index 0000000..54d354f --- /dev/null +++ b/Library/UI/LabelLineEdit.cs @@ -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); + } +} diff --git a/Library/UI/LabelLineEdit.cs.uid b/Library/UI/LabelLineEdit.cs.uid new file mode 100644 index 0000000..95d1146 --- /dev/null +++ b/Library/UI/LabelLineEdit.cs.uid @@ -0,0 +1 @@ +uid://c3juujxln4m38 diff --git a/MediaPortal.csproj b/MediaPortal.csproj new file mode 100644 index 0000000..06efe92 --- /dev/null +++ b/MediaPortal.csproj @@ -0,0 +1,13 @@ + + + net8.0 + net9.0 + true + + + + + + + + \ No newline at end of file diff --git a/MediaPortal.sln b/MediaPortal.sln new file mode 100644 index 0000000..d8ea6a5 --- /dev/null +++ b/MediaPortal.sln @@ -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 diff --git a/TestingInterface.cs b/TestingInterface.cs new file mode 100644 index 0000000..a9336c9 --- /dev/null +++ b/TestingInterface.cs @@ -0,0 +1,5 @@ +using Godot; + +public partial class TestingInterface : Control +{ +} diff --git a/TestingInterface.cs.uid b/TestingInterface.cs.uid new file mode 100644 index 0000000..6afa9d1 --- /dev/null +++ b/TestingInterface.cs.uid @@ -0,0 +1 @@ +uid://demxhjphd8gkg diff --git a/default_env.tres b/default_env.tres new file mode 100644 index 0000000..3937380 --- /dev/null +++ b/default_env.tres @@ -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) diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..8a3cd7b Binary files /dev/null and b/icon.png differ diff --git a/icon.png.import b/icon.png.import new file mode 100644 index 0000000..83cc5d7 --- /dev/null +++ b/icon.png.import @@ -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 diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..a77dfee --- /dev/null +++ b/project.godot @@ -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"