Skip to content

Commit

Permalink
Merge pull request #409 from Leo-Corporation/vNext
Browse files Browse the repository at this point in the history
Version 6.2.1.2404
  • Loading branch information
lpeyr authored Apr 23, 2024
2 parents 5b412b3 + 28e5a5f commit 21f9d0d
Show file tree
Hide file tree
Showing 7 changed files with 793 additions and 795 deletions.
4 changes: 2 additions & 2 deletions ColorPicker.Setup/Setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "ColorPicker Max"
#define MyAppVersion "6.2.0.2404"
#define MyAppFullVersion "6.2.0.2404"
#define MyAppVersion "6.2.1.2404"
#define MyAppFullVersion "6.2.1.2404"
#define MyAppPublisher "Léo Corporation"
#define MyAppURL "https://leocorporation.dev/"
#define MyAppExeName "ColorPicker.exe"
Expand Down
2 changes: 1 addition & 1 deletion ColorPicker/Classes/Global.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public static class Global
internal static string SettingsPath => $@"{FileSys.AppDataPath}\Léo Corporation\ColorPicker Max\Settings.xml";
public static string LastVersionLink => "https://raw.githubusercontent.com/Leo-Corporation/LeoCorp-Docs/master/Liens/Update%20System/ColorPicker/5.0/Version.txt";

public static string Version => "6.2.0.2404";
public static string Version => "6.2.1.2404";

public static string HiSentence
{
Expand Down
2 changes: 1 addition & 1 deletion ColorPicker/ColorPicker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Title>ColorPicker</Title>
<Description>Maximize your creativity.</Description>
<RepositoryUrl>https://github.com/Leo-Corporation/ColorPicker</RepositoryUrl>
<Version>6.2.0.2404</Version>
<Version>6.2.1.2404</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>logo.png</PackageIcon>
<ApplicationIcon>CPM.ico</ApplicationIcon>
Expand Down
2 changes: 2 additions & 0 deletions ColorPicker/Pages/ConverterPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,8 @@ internal void LoadDetails(bool setColor = false)
ColorValidIconTxt.Text = "\uF299";
ColorValidIconTxt.Foreground = Global.GetColorFromResource("Green");

LoadBookmarkMenu();

// Load the bookmark icon
if (!Global.Bookmarks.ColorBookmarks.Contains(HexTxt.Text))
{
Expand Down
2 changes: 2 additions & 0 deletions ColorPicker/Pages/HarmoniesPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,8 @@ internal void InitHarmonies()
MonochromaticPanel.Children.Add(border);
}

LoadBookmarkMenu();

// Load the bookmark icon
if (!Global.Bookmarks.ColorBookmarks.Contains($"#{ColorInfo.HEX.Value}"))
{
Expand Down
2 changes: 2 additions & 0 deletions ColorPicker/Pages/SelectorPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,8 @@ internal void LoadDetails()
YuvTxt.Text = $"{ColorInfo.YUV.Y:0.00}..; {ColorInfo.YUV.U:0.00}..; {ColorInfo.YUV.V:0.00}..";
DecTxt.Text = ColorInfo.DEC.Value.ToString();

LoadBookmarkMenu();

// Load the bookmark icon
if (!Global.Bookmarks.ColorBookmarks.Contains(HexTxt.Text))
{
Expand Down
Loading

0 comments on commit 21f9d0d

Please sign in to comment.