mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 07:21:02 +00:00
Version 0.10.2
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@22201 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f002c33bd7
commit
5aad1a81d3
8 changed files with 29 additions and 39 deletions
19
ANNOUNCE
19
ANNOUNCE
|
@ -1,7 +1,7 @@
|
|||
ANNOUNCE
|
||||
********
|
||||
|
||||
This is version 0.10.1 of the GNUstep GUI Backend (`gnustep-back').
|
||||
This is version 0.10.2 of the GNUstep GUI Backend (`gnustep-back').
|
||||
|
||||
What is the GNUstep GUI Backend?
|
||||
================================
|
||||
|
@ -20,26 +20,15 @@ easily ported to other display systems.
|
|||
Window's Systems. It works via a DPS emulation engine to emulate the
|
||||
DPS functions required by the front-end system.
|
||||
|
||||
Noteworthy changes in version `0.10.1'
|
||||
Noteworthy changes in version `0.10.2'
|
||||
======================================
|
||||
|
||||
The art graphics module is the default now. As was previously the case,
|
||||
if the proper libraries are not found, the configuration will
|
||||
automatically switch to xlib on winlib (whichever is appropriate).
|
||||
|
||||
There was a great deal of work by Tom MacSween on the windows module
|
||||
to get windows and taskbars working together, closing, opening, hiding,
|
||||
and just general good window management.
|
||||
|
||||
The Cairo module has been significantly updated and now works with
|
||||
Cariro version 1.0, although you need to make some minor changes to the
|
||||
Cairo library before it will work with GNUstep. Due to this, this module
|
||||
is still considered beta. Ask on the mailing lists for help with this.
|
||||
The Backend can set UTF8 window titles where this is allowed.
|
||||
|
||||
Where can you get it? How can you compile it?
|
||||
==============================================
|
||||
|
||||
The gstep-back-0.10.1.tar.gz distribution file has been placed at
|
||||
The gstep-back-0.10.2.tar.gz distribution file has been placed at
|
||||
<ftp://ftp.gnustep.org/pub/gnustep/core>.
|
||||
|
||||
Where do I send bug reports?
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
2005-12-22 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Version 0.10.2
|
||||
|
||||
* Source/art/ARTContext (-beep): Removed, unused.
|
||||
* Source/xdps/NSDPSContext.m (-beep): Idem.
|
||||
|
||||
2005-12-20 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Source/art/ARTContext.m ([ARTContext -beep]): Respect user setting
|
||||
|
|
|
@ -7,6 +7,14 @@
|
|||
@include version.texi
|
||||
@end ifset
|
||||
|
||||
@section Noteworthy changes in version @samp{0.10.2}
|
||||
|
||||
The Backend can set UTF8 window titles where this is allowed.
|
||||
|
||||
@c ====================================================================
|
||||
@c Keep the next line just below the list of changes in most recent version.
|
||||
@ifclear ANNOUNCE-ONLY
|
||||
|
||||
@section Noteworthy changes in version @samp{0.10.1}
|
||||
|
||||
The art graphics module is the default now. As was previously the
|
||||
|
@ -22,10 +30,6 @@ Cariro version 1.0, although you need to make some minor changes to the
|
|||
Cairo library before it will work with GNUstep. Due to this, this module
|
||||
is still considered beta. Ask on the mailing lists for help with this.
|
||||
|
||||
@c ====================================================================
|
||||
@c Keep the next line just below the list of changes in most recent version.
|
||||
@ifclear ANNOUNCE-ONLY
|
||||
|
||||
@section Noteworthy changes in version @samp{0.10.0}
|
||||
|
||||
The installed name of the backend now includes an interface version number.
|
||||
|
|
9
NEWS
9
NEWS
|
@ -1,6 +1,11 @@
|
|||
NEWS
|
||||
****
|
||||
|
||||
Noteworthy changes in version `0.10.2'
|
||||
======================================
|
||||
|
||||
The Backend can set UTF8 window titles where this is allowed.
|
||||
|
||||
Noteworthy changes in version `0.10.1'
|
||||
======================================
|
||||
|
||||
|
@ -8,8 +13,8 @@ The art graphics module is the default now. As was previously the case,
|
|||
if the proper libraries are not found, the configuration will
|
||||
automatically switch to xlib on winlib (whichever is appropriate).
|
||||
|
||||
There was a great deal of work by Tom MacSween on the windows module to
|
||||
get windows and taskbars working together, closing, opening, hiding,
|
||||
There was a great deal of work by Tom MacSween on the windows module
|
||||
to get windows and taskbars working together, closing, opening, hiding,
|
||||
and just general good window management.
|
||||
|
||||
The Cairo module has been significantly updated and now works with
|
||||
|
|
2
README
2
README
|
@ -1,7 +1,7 @@
|
|||
README
|
||||
******
|
||||
|
||||
This is version 0.10.1 of the GNUstep GUI Backend (`gnustep-back').
|
||||
This is version 0.10.2 of the GNUstep GUI Backend (`gnustep-back').
|
||||
|
||||
Here is some introductory info to get you started:
|
||||
|
||||
|
|
|
@ -870,14 +870,6 @@ static int byte_order(void)
|
|||
return nil;
|
||||
}
|
||||
|
||||
- (void) beep
|
||||
{
|
||||
NSLog(@"ARTContext -beep: why here?");
|
||||
#ifndef RDS
|
||||
XBell([(XGServer *)server xDisplay], 0);
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Private backend methods */
|
||||
+(void) handleExposeRect: (NSRect)rect forDriver: (void *)driver
|
||||
{
|
||||
|
|
|
@ -747,11 +747,4 @@ GNUstepErrorProc (DPSContext ctxt, DPSErrorCode errCode,
|
|||
return nil;
|
||||
}
|
||||
|
||||
|
||||
|
||||
- (void) NSBeep
|
||||
{
|
||||
XBell([(XGServer *)server xDisplay], 0);
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
4
Version
4
Version
|
@ -4,9 +4,9 @@
|
|||
# The version number of this release.
|
||||
GNUSTEP_BACK_MAJOR_VERSION=0
|
||||
GNUSTEP_BACK_MINOR_VERSION=10
|
||||
GNUSTEP_BACK_SUBMINOR_VERSION=1
|
||||
GNUSTEP_BACK_SUBMINOR_VERSION=2
|
||||
# This numeric value should match above
|
||||
VERSION_NUMBER=010.1
|
||||
VERSION_NUMBER=010.2
|
||||
# This numeric value should match the compatible gui interface version
|
||||
INTERFACE_VERSION_NUMBER=010
|
||||
|
||||
|
|
Loading…
Reference in a new issue