Commit Graph

32636 Commits

Author SHA1 Message Date
Kovid Goyal 6c8a8142bd Apply an easily identifiable pattern for bad catalog entries 2016-06-05 12:41:42 +05:30
Kovid Goyal c8374fd05b Normalize downloaded series name case 2016-06-05 12:18:00 +05:30
Kovid Goyal cbfb38ffae Amazon metadata download: Get series information from the amazon.com page, when available 2016-06-05 11:46:17 +05:30
Kovid Goyal 84c97d3cfa Ignore results that have ':free sampler' in their titles 2016-06-05 11:23:53 +05:30
Kovid Goyal 19c8784ad9 Use a single user agent string for amazon
Amazon returns CAPTCHA pages based on user agent sniffing, so use a
common user agent (IE II)
2016-06-05 11:20:44 +05:30
Kovid Goyal 68cc6ae288 Another variant of Amazon cover markup
Seems to be user agent dependent
2016-06-05 10:13:34 +05:30
Kovid Goyal 1c1aba239b Change the update notification download link to use https 2016-06-05 08:25:58 +05:30
Kovid Goyal dba833795f Bulk conversion dialog: Fix page margin settings being ignored when converting to DOCX 2016-06-04 16:26:33 +05:30
Kovid Goyal 0d810cc05d ... 2016-06-04 15:05:02 +05:30
Kovid Goyal c5f95e08b7 ... 2016-06-04 13:40:57 +05:30
Kovid Goyal 99cff6a41b Get rid of compiler warning 2016-06-04 12:50:58 +05:30
Kovid Goyal f7be73f523 Make the default shortcut for remove books Backspace on OS X since many mac keyboards have no delete key and the backspace key is labelled as delete 2016-06-04 12:29:44 +05:30
Kovid Goyal fb97ed4ee4 Dont use dateutil to parse dates known to be in the ISO 8601 format
dateutils parse() method is unstable, with behavior changes in minor
releases that break parsing of ISO 8601 dates
2016-06-04 11:15:59 +05:30
Kovid Goyal 1cfe7a6f3c Match parse_date() behavior for false date_strings 2016-06-04 11:09:27 +05:30
Kovid Goyal ae632d23cc Faster ISO 8601 parser 2016-06-04 11:00:46 +05:30
Kovid Goyal a96d7ac336 ... 2016-06-04 10:38:14 +05:30
Kovid Goyal 5b84dcb722 Edit Book: Fix a bug in the new text search facility that could cause searches to fail when searching from the current cursor position instead of the top of the file. Fixes #1588778 [Search with tags](https://bugs.launchpad.net/calibre/+bug/1588778) 2016-06-04 09:05:41 +05:30
Kovid Goyal 6f5cd87990 A module to parse ISO 8601 format dates
Based on pyiso8601, with modifications
2016-06-03 21:53:10 +05:30
Kovid Goyal c12196bd43 Dont unnecessarily duplicate code 2016-06-03 21:22:38 +05:30
Kovid Goyal a7ffb4de1b Treat YYYY-X-X as unambiguous as well 2016-06-03 21:05:09 +05:30
Kovid Goyal 8bbd389d0f Nicer error messages for unknown compression type 2016-06-03 20:53:06 +05:30
Kovid Goyal 67060de830 ... 2016-06-03 20:31:56 +05:30
Kovid Goyal b5cae785db Workaround for bug in dateutil 2.5.3 that causes parsing of ISO 8601 dates to break on systems where the date locale specifies that days come before months
See https://github.com/dateutil/dateutil/issues/268
2016-06-03 20:27:59 +05:30
Kovid Goyal ae1fbeff6c version 2.58.0 v2.58.0 2016-06-03 08:46:08 +05:30
Kovid Goyal 881fab7dd9 Ensure the secret does not have null bytes 2016-06-02 21:52:38 +05:30
Kovid Goyal e0e7adb6d5 Add a small note to the manual about the new text search tool 2016-06-02 17:45:58 +05:30
Kovid Goyal 298b664669 Implement text search for HTML files 2016-06-02 17:36:44 +05:30
Kovid Goyal 3c27f28fdb Speedup economist download by not downloading images from the article carousel 2016-06-02 17:32:57 +05:30
Kovid Goyal 7a9d29261d Edit Book: A text search tool for conveniently searching for text even if it crosses multiple HTML tags
Currently only the UI for the tool has been created, the actual smart
search logic has still to be implemented.
2016-06-02 12:45:46 +05:30
Kovid Goyal 1ae8d1766c Print some debug data when talking to win file dialogs in debug mode 2016-06-02 11:27:26 +05:30
Kovid Goyal 0988ea497b Merge branch 'patch-1' of https://github.com/probonopd/calibre 2016-06-02 08:17:14 +05:30
Kovid Goyal d8e131ad08 Use authentication for the named pipe in the windows file dialogs 2016-06-01 11:01:17 +05:30
Kovid Goyal 55aca490a4 Update Denver Post
Fixes #1587423 [Denver Post will not load content](https://bugs.launchpad.net/calibre/+bug/1587423)
2016-06-01 05:31:29 +05:30
Kovid Goyal f4b6ca4b27 Update Financial Times
Fixes #1587578 [Update to financial times recipes](https://bugs.launchpad.net/calibre/+bug/1587578)
2016-06-01 05:02:29 +05:30
probonopd 168e5a79d6 As per https://github.com/kovidgoyal/calibre/pull/508#issuecomment-222839885 2016-06-01 00:29:17 +02:00
probonopd 82addc8653 Correct spelling of tolino shine and vision devices 2016-05-28 14:21:38 +02:00
Kovid Goyal 57450e54e6 Fix for incompatibility with PyQt 5.6
For some odd reason PyQt 5.6 renames QUrl.None to QUrl.None_
None is not a keyword in python 2, so I assume this has to do with
python 3 compatibility
2016-05-26 20:24:39 +05:30
Kovid Goyal 94806c60db Add text based buttons in a list 2016-05-26 19:37:15 +05:30
Kovid Goyal 4294db3e46 Windows: Workaround for explorer shell extensions on windows that write to stdout
Use a pipe for reading output from the worker process instead of stdout.
Apparently there exist shell extensions that write to stdout. Le
bubbling sigh.
2016-05-26 18:25:27 +05:30
Kovid Goyal 3a32cb80b2 ... 2016-05-26 15:08:03 +05:30
Kovid Goyal 638ab15bf1 The button bar 2016-05-26 14:35:19 +05:30
Kovid Goyal b97992bb0f Convenience method to get reference to DOM node 2016-05-26 10:52:09 +05:30
Kovid Goyal e730b0a65e ... 2016-05-26 10:44:59 +05:30
Kovid Goyal db246496de Start work on viewer chrome 2016-05-26 10:36:08 +05:30
Kovid Goyal 9d46a5a053 ... 2016-05-25 19:38:19 +05:30
Kovid Goyal ddaa35a650 Show a loading message while the current html file is loading 2016-05-25 10:56:51 +05:30
Kovid Goyal ce6dd88255 ... 2016-05-24 11:48:52 +05:30
Kovid Goyal a33960c91c ... 2016-05-24 10:31:08 +05:30
Kovid Goyal a39fed6350 Edit Book: When jumping to next occurrence of a word, take language into account 2016-05-24 10:27:38 +05:30
Kovid Goyal 03c2c5ea89 Edit Book: Fix import of words into user dictionary not working 2016-05-24 10:10:19 +05:30