home *** CD-ROM | disk | FTP | other *** search
/ Executor 2.0 / executorv2.0.iso / pc / linux / extra / docs / maillist / text / archive.92 / text0051.txt < prev    next >
Encoding:
Text File  |  1996-04-02  |  4.2 KB  |  86 lines

  1. Dear Folks,
  2.  
  3.     Executor-MSW V1.1 has been shipped to everyone (with the  
  4. exception of an overseas order of 20 which will be going out Monday)  
  5. that has previously purchased Executor-MSW V1.0.  [you may want to  
  6. check out Jiro Nakamura's review in comp.sys.next.announce].  The big  
  7. addition to V1.1 is printing.  However, in V1.1, bitmap fonts are  
  8. used on the screen and even though the Adobe fonts are used when  
  9. printing, the bitmap "metrics" are still being used so text that is  
  10. "right justified" doesn't line up correctly.  This will be fixed in  
  11. V1.2 which you will also get for free.
  12.  
  13.     The sad news is that Executor-MSW has been short-changing our  
  14. friends across the puddle because it has not properly handled  
  15. diacritical marks.  The good news is that we have fixed the problem.   
  16. The sad news is that the fix came after 1.1 was released.  The good  
  17. news is there's a new release, V1.1.1, which is what will be shipped  
  18. to anyone that purchases Executor-MSW from this point on.  If you  
  19. need diacritical support (nothing else has been changed), then we're  
  20. willing to send you a copy of V1.1.1 for free.  Please don't ask  
  21. unless you really need it.  The fix will be in V1.2 and you'll get  
  22. that automatically just like you got (or will get shortly) V1.1.
  23.  
  24.     We still haven't made much progress listing what runs and  
  25. doesn't run, since we've been working without sleep to get V1.1 and  
  26. more importantly V1.2 out the door.  V1.1 doesn't help other  
  27. applications run, however by the time V1.2 comes out I want the  
  28. commonly used file utilities to work correctly (notably stuffit and  
  29. compactorpro) as well as a couple of small programs that people have  
  30. been asking for:  "Quicken" and "MacInTax".
  31.  
  32.     I believe we can use unmvax.cs.unm.edu for ftp'able material.   
  33. I've sent a letter to the appropriate authorities to make clarify  
  34. that, but unless they say no, I'll put a few things out there for  
  35. general consumption:
  36.  
  37. setcreatortype.c        discussed below
  38.  
  39. Documentation/Executor-MSW    the current manuals for people who
  40.                 haven't yet purchased Executor-MSW
  41.                 to peruse
  42.  
  43. ReleaseNotes1.1.rtf        the 1.1 release notes for
  44.                 non-purchasers
  45.  
  46.     Work on Excel support is going well, a major breakthrough was  
  47. made this weekend and we hope to be shipping copies to beta-testers  
  48. within a couple of weeks.
  49.  
  50.     --Cliff
  51.  
  52. FOR POWER USERS/PROGRAMMERS ONLY:
  53.  
  54.     There has been some confusion about "Apple Double" format and  
  55. "resource forks".  The problem is that there are programs like  
  56. FloppyWorks and kermit that will cheerfully copy the "resource fork"  
  57. of a Macintosh file if you ask for it, but then when you prepend a  
  58. "%" to the fork and try to use it with Executor, you don't get  
  59. anywhere.  This is because the files that Executor (and HFS_XFer)  
  60. use/create that begin with "%" actually contain more than just the  
  61. resource fork.  They contain other information that's needed as well.   
  62. Still, there are some reasons why you may find yourself with a  
  63. resource fork and want to turn it into something that Executor can  
  64. use, so I wrote a quick hack of a program, called "setcreatortype"  
  65. that will allow you to do just that.  The file "type" and "creator"  
  66. are two important things that get thrown away when you use a program  
  67. like FloppyWorks to copy data between a Mac and a UNIX system.  An  
  68. example use of "setcreatortype" is:
  69.  
  70. % setcreatortype "PNC1" "APPL" < Norton_Util > %Norton_Util
  71.  
  72. That is the command that I used to check to make sure that  
  73. setcreatortype works (I don't have any need for it, because I use  
  74. HFS_XFer to push my stuff across).  The first argument, "PNC1", is  
  75. what's known in the Macintosh community as the file "creator"; it is  
  76. a special tag that identifies programs and data files written by  
  77. programs.  I found out the proper creator for Norton Utilities by  
  78. using the "ResEdit" program.  The second argument, "APPL", tells what  
  79. type of data is in the file that we're using.  "APPL" stands for  
  80. application.  Another common type is "TEXT".  If you know what all  
  81. these are then you may want to pick up the setcreatortype program  
  82. from unmvax.cs.unm.edu (I can mail it to you if you don't have ftp  
  83. access).  It is a real hack of a program but some of you have been  
  84. clamoring for it.
  85.  
  86.