Commit ccc7c3b4 authored by Ben Avison's avatar Ben Avison
Browse files

Merged in changes from Castle

Detail:
  iconise of window with longer name could cause disappearing window
  if window (file) name longer than 10 chars or so the icon 'vanishes' when
  iconised. s.messages line 989 kad a LSR of a negative(possibly) number. This
  left a top bit set value in the bounding box.. oversize!
  changing to ASR kept the maths at this point valid
Admin:
  Not tested

Version 0.88. Tagged as 'Pinboard-0_88'
parent 3cf2ce76
;
; This file is automatically maintained by srccommit, do not edit manually.
; Last processed by srccommit version: 1.2.
; Last processed by srccommit version: 1.1.
;
GBLS Module_MajorVersion
GBLA Module_Version
......@@ -11,13 +11,13 @@
GBLS Module_HelpVersion
GBLS Module_ComponentName
GBLS Module_ComponentPath
Module_MajorVersion SETS "0.87"
Module_Version SETA 87
Module_MajorVersion SETS "0.88"
Module_Version SETA 88
Module_MinorVersion SETS ""
Module_Date SETS "05 Nov 2007"
Module_ApplicationDate SETS "05-Nov-07"
Module_Date SETS "04 Oct 2008"
Module_ApplicationDate SETS "04-Oct-08"
Module_ComponentName SETS "Pinboard"
Module_ComponentPath SETS "castle/RiscOS/Sources/Desktop/Pinboard"
Module_FullVersion SETS "0.87"
Module_HelpVersion SETS "0.87 (05 Nov 2007)"
Module_FullVersion SETS "0.88"
Module_HelpVersion SETS "0.88 (04 Oct 2008)"
END
/* (0.87)
/* (0.88)
*
* This file is automatically maintained by srccommit, do not edit manually.
* Last processed by srccommit version: 1.2.
* Last processed by srccommit version: 1.1.
*
*/
#define Module_MajorVersion_CMHG 0.87
#define Module_MajorVersion_CMHG 0.88
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG 05 Nov 2007
#define Module_Date_CMHG 04 Oct 2008
#define Module_MajorVersion "0.87"
#define Module_Version 87
#define Module_MajorVersion "0.88"
#define Module_Version 88
#define Module_MinorVersion ""
#define Module_Date "05 Nov 2007"
#define Module_Date "04 Oct 2008"
#define Module_ApplicationDate "05-Nov-07"
#define Module_ApplicationDate "04-Oct-08"
#define Module_ComponentName "Pinboard"
#define Module_ComponentPath "castle/RiscOS/Sources/Desktop/Pinboard"
#define Module_FullVersion "0.87"
#define Module_HelpVersion "0.87 (05 Nov 2007)"
#define Module_LibraryVersionInfo "0:87"
#define Module_FullVersion "0.88"
#define Module_HelpVersion "0.88 (04 Oct 2008)"
#define Module_LibraryVersionInfo "0:88"
......@@ -1006,7 +1006,7 @@ got_task_name
MOV r4, r9
MOV r0, #grid_x_spacing
SUBS r1, r0, r5
ADDS r3, r3, r1, LSR #1
ADDS r3, r3, r1, ASR #1
Pull "r0-r1"
B %FT04
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment