| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Editra
Revision: 56102
Author: CJP
Date: 05 Oct 2008 20:59:24
Changes:Fix bug where files on drives mounted to /Volumes on OSX could not be opened.
Files:| ... | ...@@ -519,7 +519,11 @@ | |
| 519 | 519 | |
| 520 | 520 | if wx.Platform == '__WXMAC__': |
| 521 | 521 | if path[0] != "/": |
| 522 | path.pop(0) | |
| 522 | if path == 'Macintosh HD': | |
| 523 | path.pop(0) | |
| 524 | else: | |
| 525 | path.insert(0, 'Volumes') | |
| 526 | ||
| 523 | 527 | r_txt = os.path.sep |
| 524 | 528 | return r_txt + os.sep.join(path) |
| 525 | 529 |
| ... | ...@@ -16,7 +16,7 @@ | |
| 16 | 16 | if setup != None: |
| 17 | 17 | setup( |
| 18 | 18 | name='FileBrowser', |
| 19 | version='0.9', | |
| 19 | version='1.0', | |
| 20 | 20 | description=__doc__, |
| 21 | 21 | author=__author__, |
| 22 | 22 | author_email="cprecord@editra.org", |
| ... | ...@@ -1,4 +1,4 @@ | |
| 1 | 1 | Name=FileBrowser |
| 2 | 2 | Author=Cody Precord |
| 3 | 3 | Description=Provides a file browser side panel |
| 4 | Version=0.9 | |
| 4 | Version=1.0 |
| ... | ...@@ -2,6 +2,10 @@ | |
| 2 | 2 | Author: Cody Precord |
| 3 | 3 | License: wxWindows |
| 4 | 4 | |
| 5 | Version 1.0: | |
| 6 | ||
| 7 | - Fix not being able to open files on drives mounted to Volumes on OSX | |
| 8 | ||
| 5 | 9 | Version 0.9: |
| 6 | 10 | |
| 7 | 11 | - Syncronize browser to file when first shown |