From 47661657dc6d7354c375683b7b3f66549d12993a Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 1 Oct 2021 17:53:49 +0100 Subject: [PATCH 1/2] Fixed: failing to retrieve webpage title --- BookmarkForm.cs | 4 ++-- BookmarkManager.csproj | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/BookmarkForm.cs b/BookmarkForm.cs index 360f01d..94e7683 100644 --- a/BookmarkForm.cs +++ b/BookmarkForm.cs @@ -380,8 +380,8 @@ namespace FizzyLauncher if (rs.Item == null) rs.Item = new BookmarkItem(); - if (!string.IsNullOrWhiteSpace(rs.Item.SiteName)) ThreadControl.SetText(textBox1, rs.Item.SiteName); - if (!string.IsNullOrWhiteSpace(rs.Item.SiteDescription)) ThreadControl.SetText(memoBox1, rs.Item.SiteDescription); + if (!string.IsNullOrWhiteSpace(rs.Item.SiteName)) ThreadControl.SetText(textBox1.InnerTextBox, rs.Item.SiteName); + if (!string.IsNullOrWhiteSpace(rs.Item.SiteDescription)) ThreadControl.SetText(memoBox1.InnerTextBox, rs.Item.SiteDescription); if (string.IsNullOrWhiteSpace(rs.IconURL)) { diff --git a/BookmarkManager.csproj b/BookmarkManager.csproj index 3c20015..f9f122e 100644 --- a/BookmarkManager.csproj +++ b/BookmarkManager.csproj @@ -12,9 +12,9 @@ Hi, I'm Ray Bookmark Manager Ray Lam - 0.4.0.130 - 0.4.0.130 - 0.4.0.130 + 0.4.0.132 + 0.4.0.132 + 0.4.0.132 bookmarkmanager From 665d93a8f28853253f2643b5a660768a93ef00c8 Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 1 Oct 2021 17:59:21 +0100 Subject: [PATCH 2/2] Changed: build no. --- installer-64.iss | 2 +- installer-86.iss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer-64.iss b/installer-64.iss index 66f7cbf..d615563 100644 --- a/installer-64.iss +++ b/installer-64.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Bookmark Manager" -#define MyAppVersion "0.4.0.130" +#define MyAppVersion "0.4.0.132" #define MyAppPublisher "Hi, I'm Ray" #define MyAppURL "https://www.hiimray.co.uk/software-bookmark-manager" #define MyAppExeName "bookmarkmanager.exe" diff --git a/installer-86.iss b/installer-86.iss index 7149697..ef0480a 100644 --- a/installer-86.iss +++ b/installer-86.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Bookmark Manager" -#define MyAppVersion "0.4.0.130" +#define MyAppVersion "0.4.0.132" #define MyAppPublisher "Hi, I'm Ray" #define MyAppURL "https://www.hiimray.co.uk/software-bookmark-manager" #define MyAppExeName "bookmarkmanager.exe"