Skip to content

Commit d320f3c

Browse files
committed
Added license to git
1 parent afe79bd commit d320f3c

File tree

1 file changed

+145
-0
lines changed

1 file changed

+145
-0
lines changed

LICENSE.txt

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
2+
/*
3+
* JTrek
4+
*
5+
* a Netrek client for the Java(TM) Platform
6+
*
7+
* Copyright (c) 1997 Robert Temple
8+
*
9+
* Permission to use, copy, modify, and distribute this software and its
10+
* documentation for any purpose and without fee is hereby granted, provided
11+
* that the above copyright notice appear in all copies and that both that
12+
* copyright notice and this permission notice appear in supporting
13+
* documentation. No representations are made about the suitability of this
14+
* software for any purpose. It is provided "as is" without express or
15+
* implied warranty.
16+
* -------------------------------------------------------------------
17+
* Xtrek
18+
*
19+
* Copyright (c) 1986 Chris Guthrie
20+
*
21+
* Permission to use, copy, modify, and distribute this software and its
22+
* documentation for any purpose and without fee is hereby granted, provided
23+
* that the above copyright notice appear in all copies and that both that
24+
* copyright notice and this permission notice appear in supporting
25+
* documentation. No representations are made about the suitability of this
26+
* software for any purpose. It is provided "as is" without express or
27+
* implied warranty.
28+
* -------------------------------------------------------------------
29+
* Netrek (Xtrek II)
30+
*
31+
* Kevin P. Smith Scott Silvey
32+
*
33+
* Copyright 1989 Kevin P. Smith
34+
* Scott Silvey
35+
*
36+
* Permission to use, copy, modify, and distribute this
37+
* software and its documentation for any purpose and without
38+
* fee is hereby granted, provided that the above copyright
39+
* notice appear in all copies.
40+
* -------------------------------------------------------------------
41+
* As above. Use at your own risk.
42+
*
43+
* COW (BRM) authors (including but not limitted to: Kevin Powell Nick Trown
44+
* Jeff Nelson Kurt Siegl)
45+
* -------------------------------------------------------------------
46+
* NETREK II -- Paradise
47+
*
48+
* Permission to use, copy, modify, and distribute this software and
49+
* its documentation, or any derivative works thereof, for any
50+
* NON-COMMERCIAL purpose and without fee is hereby granted, provided
51+
* that this copyright notice appear in all copies. No
52+
* representations are made about the suitability of this software for
53+
* any purpose. This software is provided "as is" without express or
54+
* implied warranty.
55+
*
56+
* Paradise II (Netrek II) Copyright 1993 Larry Denys
57+
* Kurt Olsen
58+
* Brandon Gillespie
59+
* -------------------------------------------------------------------
60+
* Java
61+
*
62+
* Java and all Java-based marks are trademarks or registered trademarks of
63+
* Sun Microsystems, Inc. in the United States and other countries. [Insert
64+
* publisher, producer or provider name] is independent of Sun Microsystems,
65+
* Inc.
66+
*/
67+
68+
package jtrek;
69+
70+
/*
71+
* JTrek
72+
*
73+
* a Netrek client for the Java(TM) Platform
74+
*
75+
* Copyright (c) 2021 Darrell Root
76+
* Copyright (c) 1997 Robert Temple
77+
*
78+
* Permission to use, copy, modify, and distribute this software and its
79+
* documentation for any purpose and without fee is hereby granted, provided
80+
* that the above copyright notice appear in all copies and that both that
81+
* copyright notice and this permission notice appear in supporting
82+
* documentation. No representations are made about the suitability of this
83+
* software for any purpose. It is provided "as is" without express or
84+
* implied warranty.
85+
* -------------------------------------------------------------------
86+
* Xtrek
87+
*
88+
* Copyright (c) 1986 Chris Guthrie
89+
*
90+
* Permission to use, copy, modify, and distribute this software and its
91+
* documentation for any purpose and without fee is hereby granted, provided
92+
* that the above copyright notice appear in all copies and that both that
93+
* copyright notice and this permission notice appear in supporting
94+
* documentation. No representations are made about the suitability of this
95+
* software for any purpose. It is provided "as is" without express or
96+
* implied warranty.
97+
* -------------------------------------------------------------------
98+
* Netrek (Xtrek II)
99+
*
100+
* Kevin P. Smith Scott Silvey
101+
*
102+
* Copyright 1989 Kevin P. Smith
103+
* Scott Silvey
104+
*
105+
* Permission to use, copy, modify, and distribute this
106+
* software and its documentation for any purpose and without
107+
* fee is hereby granted, provided that the above copyright
108+
* notice appear in all copies.
109+
* -------------------------------------------------------------------
110+
* As above. Use at your own risk.
111+
*
112+
* COW (BRM) authors (including but not limitted to: Kevin Powell Nick Trown
113+
* Jeff Nelson Kurt Siegl)
114+
* -------------------------------------------------------------------
115+
* NETREK II -- Paradise
116+
*
117+
* Permission to use, copy, modify, and distribute this software and
118+
* its documentation, or any derivative works thereof, for any
119+
* NON-COMMERCIAL purpose and without fee is hereby granted, provided
120+
* that this copyright notice appear in all copies. No
121+
* representations are made about the suitability of this software for
122+
* any purpose. This software is provided "as is" without express or
123+
* implied warranty.
124+
*
125+
* Paradise II (Netrek II) Copyright 1993 Larry Denys
126+
* Kurt Olsen
127+
* Brandon Gillespie
128+
* -------------------------------------------------------------------
129+
* Java
130+
*
131+
* Java and all Java-based marks are trademarks or registered trademarks of
132+
* Sun Microsystems, Inc. in the United States and other countries. [Insert
133+
* publisher, producer or provider name] is independent of Sun Microsystems,
134+
* Inc.
135+
*/
136+
public interface Copyright {
137+
String VERSION = "JTrek version 1.0.0 Beta";
138+
139+
String[] AUTHORS = {
140+
"Robert Temple","Darrell Root"
141+
};
142+
143+
//String SUPPORT = "robertt@starwave.com";
144+
String SUPPORT = "feedback@networkmom.net";
145+
}

0 commit comments

Comments
 (0)