Skip to content

GitHub: Moved github docs into .github folder #14276

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

Merged
merged 4 commits into from
Dec 22, 2023
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
File renamed without changes.
1,528 changes: 764 additions & 764 deletions NOTICE.md → .github/NOTICE.md

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions README.md → .github/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img alt="Files Logo" src="src/Files.App%20(Package)/Assets/AppTiles/Release/StoreLogo.scale-400.png" width="100px" />
<img alt="Files Logo" src="../src/Files.App%20(Package)/Assets/AppTiles/Release/StoreLogo.scale-400.png" width="100px" />
<h1 align="center">Files</h1>
</p>

Expand Down Expand Up @@ -48,4 +48,4 @@ Looking for a place to start? Check out the [task board](https://github.com/orgs

## Screenshots

![Files](assets/FilesScreenshot.png)
![Files](../assets/FilesScreenshot.png)
File renamed without changes.
File renamed without changes.
304 changes: 154 additions & 150 deletions specs/RichCommand/CommandList.md → docs/rich-commands.md

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions src/Files.App/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,11 @@ public static class GitHub
public const string SupportUsUrl = @"https://github.com/sponsors/yaira2";
}

public static class DocsPath
{
public const string ThirdPartyNoticePath = @"ms-appx:///.github/NOTICE.md";
}

public static class Actions
{
public const int MaxSelectedItems = 5;
Expand Down
2 changes: 1 addition & 1 deletion src/Files.App/Files.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<Content Include="7z64.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\NOTICE.md">
<Content Include="..\..\.github\NOTICE.md">
<Link>NOTICE.md</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
Expand Down
2 changes: 1 addition & 1 deletion src/Files.App/ViewModels/Settings/AboutViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public Task SupportUs()

public async Task LoadThirdPartyNoticesAsync()
{
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(new Uri(@"ms-appx:///NOTICE.md"));
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(new Uri(Constants.DocsPath.ThirdPartyNoticePath));
ThirdPartyNotices = await FileIO.ReadTextAsync(file);
}

Expand Down