Skip to content

Commit 0984d56

Browse files
committed
Update license and version
1 parent f451824 commit 0984d56

18 files changed

+35
-24
lines changed

CustomIconDashboarderExt.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CustomIconDashboarder - KeePass Plugin to get some information and
33
manage custom icons
44
5-
Copyright (C) 2016 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2019 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by
@@ -37,7 +37,7 @@ public sealed class CustomIconDashboarderPluginExt : Plugin, IDisposable
3737

3838
public override string UpdateUrl
3939
{
40-
get { return "https://sourceforge.net/p/keepasscustomicondashboarder/KPCustomIconDashboarder/ci/master/tree/versionInfo.txt?format=raw"; }
40+
get { return "https://raw.githubusercontent.com/incognito1234/Keepass-Custom-Icon-Dashboarder/master/versionInfo.txt"; }
4141
}
4242

4343

DashboarderForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CustomIconDashboarder - KeePass Plugin to get some information and
33
manage custom icons
44
5-
Copyright (C) 2016 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2019 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by

IconChooser.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CustomIconDashboarder - KeePass Plugin to get some information and
33
manage custom icons
44
5-
Copyright (C) 2016 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2016 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
1818
along with this program; if not, write to the Free Software
1919
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2020
*/
21-
21+
2222
using System;
2323
using System.Drawing;
2424

IconStatsHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CustomIconDashboarder - KeePass Plugin to get some information and
33
manage custom icons
44
5-
Copyright (C) 2016 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2016 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by

ImageInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CustomIconDashboarder - KeePass Plugin to get some information and
33
manage custom icons
44
5-
Copyright (C) 2015 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2019 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by

KPCIDConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CustomIconDashboarder - KeePass Plugin to get some information and
33
manage custom icons
44
5-
Copyright (C) 2016 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2019 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by

LICENSE.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@
88

99
HtmlAgilityPack
1010
---------------
11-
The library HtmlAgilityPack v1.11.12 is used. It is available here:
12-
https://github.com/zzzprojects/html-agility-pack
11+
The library HtmlAgilityPack v1.11.12 is used.
1312

13+
Original version is available here:
14+
https://github.com/zzzprojects/html-agility-pack
15+
Minor modifications has been performed to use it as a KeePass Plugin.
1416

1517
This library is distributed under the terms of the MIT License (MIT)
1618
Permission is hereby granted, free of charge, to any person obtaining a copy

LomsonLib/Collections/CollectionUtil.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
LomsonLib - Library to help management of various object types in program
33
developed in c#.
44
5-
Copyright (C) 2014 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2014 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by

LomsonLib/LomsonDebug/ListViewLayoutManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
LomsonLib - Library to help management of various object types in program
33
developed in c#.
44
5-
Copyright (C) 2015 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2015 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by
@@ -55,7 +55,7 @@ You should have received a copy of the GNU General Public License
5555
* - Initial Version
5656
*
5757
*/
58-
58+
5959
using System;
6060
using System.Collections;
6161
using System.Collections.Generic;

LomsonLib/LomsonDebug/LomsonDebugLib.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
LomsonLib - Library to help management of various object types in program
33
developed in c#.
44
5-
Copyright (C) 2014 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2014 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by

LomsonLib/UI/CompatibilityManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
CustomIconDashboarder - KeePass Plugin to get some information and
33
manage custom icons
44
5-
Copyright (C) 2015 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2015 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
1818
along with this program; if not, write to the Free Software
1919
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2020
*/
21-
21+
2222
using System;
2323

2424
using System.Drawing;

LomsonLib/UI/RTFBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
LomsonLib - Library to help management of various object types in program
33
developed in c#.
44
5-
Copyright (C) 2014 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2014 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by

LomsonLib/UI/ScaleControlTableLayoutPanel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
LomsonLib - Library to help management of various object types in program
33
developed in c#.
44
5-
Copyright (C) 2014 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2014 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by

LomsonLib/UI/SwappableComparer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
LomsonLib - Library to help management of various object types in program
33
developed in c#.
44
5-
Copyright (C) 2014 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2014 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by

LomsonLib/Utility/LomsonUtility.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
LomsonLib - Library to help management of various object types in program
33
developed in c#.
44
5-
Copyright (C) 2015 Jareth Lomson <incognito1234@users.sourceforge.net>
5+
Copyright (C) 2015 Jareth Lomson <jareth.lomson@gmail.com>
66
77
This program is free software; you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
[assembly: AssemblyConfiguration("")]
1616
[assembly: AssemblyCompany("Jareth Lomson")]
1717
[assembly: AssemblyProduct("KeePass Plugin")]
18-
[assembly: AssemblyCopyright("Copyright 2016 - Jareth Lomson")]
18+
[assembly: AssemblyCopyright("Copyright 2019 - Jareth Lomson")]
1919
[assembly: AssemblyTrademark("")]
2020
[assembly: AssemblyCulture("")]
2121

@@ -29,7 +29,7 @@
2929
//
3030
// You can specify all the values or you can use the default the Revision and
3131
// Build Numbers by using the '*' as shown below:
32-
[assembly: AssemblyVersion("1.1.0")]
32+
[assembly: AssemblyVersion("1.2.0")]
3333

3434

3535
// Asked by fxCop

README.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,23 @@
44
Pre-requisites
55
--------------
66
KeePass Password Safe 2.00+
7-
(latest version tested on 2.25 to 2.33)
7+
Framework .NET 4.5+
88

99

1010
Installation instructions
1111
-------------------------
1212
Put the .plgx file into a folder called "plugins" inside your
1313
KeePass Password Safe installation folder
1414

15+
Version 1.2.0
16+
-------------
17+
- Simultaneous icon downloads by introducing multithreading
18+
- Remember size and position of dashboard when closing windows
19+
20+
- Improvements:
21+
- Update HtmlAgilityPack with version v1.11.12
22+
23+
1524
Version 1.1.0
1625
-------------
1726
- All icons from URL are downloaded. The best-sized icon is choosen by default.

versionInfo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
:
2-
Custom Icon Dashboarder: 1.1.0
2+
Custom Icon Dashboarder: 1.2.0
33
:

0 commit comments

Comments
 (0)