IUP

Check-in [d10d3a9ff4]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Bumped version to 1.7.0
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk | v1.7.0
Files: files | file ages | folders
SHA1: d10d3a9ff421d4248569c9a6e087ab6e6b24ee18
User & Date: murphy 2015-07-27 00:01:20.428
Context
2015-07-27
00:03
Updated CHICKEN release information file check-in: 3c24b754d1 user: murphy tags: trunk
00:01
Bumped version to 1.7.0 check-in: d10d3a9ff4 user: murphy tags: trunk, v1.7.0
2015-07-26
23:57
Use external callback registry - prevents attribute lookup chaining problems - creates fewer garbage collection roots check-in: 8f6bdb17f4 user: murphy tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to chicken/iup.setup.
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
 [disable-iup-config]
 [else
	(compile -s -O2 -d0 "iup-config.import.scm")])

(install-extension
 'iup
 `("iup.so" "iup.o" "iup-types.scm" ,@import-libraries)
 `((version 1.6.0)
	 (static "iup-base.o")
	 (static-options ,(string-intersperse native-libraries))))

(compile -s -O2 -d1 "iup-dynamic.scm" -j iup-dynamic)
(compile -c -O2 -d1 "iup-dynamic.scm" -j iup-dynamic -unit iup-dynamic)
(compile -s -O2 -d0 "iup-dynamic.import.scm")

(install-extension
 'iup-dynamic
 '("iup-dynamic.so" "iup-dynamic.o" "iup-dynamic.import.so")
 '((version 1.6.0)
   (static "iup-dynamic.o")))







|










|

190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
 [disable-iup-config]
 [else
	(compile -s -O2 -d0 "iup-config.import.scm")])

(install-extension
 'iup
 `("iup.so" "iup.o" "iup-types.scm" ,@import-libraries)
 `((version 1.7.0)
	 (static "iup-base.o")
	 (static-options ,(string-intersperse native-libraries))))

(compile -s -O2 -d1 "iup-dynamic.scm" -j iup-dynamic)
(compile -c -O2 -d1 "iup-dynamic.scm" -j iup-dynamic -unit iup-dynamic)
(compile -s -O2 -d0 "iup-dynamic.import.scm")

(install-extension
 'iup-dynamic
 '("iup-dynamic.so" "iup-dynamic.o" "iup-dynamic.import.so")
 '((version 1.7.0)
   (static "iup-dynamic.o")))
Changes to racket/info.rkt.
1
2
3
4
5
6
7
8
9
10
11
12
13

14
15
16
17
18
19
20
#lang setup/infotab
(define name
  "IUP")
(define blurb
  '("Bindings to the IUP GUI library"))
(define categories
  '(ui))
(define repositories
  '("4.x"))
(define version
  "1.6.0")
(define release-notes
  '((dl

     (dt "1.6.0") (dd "Configuration file support")
     (dt "1.5.0") (dd "Windows OLE control")
     (dt "1.4.0") (dd "Various dialogs, controls and extensions")
     (dt "1.3.0") (dd "Additional complex controls")
     (dt "1.2.0") (dd "Additional default dialogs")
     (dt "1.0.1") (dd "Windows linkage tweaks")
     (dt "1.0.0") (dd "Initial release"))))










|


>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#lang setup/infotab
(define name
  "IUP")
(define blurb
  '("Bindings to the IUP GUI library"))
(define categories
  '(ui))
(define repositories
  '("4.x"))
(define version
  "1.7.0")
(define release-notes
  '((dl
     (dt "1.7.0") (dd "Gridbox support, callback registry fix")
     (dt "1.6.0") (dd "Configuration file support")
     (dt "1.5.0") (dd "Windows OLE control")
     (dt "1.4.0") (dd "Various dialogs, controls and extensions")
     (dt "1.3.0") (dd "Additional complex controls")
     (dt "1.2.0") (dd "Additional default dialogs")
     (dt "1.0.1") (dd "Windows linkage tweaks")
     (dt "1.0.0") (dd "Initial release"))))