You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(19) |
Aug
(17) |
Sep
(3) |
Oct
(2) |
Nov
|
Dec
|
---|
From: David J. K. <dke...@ko...> - 2002-10-02 12:03:23
|
On Tue, Oct 01, 2002 at 08:10:37AM +0000, Matthew Bevan wrote: > What characters should I dissalow (translate into spaces or _ characters)? > > So far, I've got the following rules set up: > if ( *p == '/' ) *p = '_'; > if ( *p < ' ' ) *p = '_'; > if ( *p > 165 ) *p = '_'; I don't see any need to convert spaces into '_' - the space character is completely legitimate in VFS file names. Technically, here's what's allowed in VFS file names: - Letters A through Z. - Digits 0 through 9. - All characters with ASCII codes greater than 127. - Space. - The following characters below 30h: $ % - _ @ ~ ! ( ) { } ^ # & If you exclude these chars above 165d, files with non-English names (i.e. Chinese, Japanese, Korean, etc.) will end up being nothing but underscores). The only stuff you *really* need to keep out is "/ \ : ? *" since DOS/Windows uses those for path separators and wildcards. -- Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com |
From: Matthew B. <mb...@ma...> - 2002-10-01 15:03:52
|
What characters should I dissalow (translate into spaces or _ characters)= ? So far, I've got the following rules set up: =09if ( *p =3D=3D '/' ) *p =3D '_'; =09if ( *p < ' ' ) *p =3D '_'; =09if ( *p > 165 ) *p =3D '_'; Where *p is each character of the filename. Also, for those interested (who is on this list besides me and Dave anywa= y?)=20 I'm almost done writing a very small and fast backup program... yeah. Sl= eep=20 is a poor substitute for caffine. --=20 Matthew (Darkstorm) Bevan mb...@ma... Margin Software, NECTI.=09=09http://www.marginsoftware.com =09Re-inventing the wheel, every time. - "I'd love to go out with you, but I have to floss my cat." |
From: David J. K. <dke...@ko...> - 2002-09-11 11:22:09
|
I think you're trying to do too much with the plug-in architecture. You're trying to create an extensible file system but VFS is *already* extensible. For example, if you want an NFS or FTP module, why wouldn't you just write it as a filesystem module that plugs into the VFS manager so that all applications (not just FileCaddy) can use it? Also, the more complex the plug-in architecture, the less likely developers will be to write plug-ins. I know that what you have so far doesn't seem all that complicated to you, but the fact is most PalmOS developers are *not* expert C coders and I guarantee that what you're proposing will severely limit who can and will write plug-ins. Even the simple plug-in architecture for FAFileMover (simple as it was) was too complicated for few developers that I approached with it. Unfortunately, I don't have much time for FileCaddy these days (I'm desperately trying to find enough paid work to keep Kopsis afloat) so I'll leave the decision of how to proceed up to you. -- - Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com On Tue, Sep 10, 2002 at 12:03:42AM +0000, Matthew Bevan wrote: > Woh, long time no C...VS update, eh? > > As much as I love flossing my cat, the time for updates is neigh. I've been > working a bunch on the plugin archatecture, and have put together a spiffy > makefile and code example that should, in theory, work. Just need to make > some test programs so I get a full grasp of how to do this... > > I'll be posting an update to the website so people know we're still alive and > working, as well as the plugin code example and some docs on how to write a > plugin that does spiffy things. Any input on how to do the plugin system > would be really handy about now. What follows are some preliminary ideas... > > Plugins will have one main function exported - PlugInMain - which gets passed > a pointer to the following structure: |
From: Matthew B. <mb...@ma...> - 2002-09-11 09:15:24
|
Using the basic structure I posted before, I have managed to get a plugin= =20 testing program (calls various functions and checks the return values) an= d=20 the example plugin to work together. Attached to this message (I hope th= is=20 works ;) is a tar.gz of the code and example PRCs... Now to merge this with FileCaddy and start the -real- work. --=20 Matthew (Darkstorm) Bevan mb...@ma... Margin Software, NECTI.=09=09http://www.marginsoftware.com =09Re-inventing the wheel, every time. - "I'd love to go out with you, but I have to floss my cat." |
From: Matthew B. <mb...@ma...> - 2002-09-11 06:57:22
|
Woh, long time no C...VS update, eh? As much as I love flossing my cat, the time for updates is neigh. I've b= een=20 working a bunch on the plugin archatecture, and have put together a spiff= y=20 makefile and code example that should, in theory, work. Just need to mak= e=20 some test programs so I get a full grasp of how to do this... I'll be posting an update to the website so people know we're still alive= and=20 working, as well as the plugin code example and some docs on how to write= a=20 plugin that does spiffy things. Any input on how to do the plugin system= =20 would be really handy about now. What follows are some preliminary ideas= =2E.. Plugins will have one main function exported - PlugInMain - which gets pa= ssed=20 a pointer to the following structure: typedef struct { =09void *globals;=09=09// pointer to plugin-allocated space =09PlugCmd type;=09=09// type of event being passed =09typedef union { =09=09typedef struct { =09=09=09Boolean menuItem; =09=09=09Boolean vfsHandler; =09=09} startup; =09=09// ... =09} data; } Plug_ParamBlock; typedef Plug_ParamBlock* Plug_ParamBlockPtr; Yes, I know the above will not compile. Call it P-code, if you will. =20 PlugCmd is of the following enumeration (hopefully the tabs don't get too= =20 badly garbled by your e-mail client): typedef enum { cmdStartup,=09=09=09=09=09// plugin is loaded and first run cmdShutdown,=09=09=09=09// plugin is run for the last time cmdRestart,=09=09=09=09=09// plugin restarted by user cmdGetInfo,=09=09=09=09=09// hack style about dialog cmdSetup,=09=09=09=09=09// hack style configuration dialog cmdChangeVolume,=09=09=09// user requested new volume cmdChangeDirectory,=09=09=09// user tapped a directory entry cmdMenuTap,=09=09=09=09// user chose plugin from the popup cmdFileCopy,=09=09=09=09=09// user requesting to copy file(s) cmdFileMove,=09=09=09=09=09// user requesting to move file(s) cmdDelete,=09=09=09=09=09// user requesting to delete file // the following are used to emulate a new VFS mount... cmdVFSDirCreate,=09=09=09=09// create directory cmdVFSDirEntryEnumerate,=09=09// scan directory cmdVFSExportDatabaseToFile,=09// copy DB to file cmdVFSExportDatabaseToFileCustom,=09=09// copy DB to file w/ progress cmdVFSExportFileToFile,=09=09// copy file to file cmdVFSExportFileToFileCustom,=09// copy file to file w/ progress cmdVFSFileClose,=09=09=09=09// close open file cmdVFSFileCreate,=09=09=09// create empty file cmdVFSFileDBInfo,=09=09=09// get palmOS database information cmdVFSFileDelete,=09=09=09// delete file cmdVFSFileEOF,=09=09=09=09// at end of open file cmdVFSFileGetAttributes,=09=09// get file attributes (chmod) cmdVFSFileGetDate, =09=09=09// get created/modified/accessed times cmdVFSFileOpen,=09=09=09=09// open file cmdVFSFileRead,=09=09=09=09// read data from file cmdVFSFileRename,=09=09=09// rename file cmdVFSFileResize,=09=09=09// resize file cmdVFSFileSeek,=09=09=09=09// seek in open file cmdVFSFileSetAttributes,=09=09// set attributes (chmod) cmdVFSFileSetDate,=09=09=09// set file created/modified/accessed times cmdVFSFileSize,=09=09=09=09// get file size cmdVFSFileTell,=09=09=09=09// get current location in open file cmdVFSFileWrite,=09=09=09=09// write data to file cmdVFSImportDatabaseFromFile,=09// copy file->internal database cmdVFSImportDatabaseFromFileCustom,=09// copy file->internal w/ progres= s cmdVFSImportFileFromFile,=09=09// copy file->file cmdVFSImportFileFromFileCustom,=09// copy file->file w/ progress cmdVFSVolumeEnumerate,=09=09// find available volumes (drives) cmdVFSVolumeGetLabel,=09=09// get volume label cmdVFSVolumeInfo,=09=09=09// get volume extended information cmdVFSVolumeMount,=09=09=09// mount volume cmdVFSVolumeSetLabel,=09=09// set volume label cmdVFSVolumeSize,=09=09=09// get free/used space on volume (may not app= ly) cmdVFSVolumeUnmount,=09=09// unmount mounted volume cmdPlugCustomBase =3D 0xF000=09// base point for custom functions =09=09=09=09=09=09=09// big number =3D lots of standard functions ;) } PlugCmd; Possible ideas include having the VFS functions be in a seperate code res= ource=20 and seperate enumeration, to leave space for any new "normal" command...=20 missing anything that we may need? If I can manage to get this to work, we'll have the only truly extensible= file=20 manager in the Palm world... whee! --=20 Matthew (Darkstorm) Bevan mb...@ma... Margin Software, NECTI.=09=09http://www.marginsoftware.com =09Re-inventing the wheel, every time. - "I'd love to go out with you, but I have to floss my cat." |
From: Matthew B. <mb...@ma...> - 2002-08-26 19:34:48
|
On August 26, 2002 04:32 am, David J. Kessler wrote: > I don't know if you saw this, but FileCaddy got some good user reviews in > one of the discussion threads on the ClieSource forums. Sweet... we have a user base. Never would have thought ;-) One user had some very astute observations: we need: - HiRes Fonts (done ;) - easier to navigate (?) - opens faster (I'll look into it) - tap and hold for menu (once we have plugins...) - we really need plugins to compete. I.e. changing file attributes / renaming files, among others. - we also really need to be able to move files between directories ... yeah. -- Matthew (Darkstorm) Bevan mb...@ma... Margin Software, NECTI. http://www.marginsoftware.com Re-inventing the wheel, every time. - If puns were deli meat, this would be the wurst. |
From: David J. K. <dke...@ko...> - 2002-08-26 11:32:09
|
I don't know if you saw this, but FileCaddy got some good user reviews in one of the discussion threads on the ClieSource forums. http://www.cliesource.com/forums/showthread.php?s=4f1d9ee3d03914abca391f223c3fd735&threadid=3701&highlight=filecaddy -- - Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com On Sun, Aug 25, 2002 at 06:18:28AM -0700, Matthew Bevan wrote: > Think we're almost ready for another release. Fixed a few of the bugs that > were outstanding and added a "Home" button so people can specify a directory > to jump to when it's tapped. Can't specify the directory yet, as I need to > come up with some good re-orginization for the preferences dialog... > > It's been CVS-ed up and all, so have a gander. I'm going back to bed ;) > > -- > Matthew (Darkstorm) Bevan mb...@ma... > Margin Software, NECTI. http://www.marginsoftware.com > Re-inventing the wheel, every time. > > - So you're back... about time... |
From: David J. K. <dke...@ko...> - 2002-08-26 11:29:25
|
On Sun, Aug 25, 2002 at 06:16:48AM -0700, Matthew Bevan wrote: > Anyway, it seems that most of the big sites are having a few problems of their > own. I'm going to be giving the finger to PalmGear if some of the things > they're talking about go through. Also, they need to pay me >_<; Not happy > bout that one... Don't even get me started on PalmGear! Luckily, they haven't missed any of our payments - but their new attitude towards free software is more than just a little irritating. Not to mention they actually modified the FileCaddy product description to remove the link to the FileCaddy website! I can understand their "no links to an alternative sales pages" for commercial software - but for a free application?! Gimme a break! > Where is this Mike's Tipsheet? http://www.palmtipsheet.com -- Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com |
From: Matthew B. <mb...@ma...> - 2002-08-25 13:24:34
|
Think we're almost ready for another release. Fixed a few of the bugs that were outstanding and added a "Home" button so people can specify a directory to jump to when it's tapped. Can't specify the directory yet, as I need to come up with some good re-orginization for the preferences dialog... It's been CVS-ed up and all, so have a gander. I'm going back to bed ;) -- Matthew (Darkstorm) Bevan mb...@ma... Margin Software, NECTI. http://www.marginsoftware.com Re-inventing the wheel, every time. - So you're back... about time... |
From: Matthew B. <mb...@ma...> - 2002-08-25 13:15:51
|
On August 21, 2002 03:35 am, David J. Kessler wrote: > The major websites have been completely uninterested in FileCaddy but > Mike's tipsheet should give us a little good press :) [yawn, stretch, zzzzZZZZ] Sorry bout being out of it for such a long time - been sleeping 24 hours a day recently... not good at all. Anyway, it seems that most of the big sites are having a few problems of their own. I'm going to be giving the finger to PalmGear if some of the things they're talking about go through. Also, they need to pay me >_<; Not happy bout that one... Where is this Mike's Tipsheet? -- Matthew (Darkstorm) Bevan mb...@ma... Margin Software, NECTI. http://www.marginsoftware.com Re-inventing the wheel, every time. - Confirmed bachelor: A man who goes through life without a hitch. |
From: David J. K. <dke...@ko...> - 2002-08-21 10:35:56
|
The major websites have been completely uninterested in FileCaddy but Mike's tipsheet should give us a little good press :) -- - Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com ----- Forwarded message from "Mike Rohde, Editor" <mi...@pa...> ----- Subject: Re: FileCaddy From: "Mike Rohde, Editor" <mi...@pa...> To: <dke...@ko...> Hi David, > I hope you like FileCaddy. In some ways it's quite a departure from > FAFileMover - but it's overall objectives are pretty much the same (speed > and simplicity). And since you're a Clie user, I should mention that Matthew > is already working on adding Clie high-res support for a future release. Great to hear! I'm planning on a mention in the September issue of the Tipsheet. Hope I can generate a few more downloads. :-) > Be sure to post any comments you have to one of the FileCaddy mailing lists > so that all the developers will have access to them. You can find the > FileCaddy lists on the main website at http://filecaddy.sourceforge.net Will do -- thanks! Kind regards, Mike Mike Rohde | <mi...@pa...> | <http://www.palmtipsheet.com/> The Palm Tipsheet, a Free Monthly Newsletter for Palm Handheld Users ----- End forwarded message ----- |
From: David J. K. <dke...@ko...> - 2002-08-14 10:41:14
|
There are no documented functions in the PalmOS API for reading and writing specific expansion card sectors. Without that capability, low-level filesystem utilities (like scandisk or fsck) are impossible. -- - Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com On Tue, Aug 13, 2002 at 10:38:57PM -0700, Matthew Bevan wrote: > What's the chance? > > -----Forwarded Message----- > > From: Andrew Craig <An...@fc...> > To: mb...@us... > Subject: FileCaddy feature request > Date: 12 Aug 2002 19:12:29 +0200 > > I just spent a while fighting with a SD card that was plugged into my m125. It was reporting less free space than it had. I had to remove all the files, format and then re-install. > > A scandisk type utility would be a great help or at a minumum a display showing the projected free space versus the reported free space. What use is a FAT table without any option to repair it! > > Andrew. > -- > Matthew (Darkstorm) Bevan mb...@ma... > Margin Software, NECTI. http://www.marginsoftware.com > Re-inventing the wheel, every time. > > - Life sucks, but death doesn't put out at all. > -- Thomas J. Kopp > > > > ------------------------------------------------------- > This sf.net email is sponsored by: Dice - The leading online job board > for high-tech professionals. Search and apply for tech jobs today! > http://seeker.dice.com/seeker.epl?rel_code=31 > _______________________________________________ > Filecaddy-developers mailing list > Fil...@li... > https://lists.sourceforge.net/lists/listinfo/filecaddy-developers |
From: Matthew B. <mb...@ky...> - 2002-08-14 05:37:24
|
What's the chance? -----Forwarded Message----- From: Andrew Craig <An...@fc...> To: mb...@us... Subject: FileCaddy feature request Date: 12 Aug 2002 19:12:29 +0200 I just spent a while fighting with a SD card that was plugged into my m125. It was reporting less free space than it had. I had to remove all the files, format and then re-install. A scandisk type utility would be a great help or at a minumum a display showing the projected free space versus the reported free space. What use is a FAT table without any option to repair it! Andrew. -- Matthew (Darkstorm) Bevan mb...@ma... Margin Software, NECTI. http://www.marginsoftware.com Re-inventing the wheel, every time. - Life sucks, but death doesn't put out at all. -- Thomas J. Kopp |
From: David J. K. <dke...@ko...> - 2002-08-13 11:59:06
|
Thanks for the additional info! We have XP Pro on one of the laptops here in the office so I'll check the website with that later today. -- - Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com On Mon, Aug 12, 2002 at 05:14:52PM -0700, J. Miller wrote: > Oops. Ssorry about that. I should have sent you that OS et. al. info the > first time. Please frogive my error; it was, as I recall, somewhat late. > In any event here you go: > > OS: micro$not XP Professional (at least it's more stable, with NTFS, than 98 > and its various versions) Version 2002 > Browser: Internet Explorer version 6.0.2600.0000.xpclnt_qfe.010827-1803IC, > Update Version:0, with 128 bit encryption |
From: David J. K. <dke...@ko...> - 2002-08-12 20:28:26
|
I got the following from a FileCaddy user. I already responded to his question about plug-ins. It might be a good idea if the download links take folks to a "under development" page. As for the 1400x1050 resolution issue, I've requested browser details and will post his reply when I get it. -- Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com ----- Forwarded message from "J. Miller" <fil...@po...> ----- Subject: FileCaddy Plugins From: "J. Miller" <fil...@po...> To: <dke...@us...> Reply-To: <fil...@po...> Importance: Normal Why am I always taken back to [1]http://filecaddy.sourceforge.net - without a download dialog ever coming up - whenever I click on the download link to any plugin? (In other words, the download never happens; I just get returned to the home page instead.) Is your page not properly linked to all the URLs? Thx. P.S.: Please check you r webpage at 1400x1050 resolution: the fsmaller rame on the right overlaps the larger frame on the left, blocking some of the information. References 1. http://filecaddy.sourceforge.net/ ----- End forwarded message ----- |
From: David J. K. <dke...@ko...> - 2002-08-09 22:42:32
|
On Fri, Aug 09, 2002 at 09:18:43AM -0700, Matthew Bevan wrote: > Well said! The API isn't that bad, as far as I can tell. Take a look at Handera's SDK for the way that high-res on PalmOS *should* be handled. > I've also created a few new images - a home icon and some > higher-resolution application icons. None of which have been included > in the application, but they're there. Now to add them to CVS... Just remember that "cvs add" is non-recursive :) Have a great weekend! -- Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com |
From: Matthew B. <mb...@ky...> - 2002-08-09 16:17:13
|
On Fri, 2002-08-09 at 07:43, David J. Kessler wrote: > I'm totally ok with ditching Palm-DefaultVars.make and Palm-CustomVars.make > but I'm not ok with hard coding "m68k-palmos-gcc" (or any other specific > executable names) in the makefile and relying on the PATH. Using the PATH > environment variable (instead of specifying the full path to the executable > in the command) significantly slows down builds on some systems. Understandable, especially under Windows ^_^; I was tired as of that writing (and still am... 12 hours and going weakly) Of course, the variables can be overwritten by global variables or a defaults.make file in the build directory. > As for the brain fart that Sony calls the Hi-res API (and here I thought > they couldn't do worse than they did with VFS), make sure anything you add > for that (including #includes) is totally conditional. No one should be > forced to have the Clie SDK in order to build FileCaddy. We should probably > also consider two releases once that's in place so that non-Sony users don't > have to deal with the bloat that the hi-res API causes. Well said! The API isn't that bad, as far as I can tell. Preliminary support is now there - it sets the graphics mode and plays nice. Check out the feature request for the complete to-do list :D The only reason I was able to get started at all was because I needed to fix a client's Clie T615C, and had it overnight. I'll try continuing with the Sony Palm Emulator. High resolution functions are all wrapped in #ifdef's and if ( HiResSupport ) statements. There are several new global variables (some nessicary, marked by *'s, some not.) *Boolean HiResEnabled = false; *UInt16 HRLibRef; UInt32 ScreenWidth = 160, ScreenHeight = 160; *UInt32 PalmOSVersion; And some #defines of PalmOS version codes in Globals.h. The PalmOSVersion stuff is to place wrappers around 3.5+/4.0 explicit code (i.e. WinScreenLock). I've sloved the flickering problem, the easay way. A better way would to capture how many lines to scroll (using jog-wheel, or scrollbar) and move the bitmap up that many lines, then only redraw the -new- items. That would speed up the refresh immensely. I've also created a few new images - a home icon and some higher-resolution application icons. None of which have been included in the application, but they're there. Now to add them to CVS... -- Matthew (Darkstorm) Bevan mb...@ma... Margin Software, NECTI. http://www.marginsoftware.com Re-inventing the wheel, every time. - You will always find something in the last place you look. |
From: David J. K. <dke...@ko...> - 2002-08-09 14:43:09
|
I'm totally ok with ditching Palm-DefaultVars.make and Palm-CustomVars.make but I'm not ok with hard coding "m68k-palmos-gcc" (or any other specific executable names) in the makefile and relying on the PATH. Using the PATH environment variable (instead of specifying the full path to the executable in the command) significantly slows down builds on some systems. Keep the makefile using things like CC, PILRC, PALMRC, and OBJRES just as it does now and then document at the top that the user has to define those environment variables to match where he/she has the tools installed before running the makefile. Move any non-tool env vars that Palm-DefaultVars and Palm-CustomVars set up (and that we still need) into the top of the makefile. Then it's trivial to set up a little "fc-dev.setup" script that sets all the correct environment variables whenever you want to work on FileCaddy (and if you want to "export CC=m68k-palmos-gcc" and then rely on PATH to find it you can). As for the brain fart that Sony calls the Hi-res API (and here I thought they couldn't do worse than they did with VFS), make sure anything you add for that (including #includes) is totally conditional. No one should be forced to have the Clie SDK in order to build FileCaddy. We should probably also consider two releases once that's in place so that non-Sony users don't have to deal with the bloat that the hi-res API causes. -- - Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com On Fri, Aug 09, 2002 at 05:13:21AM -0700, Matthew Bevan wrote: > This time I'm asking before blundering ahead ;) > > Since FileCaddy no longer uses any Handspring-related APIs (there was no > practical reason for me to inflict them upon my system in the first > place, if you think about it ;) is there a way to avoid using the > Plam-DefaultVars.make and Palm-CustomVars.make files? > > I.e. just have m68k-palmos-gcc IN THE PATH, instead of having a makefile > that defines the location. After installing the new Prc-tools package, > I encountered countless errors where I had to shift files around, or > tweak them to get them working with FileCaddy again. Not to mention > Sony SDK... > > That's another thing - Sony High-Resolution support. Seems easy enough > to add (and has been requested for VFSBrowser in the past) so I've added > it to the to-do list. > > -- > Matthew (Darkstorm) Bevan mb...@ma... > Margin Software, NECTI. http://www.marginsoftware.com > Re-inventing the wheel, every time. > > - After your lover has gone you will still have PEANUT BUTTER! > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Filecaddy-developers mailing list > Fil...@li... > https://lists.sourceforge.net/lists/listinfo/filecaddy-developers |
From: Matthew B. <mb...@ky...> - 2002-08-09 12:11:55
|
This time I'm asking before blundering ahead ;) Since FileCaddy no longer uses any Handspring-related APIs (there was no practical reason for me to inflict them upon my system in the first place, if you think about it ;) is there a way to avoid using the Plam-DefaultVars.make and Palm-CustomVars.make files? I.e. just have m68k-palmos-gcc IN THE PATH, instead of having a makefile that defines the location. After installing the new Prc-tools package, I encountered countless errors where I had to shift files around, or tweak them to get them working with FileCaddy again. Not to mention Sony SDK... That's another thing - Sony High-Resolution support. Seems easy enough to add (and has been requested for VFSBrowser in the past) so I've added it to the to-do list. -- Matthew (Darkstorm) Bevan mb...@ma... Margin Software, NECTI. http://www.marginsoftware.com Re-inventing the wheel, every time. - After your lover has gone you will still have PEANUT BUTTER! |
From: Matthew B. <mb...@ky...> - 2002-08-01 21:30:49
|
On Thu, 2002-08-01 at 12:58, David J. Kessler wrote: > Ok, take a look at http://kopsisengineering.com/pr_filecaddy_1.html and see > what you think. If you like it, post it to the FileCaddy website and I'll > contact the press tomorrow morning. Vancouver? Close, but no cigar. ...Kopsis enlisted the help of Matthew Bevan, an independent software developer from Vancouver... - should be - ...Kopsis enlisted the help of Matthew Bevan, an independent software developer from Vancouver Island... - or - ...Kopsis enlisted the help of Matthew Bevan, an independent software developer from Vancouver Island, Canada... Everything else looks great, even the misquote ;) It's been posted to the website (looking massive next to all the other posts :) and things are good-to-go. -- Matthew (Darkstorm) Bevan mb...@ma... Margin Software, NECTI. http://www.marginsoftware.com Re-inventing the wheel, every time. - Love is not enough, but it sure helps. |
From: David J. K. <dke...@ko...> - 2002-08-01 19:59:01
|
Ok, take a look at http://kopsisengineering.com/pr_filecaddy_1.html and see what you think. If you like it, post it to the FileCaddy website and I'll contact the press tomorrow morning. -- - Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com |
From: Matthew B. <mb...@ky...> - 2002-08-01 17:16:21
|
On Wed, 2002-07-31 at 12:40, David J. Kessler wrote: > Well, I wouldn't jump to any conclusions about FileCaddy's lack of bugs just > yet :) Relatively speaking *very* few people have tested it. However, it > does sound like it's ready for a 1.0 (non pre) release. What we need most are developers willing to write plugins :D I have all those great plugins thought out, but not much ability to actually design half of them. I also need some input on the API before I take it too far. > I'll finish up the press release and get it in circulation. I'll add a call > to developers to the press release so it's clear that we're looking for both > users and developers. I'll try to send you a copy of the press release for > comments before I leave for class tonight. Email back any > comments/suggestions and I'll release it to various Visor/Clie/Palm news > sites tomorrow morning as well as PalmGear and Handango. Well, it's packaged up and posted to the website download area. Just need a press release to post on the front page :D > BTW - you might want to change "nessicary" to "necessary" on the website's > news page :) My bad. It's fixed. > -- > - Dave Kessler > President - Kopsis, Inc. > http://kopsisengineering.com > > > On Wed, Jul 31, 2002 at 12:10:35PM -0700, Matthew Bevan wrote: > > Well, seeing as almost all current bugs are debugged, and features are > > added, I believe we can make a call out to developers for help adding > > new stuff and developing some plugins. > > > > What do you say? > > > > -- > > Matthew (Darkstorm) Bevan mb...@ma... > > Margin Software, NECTI. http://www.marginsoftware.com > > Re-inventing the wheel, every time. > > > > - Have no friends not equal to yourself. > > -- Confucius > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by: Dice - The leading online job board > > for high-tech professionals. Search and apply for tech jobs today! > > http://seeker.dice.com/seeker.epl?rel_code=31 > > _______________________________________________ > > Filecaddy-developers mailing list > > Fil...@li... > > https://lists.sourceforge.net/lists/listinfo/filecaddy-developers > > > ------------------------------------------------------- > This sf.net email is sponsored by: Dice - The leading online job board > for high-tech professionals. Search and apply for tech jobs today! > http://seeker.dice.com/seeker.epl?rel_code=31 > _______________________________________________ > Filecaddy-developers mailing list > Fil...@li... > https://lists.sourceforge.net/lists/listinfo/filecaddy-developers -- Matthew (Darkstorm) Bevan mb...@ma... Margin Software, NECTI. http://www.marginsoftware.com Re-inventing the wheel, every time. - The Public is merely a multiplied "me." -- Mark Twain |
From: David J. K. <dke...@ko...> - 2002-07-31 19:40:36
|
Well, I wouldn't jump to any conclusions about FileCaddy's lack of bugs just yet :) Relatively speaking *very* few people have tested it. However, it does sound like it's ready for a 1.0 (non pre) release. I'll finish up the press release and get it in circulation. I'll add a call to developers to the press release so it's clear that we're looking for both users and developers. I'll try to send you a copy of the press release for comments before I leave for class tonight. Email back any comments/suggestions and I'll release it to various Visor/Clie/Palm news sites tomorrow morning as well as PalmGear and Handango. BTW - you might want to change "nessicary" to "necessary" on the website's news page :) -- - Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com On Wed, Jul 31, 2002 at 12:10:35PM -0700, Matthew Bevan wrote: > Well, seeing as almost all current bugs are debugged, and features are > added, I believe we can make a call out to developers for help adding > new stuff and developing some plugins. > > What do you say? > > -- > Matthew (Darkstorm) Bevan mb...@ma... > Margin Software, NECTI. http://www.marginsoftware.com > Re-inventing the wheel, every time. > > - Have no friends not equal to yourself. > -- Confucius > > > > ------------------------------------------------------- > This sf.net email is sponsored by: Dice - The leading online job board > for high-tech professionals. Search and apply for tech jobs today! > http://seeker.dice.com/seeker.epl?rel_code=31 > _______________________________________________ > Filecaddy-developers mailing list > Fil...@li... > https://lists.sourceforge.net/lists/listinfo/filecaddy-developers |
From: Matthew B. <mb...@ky...> - 2002-07-31 19:09:05
|
Well, seeing as almost all current bugs are debugged, and features are added, I believe we can make a call out to developers for help adding new stuff and developing some plugins. What do you say? -- Matthew (Darkstorm) Bevan mb...@ma... Margin Software, NECTI. http://www.marginsoftware.com Re-inventing the wheel, every time. - Have no friends not equal to yourself. -- Confucius |
From: David J. K. <dke...@ko...> - 2002-07-25 14:45:33
|
On Thu, Jul 25, 2002 at 07:19:20AM -0700, Matthew Bevan wrote: > Oh my. Alrighty then. How would you recommend we revert? Just do a > astyle --style=kr -s2 --convert-tabs to get it back, or do some CVS > trickery? Trickery and version control should never be used in the same sentence :) The right way to "back out" the change is to not back it out at all, just run everything through astyle again and commit a new rev. > Tabs are religious to you, opening braces are to me. Still writing... > arg.. Opening braces? Do you mean consistent use or where they're located? I like K&R because it saves screen real estate and because I've been using it for the last 17 years, but if you'd rather see opening braces on their own line (Allman style), I can live with that. Whitesmith style (opening brace on new line *and* indented to match the enclosed block) kinda drives me nuts though and gnu style (indent the opening brace one level and then indent the enclosed block another level) is almost as annoying :) In fact when it comes to the GNU C style guide I think Torvalds had the right idea ... "First off, I'd suggest printing out a copy of the GNU coding standards, and NOT read it. Burn them, it's a great symbolic gesture." -- Dave Kessler President - Kopsis, Inc. http://kopsisengineering.com |