You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(39) |
Dec
(23) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(4) |
Feb
(8) |
Mar
|
Apr
|
May
|
Jun
(25) |
Jul
(2) |
Aug
(3) |
Sep
(9) |
Oct
|
Nov
(2) |
Dec
(21) |
2004 |
Jan
(57) |
Feb
|
Mar
|
Apr
|
May
(49) |
Jun
|
Jul
(8) |
Aug
(5) |
Sep
(2) |
Oct
(2) |
Nov
(2) |
Dec
|
2005 |
Jan
(2) |
Feb
|
Mar
(12) |
Apr
|
May
(5) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(17) |
2006 |
Jan
(5) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(4) |
Aug
(5) |
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
(3) |
Feb
|
Mar
|
Apr
(18) |
May
(13) |
Jun
(17) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(4) |
Dec
|
From: <th...@us...> - 2002-11-20 19:09:15
|
Update of /cvsroot/ro-oslib/OSLib/!OsLib/Source/User/oslib In directory sc8-pr-cvs1:/tmp/cvs-serv312/Source/User/oslib Modified Files: Wimp.swi Log Message: Add Never3D/Always3D flags for windows. Index: Wimp.swi =================================================================== RCS file: /cvsroot/ro-oslib/OSLib/!OsLib/Source/User/oslib/Wimp.swi,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Wimp.swi 20 Nov 2002 19:07:50 -0000 1.7 --- Wimp.swi 20 Nov 2002 19:09:11 -0000 1.8 *************** *** 201,205 **** "RISC O S 4+", Wimp_WindowUseExtendedScrollRequest = Wimp_ExtraWindowFlags: 0b10 ! "RISC O S 4.32+"; //Icon flags bits --- 201,209 ---- "RISC O S 4+", Wimp_WindowUseExtendedScrollRequest = Wimp_ExtraWindowFlags: 0b10 ! "RISC O S 4.32+", ! Wimp_WindowNever3D = Wimp_ExtraWindowFlags: 0b100 ! "RISC O S 4+", ! Wimp_WindowAlways3D = Wimp_ExtraWindowFlags: 0b1000 ! "RISC O S 4+"; //Icon flags bits |
From: <th...@us...> - 2002-11-20 19:07:55
|
Update of /cvsroot/ro-oslib/OSLib/!OsLib/Source/Core/oslib In directory sc8-pr-cvs1:/tmp/cvs-serv32269/Source/Core/oslib Modified Files: OS.swi Log Message: Added interface to wheel mouse support in RISC OS Select. Index: OS.swi =================================================================== RCS file: /cvsroot/ro-oslib/OSLib/!OsLib/Source/Core/oslib/OS.swi,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** OS.swi 12 Mar 2002 18:26:58 -0000 1.5 --- OS.swi 20 Nov 2002 19:07:50 -0000 1.6 *************** *** 1808,1827 **** SWI OS_Pointer = //RO3.5 ! (NUMBER 0x64 "Gets or sets the currently selected pointer device ! type - see individual reason codes", ABSENT), ! OSPointer_Get = (NUMBER 0x64, ENTRY (R0 # 0 "Gets the currently selected ! pointer device type - RISC O S 3.5+"), EXIT (R0! = ! OS_PointerType: pointer_type)), ! OSPointer_Set = (NUMBER 0x64, ENTRY (R0 # 1 "Sets the currently selected ! pointer device type - RISC O S 3.5+", R1 = OS_PointerType: ! pointer_type), EXIT (R0?)); TYPE ! PointerV_Record = .Struct (.Ref PointerV_Record: next, .Bits: flags, ! OS_PointerType: pointer_type, [30] .Char: name); ! SWI PointerV = (NUMBER 0x34, ENTRY (R9 # &26 "Used to communicate between the ! kernel and a pointer device driver - ! see individual reason codes"), ABSENT), PointerV_Status = --- 1808,1866 ---- SWI OS_Pointer = //RO3.5 ! ( NUMBER 0x64 "Gets or sets the currently selected pointer device ! type - see individual reason codes", ! ABSENT ! ), ! ! OSPointer_Get = ! ( NUMBER 0x64, ! ENTRY ! ( R0 # 0 "Gets the currently selected pointer device ! type - RISC O S 3.5+" ! ), ! EXIT ! ( R0! = OS_PointerType: pointer_type ! ) ), ! ! OSPointer_Set = ! ( NUMBER 0x64, ! ENTRY ! ( R0 # 1 "Sets the currently selected pointer device ! type - RISC O S 3.5+", ! R1 = OS_PointerType: pointer_type ! ), ! EXIT ! ( R0? ! ) ), ! ! OSPointer_ReadAlternatePosition = ! ( NUMBER0x64, ! ENTRY ! ( R0 # 2 "Reads the position of the alternate pointing ! device - RISC O S 4.32+" ! ), ! EXIT ! ( R0 = .Int: xposition, ! R1 = .Int: yposition ! ) ); TYPE ! PointerV_Record = ! .Struct ! ( .Ref PointerV_Record: next, ! .Bits: flags, ! OS_PointerType: pointer_type, ! [30] .Char: name ! ); ! SWI ! PointerV = ! ( NUMBER 0x34, ! ENTRY ! ( R9 # &26 "Used to communicate between the kernel and a pointer ! device driver - see individual reason codes" ! ), ! ABSENT ! ), PointerV_Status = *************** *** 1854,1857 **** --- 1893,1911 ---- R1 = OS_PointerType: pointer_type, R9 # &26 + ) ), + + PointerV_ExtendedStatus = + ( NUMBER 0x34, + ENTRY + ( R0 # 4 "Requests extended status of pointer device - RISC O S 4.32+", + R1 = OS_PointerType: pointer_type, + R9 # &26 + ), + EXIT + ( R2 = .Int: xmove, + R3 = .Int: ymove, + R4 = .Int: xmove_alternate, + R5 = .Int: ymove_alternate, + R6 = .Bits: buttons ) ); *************** *** 3044,3047 **** --- 3098,3111 ---- R2 = .Int: key, R3 = .Int: keyboard_id + ) + ), + + Event_PointerScroll = + ( NUMBER &22, + ENTRY + ( R0 # 21, + R1 # 4 "Pointer scroll - RISC O S 4.32+", + R2 = .Int: xmove, + R3 = .int: ymove ) ); |
From: <th...@us...> - 2002-11-20 19:07:55
|
Update of /cvsroot/ro-oslib/OSLib/!OsLib/docs In directory sc8-pr-cvs1:/tmp/cvs-serv32269/docs Modified Files: ChangeLog Log Message: Added interface to wheel mouse support in RISC OS Select. Index: ChangeLog =================================================================== RCS file: /cvsroot/ro-oslib/OSLib/!OsLib/docs/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ChangeLog 20 Nov 2002 00:00:26 -0000 1.9 --- ChangeLog 20 Nov 2002 19:07:49 -0000 1.10 *************** *** 19,22 **** --- 19,23 ---- - SysLog module added. (Tom Hughes) - Added OSReadSysInfo_ROMInformation. (Tom Hughes) + - Added interfaces for wheel mouse support. (Tom Hughes) * Bug Fixes: |
From: <th...@us...> - 2002-11-20 19:07:55
|
Update of /cvsroot/ro-oslib/OSLib/!OsLib/Source/User/oslib In directory sc8-pr-cvs1:/tmp/cvs-serv32269/Source/User/oslib Modified Files: Wimp.swi Log Message: Added interface to wheel mouse support in RISC OS Select. Index: Wimp.swi =================================================================== RCS file: /cvsroot/ro-oslib/OSLib/!OsLib/Source/User/oslib/Wimp.swi,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Wimp.swi 22 Sep 2002 15:59:53 -0000 1.6 --- Wimp.swi 20 Nov 2002 19:07:50 -0000 1.7 *************** *** 199,203 **** // TV V6.21 Wimp_WindowUseTitleValidationString = Wimp_ExtraWindowFlags: 0b1 ! "RISC O S 4+"; //Icon flags bits --- 199,205 ---- // TV V6.21 Wimp_WindowUseTitleValidationString = Wimp_ExtraWindowFlags: 0b1 ! "RISC O S 4+", ! Wimp_WindowUseExtendedScrollRequest = Wimp_ExtraWindowFlags: 0b10 ! "RISC O S 4.32+"; //Icon flags bits *************** *** 457,460 **** --- 459,486 ---- Wimp_ColourTransparent = Wimp_Colour: -1; + TYPE Wimp_ScrollDirection = .Int; + CONST + Wimp_ScrollDoubleExtendedLeft = Wimp_ScrollDirection: -8 "RISC O S 4.32+", + Wimp_ScrollDoubleExtendedDown = Wimp_ScrollDirection: -8 "RISC O S 4.32+", + Wimp_ScrollSingleExtendedLeft = Wimp_ScrollDirection: -4 "RISC O S 4.32+", + Wimp_ScrollSingleExtendedDown = Wimp_ScrollDirection: -4 "RISC O S 4.32+", + Wimp_ScrollAutoLeft = Wimp_ScrollDirection: -3 "RISC O S 4+", + Wimp_ScrollAutoDown = Wimp_ScrollDirection: -3 "RISC O S 4+", + Wimp_ScrollPageLeft = Wimp_ScrollDirection: -2, + Wimp_ScrollPageDown = Wimp_ScrollDirection: -2, + Wimp_ScrollColumnLeft = Wimp_ScrollDirection: -1, + Wimp_ScrollLineDown = Wimp_ScrollDirection: -1, + Wimp_ScrollNone = Wimp_ScrollDirection: 0, + Wimp_ScrollLineUp = Wimp_ScrollDirection: 1, + Wimp_ScrollColumnRight = Wimp_ScrollDirection: 1, + Wimp_ScrollPageUp = Wimp_ScrollDirection: 2, + Wimp_ScrollPageRight = Wimp_ScrollDirection: 2, + Wimp_ScrollAutoUp = Wimp_ScrollDirection: 3 "RISC O S 4+", + Wimp_ScrollAutoRight = Wimp_ScrollDirection: 3 "RISC O S 4+", + Wimp_ScrollSingleExtendedUp = Wimp_ScrollDirection: 4 "RISC O S 4.32+", + Wimp_ScrollSingleExtendedRight = Wimp_ScrollDirection: 4 "RISC O S 4.32+", + Wimp_ScrollDoubleExtendedUp = Wimp_ScrollDirection: 8 "RISC O S 4.32+", + Wimp_ScrollDoubleExtendedRight = Wimp_ScrollDirection: 8 "RISC O S 4.32+"; + TYPE Wimp_IconData = .Union *************** *** 642,647 **** .Int: yscroll, Wimp_W: next, ! .Int: xmin, ! .Int: ymin ); --- 668,674 ---- .Int: yscroll, Wimp_W: next, ! Wimp_ScrollDirection: xmin, ! Wimp_ScrollDirection: ymin, ! Wimp_i: i "RISC O S 4.32+" ); |
From: <th...@us...> - 2002-11-20 00:00:29
|
Update of /cvsroot/ro-oslib/OSLib/!OsLib/Source/Core/oslib In directory sc8-pr-cvs1:/tmp/cvs-serv29702/Source/Core/oslib Modified Files: OSReadSysInfo.swi Log Message: Added OSReadSysInfo_ROMInformation now that RISC OS Ltd have detailed it publically on the Select mailing list. Index: OSReadSysInfo.swi =================================================================== RCS file: /cvsroot/ro-oslib/OSLib/!OsLib/Source/Core/oslib/OSReadSysInfo.swi,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** OSReadSysInfo.swi 9 Mar 2002 10:58:38 -0000 1.1 --- OSReadSysInfo.swi 20 Nov 2002 00:00:26 -0000 1.2 *************** *** 37,40 **** --- 37,55 ---- OSReadSysInfo_LCDControlType1 = OSReadSysInfo_Flags2: 1; + TYPE OSReadSysInfo_ROMInformationCode = .Int; + CONST + OSReadSysInfo_OSName = OSReadSysInfo_ROMInformationCode: 0 + "OS name in form <OS name> <version> <comments>", + OSReadSysInfo_PartNumber = OSReadSysInfo_ROMInformationCode: 1 + "Part number in form <part>[-<comments>]", + OSReadSysInfo_BuildTime = OSReadSysInfo_ROMInformationCode: 2 + "Build time, eg Tue,18 Jan 2000.10:36:40", + OSReadSysInfo_DealerName = OSReadSysInfo_ROMInformationCode: 3 + "Dealer name - this is the supplier of the ROMs", + OSReadSysInfo_UserName = OSReadSysInfo_ROMInformationCode: 4 + "User name - this is the name of the owner of the ROMs", + OSReadSysInfo_UserAddress = OSReadSysInfo_ROMInformationCode: 5 + "User address - this is the address of the owner of the ROMs"; + SWI OS_ReadSysInfo = (NUMBER 0x58 "Reads system information - see individual reason codes", ABSENT); *************** *** 126,129 **** R2 = .Ref .Data: abort_psr, R3! = .Ref .Data: fault_address ! ) ) --- 141,153 ---- R2 = .Ref .Data: abort_psr, R3! = .Ref .Data: fault_address ! ) ), + OSReadSysInfo_ROMInformation = + ( NUMBER 0x68, + ENTRY + ( R0 # 9 "Read information about the currently installed ROM - RISC O S 4+", + R1 = OSReadSysInfo_ROMInformationCode: code + ), + EXIT + ( R0! -> .String: information + ) ) |
From: <th...@us...> - 2002-11-20 00:00:29
|
Update of /cvsroot/ro-oslib/OSLib/!OsLib/docs In directory sc8-pr-cvs1:/tmp/cvs-serv29702/docs Modified Files: ChangeLog Log Message: Added OSReadSysInfo_ROMInformation now that RISC OS Ltd have detailed it publically on the Select mailing list. Index: ChangeLog =================================================================== RCS file: /cvsroot/ro-oslib/OSLib/!OsLib/docs/ChangeLog,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ChangeLog 28 Sep 2002 11:24:30 -0000 1.8 --- ChangeLog 20 Nov 2002 00:00:26 -0000 1.9 *************** *** 18,21 **** --- 18,22 ---- - Adds CompressJPEG_Comment and CompressJPEG_WriteLineExtended. (Tom Hughes) - SysLog module added. (Tom Hughes) + - Added OSReadSysInfo_ROMInformation. (Tom Hughes) * Bug Fixes: |
From: <to...@pr...> - 2002-11-18 11:30:56
|
Update of /cvsroot/ro-oslib/CVSROOT In directory sc8-pr-cvs1:/tmp/cvs-serv17541/CVSROOT Modified Files: commitinfo Log Message: fixed makefile name case Index: commitinfo =================================================================== RCS file: /cvsroot/ro-oslib/CVSROOT/commitinfo,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** commitinfo 17 Nov 2002 13:03:57 -0000 1.2 --- commitinfo 18 Nov 2002 11:30:52 -0000 1.3 *************** *** 15,17 **** # in addition to the first matching regex or "DEFAULT". ! .*/Makefile(,fe1)? $CVSROOT/CVSROOT/stripdependencies --- 15,17 ---- # in addition to the first matching regex or "DEFAULT". ! .*/[Mm]ake[Ff]ile(,fe1)? $CVSROOT/CVSROOT/stripdependencies |
From: <to...@pr...> - 2002-11-18 10:52:50
|
Update of /cvsroot/ro-oslib/OSLib/!OsLib/Tools/bison In directory sc8-pr-cvs1:/tmp/cvs-serv4243/bison Log Message: Directory /cvsroot/ro-oslib/OSLib/!OsLib/Tools/bison added to the repository |
From: <to...@us...> - 2002-11-17 13:04:00
|
Update of /cvsroot/ro-oslib/CVSROOT In directory usw-pr-cvs1:/tmp/cvs-serv26838/CVSROOT Modified Files: commitinfo Added Files: stripdependencies Log Message: Auto-strip dependency lines from makefiles before checkout --- NEW FILE: stripdependencies --- !#/bin/sh # # stripdependencies TV 20021117 # strips dynamic dependencies from MakeFiles before checkout shift for X in "$@" do awk '{print} /^\#\ [Dd]ynamic/ {exit 0;}' <$X >tmp$$ && mv -f tmp$$ $X done exit 0 Index: commitinfo =================================================================== RCS file: /cvsroot/ro-oslib/CVSROOT/commitinfo,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** commitinfo 15 Apr 2002 19:11:39 -0000 1.1 --- commitinfo 17 Nov 2002 13:03:57 -0000 1.2 *************** *** 14,15 **** --- 14,17 ---- # If the name "ALL" appears as a regular expression it is always used # in addition to the first matching regex or "DEFAULT". + + .*/Makefile(,fe1)? $CVSROOT/CVSROOT/stripdependencies |
From: <to...@us...> - 2002-11-17 12:57:51
|
Update of /cvsroot/ro-oslib/CVSROOT In directory usw-pr-cvs1:/tmp/cvs-serv24649/CVSROOT Modified Files: checkoutlist Log Message: Auto-strip dependency lines from makefiles before checkout Index: checkoutlist =================================================================== RCS file: /cvsroot/ro-oslib/CVSROOT/checkoutlist,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** checkoutlist 21 Sep 2002 14:12:57 -0000 1.2 --- checkoutlist 17 Nov 2002 12:57:48 -0000 1.3 *************** *** 12,15 **** # # comment lines begin with '#' ! syncmail --- 12,15 ---- # # comment lines begin with '#' ! stripdependencies stripdependencies couldn't be checked out syncmail |