ikreymer / webarchiveplayer

NOTE: This project is no longer being actively developed.. Check out Webrecorder Player for the latest player. https://github.com/webrecorder/webrecorderplayer-electron) (Legacy: Desktop application for browsing web archives (WARC and ARC)
GNU General Public License v3.0
195 stars 20 forks source link

Unable to select WARC files in Open dialog #3

Closed machawk1 closed 9 years ago

machawk1 commented 9 years ago

I launch the app and am shown an Open dialog. I navigate to my WARCs but they are dimmed and not selectable.

OS X 10.10.2

Current binary (1.1.1?) from https://github.com/ikreymer/webarchiveplayer/blob/master/README.md .

screen shot 2015-03-18 at 5 39 10 pm

ikreymer commented 9 years ago

Oops, yeah, I can confirm this for me as well.. forgot to check other extensions.. probably a typo in wx.FileDialog constructor. Here's what it is currently (also had issues with .warc.gz / .arc.gz before):

wx.FileDialog(parent=self,
                               message='Please select a web archive (WARC or ARC) file',
                               #wildcard='(*.warc.gz*.arc.gz*.warc*.arc)|*.warc.gz*.arc.gz*.warc*.arc',
                               wildcard='WARC or ARC (*.gz; *.warc; *.arc)|*.gz; *.warc; *.arc',
                               style=style)

Hopefully just a typo here..

ikreymer commented 9 years ago

Yeah, just extra spacing.. (though still can't get it to accept .warc.gz;.arc.gz must do *.gz) 3adf10791c2982111e294f227e6472475c22ab13

(Updated the OS X binary)