]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - CHANGELOG.md
Merge remote-tracking branch 'upstream/v0.9' into latest
[github/shaarli/Shaarli.git] / CHANGELOG.md
1 # Change Log
2 All notable changes to this project will be documented in this file.
3
4 The format is based on [Keep a Changelog](http://keepachangelog.com/)
5 and this project adheres to [Semantic Versioning](http://semver.org/).
6
7 ## [v0.9.1](https://github.com/shaarli/Shaarli/releases/tag/v0.9.1) - 2017-08-23
8
9 The documentation has been migrated to ReadTheDocs:
10 - https://shaarli.readthedocs.io/
11 - edits are submitted as pull requests
12
13 ### Added
14 - Allow bulk link deletion
15 - Display subtags in the tag cloud
16 - Add an endpoint to refresh the token
17 - Add a token on every page
18 - Add a tag list view for management
19 - Add Note bookmarklet
20 - Add creation date when editing a link
21
22 ### Changed
23 - Documentation:
24 - Generate static HTML documentation with [mkdocs](http://www.mkdocs.org/)
25 - Host documentation on [ReadTheDocs](http://www.mkdocs.org/)
26 - Update documentation structure
27 - Update Makefile targets to:
28 - Build the docs locally
29 - Include the generated docs in the release archives
30 - Theme:
31 - Use the new theme as the default
32 - Rename the tag cloud template to `tag.cloud.html`
33 - Display visited links in grey
34 - Use only one search form in `linklist.html`
35 - Hide the "search links with these tags" option when an empty `searchtags` is passed to `tag.list.html`
36 - Improve HTTP header handling when hosting Shaarli with Docker behind a reverse proxy
37 - Searching for tags with an empty value returns untagged links only
38 - Set Travis environment to `precise` until the new `trusty` environment is ready
39
40 ### Removed
41 - Remove dead Pubsubhubbub code
42 - Disable the GitHub wiki (see changed/documentation)
43 - Remove Docker `dev` image and resources
44 - Theme:
45 - Remove the bottom "Sort by" menu in `tag.list.html`
46
47 ### Fixed
48 - Fix file existence check for `user.css`
49 - Limit selection to 2k characters when using the bookmarklet
50 - Fix JS error `uncaught type error`
51 - Fix Firefox Social button
52 - Use pinned PHP dependencies when generating release archives
53 - Make sure that the tag exists before altering/removing it
54
55 ### Security
56 - Add a whitelist for protocols for URLs
57
58
59 ## [v0.9.0](https://github.com/shaarli/Shaarli/releases/tag/v0.9.0) - 2017-05-07
60
61 This release introduces the REST API, and requires updating HTTP server
62 configuration to enable URL rewriting, see:
63 - https://shaarli.github.io/api-documentation/
64 - https://github.com/shaarli/Shaarli/wiki/Server-configuration
65
66 **WARNING**: Shaarli now requires PHP 5.5+.
67
68 ### Added
69 - REST API v1
70 - [Slim](https://www.slimframework.com/) framework
71 - [JSON Web Token](https://jwt.io/introduction/) (JWT) authentication
72 - versioned API endpoints:
73 - `/api/v1/info`: get general information on the Shaarli instance
74 - `/api/v1/links`: get a list of shaared links
75 - `/api/v1/history`: get a list of latest actions
76 Theming:
77 - Introduce a new theme
78 - Allow selecting themes/templates from the configuration page
79 - New/Edit link form can be submitted using CTRL+Enter in the textarea
80 - Shaarli version is displayed in the footer when logged in
81 - Add plugin placeholders to Atom/RSS feed templates
82 - Add OpenSearch to feed templates
83 - Add `campaign_` to the URL cleanup pattern list
84 - Add an AUTHORS file and Makefile target to list authors from Git commit data
85 - Link imports are now logged in `data/` folder, and can be debug using `dev.debug=true` setting.
86 - `composer.lock` is now included in git file to allow proper `composer install`
87 - History mechanism which logs link addition/modification/deletion
88
89 ### Changed
90 - Docker: enable nginx URL rewriting for the REST API
91 - Theming:
92 - Move `user.css` to the `data` folder
93 - Move default template files to a subfolder (`default`)
94 - Rename the legacy theme to `vintage`
95 - Private only filter is now displayed as a search parameter
96 - Autocomplete: pre-select the first element
97 - Display daily date in the page title (browser title)
98 - Timezone lists are now passed as an array instead of raw HTML
99 - Move PubSubHub to a dedicated plugin
100 - Coding style:
101 - explicit method visibility
102 - safe boolean comparisons
103 - remove unused variables
104 - The updater now keeps custom theme preferences
105 - Simplify the COPYING information
106 - Improved client locale detection
107 - Improved date time display depending on the locale
108 - Partial namespace support for Shaarli classes
109 - Shaarli version is now only present in `shaarli_version.php`
110 - Human readable maximum file size upload
111
112
113 ### Removed
114 - PHP < 5.5 compatibility
115 - ReadItYourself plugin
116
117 ### Fixed
118 - Ignore generated release tarballs
119 - Hide default port when behind a reverse proxy
120 - Fix a typo in the Markdown plugin description
121 - Fix the presence of empty tags for private tags and in search results
122 - Fix a fatal error during the install
123 - Fix permalink image alignment in daily page
124 - Fix the delete button in `editlink`
125 - Fix redirection after link deletion
126 - Do not access LinkDB links by ID before the Updater applies migrations
127 - Remove extra spaces in the bookmarklet's name
128 - Piwik plugin: Piwik URL protocol can now be set (http or https)
129 - All inline JS has been moved to dedicated JS files
130 - Keep tags after login redirection
131
132 ### Security
133 - Markdown plugin: escape HTML entities by default
134
135 ## [v0.8.4](https://github.com/shaarli/Shaarli/releases/tag/v0.8.4) - 2017-03-04
136 ### Security
137 - Markdown plugin: escape HTML entities by default
138
139
140 ## [v0.8.3](https://github.com/shaarli/Shaarli/releases/tag/v0.8.3) - 2017-01-20
141
142 ### Fixed
143
144 - PHP 7.1 compatibility: add ConfigManager parameter to anti-bruteforce function call in login template.
145
146 ## [v0.8.2](https://github.com/shaarli/Shaarli/releases/tag/v0.8.2) - 2016-12-15
147
148 ### Fixed
149
150 - Editing a link created before the new ID system would change its permalink.
151
152 ## [v0.8.4](https://github.com/shaarli/Shaarli/releases/tag/v0.8.4) - 2017-03-04
153 ### Security
154 - Markdown plugin: escape HTML entities by default
155
156 ## [v0.8.3](https://github.com/shaarli/Shaarli/releases/tag/v0.8.3) - 2017-01-20
157 ### Fixed
158 - PHP 7.1 compatibility: add ConfigManager parameter to anti-bruteforce function call in login template.
159
160 ## [v0.8.2](https://github.com/shaarli/Shaarli/releases/tag/v0.8.2) - 2016-12-15
161 ### Fixed
162
163 - Editing a link created before the new ID system would change its permalink.
164
165 ## [v0.8.1](https://github.com/shaarli/Shaarli/releases/tag/v0.8.1) - 2016-12-12
166
167 > Note: this version will create an automatic backup of your database if anything goes wrong.
168
169 ### Added
170 - Add CHANGELOG.md to track the whole project's history
171 - Enable Composer cache for Travis builds
172 - Save the last edition date for shaares and use it in Atom/RSS feeds
173 - Plugins:
174 - Add an [Isso](https://posativ.org/isso/) plugin to enable user comments on permalinks
175 - Allow defining init functions, e.g. for performing checks and error processing
176 - Add a Piwik plugin for analytics.
177 - Markdown: add warning notice regarding HTML rendering
178 - Meta tag to *not* send the referrer to external resources.
179
180 ### Changed
181 - Link ID complete refactoring:
182 - Links now have a numeric ID instead of dates
183 - Short URLs are now created once and can't change over time (previous URL are kept)
184 - Templates:
185 - Changed placeholder behaviour for: `buttons_toolbar`, `fields_toolbar` and `action_plugin`
186 - Cleanup `{loop}` declarations in templates
187 - Tools: hide Firefox Social button when not in HTTPS
188 - Firefox Social: show Shaarli's title when shaaring using Firefox Social
189 - Release archives now have the same structure as GitHub-generated archives:
190 - archives contain a `Shaarli` directory, itself containing sources + dependencies
191 - the tarball is now gzipped
192 - Plugins:
193 - Markdown: Parsedown library is now imported through Composer
194 - Minor code cleanup: PHPDoc, spelling, unused variables, etc.
195 - Docker: explicitly set the maximum file upload size to 10 MiB
196
197 ### Fixed
198 - Fix the server `<self>` value in Atom/RSS feeds
199 - Plugins:
200 - Tools: only display parameter description when it exists
201 - archive.org: do not propose archival of private notes
202 - Markdown:
203 - render links properly in code blocks
204 - bug regarding the `nomarkdown` tag
205 - W3C compliance
206 - Use absolute URL for hashtags in RSS and ATOM feeds
207 - Docker: specify the location of the favicon
208 - ATOM feed: remove new line between content tag and data
209
210 ### Security
211 - Allow whitelisting trusted IPs, else continue banning clients upon login failure
212
213
214 ## [v0.8.0](https://github.com/shaarli/Shaarli/releases/tag/v0.8.0) - 2016-10-12
215 Shaarli now uses [Composer](https://getcomposer.org/) to handle its dependencies.
216 Please use our release archives, or follow the
217 [installation documentation](https://github.com/shaarli/Shaarli/wiki/Download-and-Installation).
218
219 ### Added
220 - Composer is required to resolve Shaarli's PHP dependencies
221 - Shaarli now supports `#hashtags`
222 - Firefox social share now uses selected text as a description
223 - Plugin parameters can have a description in each plugin's `.meta` file
224
225 ### Changed
226 - Configuration is now stored as a JSON file
227 - Previous configuration format will be automatically updated (PHP -> JSON)
228 - Shaarli now defaults to cURL to fetch shaare titles
229 - URL cleanup: remove `PHPSESSID` parameter
230 - `nomarkdown` tag is no longer private, and now affects visitors
231 - Cleanup template indentation
232 - Rewrite bookmark import using a generic Netscape parser
233
234 ### Removed
235 - Shaarli no longer references Delicious in its description
236
237 ### Deprecated
238 - Shaarli configuration is not held as PHP globals anymore
239
240 ### Fixed
241 - Ignore case for tags in autocompletion and cloud tag
242 - Avoid generating empty tags
243 - Fix a Dockerfile syntax error
244
245 ### Security
246 - Fixed a bug preventing to change password
247 - XSRF token now generated each time a page is rendered
248
249
250 ## [v0.7.1](https://github.com/shaarli/Shaarli/releases/tag/v0.7.1) - 2017-03-08
251 ### Security
252 - Markdown plugin: escape HTML entities by default
253
254 ## [v0.7.0](https://github.com/shaarli/Shaarli/releases/tag/v0.7.0) - 2016-05-14
255 ### Added
256 - Adds an option to encode redirector URL parameter
257 - Atom/RSS feeds now support Markdown formatting, and plugins in general
258 - Markdown: use the tag `.nomarkdown` to avoid markdown processing
259 - Prefill the login field when the authentication has failed
260 - Show a private links counter
261
262 ### Changed
263 - Allow to use the bookmarklet in Firefox reader view (URL clean up)
264 - Improve tagcloud font size
265 - Improve title retrieving
266 - Markdown: inline code background color
267 - Refactor Netscape bookmark export
268 - Refactor Atom/RSS feed generation
269
270 ### Removed
271 - Remove delicious from Shaarli description
272
273 ### Fixed
274 - Fix bad login redirections causing a 404 in a few cases
275 - Fix tagcloud font-size with French locale
276 - Don't display empty tags in tag search
277 - Fix Awesomeplete conflicts with jQuery
278 - Fix UTC timezone selection
279 - Fix a bug preventing to import notes in browsers from bookmarks export
280 - Don't redirect to ?post if ?addlink is reached while logged out
281
282
283 ## [v0.6.5](https://github.com/shaarli/Shaarli/releases/tag/v0.6.5) - 2016-03-02
284 ### Fixed
285 - Fixes a regression generating an unnecessary warning (language in HTTP request)
286 - Fixes a bug where going through multiple reverse proxy could generate malformed URL
287 - Markdown: Fixes a bug where empty description blocks were displayed
288
289
290 ## [v0.6.4](https://github.com/shaarli/Shaarli/releases/tag/v0.6.4) - 2016-02-28
291 ### Added
292 - Add an updater class to automate user data upgrades
293 - Plugin admin page: adds a label for checkboxes and improve name display
294 - Plugin Wallabag: API version can be specified in plugin admin page
295
296 ### Changed
297 - Better tag cloud sorting, including special chars (`a > E > é > z`)
298 - Autolocale now sets all locale categories, not just time
299 - Use PHP's DateTime object instead of custom functions
300 - Plugin hooks: process includes before header/footer
301 - Markdown plugin: better styles for `<code>` and `<pre>` tags
302 - Improve searching:
303 - search terms are now considered separated and won't only return exact results anymore
304 - exact search can be done with quotes `"this exact sentence"`
305 - search supports excluded terms starting a dash `-exclude`
306 - implement crossed search: terms + tags
307 - all of them combined across all shaare fields
308 - New tag behaviour:
309 - tags starting with a dash will be renamed without it
310 - tags starting with a dot `.` will be hidden unless the user is logged in
311
312 ### Fixed
313 - Fix Markdown plugin escape issues (code/quote blocks, etc.)
314 - Link description aren't trimmed anymore to allow markdown format at the beginning of a shaare
315 - Fixes plugin admin redirection page on error
316
317 ### Security
318 - Fix a bug where non initialized variables were causing a warning
319 - Fix a bug where saving a link after edit could cause a 404 error
320
321
322 ## [v0.6.3](https://github.com/shaarli/Shaarli/releases/tag/v0.6.3) - 2016-01-31
323 ### Added
324 - Plugins administration page
325 - Markdown plugin added for shaares description
326 - Docker: Dockerfile is now in the main git repository and improved
327 - Add a `.gitattributes` to ease repository management
328 - Travis: include file permission checks
329
330 ### Changed
331 - Auto retrieve of title know works with websites (HTTPS, follow redirections, etc.)
332 - 404 page is now handled in a template
333 - Date in log files updated to work with fail2ban
334 - Wallabag: support of Wallabag v2 and minor fixes
335 - Link search refactoring
336 - Logging function refactoring
337
338 ### Fixed
339 - Fix a bug where renaming a tag was causing a 404
340 - Fix a bug allowing to search blank terms
341 - Fix a bug preventing to remove a tag with special chars when searching
342
343
344 ## [v0.6.2](https://github.com/shaarli/Shaarli/releases/tag/v0.6.2) - 2015-12-23
345 ### Changed
346 - Plugins: new footer hook
347 - Plugins: improve QR code
348 - Cleanup templates
349
350 ### Fixed
351 - Plugins: use the actual link URL to generate QR codes
352 - Templates: missing/erroneous page titles
353 - Templates: missing variables resulting in PHP errors
354
355 ### Security
356 - Fix invalid file permissions (remove executable bit)
357
358
359 ## [v0.6.1](https://github.com/shaarli/Shaarli/releases/tag/v0.6.1) - 2015-12-01
360 ### Added
361 - Add OpenSearch support
362 - Add a Doxygen makefile target
363 - Tools: add fine-grained file/directory permission checks (installation)
364
365 ### Changed
366 - Tools: check the 'stable' branch for new versions (updates)
367 - Cleanup: introduce an `ApplicationUtils` class
368
369 ### Removed
370 - Cleanup: remove `json_encode()` function (built-in since PHP 5.2)
371
372 ### Fixed
373 - Auto-complete more than one tag
374 - Bookmarklet: support titles containing quotes
375 - URL encode links when setting a redirector
376
377
378 ## [v0.6.0](https://github.com/shaarli/Shaarli/releases/tag/v0.6.0) - 2015-11-18
379 ### Added
380 - Introduce a plugin system
381 - Add a demo_plugin
382 - Add plugins:
383 - addlink_toolbar
384 - archiveorg
385 - playvideos
386 - qrcode
387 - readityourself
388 - wallabag
389
390 ### Changed
391 - Coding style
392
393 ### Fixed
394 - Adding a new link now returns the correct anchor in the URL
395 - Set default file permissions
396
397
398 ## [v0.5.4](https://github.com/shaarli/Shaarli/releases/tag/v0.5.4) - 2015-09-15
399 ### Added
400 - HTTPS: support being served behing an SSL-enabled proxy
401
402 ### Changed
403 - HTTP/Server utilities: refactor & add test coverage
404 - Project & documentation:
405 - improve/rewrite `README.md`
406 - update contributor list
407 - update `index.php` header
408
409 ### Fixed
410 - PHP session IDs: handle hash algorithms and bits per char representations
411
412
413 ## [v0.5.3](https://github.com/shaarli/Shaarli/releases/tag/v0.5.3) - 2015-09-02
414 ### Fixed
415 - Fix a bug that could prevent user to login
416
417
418 ## [0.5.3](https://github.com/shaarli/Shaarli/releases/tag/0.5.3) - 2015-09-02
419 This release has been YANKED as it points to a tag that does not follow our naming convention. Please use `v0.5.3` instead
420
421 ### Fixed
422 - Allow uppercase letters in PHP sessionid format
423
424
425 ## [v0.5.2](https://github.com/shaarli/Shaarli/releases/tag/v0.5.2) - 2015-08-31
426 ### Added
427 - Add PHP 7 to Travis platforms
428
429 ### Changed
430 - Also extract HTTPS page metadata (title)
431
432 ### Fixed
433 - Fix regression preventing to load LinkDB info when adding an existing link
434
435 ### Security
436 - Fix Full Path Disclosure upon cookie forgery
437
438
439 ## [v0.5.1](https://github.com/shaarli/Shaarli/releases/tag/v0.5.1) - 2015-08-17
440 ### Added
441 - Add a link to the shaarli/shaarli DockerHub repository
442
443 ### Changed
444 - Update local documentation
445 - Improve timezone detection at installation
446 - Improve feed cache handling
447 - Improve URL cleanup for new links
448
449 ### Fixed
450 - Fix 404 after editing a link while being logged out
451
452
453 ## [v0.5.0](https://github.com/shaarli/Shaarli/releases/tag/v0.5.0) - 2015-07-31
454 ### Added
455 - Add Firefox Social API
456 - Start code refactoring:
457 - add unit test coverage
458 - add Travis integration
459
460 ### Changed
461 - Search/Filter by tag fieds can now be accessed quickly with the `Tab` key
462 - Update documentation
463 - Remove duplicate tags in links
464 - Remove annoying URL patterns
465 - Start code refactoring:
466 - move all settings to `data/config.php`
467 - refactor Config, LinkDB, TimeZone, Utils
468
469 ### Fixed
470 - Fix locale handling
471 - Fix note URLs
472 - Fix page redirections
473 - Fix daily RSS browsing
474 - Fix title display
475 - Restore compatibility with PHP 5.3
476
477 ### Security
478 - Fix links not being hidden when `HIDE_PUBLIC_LINKS` is set
479
480
481 ## [v0.0.45beta](https://github.com/shaarli/Shaarli/releases/tag/v0.0.45beta) - 2015-03-16
482 ### Fixed
483 - Fix improperly displayed Unicode character
484 - Fix incorrect font size for "Add link" input field
485
486
487 ## [v0.0.44beta](https://github.com/shaarli/Shaarli/releases/tag/v0.0.44beta) - 2015-03-15
488 ### Added
489 - Add a Makefile to run static code checkers
490 - Add local documentation (help link in page footer)
491 - Use awesomplete library for autocompletion
492 - Use bLazy.js library for images lazy loading
493 - New 'Add Note' bookmarklet to immediatly open a note (text post) compose window
494
495 ### Changed
496 - Theme improvements and cleanup (menu, search fields, icons, linklist...)
497 - Allow 'javascript:' links sharing (bookmarklets)
498 - Make update check optional
499 - Redirect to homepage after adding a link via "Add Link" dialog
500 - Remove more annoying URL parameters for shared links
501 - Code cleanup
502
503 ### Removed
504 - Remove jQuery
505
506 ### Security
507 - Don't disclose version to visitors (shaarli-version.txt)
508
509
510 ## [v0.0.43beta](https://github.com/shaarli/Shaarli/releases/tag/v0.0.43beta) - 2015-02-20
511 ### Added
512 - Title button link URL is now configurable
513 - RainTPL's TMP and TPL directories path are now configurable
514 - Displayed URLs for each link are now clickable links
515 - Show links timestamps in Daily view
516
517 ### Changed
518 - Automatically prepend "Note:" to title of self-posts (posts not pointing to an URL)
519 - Make ATOM toolbar button optional (`SHOW_ATOM` configuration variable)
520 - Optional archive.org links for each Shaarli link (`ARCHIVE_ORG` option)
521 - Thumbnails: force HTTPS when possible
522 - Improve tag cloud font scaling
523 - Allow pointing RSS items to the permalink instead of the direct URL (`ENABLE_RSS_PERMALINKS` option)
524 - Update JS libraries and add version numbers in filenames
525 - Updates to README and footer
526
527 ### Fixed
528 - Fix problems when running Shaarli behind a reverse proxy (invalid RSS feed URL)
529 - Update check now checks against the community fork version
530 - Include `cache/`, `data/`, `pagecache/` and `tmp/` directories in the repository
531 - Fix duplicate tag search returning no results
532 - Fix unnecessary 404 error on "Add link" when the user is logged out
533 - Fixes to copyright/licensing information and unlicensed media
534 - Fixes for tag cloud invalid links
535 - Coding style fixes/cleanup
536 - Fix redirection after deleteing a link leading to a 404 error
537 - Shaarli's HTML is now W3C-compliant
538 - Search now works with Unicode characters
539
540 ### Security
541 - Do not leak server's PHP version and Shaarli's full path on errors
542 - Prevent Shaarli from sending a lot of duplicate cookies
543
544
545 ## [v0.0.42beta](https://github.com/shaarli/Shaarli/releases/tag/v0.0.42beta) - 2014-07-27
546 ### Added
547 - Add QRCode Javascript library
548 - Allow importing bookmarks with the same timestamp (hack)
549 - Allow putting a description in the bookmarklet URL
550 - Add `json_encode()` implementation for PHP<5.2
551 - Highlight search results
552
553 ### Changed
554 - Improve 'Stay signed in' behaviour
555 - Improve `smallHash()`
556 - Refactor QRCode generation
557 - Update Javascript lazyloading
558 - Update CSS
559
560 ### Removed
561 - Remove jQuery from almost all pages
562
563 ### Fixed
564 - Fix overlapping tags
565 - Fix field foxus in the bookmarklet
566 - Fix error message when `data/` is not writable
567 - Fix HTML generation
568
569 ### Security
570 - Fix XSS flaw
571
572
573 ## [v0.0.41beta](https://github.com/shaarli/Shaarli/releases/tag/v0.0.41beta) - 2013-03-08
574 ### Added
575 - Add HTTPS to the allowed protocols
576 - Add support for magnet links in link descriptions
577 - Allow creating new links as private by default
578 - Allow disabling jQuery
579 - Check write permissions
580 - Check session support before installation
581
582 ### Changed
583 - Improve token security
584 - RSS feed: allow inverting links/permalinks
585
586 ### Fixed
587 - Fix display issues during installation
588 - Fix popup redirection after login failure
589 - Fix RSS formatting for Thunderbird
590 - Fix thumbnail creation
591 - Fix cache purge
592
593 ### Security
594 - Fix login issue with WebKit browsers
595
596
597 ## [v0.0.40beta](https://github.com/shaarli/Shaarli/releases/tag/v0.0.40beta) - 2013-02-26
598 Initial release on GitHub.
599
600
601 ## [v0.0.40beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-08-24
602 ### Added
603 - Flickr thumbnail now also support albums, galleries and users
604 - Add a configuration option to disable session cookie protection
605 Check this if your get disconnected often or your IP address changes often
606
607 ### Removed
608 - Removed the xml comment in cached RSS/ATOM feed
609 (although W3C-compliant, this may cause problems in some feed readers)
610
611 ### Fixed
612 - A bug in the RSS cache would present old items as new in some cases
613 - A small bug (non-initialized variable) in page cache cleaning
614 - Proper "Nothing found" message when search returns no results
615 - No more 404 error when searching with empty input
616 - Flickr thumbnails are back (Flickr has made some changes to their domains)
617
618 ## [v0.0.39beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-08-10
619 ### Added
620 - A cache for RSS feed, ATOM feed and Daily RSS feed, because these URLs
621 are massively hammered. Cache is automatically purged whenever the database
622 is changed. This will reduce server load. I may add cache to other pages later.
623
624 ### Changed
625 - No more global `$LINKSDB` (Yuk)
626 - Background color was removed when hovering a link
627
628 ### Fixed
629 - Small bug corrected in config screen on timezones
630 - Calling a non-existing permalink now returns a crude 404 error instead of 200 (OK)
631 This is done on purpose
632 - The `shaarli` session cookie now has a proper path
633 Thus you can now install several Shaarlis on the same server in different paths,
634 and each will have its session
635 - Now when you delete a link, you go back the same page/search parameters you were on
636 - Restore previously removed `error_get_last()`, to ensure PHP 5.1 compatibility
637 (Yes, now it works on free.fr hosting)
638 - Added `dialog=1` in bookmarklet code for some browsers
639
640
641 ## [v0.0.38beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-02-06
642 ### Added
643 - Automatic creation of the `tmp` directory with proper rights (for RainTPL)
644 - When you click the key to see only private links, it turns yellow
645
646 ### Changed
647 - The "Daily" page now automatically skips empty days.
648
649 ### Fixed
650 - Corrected the tag encoding (there was a bug when selecting a second tag which contains accented characters)
651
652
653 ## [v0.0.37beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-02-01
654 ### Added
655 - Basic CSS for mobiles, which makes Shaarli //much// more usable on mobile devices
656 - Picture wall no more instantly kills your browser. Now it uses
657 [lazy image loading](http://www.appelsiini.net/projects/lazyload);
658 the pictures are loaded only as you scroll the page.
659 This will reduce browser memory usage (especially on mobile devices),
660 as well as server load.
661 If you have javascript disabled, the page will still work as before
662 (all images loaded at once)
663 - RSS feed for the "Daily" page. 1 RSS entry per day, with all links of that day.
664 RSS feed provides the last 7 days (only non-empty days are returned).
665 - In link list, added an icon to see only private links. Click to toggle (only private / all)
666
667
668 ## [v0.0.36beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-01-25
669 ### Added
670 - Shaarli licence in COPYING
671
672 ### Changed
673 - Display adjustments in "Daily" page
674
675 ### Fixed
676 - Improper text color in install form
677 - Error in QRCode url (missing '?')
678
679
680 ## [v0.0.35beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-01-25
681 ### Fixed
682 - Corrected a bug introduced in 0.0.34 which would improperly preprend data to URLs
683
684
685 ## [v0.0.34beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-01-25
686 ### Added
687 - There is now a QR-Code of each permalink to easily open a link on your smartphone
688 - Protocols `file:` and `apt:` are now also converted to clickable links (patch by Francis Chavanon)
689 - Thumbnail support for http://xkcd.com/ (patch by Emilien Klein)
690 - Thumbnail support for http://pix.toile-libre.org/
691 - Well I had _some_ mercy for users with antique browsers (IE) which do not have
692 support for gradients: I added a few `background-color`
693 - First version of the "Shaarli Daily", a page showing all links of a specific day.
694 By default, you see the links of the previous day.
695 There is still work to do on this page (error checking, better navigation (calendar?),
696 RSS feed, CSS for mobile and printing...)
697
698 ### Changed
699 - Upgraded bundled versions of jQuery (1.7.1) and jQuery UI (1.8.17)
700 - Upgraded bundled version of RainTPL (2.7)
701 - Changed HTTPS detection code
702
703 ### Fixed
704 - In link edition, you can now click the word "Private" to check the box
705 - Clicking a tag would not work properly if the tag contained special characters (like +)
706 - Added proper jQuery licence (shame on me)
707
708
709 ## [v0.0.33beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-01-17
710 ### Added
711 - Shaarli packaged to ease Linux distributions integration
712 As a simple user, you do not need to cope with these versions
713 Future releases of Shaarli will also be customized and published in these directories
714 Differences with the standard Shaarli version:
715 - deb:
716 - .tar.gz instead of .zip
717 - COPYING licence file added
718 - jQuery/jQuery-UI libraries removed to cope with Debian rules
719 This version links to the libs hosted at http://code.jquery.com
720 - rpm:
721 - sources located in a subdirectory with the same name as the zip file
722 - COPYING licence file added
723 - WARNING: When downloading the .tar.gz, always use wget (and not your browser),
724 otherwise the .tar.gz will be corrupted
725
726 ### Fixed
727 - ATOM feed validates again
728
729 ### Security
730 - XSS vulnerability patched (thanks to Stanislas D.!)
731
732
733 ## [v0.0.32beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-12-16
734 ### Added
735 - Better check on URL parameters (patch by gege2061)
736 - Add `max-height` and `overflow:auto` attributes so that content can be scrolled if too large
737
738 ### Changed
739 - HTML generation moved to RainTPL templates (in the `tpl/` directory)
740 - Better detection of HTTPS (patch by gege2061)
741 - In RSS/ATOM feeds, the GUID is now the permalink instead of the final URL (patch by gege2061)
742 - Jerrywham CSS patch included
743 - Multiple spaces are now respected in description.
744 Thus you can use Shaarli as a personal pastebin (for posting source code, for example).
745
746 ### Removed
747 - Page time generation was removed
748
749 ### Fixed
750 - Tab order changed in login screen
751 - Permalinks now work even if additional parameters have been added
752 (e.g. `/?E8Yj2Q&utm_source=blablabla...`)
753 - user.css is included only if the file is present
754 (This prevents a useless CSS include which makes a harmless but useless 404 error.)
755
756
757 ## [v0.0.31beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-11-29
758 ### Added
759 - Support for TED Talks (ted.com/talks) thumbnails (patch by Emilien K.)
760 - partial [patch](http://www.idleman.fr/blog/?p=508) by Idleman: Better design consistency, icon on private links. In-page popup was not included because it causes problem on some websites
761 - Support for bookmark files without ADD_DATE attributes
762 - Logo is clickable
763 - `user.css` can be added to overload Shaarli base CSS.(patch by Jerrywham).
764 Just put `user.css` in the same directory as shaarli.css.
765 Example: `<code css>#pageheader { background: blue; }</code>`
766 Please note that Shaarli CSS are not stable and may completely change on each version
767
768 ### Changed
769 - Edit and Delete buttons in link list were replaced with icons. (patch by Jerrywham)
770
771 ### Fixed
772 - Better error handling in thumbnail generation (patch by Emilien K.)
773 - The top menu is no longer displayed in bookmarklet popup
774 - Bookmark which have the exact same date/time are now correctly imported.
775 Most remaining import problems should be solved now
776 - Comment in Shaarli export moved to beginning of file to prevent clash with last link description
777
778
779 ## [v0.0.30beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-11-18
780 ### Added
781 - Add a small `delete` button in link list (after the `edit` button)
782
783 ### Fixed
784 - Moved the call to PubSubHub
785
786
787 ## [v0.0.29beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-11-18
788 ### Fixed
789 - Corrected a bug introduced in v0.0.28beta
790 (there was an error if you use the bookmarklet and you're not logged in)
791
792
793 ## [v0.0.28beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-11-17
794 ### Added
795 - Thumbnail support for youtu.be URLs (YouTube short url service)
796 - PubSubHub protocol support (from http://aldarone.fr/les-flux-rss-shaarli-et-pubsubhubbub/).
797 Warning: This was not tested. You need to set your hub url in
798 `$GLOBALS['config']['PUBSUBHUB_URL']` and put the official client (`publisher.php`)
799 in the same directory as Shaarli's `index.php`
800 - RSS and ATOM feeds now also contain tags (in `category` tags, as per their
801 respective specifications)
802
803 ### Changed
804 - New Shaarli theme and logo by Idle (http://www.idleman.fr/blog/?p=469)
805 - In picture wall, pictures point to Shaarli permalink instead of final URL.
806 This way, users can read the description.
807 - In RSS/ATOM feeds, guid and link URL of permalinks are now proper absolute URLs
808 - In RSS/ATOM feeds, URLs are now clickable
809 - Rename `http_parse_headers()` to `http_parse_headers_shaarli()` to prevent
810 name collision with some PHP extensions
811
812 ### Fixed
813 - Thumbnails removed for imgur.com/a/ URLs (Thumbnails are not available for albums on imgur)
814 - Shaarli now correctly only tries to get thumbnails for vimeo video URLs
815 - Fix a bug in imgur.com URLs handling that would cause some thumbnails not to appear
816 - The search engine would not return a result if the word to search was the first in description
817 - Extracted title is now correct if the page has two `title` html tags
818
819
820 ## [v0.0.27beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-10-18
821 ### Added
822 - Add a picture wall, which can be filtered too: it will use the same filters
823 (tags,text search) as current page when clicked.
824
825
826 ## [v0.0.26beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-10-17
827 ### Changed
828 - Made permalink more visible (smallHash)
829
830 ### Fixed
831 - Removed extras space in description when URLs are converted to clickable links
832 - Thumbnail for subreddit imgur urls (/r/...) were corrected (thanks to Accent Grave)
833
834
835 ## [v0.0.25beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-10-13
836 ### Added
837 - Better CSS for printing (thanks to jerrywham suggestion)
838 - Allow using a redirector or anonymizing proxy for links
839 (such as `http://anonym.to/?` to mask you `HTTP_REFERER`).
840 Just go to `Tools > Configure > Redirector`
841 (thanks to Accent Grave for the suggestion).
842 - The `ENABLE_LOCALCACHE` option can be set to `false` for those who have
843 a limited quota on their host.
844 This will disable the local thumbnail cache.
845 Services which require the use of the cache will have no thumbnails
846 (vimeo, flickr, direct link to image).
847 Other services will still have a thumbnail (youtube,imgur.com,dailymotion,imageshack.us)
848
849 ### Changed
850 - Now thumbnails generated by Shaarli are croped to a height of 120 pixels
851 - YouTube thumbnails now use `default.jpg` instead of `2.jpg` (This is usually more pertinent)
852 - Configuration options (such as `HIDE_TIMESTAMPS`, `ENABLE_THUMBNAILS`, etc.)
853 can now be put in a an external file so that you do not have to tweak them again
854 when you upgrade Shaarli.
855 Just add the file `data/options.php`.
856 - If a single link is displayed, the page title contains the title of the link
857 - Shaarli page title is clickable (and has the same link as "Home")
858 - A few CSS tweaks (thanks to maethor for suggestion)
859
860 ### Fixed
861 - Shaarli now supports newlines in titles (thanks to dixy)
862 - The link to the RSS feed in page header was not correct
863
864
865 ## [v0.0.24beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
866 ### Added
867 - Allow posting an entry without a link. (You can use Shaarli as a kind of "personal twitter")
868 - Each Shaarli entry now has a short link (just click on the date of a link).
869 Now you can send a link that points to a single entry in your Shaarli
870 - In descriptions, URLs are now clickable
871 - Thumbnails will be generated for all link pointing to .jpg/png/gif
872 (as long as the images are less than 4 Mb and take less than 30 seconds to download)
873
874 ### Fixed
875 - Now thumbnails also work for imgur gallery links (/gallery/...)
876 (Thanks to Accent Grave for the correction)
877 - Removed useless debugging information in log
878 - The filter in RSS/ATOM feed now works again properly (it was broken in 0.0.17beta)
879
880
881 ## [v0.0.23beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
882 ### Added
883 - Added thumbnail support for imageshack.us
884
885 ### Changed
886 - Now you can clic the sentence "Stay signed in" to tick the checkbox (patch by Emilien)
887 - In tag editing, comma (,) are now automatically converted to spaces
888 - In tag editing, autocomplete no longuer suggests a tag you have already entered in the same line
889
890
891 ## [v0.0.22beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
892 ### Added
893 - Support for thumbnails for flickr.com
894 - Allow staying signed in:
895 Your session will be kept open even if you close the browser.
896 This is available through a checkbox in the login screen.
897
898 ### Changed
899 - Some hosts (flickr, vimeo) are slow as hell for the thumbnails,
900 or require an extra HTTP request.
901 For these hosts the thumbnail generation has been deported outside the generation
902 of the page to keep Shaarli snappy.
903 For these slow services, the thumbnails are also cached.
904
905 ### Fixed
906 - Title was not properly passed if you had to login when using the bookmarklet (patch by shenshei)
907
908
909 ## [v0.0.21beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
910 ### Added
911 - Thumbnails for some services
912 Currently supports: YouTube.com, dailymotion.com, vimeo.com (slow!) and imgur.com.
913 Thumbnails are enabled by default, but you can turn them off
914 (set `define('ENABLE_THUMBNAILS',true);` to `false`).
915
916 ### Changed
917 - Removed the focus on the searchbox (this is cumbersome when you want to browse pages
918 and scroll with the keyboard)
919
920
921 ## [v0.0.20beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
922 ### Fixed
923 - RSS feed is now served as `application/rss+xml` instead of `application/xhtml+xml`
924 (which was causing problem in //RSS Lounge//)
925 - ATOM feed is now served as `application/atom+xml` instead of `application/xhtml+xml`
926
927
928 ## [v0.0.19beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
929 ### Added
930 - ATOM feed
931
932 ### Fixed
933 - Patch by Emilien to remove the update notification after the update
934
935
936 ## [v0.0.18beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
937 ### Added
938 - You can now configure the title of your page
939 - New screen to configure title and timezone
940
941 ### Changed
942 - Nicer timezone selection patch by killruana
943
944 ### Fixed
945 - New lines now appear correctly in the RSS feed descriptions.
946
947
948 ## [v0.0.17beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
949 ### Added
950 - Change password screen added (based on a patch by killruana)
951 - Autocomplete in the tag search form
952 - You can rename or delete a tag in all links
953 (very handy if you misspelled a tag or want to merge tags)
954 - When you click the RSS feed, the feed will be filtered with the same filters
955 as the page you were viewing
956
957 ### Changed
958 - CSS adjustments by jerrywham
959 - Minor corrections
960
961
962 ## [v0.0.16beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
963 ### Added
964 - Upgrade notification:
965 If a new version of Shaarli is available, you will be notified by a discreet
966 message in top-right corner.
967 This message will only be visible if you are logged in, and the check will be
968 performed at most once a day.
969 - Preliminary tag cloud (ugly for the moment, I need to find something better)
970
971 ### Changed
972 - Replaced `preg_match()` with `version_compare()` to check PHP version
973 - Includes a patch by Emilien K. to mask dates if user is not logged in.
974 The option can be activated by changing `define('HIDE_TIMESTAMPS',false);` to `true`
975
976
977 ## [v0.0.15beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
978 ### Added
979 - New in import: Option to overwrite existing links when importing
980 - On free.fr, automatic creation of the `/sessions` directory
981
982 ### Changed
983 - CSS Stylesheet is now an external file (shaarli.css).
984 This reduces page size and eases customization.
985
986 ### Removed
987 - Removed some parameters in URL added by some feed proxies (`#xtor=RSS-...`)
988
989 ### Fixed
990 - Bug corrected: Prevented loop on login screen upon successful login after a failed login
991 - Bug corrected in import: HTML entities were not properly decoded.
992 If you imported your Delicious/Diigo bookmarks, your should import them again
993 and use the 'overwrite' option of the import feature.
994
995
996 ## [v0.0.14beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
997 ### Added
998 - You no longer need to disable `magic_quotes` on your host.
999 Shaarli will cope with this option beeing activated.
1000
1001
1002 ## [v0.0.13beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1003 ### Added
1004 - Import: New option to import html bookmark file as private links
1005 - Import: Importing a bookmark file will not overwrite existing links anymore
1006 - Export: New options to export only public or private links
1007
1008 ### Changed
1009 - In tag autocomplete, tags are presented in use order
1010 (most used tags first, instead of alphabetical order)
1011 - RSS Feed can now be filtered by tags or fulltext search. Just add to the feed url:
1012 - `&searchtags=minecraft+video` for tag filtering
1013 - `&searchterm=portal` for fulltext search to the feed url
1014
1015
1016 ## [v0.0.12beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1017 ### Added
1018 - Add a check that the config file was properly created
1019 (in case Shaarli does not have the write rights in its folder)
1020 - Open Shaarli: there is an option to open your Shaarli to anyone.
1021 Anybody will be able to add/edit/delete links without having to login.
1022 In code, change `define('OPEN_SHAARLI',false);` to `true`.
1023 Note: No anti-spam for the moment. You are warned!
1024 - Autocomplete for tags
1025
1026
1027 ## [v0.0.11beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1028 ### Added
1029 - Add a check and a warning for some hosts which still have `magic_quotes` activated
1030
1031
1032 ## [v0.0.10beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1033 ### Added
1034 - Get rid of `&quot;` in titles
1035
1036
1037 ## [v0.0.9beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1038 ### Added
1039 - Now works on hosts `free.fr` and `1and1`
1040 - Now works with PHP 5.1
1041 - PHP version is now checked and an error message is displayed if version is not correct
1042
1043 ### Fixed
1044 - No more error messages if the browser does not send `HTTP_REFERER`
1045 - No more error messages if the host has disabled http protocol in PHP config (eg. 1and1)
1046
1047
1048 ## [v0.0.8beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1049 ### Changed
1050 - In RSS feed, GUID content replaced with the URL of the link, because some
1051 stupid RSS reader (like Google Reader) use `<guid>` as a link instead of using `<link>`
1052
1053
1054 ## [v0.0.7beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-09-16
1055 First public release by Sebsauvage, see original article:
1056 [Adieu Delicious, Diigo et StumbleUpon. Salut Shaarli !](http://sebsauvage.net/rhaa/index.php?2011/09/16/09/29/58-adieu-delicious-diigo-et-stumbleupon-salut-shaarli-) (FR)