home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 3 / AUCD3.iso / airport / apps / connector / Changes next >
Text File  |  1997-07-13  |  12KB  |  348 lines

  1. Changes 0.96b-0.97b
  2. -------------------
  3. - dragging a file directly from e.g. UUcoder to the connector send window/icon
  4.   didn't work. 
  5. - selecting from bottom to top didn't work.
  6. - checking for free space was buggy.(only on big harddiscs >=4GB)
  7. - my code to find out the max filename length of the filesystem didn't
  8.   work on all computers ... there is now a new truncate filename option
  9.   in the file transfer window.    
  10. - new script commands IF, IFN, GOTO, GOSUB, RETURN, SET, INC, DEC.
  11.   small example:
  12.   
  13.   loop:
  14.   SET counter 10
  15.   GOSUB do_this  
  16.   DEC counter
  17.   IF counter > 0 GOTO loop
  18.  
  19.   IFN WAIT "test",400 GOTO something_different
  20.   SEND "Ok."
  21.   GOTO the_end
  22.   something_different:
  23.   SEND "Not ok."
  24.  
  25.   the_end:
  26.  
  27.   END
  28.  
  29.   do_this:
  30.   SEND "blub"
  31.   RETURN
  32.  
  33.   The script commands are NOT case sensitive, but the variables and labels 
  34.   are case sensitive.
  35.   
  36.   -fixed a 'drive empty' error ... (many thanks to Eytan Abrahams for
  37.    helping me)
  38.    
  39.   -A new script file which logs on to Arcade, downloads mail, 
  40.    delets it off the BBS and then logs off.(from Eytan Abrahams) 
  41.   
  42. Changes 0.95b-0.96b
  43. -------------------
  44. - the dial window couldn't be closed when opened via menu.
  45. - new smartbutton bar.
  46. - Connector didn't work with the telnet block driver.
  47.   (actually DRIVER_EXAMINE didn't work, now I'm using DRIVER_CHECKRX)
  48. - the serial output buffer size was wrong while using something
  49.   different than the Internal/InternalPC driver.
  50.  
  51. Changes 0.94b-0.95b
  52. -------------------
  53. - new dial window.
  54. - faster CEPT emulation. (on arm2 computers up to 5 times faster)
  55. - fixed a new bug in the online time update.
  56.   (I used swi "wimptextop_string_width" but it doesn't exist in RiscOS 3.1)
  57.  
  58. Changes 0.93b-0.94b
  59. -------------------
  60. - three new script commands:
  61.  
  62.   KEY "F1","what ever"  , only F1-F12 supported yet.
  63.   OSCLI "what ever"
  64.   UPLOAD "filename"
  65.   
  66. - faster XYModem receive on slow computers.
  67. - XModem send didn't work.
  68. - online time update worked only with System and Homerton.Medium font.
  69. - included riscos filetype sending/receiving in YZModem.
  70. - different file transfer configuration.
  71. - WAIT "whatever" worked only while the modem was online.
  72. - added to the special menu:
  73.     - reset terminal status
  74.     - send break signal 
  75.     - fkeys window 
  76. - included a logfile
  77. - better main window handling in lowres screen modes.
  78. - german umlaute didn't work in the cept emulation.
  79. - configurable font size (8x16 and 8x18).
  80. - pressing adjust on the file transfer type icon opens the config window.
  81. - pressing adjust on the special icon opens the function keys window.
  82.  
  83. Changes 0.92b-0.93b
  84. -------------------
  85. - different window layout.
  86. - disc full checking didn't work, now I'm using XOS_FSControl 49
  87.   (well, my RiscOS 2 prm's are a bit old XOS_FSControl 33 is the last one :-( )
  88. - the rename option truncated the filename to 10 chars.  
  89.  
  90. Changes 0.91b-0.92b
  91. -------------------
  92. - changing between cept and vt100/ansi crashed the computer sometimes.
  93. - online time with seconds (not flicker free).
  94. - new fonts.
  95. - improved the emulation speed.
  96. - new spool window with frame option (pauses the playback before a 
  97.   clear screen ESC sequence is decoded)
  98. - included checking for disc full errors.
  99. - toolbar optinal on the left/bottom side of the main window. 
  100. - different cept window sizes.
  101. - new filetransfer options.
  102. - autologon in cept emulation didn't work.
  103.  
  104. Changes 0.90b-0.91b
  105. -------------------
  106. - new online time without seconds (desktop font).
  107. - removed some filetransfer bugs.
  108. - included a cursor into the cept emulation.
  109. - cursor on/off didn't work. (ANSI/VT100)
  110.   ESC[?25h = cursor on
  111.   ESC[?25l = cursor off
  112. - under some circumstances WAIT "what ever" didn't work.
  113. - new "Function keys emulation" option in the terminal configuration window.
  114.   (turns the function key emulation on/off)
  115.  
  116. Changes 0.89b-0.90b
  117. -------------------
  118. - removed the !default! file in <connector$dir>.Scripts
  119. - claiming/releasing the serial port worked only with the internal port.
  120. - improved the file transfer receiving speed on high baud rates (115200).
  121.   got only 9000 cps now its about 11000 cps.
  122. - pressing the menu mouse button on the telephone book icon (toolbar)
  123.   opens a dial menu.
  124.  
  125. Changes 0.88b-0.89b
  126. -------------------
  127. - removed some XYZModem bugs. (aborting should work now)
  128.   riscos filetype sending/receiving not included yet.
  129. - resizeable telephone book window.
  130. - with some modems the autologon script aborted too early.
  131. - moved the modem status from the iconbar to the main window.
  132. - iconbar shows optionally the modem lines,serial portnumber and serial rx/tx.
  133. - configureable tx window size.
  134. - download directory (edit window) didn't work.
  135.  
  136. Changes 0.87b-0.88b
  137. -------------------
  138. - included the linux XYZModem code, don't expect too much.
  139. - removed the kermit code.
  140. - forgot to copy the new !Sprites file.
  141.  
  142. Changes 0.86b-0.87b
  143. -------------------
  144. - better text export.
  145. - pressing adjust on the icon bar icon releases the serial port,
  146.   pressing it again claims the serial port.Connector also releases
  147.   the serial port when another application tries to claim the serial port.
  148. - pressing select opens the main window centered on screen.
  149.   When the window is already open it will just move in front, with doppel click
  150.   it moves in the center of the screen.
  151.  
  152. Changes 0.85b-0.86b
  153. -------------------
  154. - new optional auto logon.
  155. - WAIT "xyz" didn't work always, I hope it does now.
  156. - dragging a file on the file transfer icon (on the tool bar)
  157.   starts the file transfer.
  158. - better ascii sending.
  159. - in lowres screen modes the main window was 2 pixel to small
  160.   (only after dialling).
  161. - some template changes.
  162. - the zmodem sending should work better now, if not I will use
  163.   a completely other code (found some linux source code).
  164. - and again removed a wrap bug in ansi and vt100.
  165. - new block drivers (Rev 12).
  166.  
  167. Changes 0.84b-0.85b
  168. -------------------
  169. - removed a other wrap bug in ansi and vt100.
  170. - there is still a bug in the zmodem sending code :-(
  171.  
  172. Changes 0.83b-0.84b
  173. -------------------
  174. - included memory data transfer (drag/drop).
  175. - included ZModem crash recovery.
  176. - the filetransfer window didn't update (very often) when transfering
  177.   large files ( >1MB ).
  178. - included CEPT emulation (SpoolBTX is a demo file).
  179. - included the mousebuffer again.
  180. - removed a wrap bug in ansi emulation.
  181. - removed (text import converts now &0a in &0d&0a), but I will
  182.   make this optional in the next release.
  183. (I got my bebox some weeks ago so there wasn't much time
  184.  left for the acorn :-) )
  185.  
  186. Changes 0.82b-0.83b
  187. -------------------
  188. - removed some filetransfer bugs.
  189. - pressing select on the logon status line opens a menu to cancel the logon.
  190. - text import converts now &0a in &0d&0a.
  191. - dragging on selected text areas exports it.
  192. - triple click selects a line.
  193.  
  194. Changes 0.81b-0.82b
  195. -------------------
  196. - better memory handling using flexlib.
  197. - slightly improved text redraw speed.(about 25% faster)
  198. - multiple telephone numbers.
  199. - double click in the main window selects a word.
  200. - completely new XYZModem and Kermit code.
  201.  
  202. Changes 0.80b-0.81b
  203. -------------------
  204. - better lowres sprites, many thanks to Darren Salt.
  205. - filetype setting didn't work if the extension was smaller than 3 chars.
  206. - VT100 colours changed only after restarting !Connector.
  207. - If there was a non script file in the scripts directory the
  208.   computer hanged while starting !Connector.
  209.  
  210. Changes 0.79b-0.80b
  211. -------------------
  212. - removed the Win95 style windows.
  213. - included new script file format.
  214. - status line for logon.
  215. - multiple donwload directories.
  216. - included left,right,up,down scrolling in Ansi emulation.
  217. - overwrite option for zmodem filetransfer.
  218.  
  219. Changes 0.78b-0.79b
  220. -------------------
  221. - switchable 24/25 line mode(ANSI).
  222. - Main-Window-Title shows Mailbox name, if online.
  223. - removed some attribute bugs in Ansi and VT102.
  224. - included blinking text attribute.
  225. - new spool file with some blinking text(ANSI).
  226. - send  riscos-filetypes can be turned off.
  227. - file upload didn't work on my a5000 but on my RiscPC everything
  228.   was ok.I recompiled all and it worked ?
  229.  
  230. Changes 0.77b-0.78b
  231. -------------------
  232. - text only spoolfiles converts now some ansi-font-codes to riscos-codes.
  233. - pressing adjust on the play button in the spool-window steps
  234.   only one char further on.
  235. - pause button in spool-window.
  236. - zmodem sends/receives riscos-filetypes.
  237. - fixed a TAB bug in VT102.
  238. - data/text-spoolfile-status can be saved with terminal status.
  239. - a more compact Configure Window.
  240. - removed isofont option.
  241. - pressing adjust on the close icon loses the input focus of the main
  242.   window.(pressing F12 works only if the main window has no input focus)
  243.  
  244. Changes 0.76b-0.77b
  245. -------------------
  246. - included normal/application Cursorkey Mode(VT100).
  247. - removed a small redial bug.
  248. - included 24/25 line mode(ANSI).
  249. - Ascii filetransfer.
  250.  
  251. Changes 0.75b-0.76b
  252. -------------------
  253. - better multitasking while fast scrolling.
  254. - fixed some zmodem bugs.
  255. - german keyboard option didn't work in ansi emulation.
  256.  
  257. Changes 0.74b-0.75b
  258. -------------------
  259. - text only spoolfiles.
  260. - fixed text update bug when scrolling up and down.
  261. - Chat Mode.
  262. - fixed hangup bug.
  263. - hopefully a better text import.
  264. - cycle dial.
  265.  
  266. Changes 0.73b-0.74b
  267. -------------------
  268. - Filetype Conversion.
  269. - new optional hangup (droping DTR line).
  270. - wrong cps rate when skipping file.
  271. - better serial port number selection.
  272. - isofont for vt100.
  273. - 'prompt' strings longer than 20 chars work now (in the script file).
  274. - 'reply' string with control chars ( ESC, RETURN ... ).
  275. - script files will be closed after hangup, offline or quit.
  276. - included cursor originmode in VT100 emulation.
  277. - updated the Helpfile a bit.
  278.  
  279. Changes 0.72b-0.73b
  280. -------------------
  281. - no 'online time' flicker.
  282. - new configure and edit window.
  283.   (if you don't like them I will use the old ones again ;-) )
  284.  
  285. Changes 0.71b-0.72b
  286. -------------------
  287. -  file recovery didn't work.
  288. - another small receive ZModem file recovery bug.
  289. - filetransfers works now with longfilenames.
  290.   this was (is) a really strange bug.
  291.   After "File_Exists(name);" the "File_Open(name, file_WRITE);" crashed.
  292.   the computer.(only with !LongFiles and filenames with about >20 Chars).
  293.   I put this between.
  294.   file=File_Open("<connector$dir>.!Runimage",file_READ);
  295.   File_Close(file);
  296.   (open an existing file and closing it again)
  297.   and it worked.
  298.  
  299.  
  300. Changes 0.70b-0.71b
  301. -------------------
  302. - removed a VT100 bug ( tried to plot ascii 0 )
  303. - dragging a spool file opens the spool window not centered if already open
  304. - removed ZModem file recovery bug
  305.  
  306. Changes 0.69b-0.70b
  307. -------------------
  308. - removed a set-cursor-position bug (VT100)
  309. - some telephonebook bugs
  310. - pressing return in the dial-window will dial now :-)
  311. - After closing the dial-window it gives the input focus back.
  312.  
  313. Changes 0.68b-0.69b
  314. -------------------
  315. - removed Send zmodem bug, what a nice bug just a wrong Iconnumber. :-(
  316. - cleared a line after scrolldown with wrong background color (VT100)
  317.  
  318. Changes 0.67b-0.68b
  319. -------------------
  320. - removed dial bug
  321. - changed demo script file
  322. - removed some vt100 emulation bugs
  323.  
  324. Changes 0.66b-0.67b
  325. -------------------
  326. - pressing adjust on the connector icon opens the Main Window 'where ever'
  327. - Auto Logon Scripts
  328. - Redial with timedelay
  329. - new Filetransfer Window
  330. - dragging of Telephonebook records
  331.  
  332. Changes 0.65b-0.66b
  333. -------------------
  334. - new Font with control chars (0-31)
  335. - removed invert bug in ansi emulation
  336.  
  337. Changes 0.60b-0.65b
  338. -------------------
  339. - rewrote the whole thing using desklib
  340. - serial input and output buffer
  341. - resizeable text buffer
  342. - VT100 Colours
  343. - Spool Function
  344. - new autostart code for zmodem receive, hope it works now.
  345. - delete/insert char/line in Ansi Emulation
  346.  
  347.  
  348.