mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-23 03:16:22 +08:00
Update repo URL (#224)
This commit is contained in:
@@ -91,18 +91,18 @@ release includes the MoltenVK Vulkan implementation.
|
|||||||
## Games Tested
|
## Games Tested
|
||||||
|
|
||||||
* **Demon's Souls Remake**
|
* **Demon's Souls Remake**
|
||||||
* [Demon's Souls [PPSA01341]](https://github.com/par274/sharpemu/issues/2)
|
* [Demon's Souls [PPSA01341]](https://github.com/sharpemu/sharpemu/issues/2)
|
||||||
* Demon's Souls is now video loop. Shaders are ready to be converted to SPIR-V/Vulkan. We are continuing our work on this.
|
* Demon's Souls is now video loop. Shaders are ready to be converted to SPIR-V/Vulkan. We are continuing our work on this.
|
||||||

|

|
||||||
|
|
||||||
* **Poppy Playtime Chapter 1**
|
* **Poppy Playtime Chapter 1**
|
||||||
* [Poppy Playtime Chapter 1 [PPSA20591]](https://github.com/par274/sharpemu/issues/3)
|
* [Poppy Playtime Chapter 1 [PPSA20591]](https://github.com/sharpemu/sharpemu/issues/3)
|
||||||
|
|
||||||
* **SILENT HILL: The Short Message**
|
* **SILENT HILL: The Short Message**
|
||||||
* [SILENT HILL: The Short Message [PPSA10112]](https://github.com/par274/sharpemu/issues/4)
|
* [SILENT HILL: The Short Message [PPSA10112]](https://github.com/sharpemu/sharpemu/issues/4)
|
||||||
|
|
||||||
* **Dreaming Sarah**
|
* **Dreaming Sarah**
|
||||||
* [Dreaming Sarah [PPSA02929]](https://github.com/par274/sharpemu/issues/9)
|
* [Dreaming Sarah [PPSA02929]](https://github.com/sharpemu/sharpemu/issues/9)
|
||||||
* Real texture rendering for this game;
|
* Real texture rendering for this game;
|
||||||

|

|
||||||
|
|
||||||
@@ -115,7 +115,7 @@ release includes the MoltenVK Vulkan implementation.
|
|||||||
## Build
|
## Build
|
||||||
|
|
||||||
1. Install the .NET SDK version specified in [`global.json`](./global.json).
|
1. Install the .NET SDK version specified in [`global.json`](./global.json).
|
||||||
2. Clone the repository: `git clone https://github.com/par274/sharpemu.git`
|
2. Clone the repository: `git clone https://github.com/sharpemu/sharpemu.git`
|
||||||
3. Open the solution file (`SharpEmu.slnx`) in **VSCode**.
|
3. Open the solution file (`SharpEmu.slnx`) in **VSCode**.
|
||||||
4. Build the project: `dotnet build` or `dotnet publish`
|
4. Build the project: `dotnet build` or `dotnet publish`
|
||||||
5. Build artifacts will be located in the `artifacts` directory.
|
5. Build artifacts will be located in the `artifacts` directory.
|
||||||
@@ -141,7 +141,7 @@ Provided valuable references for filesystem handling and low-level C# implementa
|
|||||||
|
|
||||||
# License
|
# License
|
||||||
|
|
||||||
- [**GPL-2.0 license**](https://github.com/par274/sharpemu/blob/main/LICENSE)
|
- [**GPL-2.0 license**](https://github.com/sharpemu/sharpemu/blob/main/LICENSE)
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
|||||||
@@ -172,7 +172,7 @@ public partial class MainWindow : Window
|
|||||||
{
|
{
|
||||||
Process.Start(new ProcessStartInfo
|
Process.Start(new ProcessStartInfo
|
||||||
{
|
{
|
||||||
FileName = "https://github.com/par274/sharpemu",
|
FileName = "https://github.com/sharpemu/sharpemu",
|
||||||
UseShellExecute = true
|
UseShellExecute = true
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -12,8 +12,8 @@ namespace SharpEmu.Logging;
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static class BuildInfo
|
public static class BuildInfo
|
||||||
{
|
{
|
||||||
private const string ProjectUrl = "https://github.com/par274/sharpemu";
|
private const string ProjectUrl = "https://github.com/sharpemu/sharpemu";
|
||||||
private const string CanonicalRepository = "par274/sharpemu";
|
private const string CanonicalRepository = "sharpemu/sharpemu";
|
||||||
|
|
||||||
/// <summary>Short commit hash the build was produced from, or <c>null</c>.</summary>
|
/// <summary>Short commit hash the build was produced from, or <c>null</c>.</summary>
|
||||||
public static string? CommitSha { get; }
|
public static string? CommitSha { get; }
|
||||||
@@ -76,9 +76,9 @@ public static class BuildInfo
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The multi-line banner, e.g.
|
/// The multi-line banner, e.g.
|
||||||
/// <code>
|
/// <code>
|
||||||
/// SharpEmu UNOFFICIAL f11ac59 — https://github.com/par274/sharpemu
|
/// SharpEmu UNOFFICIAL f11ac59 — https://github.com/sharpemu/sharpemu
|
||||||
///
|
///
|
||||||
/// Built from branch "main" of "par274/sharpemu" by GitHub Actions workflow run https://github.com/par274/sharpemu/actions/runs/123.
|
/// Built from branch "main" of "sharpemu/sharpemu" by GitHub Actions workflow run https://github.com/sharpemu/sharpemu/actions/runs/123.
|
||||||
/// </code>
|
/// </code>
|
||||||
/// Official release builds drop the <c>UNOFFICIAL</c> tag. Falls back to a
|
/// Official release builds drop the <c>UNOFFICIAL</c> tag. Falls back to a
|
||||||
/// local-build line when no CI provenance is present.
|
/// local-build line when no CI provenance is present.
|
||||||
|
|||||||
Reference in New Issue
Block a user