tag:blogger.com,1999:blog-307531362009-06-06T01:44:06.144-07:00Deja IIx: AppleWorks Classic on Mac OS XAppleWorks Classic on Mac OS XMark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.comBlogger50125tag:blogger.com,1999:blog-30753136.post-91288587534659050662009-05-25T19:46:00.001-07:002009-05-25T19:46:43.982-07:00UltraMacros PrimerI've scanned a copy of the UltraMacros Primer to PDF.<br /><br />You can download it at:<br /><br /><a href="http://www.unmarked.com/labs/deja2/files/um_primer.zip">http://www.unmarked.com/labs/deja2/files/um_primer.zip</a><br /><br />I've checked with Warren Williams and Cathy Merritt at NAUG and got the OK to scan and distribute the PDF to the Apple II folks.<br /><br />Feel free to upload the PDF to any appropriate A2 archives.<br /><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-9128858753465905066?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-10563334805983439972009-05-12T12:22:00.001-07:002009-05-12T12:23:01.570-07:00UltraMacros, meet AppleScriptStarting in build 109, I've added a new external command:<br /><pre>.ExtCall "applescript","script name"</pre><br />Will run the AppleScript named "script name" located in the folder:<br /><br />~/Library/Applications Support/Deja IIx/AppleScripts/<br /><br />For fun, I wrote some scripts to play various songs in iTunes and then wrote a set of macros that would call them.<br /><br />There are more productive uses for it and I hope to demonstrate at least one of those shortly.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-1056333480598343997?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-42834510117586089352009-05-11T11:16:00.001-07:002009-05-11T11:16:33.461-07:00Display, Speed, BonusesSpent several hours this weekend working on some new stuff for D2.<br /><br />1. Display<br /><br />I've been experimenting with OpenGL as the display engine. Unfortunately, that didn't pan out (worked for 1x & 2x magnification, but 1.5x looked horrible).<br /><br />However, I did manage to eek out some more improvements to the existing display code. It should be about 2x as fast at the larger magnifications.<br /><br />When testing scroll speed, use a macro loop like this:<br /><br /><pre><br />start<br />j:<all: oa-1:<br /> .ExtCall "timer","start":<br /> x=1 : ba-j: <br /> $2=.ExtStr "timer","stop":<br /> msg "Scroll down took: " + $2>!<br /><ba-j>:<all: if x < 4683 then down : x=x+1: rpt>!<br /></pre><br /><br />2. More Speed<br /><br />There is a new preference called "Speed". Your options are Normal and Faster. Faster simply performs more 65c02 operations per cycle. What does that mean? It means if you have cpu intense operations, they'll go much faster.<br /><br />Why provide an option at all? One of the side-effects of this change is that operations can happen so fast that the screen never updates. For example, if you have a small to medium-sized word processor document and your press oa-S to save it. Under the Faster option, the save is so fast that the screen doesn't change on you at all. That can be disconcerting.<br /><br />3. External Commands<br /><br />Many moons ago, when Randy & I were working on the dot-commands for UltraMacros related to Deja ][ 1.0, we added three commands:<br /><br /><pre><br /> .ExtCall $, $<br />$ = .ExtStr $, $<br /># = .ExtNum $, $<br /></pre><br /><br />In the course of doing Deja IIx (ie 2.0), these commands were disabled. Well, they're back. While I haven't setup the plugin architecture yet, the new mechanism is in place to make it easy (for me) to add commands to UltraMacros.<br /><br />The first string is the command name, the second string contains any parameters. If the command has a result, you can use either .ExtStr or .ExtNum to get a string or numeric result as appropriate for the command. Commands are set up to be case-insensitive. If you call .ExtStr or .ExtNum on a command that doesn't have any results, you'll get an empty string or zero respectively.<br /><br />So, here is a simple example of a new command:<br /><br /><pre>.ExtCall "http","www.dejaIIx.com"</pre><br /><br />This command goes to the given URL in your default browser.<br /><br /><pre>.ExtCall "timer","start"</pre><br /><br />This command starts a timer for a timed event.<br /><br /><pre>$ = .ExtStr "timer","mark"</pre><br /><pre>$ = .ExtStr "timer","stop"</pre><br /><br />This command marks the end of a timer event and returns the # of minutes or seconds since the last .ExtCall "timer", "start" was called.<br /><br />You can use "timer","mark" as an intermediate timer calculation.<br /><br />Future command ideas:<br /><br />"applescript" - run an AppleScript<br /><br />Post your ideas for other possible commands.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-4283451011758608935?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-28739854762645019472009-03-08T14:48:00.001-07:002009-03-08T14:48:59.134-07:00Shaking off the Winter BluesOK, so a few changes since the end of last year:<br /><br />1. Deja IIx has changed homes. Formerly under the Puppy Dog Software banner, it is now part of unmarkedLabs.<br /><br />2. The version numbering has changed. Rather than "b" this and "b" that, I'm using build numbers.<br /><br />3. You can now print to RTF and specify the monospaced font and size to use.<br /><br />4. Fixed a bug in reading directories where an entry could be left out, causing all sorts of havock.<br /><br />5. Finally, Deja IIx compensates for some file typing issues that can occur when moving files between Apple II / Mac environment. Specifically, sometimes files are not given the correct auxtype.<br /><br />This can be a huge problem in the case of TimeOut apps and AW Inits. Starting with build 106, Deja IIx now sets the auxtype (if not already set) if the name starts with a "TO." or "I." to insure they are recognized.<br /><br /><br /><a href="http://www.unmarked.com/labs/deja2/files/d2_106.zip">Deja IIx 2.0 (106)</a><br /><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-2873985476264501947?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-7191686396204354092008-12-19T20:09:00.001-08:002008-12-19T20:09:36.304-08:00End of Year CleanupAs mentioned on the mailing list, I'm doing some cleanup at the end of the year. The files are moving to a place on the unmarked.com server.<br /><br />Along with that change, I'm moving Deja IIx from Puppy Dog Software to unmarked labs. Someone else has been pushing the PDS name and since it doesn't bring me any real income, I'm giving it up.<br /><br />Instead, unmarked labs (the experimental department of unmarked software) will adopt it. There is one significant change that comes with this.<br /><br />Your Preferences (~/Library/Preferences) with the older version were located in the file:<br /><br />com.puppydogsoftware.dejaIIx.plist<br /><br />Starting with b10, the file will be:<br /><br />com.unmarkedlabs.dejaIIx.plist<br /><br />To keep your old preferences, just make sure you quit D2, then rename the older file to the newer file.<br /><br />You can use the check for updates feature or download the new version:<br /><br /><a href="http://www.unmarked.com/labs/deja2/files/d2_b10.zip">Deja IIx b10</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-719168639620435409?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com4tag:blogger.com,1999:blog-30753136.post-31023173098390186132008-11-30T15:08:00.000-08:002008-11-30T15:13:48.951-08:00New Google Group: Deja IIxI've been trying to figure out how to improve the communication between folks. The blog seems very waited towards one-way communication. Comments help, but there is no real open discussion.<br /><br />To help in this area, I'm trying a new experiment. I've created a <a href="http://groups.google.com/group/dejaiix/">Google Group</a> for a more interactive discussion on Deja IIx. The group allows for both a web-based experience (if that is your thing), or email-based.<br /><br />Join up and lets open up the discussion.<br /><br /><br /><a href="http://groups.google.com/group/dejaiix/">http://groups.google.com/group/dejaiix/</a><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-3102317309839018613?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-73878232102146068502008-10-19T22:15:00.000-07:002008-11-12T12:15:43.019-08:00CONTROL-APPLE-RESETTextSoap 6 is finally out the door and with the exception of a few ancillary issues, things are starting to settle down.<br /><br />I'm working on a couple site changes for Deja IIx and hope to get the builds started again just in time for the holidays.<br /><br />Stay tuned.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-7387823210214606850?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com4tag:blogger.com,1999:blog-30753136.post-72286078524874858382008-07-23T11:37:00.000-07:002008-07-23T11:46:38.634-07:00Still not doneIt's been a while since I posted any progress on Deja IIx.<br /><br />The reason is that all my time has been focused on getting TextSoap 6 finished. It has seen a number of major changes based on feedback from testers and users. That's good for the product, but it has also contributed to that delay.<br /><br />Unfortunately, that has left Deja IIx sitting on the back burner for some time. And it's likely to continue for a while longer.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-7228607852487485838?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com3tag:blogger.com,1999:blog-30753136.post-15581367048886889232008-05-21T22:25:00.000-07:002008-05-21T22:29:22.584-07:00TextSoap 6 hits betaWhat does this have to do with Deja IIx?<br /><br />Well, TextSoap 6 has been one of the key projects that has prevented me from spending much time on Deja IIx to finish it off. TextSoap 6 entering beta push me one step closer.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-1558136704888688923?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-33974275212102280532008-03-08T09:08:00.001-08:002008-03-08T09:08:24.778-08:00Pause in ActionIt's been a while since I last posted. Most of my current attention is focused on getting the next version of TextSoap out in the next few months. As many of you already know, Deja IIx is more a labor of love, but it doesn't pay the bills.<br /><br />However, once TextSoap goes out the door, I hope to have some time to finish up the remaining pieces of Deja IIx and bring it out of beta. If you come across bugs, please let me know by either leaving comments or emailing me.<br /><br />And no, I am not looking to bring Deja IIx to the iPhone. I will, however, make the source available if someone wants to actually try it. :-)<br /><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-3397427521210228053?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com9tag:blogger.com,1999:blog-30753136.post-24078582117574821752008-01-26T17:05:00.000-08:002008-01-26T17:15:00.544-08:00Another step down the pathThis release is a fairly minor one, but addresses a couple issues. Support for minimizing the Deja IIx window has been added, as well as the ability to automatically pause/resume Deja IIx when it is miniaturized.<br /><br />There was an additional tweak that will help some folks with older video cards. For some reason, it the older cards did not display the window correctly. The new Display preference allows you to overcome this issue, although full support for transparency suffers as a result.<br /><br />The one big outstanding issue is the printing. I'm still working on getting printing to match as closely as possible, the behavior on an Apple II. I sort of broke some of the printing in the process of making changes, but hope to get it back up and running again in the near future.<br /><br />Latest Release: <b>Deja IIx 2.0b7</b><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-2407858211757482175?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com1tag:blogger.com,1999:blog-30753136.post-45959593460530416482008-01-20T19:13:00.000-08:002008-01-20T19:20:30.873-08:00Inching closer to a real releaseDeja IIx continues to inch ever closer to a final release. Beta 6 addresses some file issues, namely the disappearance of file 13.<br /><br />As a bonus (and we all like bonuses), Deja IIx now handles aliases in the ProDOS Volumes folder. This means you can (once again) store your files wherever you want. Just create an alias to the folder (or volume) and place it in the ProDOS Volumes folder (inside the Deja IIx folder). Presto - AppleWorks will see it.<br /><br />The only major outstanding issues are related to printing. Printing (to a Mac printer) is still in a state of flux, so please try not to count on the functionality just yet. I'm working on getting the Mac printer pagination to match AppleWorks' pagination.<br /><br />Latest release: <b>Deja IIx 2.0b6</b><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-4595959346053041648?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com2tag:blogger.com,1999:blog-30753136.post-71282605602282841802007-12-31T11:09:00.000-08:002008-12-21T08:09:00.482-08:00One more thing for 2007It's the end of the year. After many a dry spell in progress, Deja IIx is finally in a beta state. <br /><br />Occasionally I need to startup Mac OS 9 (under Classic) to see how Deja ][ would handle a particular issue. It's interesting to compare the two: <br /><br />Deja ][ was very CPU intensive. It basically took 100% of the CPU. Deja IIx only takes about 8-9%.<br /><br />Deja ][ screen handling was pokey at best. Deja IIx actually presents a true Apple II screen. In fact, Deja IIx no longer patches the screen writing code in AppleWorks. Instead, it emulates the Apple IIe (hopefully the reason for this will be more apparent in 2008).<br /><br />Of course, there are other goodies Deja IIx like transparency, window scaling (for those with bad eyes and big monitors). Most of the goodies stem from the changes in the Mac OS in the past ten years. It is amazing how much code was thrown out between Deja ][ and Deja IIx (OK, so I actually didn't do a direct port -- but the point remains the same). There was so much code just to bring up a dialog with gray buttons. It boggles the mind how far we've come.<br /><br />Well, with the changing times comes one more thing before the year ends. There has always been a custom icon available for your AppleWorks folder, to let you know it was for Deja ][. Well, with Leopard and the new app icon, it was time it was updated as well. Deja IIx includes an install option (under the AppleWorks preference section) to make it easy to get (it installs in your Deja IIx folder).<br /><br />Here's a peek. And Happy New Year!<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.unmarked.com/labs/deja2/images/custom_folder_icon-706264.png"><img style="cursor:pointer; cursor:hand;" src="http://www.unmarked.com/labs/deja2/images/custom_folder_icon-706261.png" border="0" alt="" /></a><br /><br /><p>Latest Release: <b>Deja IIx 2.0b5</b></p><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-7128260560228284180?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-69343088339028188262007-12-30T00:00:00.000-08:002008-12-21T08:09:51.627-08:00My, what big Icon(s) you haveBefore the new year starts, I thought I'd squeeze in one quick release. Beta 2 has lots of goodies:<br /><br />There is now a UI for adding your own keystrokes. You could do this manually before, but this UI is way easier. The new UI also allows you to reorder the keystrokes via drag-n-drop.<br /><br />There is now also a UI for working with the new ProDOS Volumes. You can easily hide volumes from AppleWorks (to avoid clutter).<br /><br />There's also a number of bug fixes. A paused Deja IIx is now clearly indicated (the title bar tells you and the screen is dimmed).<br /><br />Finally -- Deja IIx has a new icon. It may require a tweak or two, but I think it is much more representative of what the App does than the previous icon. And in the Leopard tradition, the new icon comes in a high-resolution version. Click the icon thumbnails to see them full size.<br /><br />OLD:<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.unmarked.com/labs/deja2/images/before-776581.png"><img src="http://www.unmarked.com/labs/deja2/images/before-776573.png" border="0" alt="" /></a><br /><br />NEW:<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.unmarked.com/labs/deja2/images/AW512-754660.png"><img src="http://www.unmarked.com/labs/deja2/images/after-770846.png" border="0" alt="" /></a><br /><br /><p>Latest Release: <b>Deja IIx 2.0b2</b></p><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-6934308833902818826?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com1tag:blogger.com,1999:blog-30753136.post-62648256108314606712007-12-22T17:36:00.000-08:002007-12-22T17:47:53.772-08:00Deja IIx goes beta!Santa -- all I want for Christmas is a beta release.<br /><br />All the features are in and most things now work, so I'm officially changing the designation from alpha to beta.<br /><br />This release adds the big missing feature -- printing. I wrote a TimeOut Mac Print Setup app to configure your printer. There are three different results you can get from printing.<br /><br />Mac Printer - this prints through the Mac print architecture. The result is printed paper or PDF (if you so choose).<br /><br />RTF Clipboard - this takes the print results and copies it to the clipboard.<br /><br />Save to RTF - this takes the print results and allows you to save them to an RTF file.<br /><br />The new Deja IIx Printer supports Bold, Underline, Superscript, Subscript, Italic (SC1/SC2) and Strikethrough (SC3/SC4). There is a mechanism for mapping characters per inch to actual Mac fonts and size. And you can specify different font/size mappings depending on the final results -- so you can have one set of font mapping for printing and another when copying the results to the clipboard and even another when saving it to a file.<br /><br />You can look at Deja IIx-PrinterCodes.plist in the Deja IIx support folder. I'm still working on an interface to allow you to edit these more easily -- but that's definitely a beta thing.<br /><br />Latest Release: <b>Deja IIx 2.0b1</b><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-6264825610831460671?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com2tag:blogger.com,1999:blog-30753136.post-17831885206792808052007-12-14T20:15:00.000-08:002007-12-14T22:13:53.791-08:00Here comes Santa ClausIt's like Christmas in December!<br /><br />After many months, I finally had a chance to do some work on Deja IIx. Check out the <a href="http://www.dejaiix.com/appcast/dejanotes.html">release notes</a> for all the details.<br /><br />The biggy: Transcendental functions work again. Yes, you get transcendental functions again and you don't have to give up the TimeOut Calculator for it. I've made some changes so that inverse uppercase displays correctly in the WP (when you use ctrl-T).<br /><br />Other goodies, PageUp/PageDown/Home/End are all mapped to the AW equivalents. Home/End follow the PC metaphor of beginning/end of line (rather than the Mac's beginning/end of document).<br /><br />A bunch of User Interface changes to simplify things.<br /><br />Drawing of the text display is handled a little differently than before. This results in a small increase in the percent of the processor that gets used (tops off around 14% or less when idle), but still a lot less than the 99% that the Deja ][ 1.2 uses when idle.<br /><br />Most (non-graphics) TimeOut apps should work.<br /><br />I've tested it under 10.3.9, 10.4.11, and 10.5.1.<br /><br />Soon, I might even call this a beta!<br /><br />Latest Release: <b>Deja IIx 2.0a24</b><br /><br />Happy Holidays!<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-1783188520679280805?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-86486497872430566822007-06-07T23:01:00.000-07:002007-06-07T23:05:58.205-07:00Finally?Yes, I think I have finally conquered the bank-switching issues that were causing lots and lots of problems. Previous attempts accomplished about 90% of what I needed, but getting that last 10% to work definitely took another 90% of the time.<br /><br />I've also disabled to Native patching of the SANE math code used in AppleWorks. Apparently there is a format that is not currently supported and thus returns incorrect results (particularly for TimeOut Measurements). I hope to either support the unknown format (assuming I can find documentation) or allow users to toggle the native code on and off.<br /><br />Again, you can use the auto-update feature or download using the link on the right.<br /><br />Latest Release: <b>Deja IIx 2.0a20</b><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-8648649787243056682?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com3tag:blogger.com,1999:blog-30753136.post-88180639513230523812007-06-04T14:44:00.000-07:002007-08-04T11:03:25.015-07:00HIRES Root beer for allI was almost ready to give up. After hours and hours of walking through code, I just could not find what I knew to be a very subtle change that was causing Deja IIx to fail (when the original Deja ][ did not).<br /><br />I decided to spend a few more hours on it. In the course of things to come, I ended up more accurately emulating the Language card bank switching (which turns out wasn't the problem). I also managed to find some PDF's that include the original Apple II reference manuals (boy I could have used those a while back).<br /><br />So, what was this elusive bug? It turns out that TimeOut (and possibly AW) were expecting the Hi-Res pages to get switched in/out correctly, not for graphics, but for data management. I had forgotten to process the Hi-Res bank-switching correctly.<br /><br />Time working on this bug : several days<br />Lines need to be added : about 10<br />Knowing this bug is squashed : Priceless<br /><br />Latest version is available with link on upper right of blog. If you have 2.0a17, you can use the check for updates to automatically update your software.<br /><br /><b>Latest version: 2.0a18</b><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-8818063951323052381?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-4576740913472923122007-06-03T21:17:00.000-07:002007-06-03T21:30:32.545-07:00Come Scale Away..Another release is here and scaling is back (at least for the time being). In fact, you can scale from 1.0 -> 2.0x in virtually any increment.<br /><br />Added Sparkle for easy, auto-updating.<br />You can now toggle the DebugMode on/off w/o restarting.<br />Selecting the AppleWorks is done under its own tab in preferences.<br />And fixed some resizing issues for a future OS release. :-)<br /><br /><br />Known issues:<br /><br />There are a couple very strange bugs lurking. If Deja IIx crashes, you've likely found the bug.<br /><br />Trying to use TimeOut Utilities for anything but Configuring can cause Deja IIx to crash.<br />Removing changed files from a desktop with many files may cause a crash as well.<br /><br />You can download the latest release with the new permanent link on the right column.<br /><br />Latest version: 2.0a17<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-457674091347292312?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-75806557708555475472007-05-28T01:45:00.000-07:002007-05-28T02:00:06.587-07:00Show me the Open-Apple!Yes, there is a new release -- finally. The new code includes a completely redone display engine. The new display should give the same or better performance in display and scrolling. More importantly, the new display should work correctly on Leopard (the previous release did not) and should handle resolution independence.<br /><br />What else has changed?<br /><br />1. The interface has gone minimal. The Action Palette is gone in favor of an Action drawer which you can toggle on when you need it.<br /><br />2. Scaling is no longer an option. Scaling can really slow things down in a major way, so it's gone for now (but I'm still researching how I can increase the display size w/o too much of a performance hit).<br /><br />3. Color preferences changed to be a bit more WYSIWYG.<br /><br />4. Under Preferences > ProDOS paths, Deja IIx now looks for AppleWorks folders and provides a complete list (great if you've got multiple). No more typing in paths to change which AppleWorks folder you want.<br /><br /><br />The newest download can be had at <a href="http://www.dejaIIx.com/files/d2_a16.zip">Version 2.0 (A16)</a>.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-7580655770855547547?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-79179202588042819062007-04-17T13:38:00.000-07:002007-04-17T13:59:08.970-07:00RSS feed reminderOne of the reasons for using a blog is that you can subscribe to the RSS feed.<br /><br />If you use an RSS feed reader, you can either use the link at the bottom of the right column, or if you're using Safari, by clicking on the RSS button in address bar.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-7917920258804281906?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-6867901789335461932007-04-17T08:50:00.000-07:002007-04-17T09:00:33.894-07:00Rebel Teenager?Deja IIx has reached that rebel teenager stage (although it probably started earlier and I just wasn't paying attention).<br /><br />This quick fix resolves a crash on setting up the debugger window at launch, especially under 10.3.9.<br /><br />The newest download can be had at <a href="http://www.dejaIIx.com/files/d2_a15.zip">Version 2.0 (A15)</a>.<br /><br /><b>IMPORTANT: I am *considering* bumping the OS requirements to 10.4 to take advantage of some newer APIs and reduce testing requirements. Your feedback is appreciated. Are you still using 10.3.9? Planning to move to either 10.4/10.5 or not? Let me know.</b><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-686790178933546193?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com2tag:blogger.com,1999:blog-30753136.post-2063012392591651152007-04-14T02:10:00.000-07:002007-04-14T02:16:41.032-07:00Warming up!Ok, it's been a while since I've posted anything new. I decided I needed some warm up exercises before I tried to do any heavy lifting.<br /><br />This release features some modest changes, undoing some of the last changes made (which I ended up no liking very much). The debugger window explosion has been tamed, consolidating back to a single debugger window + memory windows.<br /><br />I am also starting some experimentation on improving the display.<br /><br />The newest download can be had at <a href="http://www.dejaIIx.com/files/d2_a14.zip">Version 2.0 (A14)</a>.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-206301239259165115?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-57382655938470534262007-02-09T14:39:00.000-08:002007-02-09T14:36:51.472-08:00New Domain!Yes, I am slowly getting things back on track for Deja IIx, starting with a new domain!<br /><br /><a href="http://www.dejaIIx.com">DejaIIx.com</a> is the new home for the Deja IIx project.<br />The main URL takes you to the blog for now, will probably change that over time.<br /><br />The latest download can be had at <a href="http://www.dejaIIx.com/files/d2_a13.zip">Version 2.0 (A13)</a>.<br />Note: This is still very alpha.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-5738265593847053426?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com0tag:blogger.com,1999:blog-30753136.post-7446418628571526542007-01-06T17:05:00.000-08:002007-01-06T17:11:05.397-08:00A new location for filesDeja IIx hasn't seen much action lately, as I'm finishing up the last bits in preparation for Macworld next week.<br /><br />I moved some domains around and that caused the links to no longer work.<br /><br />I moved the files to a new location and updated the blog to reflect those changes. In the process, I also removed some of the links to older releases.<br /><br />After Macworld is done (and I've had a chance to recover), I'll get a chance to do some additional clean up work. Stay tuned.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30753136-744641862857152654?l=dejaiix.blogspot.com'/></div>Mark Munzhttp://www.blogger.com/profile/13827276163315901953noreply@blogger.com2