]> git.phdru.name Git - bookmarks_db.git/blob - doc/ChangeLog
f13febffcd715e682856ab3c04a2ef89b36329bd
[bookmarks_db.git] / doc / ChangeLog
1 Version 5.2.3 (2024-03-03)
2
3    Feat(Robots/bkmk_rrequests): Report 40x and 50x errors.
4
5    Fix HTML pasrer based on Bs4: Find "shortcut icon".
6
7 Version 5.2.2 (2024-03-03)
8
9    Robots/bkmk_rrequests: Add request headers.
10
11    Robots/bkmk_robot_base: Process "data:image/" icons.
12
13 Version 5.2.1 (2024-03-02)
14
15    Speedup second access through proxy.
16
17 Version 5.2.0 (2024-03-02)
18
19    For the robot based on requests allow to use a proxy.
20
21 Version 5.1.0 (2024-03-01)
22
23    Robot based on requests.
24
25 Version 5.0.0 (2023-11-22)
26
27    Python 3.
28
29    Report redirects and set URLs.
30
31    Delete URLs.
32
33    Remove BeautifulSoup.py (use globally installed).
34
35 Version 4.6.0 (2014-07-06)
36
37    Split simple robot: separate network operations and
38    URL handling/HTML parsing.
39
40    Change parse_html to parse strings, not files.
41
42    Split parse_html/__init__.py into __main__.py.
43
44    Adapt JSON storage to recent Mozilla export format.
45
46    Add ChangeLog.
47
48    Allow parameters in BKMK_* environment variables; for example,
49    BKMK_ROBOT=forking:subproc=urllib or
50    BKMK_STORAGE=json:filename=bookmarks_db.json.
51
52    Pass subproc parameter to the subprocess to allow different robots.
53
54    Add a new robot based on urllib2.
55
56 Version 4.5.6 (2014-01-14)
57
58    Remove absolute directory ~/lib to make it portable.
59
60 Version 4.5.5 (2013-12-05)
61
62    Parse <meta charset="...">.
63
64 Version 4.5.4 (2013-11-23)
65
66    Published through git/gitweb.
67
68 Version 4.5.3 (2013-07-26)
69
70    Minor tweak in Makefile.
71
72    Switched to git.
73
74 Version 4.5.2 (2012-09-24)
75
76    Removed svn:keywords.
77
78    Handle redirects with codes 303 and 307.
79
80    Fixed a bug in handling place: URIs (do not append '//').
81
82 Version 4.5.1 (2011-12-28).
83
84    Read/write mozilla-specific date/time format in json storage.
85
86 Version 4.5.0 (2011-12-18).
87
88    Encode international domain names with IDNA encoding.
89
90    Adapted to different Mozilla 'place' URIs.
91
92 Version 4.4.0 (2011-01-07).
93
94    Moved BeautifulSoup.py and subproc.py from Robots/ to the top-level
95    directory.
96
97    Moved parse_html.py and its submodules to a separate parse_html package.
98
99    Added statistics code to parse_html, got a statistics on parser
100    success/failrure rate, reordered parsers.
101
102    Removed old cruft.
103
104 Version 4.3.1 (2011-01-03).
105
106    Get favicon before HTML redirect (refresh).
107
108 Version 4.3.0 (2011-01-01).
109
110    Robots no longer have one global temporary file - there are at least two
111    (html and favicon), and in the future there will be more for asynchronous
112    robot(s) that would test many URLs in parallel.
113
114 Version 4.2.2.
115
116     Added HTML Parser based on lxml.
117
118 Version 4.2.1 (2010-08-12).
119
120    Added HTML Parser based on html5 library.
121
122 Version 4.2.0 (2010-08-11).
123
124    New storage: json; it allows to load and store Mozilla (Firefox) backup
125    files.
126
127 Version 4.1.2
128
129    Process http error 307 as a temporary redirect.
130
131 Version 4.1.1 (2008-03-10)
132
133    Catch and report all errors.
134
135    Consider application/xhtml+xml as HTML.
136
137    Better handling of exceptions while looking up the icon.
138
139    Recode HTML entities.
140
141    Always use utf-8 as the default encoding.
142
143 Version 4.1.0 (2008-01-14)
144
145    Parser for HTML based on BeautifulSoup.
146
147    Changed User-agent header: I saw a number of sites that forbid
148    "Mozilla compatible" browsers. Added a number of fake headers to pretend
149    this is a real web-browser - there are still stupid sites
150    that are trying to protect themselves from robots by analyzing headers.
151
152    Handle redirects while looking for the icon.
153
154    Handle float timeouts in HTML redirects.
155
156    Minimal required version of Python is 2.5 now.
157
158 Version 4.0.0 (2007-10-20)
159
160    Extended support for Mozilla: charset and icon in bookmarks.
161    Use the charset to add Accept-Charset header.
162    Retrieve favicon.ico (or whatever <link> points to) and store it.
163
164    The project celebrates 10th anniversary!
165
166 Version 3.4.1 (2005-01-29)
167
168    Updated to Python 2.4. Switched from CVS to Subversion.
169
170 Version 3.4.0 (2004-09-23)
171
172    Extended support for Mozilla: keywords in bookmarks.
173    Updated to m_lib version 1.2.
174
175 Version 3.3.2
176
177    parse_html.py can now recode unicode entities in titles.
178
179 Version 3.3.0
180
181    Required Python 2.2.
182
183    HTML parser. If the protocol is HTTP, and there is Content-Type header, and
184    content type is text/html, the object is parsed to extract its title; if
185    the Content-Type header has charset, or if the HTML has <META> with
186    charset, the title is converted from the given charset to the default
187    charset. The <HEADER> is also parsed to extract <META> tag with redirect,
188    if any.
189
190 Version 3.0
191
192    Complete rewrite from scratch. Created mechanism for pluggable storage
193    managers, writers (DB dumpers/exporters) and robots.