Skip to content

Commit 6625329

Browse files
committed
v0.0.0.4
1 parent 19c08cb commit 6625329

12 files changed

+337
-685
lines changed

JavaInfo.iss

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
; Copyright (C) 2020 by Bill Stewart (bstewart at iname.com)
1+
; Copyright (C) 2020-2021 by Bill Stewart (bstewart at iname.com)
22
;
3-
; This program is free software: you can redistribute it and/or modify it under
4-
; the terms of the GNU General Public License as published by the Free Software
5-
; Foundation, either version 3 of the License, or (at your option) any later
6-
; version.
3+
; This program is free software; you can redistribute it and/or modify it under
4+
; the terms of the GNU Lesser General Public License as published by the Free
5+
; Software Foundation; either version 3 of the License, or (at your option) any
6+
; later version.
77
;
88
; This program is distributed in the hope that it will be useful, but WITHOUT
99
; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10-
; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
10+
; FOR A PARTICULAR PURPOSE. See the GNU General Lesser Public License for more
1111
; details.
1212
;
13-
; You should have received a copy of the GNU General Public License
13+
; You should have received a copy of the GNU Lesser General Public License
1414
; along with this program. If not, see https://www.gnu.org/licenses/.
1515

1616
; JavaInfo.iss
1717
; Sample Inno Setup (https://www.jrsoftware.org/isinfo.php) script
1818
; demonstrating use of JavaInfo.dll; doesn't install anything; just displays a
1919
; message box and exits
2020

21+
; Only works with Unicode versions of IS 5.6 or later, or IS 6.x or later (6.x
22+
; and later versions are all Unicode)
2123
#ifndef UNICODE
2224
#error This script requires Unicode Inno Setup
2325
#endif

JavaInfo.pp

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
{ Copyright (C) 2020 by Bill Stewart (bstewart at iname.com)
1+
{ Copyright (C) 2020-2021 by Bill Stewart (bstewart at iname.com)
22
3-
This program is free software: you can redistribute it and/or modify it under
4-
the terms of the GNU General Public License as published by the Free Software
5-
Foundation, either version 3 of the License, or (at your option) any later
6-
version.
3+
This program is free software; you can redistribute it and/or modify it under
4+
the terms of the GNU Lesser General Public License as published by the Free
5+
Software Foundation; either version 3 of the License, or (at your option) any
6+
later version.
77
88
This program is distributed in the hope that it will be useful, but WITHOUT
99
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10-
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
10+
FOR A PARTICULAR PURPOSE. See the GNU General Lesser Public License for more
1111
details.
1212
13-
You should have received a copy of the GNU General Public License
13+
You should have received a copy of the GNU Lesser General Public License
1414
along with this program. If not, see https://www.gnu.org/licenses/.
1515
1616
}

JavaInfo.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
1 VERSIONINFO
2-
FILEVERSION 0,0,0,3
3-
PRODUCTVERSION 0,0,0,3
2+
FILEVERSION 0,0,0,4
3+
PRODUCTVERSION 0,0,0,4
44
FILEOS 0x4
55
FILETYPE 1
66
{
@@ -10,12 +10,12 @@ FILETYPE 1
1010
{
1111
VALUE "CompanyName", ""
1212
VALUE "FileDescription", "JavaInfo.dll"
13-
VALUE "FileVersion", "0.0.0.3"
13+
VALUE "FileVersion", "0.0.0.4"
1414
VALUE "InternalName", "JavaInfo.dll"
1515
VALUE "LegalCopyright", "Written by Bill Stewart (bstewart at iname.com)"
1616
VALUE "OriginalFilename", "JavaInfo.dll"
1717
VALUE "ProductName", ""
18-
VALUE "ProductVersion", "0.0.0.3"
18+
VALUE "ProductVersion", "0.0.0.4"
1919
}
2020
}
2121

JavaInfoTest.pp

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
{ Copyright (C) 2020 by Bill Stewart (bstewart at iname.com)
1+
{ Copyright (C) 2020-2021 by Bill Stewart (bstewart at iname.com)
22
3-
This program is free software: you can redistribute it and/or modify it under
4-
the terms of the GNU General Public License as published by the Free Software
5-
Foundation, either version 3 of the License, or (at your option) any later
6-
version.
3+
This program is free software; you can redistribute it and/or modify it under
4+
the terms of the GNU Lesser General Public License as published by the Free
5+
Software Foundation; either version 3 of the License, or (at your option) any
6+
later version.
77
88
This program is distributed in the hope that it will be useful, but WITHOUT
99
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10-
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
10+
FOR A PARTICULAR PURPOSE. See the GNU General Lesser Public License for more
1111
details.
1212
13-
You should have received a copy of the GNU General Public License
13+
You should have received a copy of the GNU Lesser General Public License
1414
along with this program. If not, see https://www.gnu.org/licenses/.
1515
1616
}

0 commit comments

Comments
 (0)