Skip to content
This repository has been archived by the owner on Sep 4, 2023. It is now read-only.

Commit

Permalink
tweaking the start page
Browse files Browse the repository at this point in the history
  • Loading branch information
martycook committed Jun 15, 2023
1 parent 0e1312b commit 36a1f76
Show file tree
Hide file tree
Showing 9 changed files with 12,053 additions and 8 deletions.
11,967 changes: 11,967 additions & 0 deletions images/10709.eps

Large diffs are not rendered by default.

Binary file added images/10709.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions images/License free.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
IMPORTANT NOTICE: This license only applies if you downloaded this content as
an unsubscribed user. If you are a premium user (ie, you pay a subscription)
you are bound to the license terms described in the accompanying file
"License premium.txt".

---------------------

You must attribute the image to its author:

In order to use a content or a part of it, you must attribute it to pch.vector / Freepik,
so we will be able to continue creating new graphic resources every day.


How to attribute it?

For websites:

Please, copy this code on your website to accredit the author:
<a href="http://www.freepik.com">Designed by pch.vector / Freepik</a>

For printing:

Paste this text on the final work so the authorship is known.
- For example, in the acknowledgements chapter of a book:
"Designed by pch.vector / Freepik"


You are free to use this image:

- For both personal and commercial projects and to modify it.
- In a website or presentation template or application or as part of your design.

You are not allowed to:

- Sub-license, resell or rent it.
- Include it in any online or offline archive or database.

The full terms of the license are described in section 7 of the Freepik
terms of use, available online in the following link:

http://www.freepik.com/terms_of_use

The terms described in the above link have precedence over the terms described
in the present document. In case of disagreement, the Freepik Terms of Use
will prevail.
1 change: 1 addition & 0 deletions images/attribution.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<a href="https://www.freepik.com/free-vector/group-people-chatting-each-other-using-phone_11235468.htm#query=app%20illustration&position=49&from_view=keyword&track=ais">Image by pch.vector</a> on Freepik
4 changes: 4 additions & 0 deletions src/CG.Tools.QuickCrypto/CG.Tools.QuickCrypto.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>

<ItemGroup>
<None Remove="Resources\Images\10709.jpg" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommunityToolkit.Maui" Version="5.2.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ int size
/// operation.</param>
/// <param name="min">The lower value for the range.</param>
/// <param name="max">The upper value for the range.</param>
/// <returns>A randon integer who's value has been constrained
/// <returns>A random integer who's value has been constrained
/// to be within the range specified by the <paramref name="min"/> and
/// <paramref name="max"/> parameters.</returns>
/// <example>
Expand Down
24 changes: 24 additions & 0 deletions src/CG.Tools.QuickCrypto/Extensions/StringExtensions.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

namespace CG.Tools.QuickCrypto.Extensions;

/// <summary>
/// This class utility contains extension methods related to the <see cref="string"/>
/// type.
/// </summary>
public static class StringExtensions
{
// *******************************************************************
// Public methods.
// *******************************************************************

#region Public methods

public static string SafeAppend(
this string value
)
{
return "";
}

#endregion
}
18 changes: 11 additions & 7 deletions src/CG.Tools.QuickCrypto/Pages/Home/Index.razor
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
@page "/"

<MudText Typo="Typo.h5">@Assembly.GetEntryAssembly().ReadTitle()</MudText>
<MudText Class="mx-2" Typo="Typo.caption">@Assembly.GetEntryAssembly().ReadFileVersion()</MudText>

<MudText Class="my-5" Typo="Typo.subtitle1">A tool for quickly encrypting / decrypting data and files</MudText>

<MudText Class="my-8" Typo="Typo.caption">@Assembly.GetEntryAssembly().ReadCopyright()</MudText>

<MudText Typo="Typo.h5">@Assembly.GetEntryAssembly().ReadTitle() <MudText Color="Color.Dark" Typo="Typo.caption">[@Assembly.GetEntryAssembly().ReadFileVersion()]</MudText></MudText>
<MudText Typo="Typo.caption">@Assembly.GetEntryAssembly().ReadCopyright()</MudText>
<br />
<br />
<MudText Typo="Typo.subtitle1">A tool for quickly encrypting / decrypting data and files</MudText>

<br />
<MudImage Src="images/10709.jpg" Width="700" />
<div>
<a style="font-size:xx-small" href="https://www.freepik.com/free-vector/group-people-chatting-each-other-using-phone_11235468.htm#query=app%20illustration&position=49&from_view=keyword&track=ais">Image by pch.vector on Freepik</a>
</div>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 36a1f76

Please sign in to comment.