Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate ktsu.io to ktsu namespace #19

Merged
merged 4 commits into from
Sep 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ permissions:

jobs:
build-dotnet-library:
uses: ktsu-io/workflows/.github/workflows/build-dotnet-library.yml@main
uses: ktsu-dev/workflows/.github/workflows/build-dotnet-library.yml@main
secrets: inherit
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ktsu.io
ktsu
2 changes: 1 addition & 1 deletion ImGuiApp/ForceDpiAware.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Adapted From: https://github.com/Ryujinx/Ryujinx/blob/master/src/Ryujinx.Common/SystemInterop/ForceDpiAware.cs
// License: MIT

namespace ktsu.io.ImGuiApp;
namespace ktsu.ImGuiApp;

using System.Globalization;
using System.Runtime.InteropServices;
Expand Down
2 changes: 1 addition & 1 deletion ImGuiApp/GdiPlusHelper.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Adapted From: https://github.com/Ryujinx/Ryujinx/blob/master/src/Ryujinx.Common/SystemInterop/GdiPlusHelper.cs
// License: MIT

namespace ktsu.io.ImGuiApp;
namespace ktsu.ImGuiApp;

using System.Runtime.InteropServices;
using System.Runtime.Versioning;
Expand Down
6 changes: 3 additions & 3 deletions ImGuiApp/ImGuiApp.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// Ignore Spelling: App Im

namespace ktsu.io.ImGuiApp;
namespace ktsu.ImGuiApp;

using System.Collections.Concurrent;
using System.Collections.ObjectModel;
using System.Numerics;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using ImGuiNET;
using ktsu.io.Extensions;
using ktsu.io.StrongPaths;
using ktsu.Extensions;
using ktsu.StrongPaths;
using Silk.NET.Input;
using Silk.NET.OpenGL;
using Silk.NET.OpenGL.Extensions.ImGui;
Expand Down
4 changes: 2 additions & 2 deletions ImGuiApp/Resources/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ImGuiApp/UIScaler.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace ktsu.io.ImGuiApp;
namespace ktsu.ImGuiApp;

using ktsu.io.ScopedAction;
using ktsu.ScopedAction;
using ImGuiNET;
using System.Numerics;

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023-2024 ktsu.io
Copyright (c) 2023-2024 ktsu.dev

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading