File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
<p align =" center " >
2
- <img alt =" Files Logo " src =" src/Files.App%20(Package)/Assets/AppTiles/Release/StoreLogo.scale-400.png " width =" 100px " />
2
+ <img alt =" Files Logo " src =" ../ src/Files.App%20(Package)/Assets/AppTiles/Release/StoreLogo.scale-400.png" width =" 100px " />
3
3
<h1 align =" center " >Files</h1 >
4
4
</p >
5
5
@@ -48,4 +48,4 @@ Looking for a place to start? Check out the [task board](https://github.com/orgs
48
48
49
49
## Screenshots
50
50
51
- ![ Files] ( assets/FilesScreenshot.png )
51
+ ![ Files] ( ../ assets/FilesScreenshot.png)
Original file line number Diff line number Diff line change @@ -219,6 +219,11 @@ public static class GitHub
219
219
public const string SupportUsUrl = @"https://github.com/sponsors/yaira2" ;
220
220
}
221
221
222
+ public static class DocsPath
223
+ {
224
+ public const string ThirdPartyNoticePath = @"ms-appx:///.github/NOTICE.md" ;
225
+ }
226
+
222
227
public static class Actions
223
228
{
224
229
public const int MaxSelectedItems = 5 ;
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ public Task SupportUs()
111
111
112
112
public async Task LoadThirdPartyNoticesAsync ( )
113
113
{
114
- StorageFile file = await StorageFile . GetFileFromApplicationUriAsync ( new Uri ( @"ms-appx:///NOTICE.md" ) ) ;
114
+ StorageFile file = await StorageFile . GetFileFromApplicationUriAsync ( new Uri ( Constants . DocsPath . ThirdPartyNoticePath ) ) ;
115
115
ThirdPartyNotices = await FileIO . ReadTextAsync ( file ) ;
116
116
}
117
117
You can’t perform that action at this time.
0 commit comments