Re: [bitpim-cvs-checkins] SF.net SVN: bitpim: [3322] trunk/bitpim/src
"Roger Binns" <[email protected]>
| Newsgroups | gmane.comp.mobile.bitpim.devel |
|---|---|
| Message-ID | <006801c6853a$172e3760$3501a8c0@rogersqyvr14d3> |
Joe, This is a really bad change to make. Our code has to work with case sensitive operating systems and assumes lower case everywhere. This change will cause random failures for users on Linux and Mac depending on filesystem type. > Log Message: > ----------- > package.copyresources not picking up all files > > Modified Paths: > -------------- > trunk/bitpim/help/versionhistory.htd > trunk/bitpim/src/package.py > Modified: trunk/bitpim/help/versionhistory.htd > =================================================================== > --- trunk/bitpim/help/versionhistory.htd 2006-05-30 17:08:05 UTC (rev 3321) > +++ trunk/bitpim/help/versionhistory.htd 2006-05-30 20:31:24 UTC (rev 3322) > @@ -6,6 +6,7 @@ > will cause all the wallpaper/ringers in BitPim to disappear.</b> > <li>Fixed media view toolbar bitmap problem. > <li>Fixed status bar redraw problem. > + <li>Fixed bug: package module not copy all resource files. > </ul> > > <h2><a name="0.9.01">Changes in 0.9.01</a></h2> > > Modified: trunk/bitpim/src/package.py > =================================================================== > --- trunk/bitpim/src/package.py 2006-05-30 17:08:05 UTC (rev 3321) > +++ trunk/bitpim/src/package.py 2006-05-30 20:31:24 UTC (rev 3322) > @@ -214,7 +214,7 @@ > exts=exts+['.lbin', '.htb'] > if sys.platform=='darwin': > exts=exts+['.mbin', '.htb'] > - if os.path.splitext(srcfilename)[1] in exts: > + if os.path.splitext(srcfilename)[1].lower() in exts: > return srcfilename, destfilename > return None > > > > This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. > > > > _______________________________________________ > bitpim-cvs-checkins mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/bitpim-cvs-checkins >