-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNEWS
140 lines (101 loc) · 4.88 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
Release Notes for JIGS version 1.6
==================================
Support for modern Objective-C runtimes. General portability
improvements. Improvements to the building process including parallel
building.
Release Notes for JIGS version 1.5
==================================
New advanced support for exposing enumeration: the wrapper tool can
now recognize and parse enumeration declarations in the Objective-C
header files, so it automatically maps them to ints, and upon request
can expose any enumeration you want using static Java constants in a
class.
Release Notes for JIGS version 1.4
==================================
In this release, the makefiles for wrapping an objective-c library
have been rewritten to decouple the process of wrapping from the
process of building the original library.
Release Notes for JIGS version 1.3
==================================
This release provides morphing of java.lang.Number objects to and from
GNUstep's NSNumber.
Release Notes for JIGS version 1.2
==================================
Starting with this release, whenever generating java wrappers for a
library, JIGS creates automatically a quick reference documentation
for the wrappers by using javadoc. Other minor features were
implemented too.
Release Notes for JIGS version 1.1
==================================
With this release, JIGS builds and installs automatically the java
wrappers after generating them. RPM support was also added - both
JIGS itself and wrapper libraries generated by JIGS can now take
advantage of the new RPM support built into the GNUstep make package.
Release Notes for JIGS version 1.0
==================================
This release provides documentation. A first version of the JIGS
manual, covering programming in GNUstep from Java and wrapping
Objective-C libraries, is included.
Release Notes for JIGS version 0.9
==================================
This release implements support for threads. Calling (thread-safe)
GNUstep libraries concurrently from different java threads should now
work.
Release Notes for JIGS version 0.8
==================================
This release is mainly a bug fix release. In particular, exposing
different objc methods as overloaded java methods has been finally
fixed. You can now create windows using the gui library from
Java!
Release Notes for JIGS version 0.7
==================================
This release adds support for morphing of selectors. This improvement
required extensive additions to the JIGS core engine and to the
WrapCreator tool.
Release Notes for JIGS version 0.6
==================================
This release supports building wrappers of debugging libraries, and
keeping and running them on the same system as wrappers of
not-debugging libraries.
Release Notes for JIGS version 0.5
==================================
This release includes a first very partial and experimental wrapper of
the gnustep gui library; WrapCreator supports prerequisite libraries;
bug fixes.
Release Notes for JIGS version 0.4
==================================
This release includes a first partial wrapper of the gnustep base
library; the WrapCreator tool has been modified to parse the header
file only once, so it is now much faster. Many bug fixes too.
Release Notes for JIGS version 0.3
==================================
First release of WrapCreator, an automatic wrapper tool for JIGS.
The wrapper can automatically generate the code to wrap an objective-C
library to Java.
Release Notes for JIGS version 0.2
==================================
Alpha support for subclassing an Objective-C class in Java.
Better support for exposing Objective-C class methods to Java.
Release Notes for JIGS version 0.1
==================================
This is the first public release. While the core engine is mostly
working, the high level APIs and tools are still missing. In
particular, we don't have a wrapper tool yet. And, the base gnustep
library has not yet been wrapped.
The core engine is organized in the following way:
* A little library (ObjcRuntimeUtilities) to programmatically
add classes and methods to the objective-C runtime while it is
running;
* A little library (GSJNI) of utilities to program JNI using GNUstep.
* A little class (NSJavaVirtualMachine) keeping track of the java
virtual machine presently running and incidentally providing a
simple API to start a java virtual machine.
* The real core engine (JIGS itself), built on top of the previous
layers. Most of it is written in Objective-C, but part is in Java.
Version 0.1 contains an example of an objective-C gnustep library
wrapped by hand and exposed as a Java library. Following this
example, it should not be too difficult to wrap by hand simple
libraries.
Tests and examples of the reverse (starting a java virtual machine in
an Objective-C executable and accessing java objects from objective-C)
have been written, but not included in JIGS 0.1.