2 |
3 |
@Title
4 |
5 |
6 | Please take our
7 | brief survey
8 |
9 | and tell us what you think.
10 |
11 |
12 | @code {
13 | // Demonstrates how a parent component can supply parameters
14 | [Parameter]
15 | public string? Title { get; set; }
16 | }
17 |
--------------------------------------------------------------------------------
/JitHub.Web/_Imports.razor:
--------------------------------------------------------------------------------
1 | @using System.Net.Http
2 | @using System.Net.Http.Json
3 | @using Microsoft.AspNetCore.Components.Forms
4 | @using Microsoft.AspNetCore.Components.Routing
5 | @using Microsoft.AspNetCore.Components.Web
6 | @using Microsoft.AspNetCore.Components.Web.Virtualization
7 | @using Microsoft.AspNetCore.Components.WebAssembly.Http
8 | @using Microsoft.JSInterop
9 | @using JitHub.Web
10 | @using JitHub.Web.Shared
11 |
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/GitHub.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub.Web/wwwroot/GitHub.png
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/JitHubLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub.Web/wwwroot/JitHubLogo.png
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "API_Prefix": "http://localhost:7003"
3 | }
4 |
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/css/auth.css:
--------------------------------------------------------------------------------
1 | .auth-wrapper {
2 | width: 100%;
3 | height: 100%;
4 | display: flex;
5 | justify-content: center;
6 | align-content: center;
7 | align-items: center;
8 | flex-direction: column;
9 | }
10 |
11 | .spinner-border {
12 | display: inline-block;
13 | width: 5rem;
14 | height: 5rem;
15 | vertical-align: text-bottom;
16 | border: 0.75em solid rgb(117, 49, 150);
17 | border-right-color: transparent;
18 | border-radius: 50%;
19 | animation: spinner-border .75s linear infinite;
20 | margin-bottom: 30px;
21 | }
22 |
23 | @keyframes spinner-border {
24 | to {
25 | transform: rotate(360deg);
26 | }
27 | }
28 |
29 | .auth-image{
30 | height: 30%;
31 | width: 30%;
32 | margin-bottom: 35px;
33 | }
34 |
35 | .link {
36 | color: blue;
37 | text-decoration: underline;
38 | cursor: pointer;
39 | }
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/css/open-iconic/ICON-LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014 Waybury
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/css/open-iconic/font/fonts/open-iconic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub.Web/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/css/open-iconic/font/fonts/open-iconic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub.Web/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub.Web/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/css/open-iconic/font/fonts/open-iconic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub.Web/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub.Web/wwwroot/favicon.png
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/icon-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub.Web/wwwroot/icon-192.png
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/routes.json:
--------------------------------------------------------------------------------
1 | {
2 | "routes": [
3 | {
4 | "route": "/authorize",
5 | "serve": "/index.html",
6 | "statusCode": 200
7 | }
8 | ]
9 | }
10 |
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/ss1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub.Web/wwwroot/ss1.png
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/ss2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub.Web/wwwroot/ss2.png
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/ss3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub.Web/wwwroot/ss3.png
--------------------------------------------------------------------------------
/JitHub.Web/wwwroot/winui.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub.Web/wwwroot/winui.png
--------------------------------------------------------------------------------
/JitHub.WebView/Natives/IApplicationWindow_HwndInterop.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Runtime.InteropServices;
3 |
4 | namespace WebView2Ex.Natives;
5 |
6 |
7 | [ComImport, Guid("B74EA3BC-43C1-521F-9C75-E5C15054D78C"), InterfaceType(ComInterfaceType.InterfaceIsIInspectable)]
8 | interface IApplicationWindow_HwndInterop
9 | {
10 | Windows.UI.WindowId WindowHandle { get; }
11 | }
--------------------------------------------------------------------------------
/JitHub.WebView/Natives/ICoreWindowInterop.cs:
--------------------------------------------------------------------------------
1 | // Native methods wrapper
2 | // Some code are from https://github.com/microsoft/microsoft-ui-xaml/blob/main/dev/WebView2/WebView2.cpp
3 | #nullable enable
4 | using System;
5 | using System.Runtime.InteropServices;
6 |
7 | namespace WebView2Ex.Natives;
8 |
9 | [ComImport, Guid("45D64A29-A63E-4CB6-B498-5781D298CB4F")]
10 | [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
11 | interface ICoreWindowInterop
12 | {
13 | IntPtr WindowHandle { get; }
14 | bool MessageHandled { set; }
15 | }
--------------------------------------------------------------------------------
/JitHub.WebView/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("JitHub.WebView")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("JitHub.WebView")]
13 | [assembly: AssemblyCopyright("Copyright © 2023")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Version information for an assembly consists of the following four values:
18 | //
19 | // Major Version
20 | // Minor Version
21 | // Build Number
22 | // Revision
23 | //
24 | // You can specify all the values or you can default the Build and Revision Numbers
25 | // by using the '*' as shown below:
26 | // [assembly: AssemblyVersion("1.0.*")]
27 | [assembly: AssemblyVersion("1.0.0.0")]
28 | [assembly: AssemblyFileVersion("1.0.0.0")]
29 | [assembly: ComVisible(false)]
--------------------------------------------------------------------------------
/JitHub.WebView/UI/WebView2Ex.Events.Etc.cs:
--------------------------------------------------------------------------------
1 | using System.Numerics;
2 | using Windows.UI.Xaml;
3 |
4 | namespace WebView2Ex.UI;
5 |
6 | partial class WebView2Ex
7 | {
8 | void HandleRendered(object sender, object args)
9 | {
10 | if (CoreWebView2 is not null)
11 | {
12 | // Check if the position of the WebView inside the app has changed
13 | CheckAndUpdateWebViewPosition();
14 | // Check if the position of the window itself has changed
15 | CheckAndUpdateWindowPosition();
16 | // Check if the visibility property of a parent element has changed
17 | CheckAndUpdateVisibility();
18 | }
19 | }
20 |
21 | void HandleSizeChanged(object sender, SizeChangedEventArgs args)
22 | {
23 | SetCoreWebViewAndVisualSize((float)args.NewSize.Width, (float)args.NewSize.Height);
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/JitHub.WebView/UI/WebView2Ex.Override.cs:
--------------------------------------------------------------------------------
1 | // Original: https://github.com/microsoft/microsoft-ui-xaml/blob/main/dev/WebView2/WebView2.cpp
2 | #nullable enable
3 | using Windows.Foundation;
4 | using Windows.UI.Xaml;
5 | using Size = Windows.Foundation.Size;
6 | using Point = Windows.Foundation.Point;
7 |
8 |
9 | namespace WebView2Ex.UI;
10 |
11 | partial class WebView2Ex
12 | {
13 | protected override Size MeasureOverride(Size availableSize)
14 | {
15 | return base.MeasureOverride(availableSize);
16 | }
17 |
18 | // We could have a child Grid (see AddChildPanel) or a child TextBlock (see CreateMissingAnaheimWarning).
19 | // Make sure it is visited by the Arrange pass.
20 | protected override Size ArrangeOverride(Size finalSize)
21 | {
22 | if (Content is FrameworkElement child)
23 | {
24 | child.Arrange(new Rect(new Point(0, 0), finalSize));
25 | return finalSize;
26 | }
27 |
28 | return base.ArrangeOverride(finalSize);
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/JitHub.WebView/UI/WebView2Ex.PublicAPIs.cs:
--------------------------------------------------------------------------------
1 | // Original: https://github.com/microsoft/microsoft-ui-xaml/blob/main/dev/WebView2/WebView2.cpp
2 | using WebView2Ex.Natives;
3 | using Windows.UI.Core;
4 | using Windows.UI.WindowManagement;
5 | using Windows.Win32.Foundation;
6 | using static WebView2Ex.Natives.User32;
7 | namespace WebView2Ex.UI;
8 |
9 | partial class WebView2Ex
10 | {
11 | public partial void Dispose();
12 | public partial void Close();
13 | public void SetWindow(HWND window)
14 | {
15 | ParentWindow = window;
16 | UpdateWindow();
17 | }
18 | public void SetWindow(AppWindow appWindow)
19 | {
20 | SetWindow((HWND)(nint)((IApplicationWindow_HwndInterop)(dynamic)appWindow).WindowHandle.Value);
21 | }
22 | public void SetWindow(CoreWindow coreWindow)
23 | {
24 | SetWindow(HWNDFromCoreWindow(coreWindow));
25 | }
26 |
27 | }
28 |
--------------------------------------------------------------------------------
/JitHub.WebView/Utility.cs:
--------------------------------------------------------------------------------
1 | // Some code are from https://github.com/microsoft/microsoft-ui-xaml/
2 | #nullable enable
3 | using System;
4 | using Windows.System.Threading;
5 | using Windows.UI.Core;
6 |
7 | namespace WebView2Ex;
8 |
9 | static class Utility
10 | {
11 | public static void ScheduleActionAfterWait(CoreDispatcher Dispatcher,
12 | Action action,
13 | uint millisecondWait)
14 | {
15 | // The callback that is given to CreateTimer is called off of the UI thread.
16 | // In order to make this useful by making it so we can interact with XAML objects,
17 | // we'll use the dispatcher to first post our work to the UI thread before executing it.
18 | var timer = ThreadPoolTimer.CreateTimer(async _
19 | => await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => action()),
20 | TimeSpan.FromMilliseconds(millisecondWait)
21 | );
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/JitHub/Assets/ContributorsProfilePhotos/GetProfile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/ContributorsProfilePhotos/GetProfile.png
--------------------------------------------------------------------------------
/JitHub/Assets/ContributorsProfilePhotos/JakubProfile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/ContributorsProfilePhotos/JakubProfile.png
--------------------------------------------------------------------------------
/JitHub/Assets/ContributorsProfilePhotos/KeiraProfile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/ContributorsProfilePhotos/KeiraProfile.png
--------------------------------------------------------------------------------
/JitHub/Assets/ContributorsProfilePhotos/NeroProfile.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/ContributorsProfilePhotos/NeroProfile.jpg
--------------------------------------------------------------------------------
/JitHub/Assets/Data/in-app-purchase.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Data/in-app-purchase.xml
--------------------------------------------------------------------------------
/JitHub/Assets/Fonts/FluentIcons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Fonts/FluentIcons.ttf
--------------------------------------------------------------------------------
/JitHub/Assets/Icons/github_logo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Icons/github_logo_dark.png
--------------------------------------------------------------------------------
/JitHub/Assets/Icons/github_logo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Icons/github_logo_light.png
--------------------------------------------------------------------------------
/JitHub/Assets/Icons/no_result.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Icons/no_result.png
--------------------------------------------------------------------------------
/JitHub/Assets/Icons/select_one.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Icons/select_one.png
--------------------------------------------------------------------------------
/JitHub/Assets/JitHubLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/JitHubLogo.png
--------------------------------------------------------------------------------
/JitHub/Assets/JitHubLogoCropped.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/JitHubLogoCropped.png
--------------------------------------------------------------------------------
/JitHub/Assets/LargeTile.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/LargeTile.scale-100.png
--------------------------------------------------------------------------------
/JitHub/Assets/LargeTile.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/LargeTile.scale-125.png
--------------------------------------------------------------------------------
/JitHub/Assets/LargeTile.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/LargeTile.scale-150.png
--------------------------------------------------------------------------------
/JitHub/Assets/LargeTile.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/LargeTile.scale-200.png
--------------------------------------------------------------------------------
/JitHub/Assets/LargeTile.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/LargeTile.scale-400.png
--------------------------------------------------------------------------------
/JitHub/Assets/LinkLogos/GitHub.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/LinkLogos/GitHub.png
--------------------------------------------------------------------------------
/JitHub/Assets/LinkLogos/LinkedIn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/LinkLogos/LinkedIn.png
--------------------------------------------------------------------------------
/JitHub/Assets/LinkLogos/Twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/LinkLogos/Twitter.png
--------------------------------------------------------------------------------
/JitHub/Assets/LockScreenLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/LockScreenLogo.scale-200.png
--------------------------------------------------------------------------------
/JitHub/Assets/Octocat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Octocat.png
--------------------------------------------------------------------------------
/JitHub/Assets/SmallTile.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/SmallTile.scale-100.png
--------------------------------------------------------------------------------
/JitHub/Assets/SmallTile.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/SmallTile.scale-125.png
--------------------------------------------------------------------------------
/JitHub/Assets/SmallTile.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/SmallTile.scale-150.png
--------------------------------------------------------------------------------
/JitHub/Assets/SmallTile.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/SmallTile.scale-200.png
--------------------------------------------------------------------------------
/JitHub/Assets/SmallTile.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/SmallTile.scale-400.png
--------------------------------------------------------------------------------
/JitHub/Assets/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/JitHub/Assets/SplashScreen.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/SplashScreen.scale-125.png
--------------------------------------------------------------------------------
/JitHub/Assets/SplashScreen.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/SplashScreen.scale-150.png
--------------------------------------------------------------------------------
/JitHub/Assets/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/JitHub/Assets/SplashScreen.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/SplashScreen.scale-400.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square150x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square150x150Logo.scale-100.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square150x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square150x150Logo.scale-125.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square150x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square150x150Logo.scale-150.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square150x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square150x150Logo.scale-200.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square150x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square150x150Logo.scale-400.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.altform-unplated_targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.altform-unplated_targetsize-16.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.altform-unplated_targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.altform-unplated_targetsize-256.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.altform-unplated_targetsize-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.altform-unplated_targetsize-32.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.altform-unplated_targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.altform-unplated_targetsize-48.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.scale-100.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.scale-125.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.scale-150.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.scale-400.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.targetsize-16.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.targetsize-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.targetsize-24.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.targetsize-24_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.targetsize-256.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.targetsize-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.targetsize-32.png
--------------------------------------------------------------------------------
/JitHub/Assets/Square44x44Logo.targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Square44x44Logo.targetsize-48.png
--------------------------------------------------------------------------------
/JitHub/Assets/StoreLogo.backup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/StoreLogo.backup.png
--------------------------------------------------------------------------------
/JitHub/Assets/StoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/StoreLogo.scale-100.png
--------------------------------------------------------------------------------
/JitHub/Assets/StoreLogo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/StoreLogo.scale-125.png
--------------------------------------------------------------------------------
/JitHub/Assets/StoreLogo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/StoreLogo.scale-150.png
--------------------------------------------------------------------------------
/JitHub/Assets/StoreLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/StoreLogo.scale-200.png
--------------------------------------------------------------------------------
/JitHub/Assets/StoreLogo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/StoreLogo.scale-400.png
--------------------------------------------------------------------------------
/JitHub/Assets/Wide310x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Wide310x150Logo.scale-100.png
--------------------------------------------------------------------------------
/JitHub/Assets/Wide310x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Wide310x150Logo.scale-125.png
--------------------------------------------------------------------------------
/JitHub/Assets/Wide310x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Wide310x150Logo.scale-150.png
--------------------------------------------------------------------------------
/JitHub/Assets/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/JitHub/Assets/Wide310x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JitHubApp/JitHubV2/01d7d884407b4b92a51cf0a95c08e95ed2acde5d/JitHub/Assets/Wide310x150Logo.scale-400.png
--------------------------------------------------------------------------------
/JitHub/Assets/comments_icon_dark.svg:
--------------------------------------------------------------------------------
1 |
2 |