Skip to content
ChangeLog 148 KiB
Newer Older
Florent's avatar
Florent committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
Weboob 1.1 (2016-02-11)

	General
	* Last release with python 2.6 support
	* New CapShop capability (#1662)
	* New shopoob application
	* Add new 'weboob' script to find applications
	* New APIBrowser class
	* Add a contrib script to help forking weboob
	* New WEBOOB_DATADIR environment variable

	General: removed modules
	* Removed grooveshark module: website is closed
	* remove module hellobank, use bnporc instead

	General: new modules
	* New Amazon Store Card banking module (CapBank) (#1698)
	* New bforbank module https://www.bforbank.com (CapBank)
	* New kiwibank module https://www.kiwibank.co.nz (CapBank)
	* New s2e (Employee Savings Plans) Support for Esalia, Capeasi, "BNP
	  Paribas epargne & Retraite Entreprises" and "HSBC Epargne et Retraite en
	  Entreprise" (CapBank)
	* New Victoria's Secret store credit card module (CapBank) (#1732)
	* New agendaculturel module http://www.agendaculturel.fr (CapCalendar)
	* New residentadvisor module https://www.residentadvisor.net (CapCalendar)
	* New happn module https://www.happn.com (CapDating)
	* New freegeoip module https://freegeoip.net (CapGeolocIp)
	* New ipapi module http://ip-api.com (CapGeolocIp)
	* New entreparticuliers module http://www.entreparticuliers.com (CapHousing)
	* New explorimmmo module http://www.explorimmo.com (CapHousing)
	* New logicimmo module http://www.logic-immo.com (CapHousing)
	* New virginradio module http://www.virginradio.fr (CapRadio)
	* New Ideel module http://www.ideel.com (CapShop) (#1733)
	* New MyHabit module https://www.myhabit.com (CapShop) (#1734)
	* New Victoria's Secret module https://www.victoriassecret.com (CapShop) (#1731)
	* New blablacar module https://www.blablacar.fr (CapTravel)
	* New dhl module http://nolp.dhl.de (CapParcel)
	* New dpd module https://tracking.dpd.de (CapParcel)
	* New gls module https://gls-group.eu (CapParcel)
	* New itella module http://www.itella.fi (CapParcel)
	* New funmooc module https://www.france-universite-numerique-mooc.fr (CapVideo)
	* New rmll module http://video.rmll.info (CapVideo)
	* New vine module https://vine.co (CapVideo)
	* New ilmatieteenlaitos module http://ilmatieteenlaitos.fi (CapWeather)
	* New ldlc module https://secure.ldlc.com and https://secure.ldlc-pro.com (CapBill)
	* New t411 module https://www.t411.in (CapTorrent)

	Core
	* Repositories update: display a message when all modules are up-to-date
	* Log full backtrace on module build error
	* Update windows installation (#1668)
	* Better detection of gpgv.exe location
	* Fix issues when using NamedTemporaryFile on windows
	* Add a datadir option, handle WEBOOB_DATADIR
	* Use gpg by default rather than gpgv for signature verification
	* Create empty temporary GPG homedir
	* Exclude backend using instance_name instead of module_name
	* Try to be consistent in variable name between backends and modules
	* Convert StopIteration for PEP 479

	Doc
	* Account() constructor does not take an id
	* Fix symlink creation in setup.rst
	* Use browser2 in module documentation
	* Add few docstrings in core and browser

	Filters
	* Add Eval filter, for arithmetic expressions
	* Add Slugify filter
	* Add a JSValue filter to look for literals
	* Add Decode filter, to decore urlencoded strings
	* CleanText: add Unicode normalization
	* Regexp: nth param can now be '*' to find all
	* Attr: fix error message
	* CleanText: fix paramter name "children"
	* DateTime: handle TypeError exception raised by parse_date
	* Duration: correct '_regexp' attribut name
	* Dict: several improvements
	* Join: improve it to work like join command
	* Join: add ,ewMone, addBefpre, addAfter parameters
	* Async: if AsyncLoad parameter is None, do not try to open it
	* CleanDecimal: convert INT, float and long (and not only str)
	* Attr: fix an error message
	* Dict: handle TypeError in parsing
	* Time: Update regexp to catch more values

	Browser
	* Add comments on Form class
	* New unit tests
	* New api for content, encoding, and document building
	* Add ChecksumPage class
	* Cleaner way to get rid of BOM for CsvPage
	* Fix wrong encoding detection logic
	* Detect XML encoding
	* Enable passing the path to a CA file to Browser.VERIFY
	* Add an asset method to get absolute path of module local files
	* Browser.VERIFY can now be a module local file
	* Fix compatibility with python 2.6 in HTMLPage (#1651)
	* TableElement: fix count columns when there is an attribute "colspan"
	* Do not display urllib3 warning if there is no TLS certificate verification
	* Add an IPhone profile
	* Add a GoogleBot profile
	* Add method Browser.set_profile
	* DomainBrowser: ability to give the baseurl in constructor
	* Add LoginBrowser.do_logout() method
	* Handle "Refresh" meta tag in HTMLPage, with a REFRESH_MAX option
	* Add an absurl method to Page
	* Fix crash when using HEAD on a page-matching URL
	* Add BrowserQuestion exception (ask user to change config when raised)
	* Add 'replace' xpatch function in HTMLPage
	* Introduce new DictElement class
	* Add some JSON helpers
	* Strip data on CsvPage
	* Better control of HTTP referrer
	* Allow changing the Session class
	* Pass async/sync callbacks in the same way
	* Bump Firefox version to next ESR (38)
	* Fix documentation: use HTMLPage instead of Page
	* Add StatesMixin class to store state of a browser
	* Change worker pool size after session init
	* Allow to force method in URL.go (pass argument to location())
	* Support using id in HTMLPage.get_form()
	* Rename async parameter to is_async

	Old Browser
	* Do not use PROTOCOL_SSLv3 as it is deprecated, use bad named
	  PROTOCOL_SSLv23 instead
	* Add BaseBrowser.get_page method (don't change the location)
	* Add a StateBrowser to store cookies in storage
	* CSVParser: catch exceptions
	* Disable lowsslcheck if there is a proxy, as ssl doesn't deal with it

	Capabilities
	* Add the possibility to define Field type argument as a string
	* Create enum. Use it in calendar and housing (code factorization)
	* Add a way to instantiate an object from a dict of its fields values
	* Add russian ruble and XOF currencies
	* Add SGD, BRL, JPY and MXN in currencies

	Capabilities: Audio
	* Move specific audio filters from capabilities/audio.py to tools/capabilities/audio/audio.py
	* Add specific filters to create audio objects id
	* Do not require an id in constructors

	Capabilities: Bank
	* Fix StatusField to be a BaseObject
	* Change quantity type to decimal number
	* Better explanation for Investment class
	* Introduce new type Account.TYPE_LIKE_INSURANCE
	* Add credit limit, payment due date and amount for credit card bank
	  accounts (#1717)
	* Add IBAN properties
	* Add card number and commission in Transaction
	* Add original_amount and original_currency in Transaction
	* Add country in Transaction
	* Add Transaction.investments and Investment.vdate attributes
	* Add Account.valuation_diff attribute
	* Add Account.number attribute

	Capabilities: Bill
	* Inherits Detail and Bill from Currency
	* Remove Bill.idparent attribute
	* Add Bill.vat attribute

	Capabilities: Calendar
	* Add timezone parameter to calendar event in order order do get the good date/hours in ical exports
	* Add a field 'summary' to Query object
	* Add ticket status in BaseCalendarEvent
	* Add a ticket field to Query
	* Add BaseCalendarEvent.timezone attribute
	* Add new categories

	Capabilities: Cinema
	* A person may have now several roles in a movie

	Capabilities: Collection
	* Do not require an params in constructor

	Capabilities: Contact
	* Set default value of Contact.profile to OrderedDict()

	Capabilities: Dating
	* Fix API to store optimization name in object ID

	Capabilities: Gallery
	* Correct method name: s/search_gallery/search_galleries/

	Capabilities: GeolocIp
	* Add osmlink field

	Capabilities: Housing
	* Support new type SHARING

	Capabilities: Messages
	* Remove _Message and _Thread and use strings in Field instead

	Capabilities: Recipe
	* Do not force to use id in object constructor

	Capabilities: Torrent
	* Remove name mandatory parameter in constructor

	Capabilities: Thumbnail
	* Thumbnail now inherits of _BaseImage

	Capabilities: Weather
	* Do not require an id in constructor
	* Fix default value for date
	* Cosmetics in temperature formatting

	Applications
	* Backport check_output function for python 2.6
	* Remove wconio dependency on win32 platform
	* Allow ResultsCondition to compare timedelta
	* Encode properly output in console.py (#1673)
	* Fix BrowserSSLError catch in ConsoleApplication (#1702)
	* Handle attribute error when stdout does not habe encoding attribute
	* If backend name is already taken, suggest the first available one with
	  the same base
	* Formatters: use weboob.tools.misc.guess_encoding instead of utf-8
	* Formatters: manage tty colummns while displaying text
	* Use os.devnull and binary flag for windows compatibility

	Applications: REPL
	* Fix a crash when ReplApplication.do() is called with a function
	* Create a message for 403 errors

	Applications: boobank
	* Format: ISIN is a 12 letter word
	* Format integer for quantity
	* Sometines the full code is not available. Display description instead
	* Add a command 'Budgea' to export accounts and transactions
	* Fix investment display when some fields are empty
	* Identify credit card for each transaction in OFX export

	Applications: boobill
	* Use do_ls to cache objects in REPL
	* Add binary mode for writing. Fix file downloading on windows

	Applications: boobcoming
	* Fix crash without end_date (#1667)
	* Add search by summary
	* Print ticket status
	* Add search by ticket status
	* Handle error correctly in do_attends
	* Add a load command
	* Improve ical export (end lines with '\r\n', as RFC says)
	* Add timezone in ical export
	* Display price as float
	* Improve date display
	* Do not crash during export of an unknown event

	Applications: cineoob
	* Give roles informations in persons_in_common and movies_in_common
	* Support several roles in the same movie for an actor
	* Movies in common are now sorted by release year
	* Fix problem with stream parameter in request.get in python-requests v2.5
	  (#1683)

	Applications: flatboob
	* Display backend in city choice

	Applications: geolooc
	* Fill OpenStreetMap link

	Applications: havedate
	* Store optimization name in object ID

	Applications: parceloob
	* Clean cached objects before getting new ones

	Applications: qcineoob
	* Add 'view' and 'view in new tab' buttons for all search results
	* Add 'view thumbnail' for movie and person search results
	* Factorisation of events in search results
	* Persons in common implemented in movie page
	* Movies in common implemented in person page
	* Support several roles in the same movie for an actor
	* Better display of search results, spaces added
	* Increase biography field size
	* Movies in common are now sorted by release year
	* Better user input validation for same-person movies in common

	Applications: qcookboob
	* Implement tab navigation (#1290)
	* Fix bug when thumbnail_url is empty

	Applications: radioob
	* Can now download full album
	* Add file in search subcommand

	Applications: videoob
	* Fix the problem with streamed calls on requests (#1683)
	* Display download subcommand in debug mode

	Applications: weboorrent
	* Fix formatter for info command

	Applications: weboob-config
	* Improve info command to allow json formatting
	* Put all config details in a dictionnary
	* Format capabilities as JSON array
	* Add installation status in modules subcommand
	* Prompt user to accept an untrusted keyring (#771)
	* Add module_name param in add_backend to allow command line interaction
	* Update help of "add" command

	Tools
	* Move guess_encoding into weboob.tools.misc
	* Add a Javascript class
	* Avoid crash on UnicodeDecodeError with retry decorator

	Tools: bash-completion
	* Hide error (#1671)

	Tools: date
	* Supporting french month abbreviation without dot
	* Extend date_max_bump default value to 31 days in LinearDateGuesser and
	  ChaoticDateGuesser
	* Add some french translation
	* Parse french date with DMY order by default

	Tools: virtkeyboard
	* Fix not logical arguments order
	* Dump of tiles: save full image too
	* Allow to receive a list in get_symbol_code() method
	* Support pollution in coords attributes

	Contrib
	* Add a gtk appindicator for boobank
	* Remove bashisms in report_accounts.sh
	* weboob-generic: fix object listing when tomonitore is not set

	Contrib: downloadboob
	* Print link message only when needed
	* Fix new file detection
	* Support download of m3u8 files
	* Allow passing config and section filter on command line
	* Replace call to 'fill_video' by 'fillobj'

	Modules: 750g
	* 750g is now working using browser2 (#1706)
	* Fix: Only select the first thumbnail image
	* Fix: Site changed
	* Improve instructions parsing

	Modules: adecco
	* Bump to browser2

	Modules: agendadulibre
	* Add missing favicons
	* Adapt for timezone support
	* Do not crash when json included in webpage is not valid
	* Correctly retrieve start and end date

	Modules: allocine
	* Remove excessive quote_plus call on pattern to make multi-word search work again
	* Adapt for more informations in persons_in_common and movies_in_common
	* Fix: accents were causing problems in search
	* Handle videos from allocine
	* Handles showtimelist in allocine
	* Fix: bug while playing videos from external url
	* Fix: syntax error on allocine
	* Adapt for timezone support
	* Max rallocine rate is 5
	* Fix unicode warning

	Modules: allrecipes
	* Adapt to new version of website
	* bump to browser2

	Modules: amazon
	* Skip "In transit" orders. (#1684)
	* New discount: "Lightning Deal" (#1684)
	* Generate payment transaction if there aren't any (#1684)
	* Order charges xpath fix (#1684)
	* Amazon module: skip 'Not yet shipped' orders (#1699)
	* Amazon module is updated according to the website change (#1715)
	* Skip "On the way" orders at Amazon (#1716)
	* Support new version of Amazon order details header (#1721)
	* Retry Amazon requests after ReadTimeout exception
	* handle Timeout exception as ReadTimeout has been introduced in recent versions of requests
	* Add French Support and Shopoob compatibilities
	* Add french translations
	* Retry ConnectionError as well (#1742)
	* pep8 fixes
	* Support for a new payment layout and priceless items (#1764)
	* Scrape the updated website (#1808)
	* Update after site changes
	* New status to ignore
	* More shippings and discounts (#1853)
	* Retry getting an order page (#1876)
	* amazon bills
	* Fix: work with iter_resource, and use ISO currency codes instead of symbols

	Modules: ameli
	* Update after sites changes, and upgrade to new browser
	* Handle authentication errors
	* PaymentDetailsPage: use a simpler URL
	* Site was updated
	* details isn't implemented: remove dummy code
	* ameli: prevents crashes when no bills are available

	Modules: amelipro
	* Update after sites changes, and upgrade to new browser
	* Fix decimal bug

	Modules: americanexpress
	* Handling no amount on account
	* Add default date to beginning_debit_date
	* Handle new americanexpress site but only if there is only one card
	* Increase timedelta to guess real date
	* Handle US account
	* Amex is dumber and dumber ( increase time delta because amex have hard time to put the date in a good interval)
	* Fix parsing of rdate
	* Fixing card type
	* Removing useless id

	Modules: apec
	* Use https instead of http
	* Adapt to the new version of the website and use browser2

	Modules: arretsurimages
	* Fix: get videos titles in h1 (#1447)
	* Fix: correctly implement search and add a test (#1691)

	Modules: arte
	* Fix bug id was not well filled in info command and title was not filled
	* Adapt to browser2
	* Fix display bug during newly install
	* Default value must be key, not label
	* Fix bug when urls are not found
	* Fix bug when date is not available
	* Handle special characters in search
	* Fix arte concert (a fields has been removed fron json)
	* Handle special cases in json parsing
	* Do not raise 404 error while searching a video using an other site url
	* Fix program menu management
	* Fill id using a better value for arte cinema

	Modules: audioaddict
	* Fix description data removal from audioaddict API
	* Rename SKY FM to Radio Tunes
	* Add Fresca Radio

	Modules: aum
	* Search query string: replace %(lat)s and %(lng)s with position in my profile
	* Fix parsing of geo position

	Modules: axabanque
	* New login pages on axabanques (#1709, #1711)
	* account.id is now only paramNumCompte if there is not paramNumContrat
	* Handle expired password
	* Handling banned account
	* Do not try to recover transaction from DAT account
	* axabanque fix duplicate accounts id
	* Handling duplicate id for account using Jsp Id
	* Stop parsing history of investment accounts
	* Fixing random number formating
	* Add error page

	Modules: banqueaccord
	* Fix inconsistent history on loan accounts if there is no init date
	* Labels of login fields changed

	Modules: banquepopulaire
	* Support new authentication on some region websites
	* Fix login on new website (needs upper case login)
	* Fix crash for new cards with no debited history
	* Break the new protection
	* Support full list of accounts (#1360)
	* Fix crash in a particular case of navigation
	* Supporting new account page
	* Parsing last connection date correctly
	* Fix navigation when passable unavailable page is displayed before login
	* Support case where user may accept TERMS_OF_USE
	* No history if account has no prev_balance
	* Apply alsace and lorrainechampagne fusion in bpalc in banquepopulaire module
	* Add Investment accounts
	* Correctly return an iterator even if this isn't an investment account
	* Fix crash on empty field banquepopulaire investment
	* Add life insurance investment
	* Skip message pages to get_investment on banquepopulaire
	* Fix a crash on iter_accounts after an investment on banquepopulaire
	* Remove stored 'token' attribute from browser and fix navigation on banquepopulaire website
	* Correctly get token only when available
	* Handle error page to avoid global crashes
	* Fix to get token
	* Adding support for IBAN
	* Fix getting tokens on some pages
	* Attempt to fix cgu validation
	* Adding loan
	* Add unavailable page
	* Fixing useless id
	* Ignore \0 bytes in documents

	Modules: barclays
	* Add AssurancePage on which we don't support get_history
	* Fix barclays navigation
	* Handle suspended accounts
	* Fix bug when card is first account
	* Support more account types
	* Sorting transaction before returning
	* Fixing page payement to foreign currency
	* Remove print
	* Remove bad transactions ids

	Modules: biplan
	* Site changed
	* Detect invalid events
	* Do not crash when no time can be found
	* Add timezone / fix encoding and hours detection
	* Fix parsing error on start date

	Modules: bnporc
	* Fix to get transactions when they are ordered by type
	* Get IBAN of accounts
	* Do not try to get IBAN for delegated accounts
	* Add investments to bnporc module
	* Handle corner case
	* Move old code for old site in a new folder
	* Add support for new bnp site
	* Move new browser into pp/
	* Parse transaction labels, and fix account's coming
	* bnp history not supported on life insurance
	* Investment not implemented for entreprise browser
	* bnp investment fix
	* Handle error message after login
	* bnp type life insurance on capitalisation accounts
	* Do not get investments from PEA Espèces
	* Handling account without history
	* bnp history always return an iterator
	* New bnp entreprise certhash
	* Switch to new website and several fixes
	* Correctly set IDs
	* Raise BrowserIncorrectPassword when user should use hellobank instead
	* Raise IncorrectPassword after 100 connections
	* WIP on new company bnp website
	* Adapt module to use Browser2
	* Add company browser
	* Fall back on old website for pro accounts
	* Add iban field for company accounts
	* New certificate
	* Fix compatibility with python2.6
	* Fix concerning banqueprivee subdomain
	* Handle website unavailable for history
	* Better handle of expired password
	* rename pp folder to ppold
	* Fix PEP8 E713
	* Support lifeinsurances on new website
	* Add authentification error code
	* Skip transaction without date
	* Adding support iban for some pro account
	* Automatically update password to the same one when the 100 connections threshold is reached
	* Type more accounts to get history and transactions investments on those
	* Revert fall back on oldwebsite for pro accounts
	* Add a page to renew password
	* Support checking type
	* Adding loan for crédit immobilier
	* Calculate IBAN key if messing
	* Add Hellobank support
	* Use shorter id
	* Revert "[bnporc] use shorter id"
	* Handle investment and history on market accounts
	* Fix crash if bnp throws 500 HTTP status code
	* New connection threshold page url for hellobank
	* Valution_diff on market accounts
	* Add number to iter_accounts
	* Fixing bad id for coming transaction
	* Prevent us from crashing when bnp crashes

	Modules: boursorama
	* Add investment
	* Support market investments
	* Fix duplicate entry on card account
	* Cleaner way to iterate
	* Better explanation for Investment class
	* Fix website changes (virtual keyboard, accounts list) (#1696)
	* Ignore moneycenter accounts
	* Minor fix
	* Introduce new type Account.TYPE_LIKE_INSURANCE
	* Use two_authentication with BrowserToBeContinued instead of raw_input
	* Use StateBrowser, s/BrowserToBeContinued/BrowserQuestion/ and coding style fixes
	* Remove text after card number if any
	* Raising incorrecte password when profil is incomplete
	* Fix CC history for boursorama
	* Update hash of boursorama's certificate
	* Fix duplicate accounts
	* bourso new investment page and fix parsing
	* Fix crash when there is more data in the cell
	* Fix PEP8 E713
	* Fix parsing of unit price
	* Fix investment link parsing
	* Ignore immediate debit cards
	* Investments on lifeinsurance transactions
	* Fix pagination of lifeinsurance history
	* Ignore promotional fake accounts
	* Fix parsing some special market accounts
	* Valuation diff on lifeinsurance accounts
	* Fixing bad id transactions
	* Do not use useless id
	* Fixing false id in transactions
	* Fix parsing of investment label
	* Fall back on old website if we are on the new one

	Modules: bouygues
	* Rewrite backend using browser2 (#1970 and #1978)
	* Add support for bill on bouygues
	* Avoid useless login
	* Handle website modifications
	* Home page uses https (#2510)

	Modules: bp
	* Support professional accounts
	* Update upstream certificate hash (#1702)
	* Handling when website have an error
	* Fix parsing of virtual keyboard url
	* Add a page to pro website
	* Catch a no online banking service at login
	* Set type of accounts on professional accounts
	* Identify credit card for each transaction
	* Update to new certificate
	* Adding IBAN support for banque postal pro
	* Add a regexp on withdrawal labels
	* Parse IBAN for personal accounts
	* Do not crash if there is no IBAN for an account
	* Iban in unicode
	* Fix for newer pdfminer versions
	* Fixing bad account type on pro  website
	* Sorting transactions before returning them
	* Fix for new API
	* Only call initialize if needed
	* Fix get_pages usage for new API
	* Fix newapi import
	* Fixing fake id for transactions
	* Fixing pdf parse with new api
	* Fixing no RIB

	Modules: bred
	* Support new website of bred
	* Fix compatibility with Decimal of python2.6 (#1685)
	* The 'categorie' key isn't always in json
	* Detection of disabled accounts
	* Correctly strip currency code
	* Correctly deal with cookies storage
	* Add type Account.TYPE_DEPOSIT
	* Catch technical error at login
	* Fix duplicates accounts
	* Fix PEP8 E713
	* Get IBAN on accounts
	* Dd certash
	* Handle multiple universes
	* Oops fix mistake

	Modules: caissedepargne
	* Fix getting card accounts on old website
	* Set type on card transactions
	* Support Banque BCP which uses same website than caissedepargne
	* Do not force TLSv1 anymore as in some cases it doesn't work
	* Investment on lifeinsurance and market account
	* Add balance on NUANCE
	* Fix IndexError related to investment feature
	* Handling website error for market place
	* Fixing index error when checking if we are on error page
	* Fix BrowserUnavailable when browser is on market pages
	* Iban on cassedepargne accounts
	* Add new certhash
	* Ignoring CB transaction aggregation
	* Try to type more accounts
	* Adding support for saving type
	* Prevent crash on market
	* Get more investments
	* Valuation_diff on market accounts
	* Fix crash if there are several market accounts
	* Fix not authorized to read market accounts
	* Fix accounts parsing on banquedelareunion
	* Adding compte titre type
	* Fixing leaving investment space

	Modules: canalplus
	* Correctly fix the problem with streamed calls on requests (#1683)

	Modules: carrefourbanque
	* Fix accounts parsing
	* Fix 404 on history and now support "compte livret"
	* Fix when account balance is negative

	Modules: cci
	* Update for Join filter changes
	* Site changes

	Modules: chronopost
	* Status guessing

	Modules: cic
	* Handle new certificate
	* Supporting mouvements.html and situation_financiere.html
	* Fix list index out of range on iter_accounts
	* Rewrite module to browser2 (based on creditmutuel)
	* Cic can have letter in login
	* Add IBAN on cic
	* Fixing cic account with "Contre-valeur"

	Modules: citelis
	* Certificate hash change

	Modules: citibank
	* Do not wait for transactions if there's none. (#1661)
	* Credit limit, payment due date and amount for Citibank. (#1719)
	* Use V8 for login (#1743)
	* Relogin when the website returns garbage instead of a PDF. (#1820)
	* Site was updated. Closes (#1820)
	* Parse thousands correctly in the statements. (#1984)
	* Backport check_output for 2.6

	Modules: cmb
	* Fix detection of authentication fail
	* Add deposit type in CMB module
	* Fixing when login is obsolete
	* Fixing cmb with some pro module
	* Quick fix for multiple space.

	Modules: cmso
	* Add pro browser to cmso bank module
	* Correctly raise instance of BrowserIncorrectPassword
	* Correctly handle 500 error during login
	* Fix parsing of market accounts and factorization of the Transaction class
	* Fix website changes on auth page
	* Go to subscription page before get accounts for some users
	* Use a local instance of LinearDateGuesser instead of global one
	* Support pagination of transactions
	* Fix: coma are used as decimal separators
	* Correctly handle expired sessions
	* Fixing duplicate entry
	* Handle double site type on the pro side
	* Clean + blackbox compatibility on cmso pro

	Modules: colisprive
	* Rewrite for browser2
	* Fix history parsing

	Modules: cragr
	* Fix parsing of labels with new crédit agricole website
	* Fix parsing of raw transaction text
	* Handle useless pages to prevent being redirected to mobile version
	* Get IBAN on accounts
	* Detect connection errors
	* Add new labels to market type
	* Fix account list parsing, skip irrelevant account
	* Fix getting history for card accounts
	* Fix import of Account
	* Add tdbgestion page
	* The type of PEL accounts is now SAVINGS instead of MARKET.
	* Refactor
	* Support life insurance accounts
	* Handle sessionSAG parameter
	* Support market accounts
	* Handling bad investement parsing
	* Handling bad value for investement
	* Fix parsing on cragr investment
	* Fix av investment parsing
	* Do not return NotAvailable if value == 0.0
	* Support loan accounts
	* Fix double clean of investment amounts
	* Add account types
	* DAV PEA is a checking account
	* Handle new login navigation on some sub websites
	* Fix incorrect password on new login
	* Add page to fix login access
	* Fixing categorization
	* Cragr perimeters
	* Adding new saving account name
	* Fix infinite loop when a crash occurs on perimters
	* Fix when some perimeters are crashing
	* Fix broken perimeters
	* Fix in case of CGU poping when changing perimeters
	* Fix card accounts balance parsing
	* Fix mistake

	Modules: creditcooperatif
	* Update regexp to support SEPA transfers
	* Fix exception in some cases
	* Fix regexp for external transfer
	* Handle investment
	* Correctly return an iterator even if this isn't an investment account
	* Add attribute _inv to pro accounts

	Modules: creditdunord
	* Handle the case when the creditdunord CB label is "OPERATION SUR CARTE" (#1712)
	* Remove spaces from IDs
	* Handling account with no history
	* Handling no details for this account
	* Fix crash on accounts which doesn't support history
	* Handle duplicate accounts
	* courtois: we now skip transactions without date even on pro accounts
	* Fixing wrong id when no details for an account
	* Trying to avoid duplicate accounts
	* Fix courtois we now always return iter for investment
	* Handle IBAN
	* Fix auth fail url
	* Add VirtualKeybord auth
	* Change lifeinsurance accounts type
	* Removing false id for transactions
	* Fix life insurance accounts and add valuation_diff
	* Raise BrowserIncorrectPassword is password isn't digits
	* Fixing history for account
	* Fixing pro account
	* Fix assert for password
	* Avoids infinite loop in case of fail login

	Modules: creditmutuel
	* Handle new useless pages
	* Updat transfer method
	* Save and load state of browser into storage
	* Handle refresh on empty page
	* Handling already logged
	* Handling html page
	* /cmmabn/fr/ is a valid login page
	* If do_login() is called, force go on the login page
	* Handle refresh on LoginPage too
	* Handle disconnection
	* Fix accounts parsing
	* Fix parsing of 'soft' parts of account names
	* Fix parsing of balances if accounts page has been configured by user to display balance in several currencies
	* Clear cookies before to login
	* Better form detection
	* Increase timeout
	* Clean transactions label
	* Parse contactless payments ("PSC") transactions
	* Handling orignal currency
	* Using TableCell to handle dynamic transaction list
	* Ignore ELEVE CARTE line
	* Add account types patterns
	* Add type pattern for young accounts
	* Investment for market accounts
	* Fix crash when trying to find reale amount of market accounts
	* Fix portefeuille account parsing
	* Add IBAN on creditmutuel accounts
	* Fix parsing market accounts
	* Fix parsing of unitprice
	* Fix skipping market summary fake account
	* Fix parsing valuation of a market account
	* get more iban
	* Fix parsing isin codes in special cases
	* Handle new website
	* Redirect page added
	* Fix label
	* Fix parsing label of accounts on old websites
	* Fix wrong valuation on market accounts if several are present
	* Valuation_diff on market accounts and new balance for PEA
	* Account typing
	* Fix blackbox compatibility
	* Fetch more transactions
	* Fix detection if transactions are coming or not
	* Fix when last_debit is None
	* New accounts type
	* Life insurance on old website
	* Fill the rdate field on life insurances history

	Modules: cuisineaz
	* Site changed / rewritten using browser 2

	Modules: dailymotion
	* Fix dailymotion "search" return bug message
	* Fix to get video url

	Modules: delubac
	* Rewrite module with browser2 on new website
	* Handle accounts and transactions
	* Website require a digit password

	Modules: ovh
	* Adding bill for ovh

	Modules: edf
	* Correctly set amount and currency on bills

	Modules: ehentai
	* original_title does not exist anymore
	* There is no more description available
	* Update cardinality field name
	* Use Thumbnail object

	Modules: feedly
	* Favicon transparency and remove JPEG artifacts
	* Use new DictElement object
	* Improve tests
	* Iimprove login management
	* Fix login
	* Do not crash when there is no title in article

	Modules: fortuneo
	* Detection of accounts type
	* Support investments detail
	* Add page to browser: pea account type
	* Introduce new type Account.TYPE_LIKE_INSURANCE
	* Update changed certificate
	* Fix fortuneo module now support "compte especes"
	* Fix support of PEA accounts
	* Fixing empty performance
	* Fixing 2nd detail line who was considered like investment
	* Fixing bad int values on investment
	* Fetch history of life insurances
	* compte-espaces is a AccountHistory page
	* Correctly set type of market accounts
	* Fix savings account type
	* Fixing closed life insurance account on fortuneo
	* Raise IncorrectPassword when there is new id
	* Throwing error when an sms is required to access information
	* Switching error to browser incorrect password
	* Fixing listing account
	* Fix crash when parsing accounts without balance
	* Fix navigation
	* Support deferred debit cards
	* Set type of card transactions
	* Fix new pass required detection

	Modules: francetelevisions
	* Fix "search" always return empty list
	* Correctly fix the problem with streamed calls on requests (#1683)
	* Remove "latest" feature
	* Fix pluzz's search (1700)
	* Add option to get video from an url
	* Handle lastest replay videos
	* Fix bug search date in bad balise
	* Fix bug: we can only search one time
	* Use new DictElement object
	* Fix: site changed (#1855)
	* Fix: site changed again (#1868)
	* Update tests
	* Fix bug while getting video from some url
	* Fix error when video url is none
	* Handle url from francetvinfo website

	Modules: freemobile
	* Correctly handle wrong credentials
	* Fix parsing of bills urls
	* Force UTF-8 encoding with the standard mechanism
	* Enable bills filtering for multi-account
	* Fix subscription date parsing for multi-account
	* Fix forfait name parsing for multi-account

	Modules: ganassurances
	* Rewrite ganassurance with browser2 and fix auth and history
	* Add missing date column title for cards history
	* Fixing statefull website with account's link changing
	* Fixing coming date with an other label
	* Change AccountsPage xpath to only get personal finances accounts
	* SSL is not supported anymore
	* Add changing pass/id page

	Modules: googletranslate
	* Fix code used by Google Translate for Greek

	Modules: groupamaes
	* Use a local instance of LinearDateGuesser instead of global one
	* Should now always find accounts
	* Fix : site changed

	Modules: hellobank
	* Fix permissions, encoding and copyrights
	* Do not try to get IBAN from life insurance accounts
	* Do not try to get history of life insurance accounts
	* Allow transaction parsing across multiple pages
	* remove module, use bnporc instead

	Modules: hsbc
	* Handling when website is gone away
	* Fixing shared accounts_list
	* Fix new list of accounts and new URLs
	* No history on loan accounts
	* Handling duplicate account id (#2114)
	* Submit two useless form to mimic browser
	* Fix date parsing
	* Add coming for cards
	* Do not use fake id for transactions from hsbc
	* Allow hsbc user to have more than 8 length password
	* Fixing credit is positive on some account

	Modules: hybride
	* Fix: site changed
	* Fix: Date parsing
	* Fix: site changed again
	* Fix bug when there is no end date
	* Iimprove end_date management
	* Update to support timezone
	* Use Decode filter to get the good id
	* Simplify id

	Modules: imdb
	* Fix: python datetime is locale-dependent
	* Fix: 'N/A' value in movie release date

	Modules: imgur
	* Port to browser2
	* Implement CapGallery

	Modules: ina
	* Bump to browser2
	* Handle CapAudio