home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #3 / amigamamagazinepolishissue1998.iso / bazy / phonebase / phonebase.history < prev    next >
Text File  |  1996-10-12  |  10KB  |  228 lines

  1.  
  2.       PhoneBase programing diary (C) Anthony Brice 1996
  3.       -------------------------------------------------
  4.  
  5. PhoneBase is a quick and simple gui name and address database written to
  6. learn the use of newtype routines and using them within Blitz. A freebie
  7. program for anyone who finds a use for it as it's not intended to be a
  8. really powerfull application, and these kind of programs are ten a penny.
  9.  
  10. Wednesday 21st February
  11. -----------------------
  12. Needed to learn the newtype functions within Blitz and considering the
  13. examples to use these routines documented in the manual are example snips
  14. from simple database programs, I thought it would be a good idea to knock
  15. up a fully functioning one myself to work with.
  16.  
  17. Gadtools is the order of the day and I took a little time over the gui to
  18. put in buttons which I thought I would be needing within the program once
  19. it is finished as I'm not planning the program before writing it. Name,
  20. Address and Phone number details are all it really needs to store so three
  21. string gadgets, and buttons for Next, Previous, About, Save, Add and Delete
  22. are put in. Also added a Search button just before converting the gui into
  23. source code so I can put a search record routine into the program later
  24. on as that's always handy.
  25.  
  26. End of V0.1
  27.  
  28. One gui up and running, and the simple bits like about requestor, displaying
  29. the data and moving backwards and forwards through records already works. No
  30. save routines so I have to keep putting data in to check these functions so
  31. that's next priority. Really could have used a bit more thought on the gui
  32. at first as it needs descriptions for what text each string gadget needs, as
  33. well as a visual indicator of number of records in memory, and what record
  34. you are currently viewing. That'll teach me to not think hard first :)
  35.  
  36. One text gadget added to display current record and total records. Had to
  37. shorten the phone number string a bit but it's not really a major problem.
  38.  
  39. End of V0.2
  40.  
  41. Thursday 22nd February
  42. ----------------------
  43.  
  44. As I'm planning to show this thing to Phineas later on today, it really needs
  45. to have a few more of the functions working before I do some of the minor
  46. fine-tuning bits I wanted to get out of the way. Built up a simple file
  47. structure to use as a save and load routine and realised that I only had a
  48. save gadget and not one for save and load. I could have made it load the
  49. file as soon as it's run, but that's a bit restrictive really. Settled for
  50. just changing the Save gadget to I/O and making it pop up a requestor asking
  51. if it should save or load the data. That'll do for now, but I think I'll just
  52. shorten the I/O gadget, as it's big at the moment, and add another one so the
  53. program can have two seperate buttons. I won't need to make the window bigger
  54. that way, and have to move all the other gadgets around accordingly.
  55.  
  56. Save and load routines now, after a bit of a problem with key reading strings
  57. for some reason, work.
  58.  
  59. The Delete button now deletes the currently displayed record and sorts the
  60. other ones out accordingly. Works nicely considering I just threw in the
  61. code and didn't need to do any debugging :)
  62.  
  63. End of V0.3
  64.  
  65. Later
  66. -----
  67.  
  68. While round the Relics house, I added the bits to auto activate the gadgets
  69. when Add was selected so you didn't need to play with the mouse. Might well
  70. be an idea to put all the gadgets as hotkeys a little later on. I've got
  71. code to do that already care of the clever partner.
  72.  
  73. Friday 23rd February
  74. --------------------
  75.  
  76. With no option to jump to a particular record it's a bit fiddly. I wanted
  77. to set it up so clicking on the text gadget for the current record would
  78. prompt for a number, but there doesn't appear to be a way to get a return
  79. code from that, so I've settled for making it shorter (it was lengthy anyway
  80. as I was using it for throwing debugging text onto until now) and putting
  81. another gadget next to it saying Jump.
  82.  
  83. Jump button in and working. At the moment it just toggles between first
  84. and last record. That'll do until I get time to search the libraries for
  85. a number requestor routine so the user can select a record. Could really use
  86. a text string in there now for displaying messages such as errors. Think
  87. I'll extend the window a few lines at the bottom to put one in, and add it
  88. to the display routine.
  89.  
  90. Made the default display show what info goes in each string when it first
  91. runs. Temporary fix as there's no other way of knowing as yet. Pity I'm not
  92. going for a full application here. I could have made that configurable :)
  93. Maybe when I have more time. I've got a game to co-write next.
  94.  
  95. End of V0.4
  96.  
  97. Saturday 24th February
  98. ----------------------
  99.  
  100. Converted the I/O gadget to Load gadget and added a Save gadget by making
  101. the load one smaller, and adjusted the gadgets list accordingly.
  102.  
  103. Tidied up the gadgets a bit so they were laid out nicely with the new ones.
  104. Also fixed up the save and load gadgets so they actually did save and load :)
  105.  
  106. End of V0.5
  107.  
  108. Sunday 25th February
  109. --------------------
  110.  
  111. Rewrote the Jump button routine to prompt for a record number to jump to.
  112.  
  113. Moved the Jump gadget next to the Name field, and added a first and last
  114. gadget next to the current record display. Much easier to navigate now.
  115.  
  116. Fixed PhoneBase to work with topaz font as a default. I had it set to pearl
  117. which peeps may not have :)
  118.  
  119. Added in backup file to the save routine. Now the program will rename the
  120. old file to PhoneBase.dat.bak before writing the new one. It only keeps
  121. one back up obviously, but that's more than most programs, and it could save
  122. a huge fuck up if the user saves a file without loading the old one first.
  123. Trying to decide if it should open the file automatically if it exists on
  124. startup. Yeah, it's a good idea. Done.
  125.  
  126. On the cards for tommorow. Shorten the prev and next gadgets so I can add
  127. an alpha button which will be used later to put in an alphabetical sort
  128. routine based on the Name field.
  129.  
  130. Wrote the docfile. Short and sweet. It does the job :) Just do a sort and
  131. search routine, and work out how to let the user configure how many records
  132. they wish to use, and that'll be it.
  133.  
  134. End of V0.6
  135.  
  136. Thursday 29th February
  137. ----------------------
  138.  
  139. Added in the new Sort gadget, changed constants and gadget positions so that
  140. the gui looks nice, and added in a temp requestor prompt for the new gadget
  141. so it reports that it isn't functioning yet.
  142.  
  143. End of V0.7
  144.  
  145. Friday 1st March
  146. ----------------
  147.  
  148. Added in the routine for finding records. At the moment it will just search
  149. the name field of every entry until it gets a match of however many characters
  150. you use. I'll expand it to check other fields maybe later on.
  151.  
  152. Thinking about maybe using one of those groovy progress requestors for routines
  153. which scan the records such as sort/find and the save/load routines. Might look
  154. nice. Perhaps I should just leave that until I have the time :-)
  155.  
  156. Adjusted the documentation a touch to reflect how the program looks now. I
  157. wrote it a few days back and even though it's coming along exactly how I wrote
  158. it down to work, I'd changed some stuff to make it work better since the doc
  159. was written.
  160.  
  161. Just the Sort routine to go I believe now.
  162.  
  163. End of V0.8
  164.  
  165. Tuesday 5th March
  166. -----------------
  167.  
  168. Changed the load and save routines so that it will only attempt to load files
  169. which have an identifier string in the saved data. Otherwise you could load
  170. anything, which is potentially very dangerous.
  171.  
  172. End of V0.9
  173.  
  174. Wednesday 6th March
  175. -------------------
  176.  
  177. Changed every requestor in the program to reqtools instead. MUCH Nicer! :)
  178.  
  179. Still seem to have a clash where once this program has run once any other
  180. blitz program won't show its gui unless it's constantly running afterwards.
  181. Dunno what that problem is as yet :(
  182.  
  183. Thursday 9th May
  184. ----------------
  185.  
  186. Blame MCP crashes with Blitz and many MUI problems with my dodgy ram board for
  187. delays in finishing this program off. Those problems are now sorted, and so
  188. hopefully I'll be able to finish this thing off today.
  189.  
  190. Done some minor cosmetic work and hopefully fixed the gadtools conflicts which
  191. messed up programs running after PhoneBase has run.
  192.  
  193. Started work on the Sort function. It works fine using the first letter of
  194. the strings and A-Z are in the correct order. What I'm trying to do is subsort
  195. the thing so it will sort via the second,third etc letters in the string so
  196. that Aaron would come before Anthony etc. No luck as yet, but I feel I'm 
  197. pretty close :-)
  198.  
  199. End of V0.10 - released on BlitzUserMagazine issue 9.
  200.  
  201. Saturday 20th July
  202. ------------------
  203.  
  204. Hmmm, been a while since the last entry. Not slackness on my part for once,
  205. however :-) Phonebase up to the last revision finally made it onto Blitz User
  206. Magazine issue 9. A good start. Haven't had opportunity to work with the beast
  207. since then due to other major projects, but the closure of my bbs has left me
  208. with more time for programming, so hopefully things will improve now.
  209.  
  210. Did some work on the exit program routine after tidying up several of my other
  211. source code files, to see if I could fix up the gui problems with some other
  212. programs running after phonebase has been quit. Not much luck, but I'm not done
  213. yet :-)
  214.  
  215. End of V0.12
  216.  
  217. Sunday 13th October
  218. -------------------
  219.  
  220. Finally found the dreaded intuition bug that stopped me releasing PhoneBase
  221. properly. Turned out I'd locked the flippin' workbench screen before trying
  222. to use a font on it. Major o/s havok ensued with most gadtools stuff no longer
  223. working until a reboot. Five minute fix to a bug which has hounded me for
  224. months. One happy bunny :-) PhoneBase now works just fine and is stable as a 
  225. rock. Could use a better sort routine still, however.
  226.  
  227. End of V1.0 - release version.
  228.