Skip to content

Commit 67bf8df

Browse files
+ Update License and header comments
1 parent 97b43e2 commit 67bf8df

File tree

2 files changed

+53
-31
lines changed

2 files changed

+53
-31
lines changed

data_control/udomxml.pas

+9-11
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,24 @@
11
(******************************************************************************)
22
(* uDomXML 07.10.2016 *)
33
(* *)
4-
(* Version : 0.08 *)
4+
(* Version : 0.09 *)
55
(* *)
6-
(* Autor : Corpsman *)
6+
(* Author : Uwe Schächterle (Corpsman) *)
77
(* *)
88
(* Support : www.Corpsman.de *)
99
(* *)
1010
(* Description : Module to load / save .xml files *)
1111
(* *)
12-
(* License : This component is postcardware for non commercial use only. *)
13-
(* If you like the component, send me a postcard: *)
12+
(* License : See the file license.md, located under: *)
13+
(* https://github.com/PascalCorpsman/Software_Licenses/blob/main/license.md *)
14+
(* for details about the license. *)
1415
(* *)
15-
(* Uwe Schächterle *)
16-
(* Buhlstraße 85 *)
17-
(* 71384 Weinstadt - Germany *)
18-
(* *)
19-
(* It is not allowed to change or remove this license from any *)
16+
(* It is not allowed to change or remove this text from any *)
2017
(* source file of the project. *)
2118
(* *)
22-
(* *)
23-
(* Warranty : There is no warranty, use at your own risk. *)
19+
(* Warranty : There is no warranty, neither in correctness of the *)
20+
(* implementation, nor anything other that could happen *)
21+
(* or go wrong, use at your own risk. *)
2422
(* *)
2523
(* History : 0.01 - Initial version *)
2624
(* 0.02 - Fix Memleak on error, Fix Stringparsing *)

data_control/umapviewer.pas

+44-20
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,51 @@
1+
(******************************************************************************)
2+
(* umapviewe.pas ??.??.???? *)
3+
(* *)
4+
(* Version : 0.01 *)
5+
(* *)
6+
(* Author : Uwe Schächterle (Corpsman) *)
7+
(* *)
8+
(* Support : www.Corpsman.de *)
9+
(* *)
10+
(* Description : make Google maps accessable for FPC / OpenGL *)
11+
(* *)
12+
(* License : See the file license.md, located under: *)
13+
(* https://github.com/PascalCorpsman/Software_Licenses/blob/main/license.md *)
14+
(* for details about the license. *)
15+
(* *)
16+
(* It is not allowed to change or remove this text from any *)
17+
(* source file of the project. *)
18+
(* *)
19+
(* Warranty : There is no warranty, neither in correctness of the *)
20+
(* implementation, nor anything other that could happen *)
21+
(* or go wrong, use at your own risk. *)
22+
(* *)
23+
(* Known Issues: none *)
24+
(* *)
25+
(* Inspired by: https://github.com/maciejkaczkowski/mapviewer (GPLv2) *)
26+
(* *)
27+
(* Modifications against the Original one: *)
28+
(* - Merge into one file *)
29+
(* - removed threads *)
30+
(* - Render in OpenGL (instead of LCL-Component) *)
31+
(* - Only Google Maps supported *)
32+
(* - Added Images shown on locations *)
33+
(* - only using synapse as downloadmanager *)
34+
(* - enable proxy downloading *)
35+
(* - removed as much variables as possible *)
36+
(* *)
37+
(* Missing Features: *)
38+
(* - Cleanup, Doku *)
39+
(* - Download via Thread for smoother rendering ? *)
40+
(* *)
41+
(* History : 0.01 - Initial version *)
42+
(* *)
43+
(******************************************************************************)
44+
145
Unit umapviewer;
246

347
{$MODE objfpc}{$H+}
448

5-
(*
6-
* Inspired by: https://github.com/maciejkaczkowski/mapviewer (GPLv2)
7-
*
8-
* Modifications against the Original one:
9-
* - Merge into one file
10-
* - removed threads
11-
* - Render in OpenGL (instead of LCL-Component)
12-
* - Only Google Maps supported
13-
* - Added Images shown on locations
14-
* - only using synapse as downloadmanager
15-
* - enable proxy downloading
16-
* - removed as much variables as possible
17-
*
18-
* History: 0.01 = initialversion
19-
*
20-
* Bugs / Missing Features:
21-
* - Cleanup, Doku
22-
* - Download via Thread for smoother rendering ?
23-
*)
24-
2549
Interface
2650

2751
Uses

0 commit comments

Comments
 (0)