forked from luckyrat/KeePass-Favicon-Downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed URL output on progress form (nearly always invisible due to w…
…ord-wrapping so would just confuse people); URL of entry added to error message; version numbers and changelog updated; updated support forum URL
- Loading branch information
Showing
4 changed files
with
30 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
KeePass Favicon Downloader - KeePass plugin that downloads and stores | ||
favicons for entries with web URLs. | ||
Copyright (C) 2009-2011 Chris Tomlinson <[email protected]> | ||
Copyright (C) 2009-2014 Chris Tomlinson <[email protected]> | ||
Thanks to mausoma and psproduction for their contributions | ||
This program is free software; you can redistribute it and/or modify | ||
|
@@ -187,12 +187,12 @@ private void downloadSomeFavicons(KeePassLib.Collections.PwObjectList<PwEntry> e | |
{ | ||
string message = ""; | ||
|
||
progressForm.SetText("Title: " + pwe.Strings.ReadSafe("Title") + "; User Name: " + pwe.Strings.ReadSafe("UserName") + "; URL: " + pwe.Strings.ReadSafe("URL"),LogStatusType.Info); | ||
progressForm.SetText("Title: " + pwe.Strings.ReadSafe("Title") + "; User Name: " + pwe.Strings.ReadSafe("UserName"),LogStatusType.Info); | ||
|
||
downloadOneFavicon(pwe, ref message); | ||
if (message != "") | ||
{ | ||
errorMessage = message; | ||
errorMessage = "For an entry with URL '"+pwe.Strings.ReadSafe("URL")+"': " + message; | ||
errorCount++; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
KeePass Favicon Downloader - KeePass plugin that downloads and stores | ||
favicons for entries with web URLs | ||
Copyright (C) 2009-2010 Chris Tomlinson <[email protected]> | ||
Copyright (C) 2009-2014 Chris Tomlinson <[email protected]> | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
@@ -28,7 +28,7 @@ You should have received a copy of the GNU General Public License | |
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("Chris Tomlinson")] | ||
[assembly: AssemblyProduct("KeePass Plugin")] | ||
[assembly: AssemblyCopyright("Copyright © 2009-2013 Chris Tomlinson")] | ||
[assembly: AssemblyCopyright("Copyright © 2009-2014 Chris Tomlinson")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
|
@@ -40,4 +40,4 @@ You should have received a copy of the GNU General Public License | |
|
||
// Assembly version information | ||
[assembly: AssemblyVersion("2.0.9.*")] | ||
[assembly: AssemblyFileVersion("1.7.2.0")] | ||
[assembly: AssemblyFileVersion("1.8.0.0")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
: | ||
Favicon Downloader:1.7.2.0 | ||
Favicon Downloader:1.8.0.0 | ||
: |