]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - CHANGELOG.md
Merge pull request #1575 from ArthurHoaro/feature/php8
[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.12.0](https://github.com/shaarli/Shaarli/releases/tag/v0.12.0-beta) - UNRELEASED [beta 2020-08-27 - beta-1 2020-09-30]
8
9 **Save you `data/` folder before updating!**
10
11 This is a beta version containing major changes, including new URLs for Shaarli and datastore format update.
12 Be aware that by using a beta version you might encounter bugs, and that 3rd party themes or plugins might not be compatible.
13
14 ### Added
15 - Thumbnailer: add soundcloud.com to list of common media domains
16 - Markdown rendering is now integrated into Shaarli core
17 - Add autofocus on tag cloud filter input
18 - Japanese translations
19 - Japanese translation: add language to admin configuration page
20 - Support for PHP 8.0
21 - Support for local anchor URL (startting with `#`)
22 - LDAP authentication
23 - Encapsulated PageCacheManager
24 - Docs:
25 - add screenshots of all pages
26 - section about mkdocs
27 - Ulauncher extension
28 - CI: run against PHP 7.4
29 - Added $links_per_page variable to template and display on default
30 - Inject BookmarkServiceInterface in plugins data
31 - Add manual configuration for root URL
32 - Added PATCH to the allowed Apache request methods.
33
34 ### Changed
35 - Introduce Bookmark object and Service layer
36 - Save bookmark as objects in the datastore
37 - Handle bookmark as objects across the whole codebase (except templates and plugins)
38 - Process all Shaarli page through Slim controller, with proper URL rewriting (see #1516)
39 - Docs: the entire documentation has been reviewed, updated and improved, thanks to @nodiscc!
40 - ATOM feed: use instance name as author name instead of URL
41 - Updated French translation
42 - Default colors plugin: generate CSS file during initialization
43 - Improve default bookmarks after install
44 - Upgrade all front end dependencies and webpack build
45
46 ### Fixed
47 - Undefined index: thumbnail in daily page
48 - Undefined index: thumbnail on OpenGraph headers
49 - Undefined index: updated on linklist
50 - Make sure that bookmark sort is consistent, even with equal timestamps
51 - Code PHP version check as requirement bumped to PHP 7.1
52 - Thumbnail images lazy loading
53 - Markdown plugin: fix RSS feed direct link reverse
54 - Fix RSS permalink included in Markdown bloc
55 - Demo plugin: multiple typos
56 - Makefile target for releases
57 - Makefile target for html documentation
58 - Session cookie setting being set while session is active
59 - Deprecated use of implode
60 - Division by zero in tag cloud
61 - CI: deprecated linux distribution and sudo directive
62 - Docker build: gcc is no longer included in python alpine image
63 - Default template: display pin button in mobile view
64 - Pinned bookmarks are not longer displayed first in ATOM/RSS feeds
65 - Docs:
66 - Outdated Docker documentation for stable branch
67 - Outdated links
68 - Plugin description in meta files
69
70 ### Removed
71 - Markdown plugin
72 - Docs:
73 - emojione & twemoji removed
74 - Makefile: remove static_analysis_summary from all: target
75 - doc/Makefile: remove references to composer update
76
77 ## [v0.11.1](https://github.com/shaarli/Shaarli/releases/tag/v0.11.1) - 2019-08-03
78
79 Release to fix broken Docker build on the latest version.
80
81 ### Fixed
82 - Fixed Docker build
83 - Fixed a few documentation broken links
84 - Fixed broken label in configuration page
85
86 ### Added
87 - More accessibility improvements
88
89 ## [v0.11.0](https://github.com/shaarli/Shaarli/releases/tag/v0.11.0) - 2019-07-27
90
91 **Shaarli no longer officially support PHP 5.6 and PHP 7.0 as they've reached end of life.**
92
93 **Shaarli classes now use namespace, third party plugins need to update.**
94
95 ### Added
96 - Add optional PHP extension to composer suggestions.
97 - composer: enforce PHP security advisories
98 - phpDocumentor configuration and make target
99 - Run unit tests against PHP 7.3
100 - Bunch of accessibility improvements to the default template, thanks to @llune
101 - Bulk actions: set visibility
102 - Display sticky label in linklist
103 - Add print CSS rules to the default template
104 - New setting to automatically retrieve description for new bookmarks
105 - Plugin to override default template colors
106
107 ### Changed
108 - Shaarli now uses namespaces for its classes.
109 - Rewrite IP ban management
110 - Default template: slightly lighten visited link color
111 - Hide select all button on mobile view
112 - Switch from FontAwesome v4.x to ForkAwesome
113 - Daily - display the current day instead of the previous one
114
115 ### Fixed
116 - Do not check the IP address with session protection disabled
117 - API: update test regexes to comply with PCRE2
118 - Optimize and cleanup imports
119 - ensure HTML tags are stripped from OpenGraph description
120 - Documentation invalid links
121 - Thumbnails disabling if PHP GD is not installed
122 - Warning if links sticky status isn't set
123 - Fix button overlapping on mobile in linklist
124 - Do not try to retrieve thumbnails for internal link
125 - Update node-sass to fix a vulnerability in node tar dependency
126 - armhf Dockerfile
127 - Default template: Responsive issue with delete button fix
128 - Persist sticky status on bookmark update
129
130 ### Removed
131 - Doxygen configuration
132 - redirector setting
133 - QRCode link to an external service
134
135 ## [v0.10.4](https://github.com/shaarli/Shaarli/releases/tag/v0.10.4) - 2019-04-16
136 ### Fixed
137 - Fix thumbnails disabling if PHP GD is not installed
138 - Fix a warning if links sticky status isn't set
139
140 ## [v0.10.3](https://github.com/shaarli/Shaarli/releases/tag/v0.10.3) - 2019-02-23
141 ### Added
142 - Add OpenGraph metadata tags on permalink page
143 - Add CORS headers to REST API reponses
144 - Add a button to toggle checkboxes of displayed links
145 - Add an icon to the link list when the Isso plugin is enabled
146 - Add noindex, nofollow to documentation pages
147 - Document usage of robots.txt
148 - Add a button to set links as sticky
149
150 ### Changed
151 - Update French translation
152 - Refactor the documentation homepage
153 - Bump netscape-bookmark-parser
154 - Update session_start condition
155 - Improve accessibility
156 - Cleanup and refactor lint tooling
157
158 ### Fixed
159 - Fix input size for dropdown search form
160 - Fix history for bulk link deletion
161 - Fix thumbnail requests
162 - Fix hashtag rendering when markdown escaping is enabled
163 - Fix AJAX tag deletion
164 - Fix lint errors and improve PSR-1 and PSR-2 compliance
165
166 ### Removed
167 - Remove Firefox Share documentation
168
169 ## [v0.10.2](https://github.com/shaarli/Shaarli/releases/tag/v0.10.2) - 2018-08-11
170
171 ### Fixed
172
173 - Docker build
174
175 ## [v0.10.1](https://github.com/shaarli/Shaarli/releases/tag/v0.10.1) - 2018-08-11
176
177 ### Changed
178
179 - Accessibility:
180 - Remove alt text on the logo
181 - Remove redundant title in tools page
182
183 ### Fixed
184
185 - Fixed an error on the daily page and daily RSS
186 - Fixed an issue causing 'You are not authorized to add a link' error while logged out
187 - Fixed thumbnail path when Shaarli's path uses symbolic links
188 - Add a `mod_version` check in Shaarli's root `.htaccess` file for Apache 2.2 syntax
189 - Include assets in the release Makefile target
190
191 ### Removed
192
193 - Firefox Social API shaare has been removed
194
195 ## [v0.10.0](https://github.com/shaarli/Shaarli/releases/tag/v0.10.0) - 2018-07-28
196 **PHP 5.5 compatibility has been dropped.** Shaarli now requires at least PHP 5.6.
197
198 ### Added
199 - Add a filter to display public links only
200 - Add PHP 7.2 support
201 - Add German translation
202 - Resolve front-end dependencies from NPM
203 - Build front-end bundles with Yarn and Webpack
204 - Lint Javascript code with ESLint
205 - Lint SASS code with SASSLint
206 - Support redirection in cURL download callback
207 - Introduce multi-stage builds for Docker images
208 - Use Travis matrix and stages to run Javascript tests in a dedicated environment
209 - Add tag endpoint in the REST API
210 - Build the documentation in Travis builds
211 - Provide a Docker Compose example
212
213 ### Changed
214 - Use web-thumbnailer to retrieve thumbnails (see #687)
215 - Use a specific page title in all pages
216 - Daily: run hooks before creating the columns
217 - Load theme translations files automatically
218 - Make max download size and timeout configurable
219 - Make Nginx logs accessible as stdout/stderr for Docker images
220 - Update buttons used to toggle link visibility filters
221 - Rewrite Javascript code for ES6 compliance
222 - Refactor IP ban management
223 - Refactor user login management
224 - Refactor server-side session management
225 - Update Doxygen configuration
226 - Update Parsedown
227 - Improve documentation
228 - Docker: build the images from the local sources
229 - Docker: bump alpine version to 3.7
230 - Docker: expose a volume for the thumbnail cache
231
232 ### Removed
233 - Drop support for PHP 5.5
234 - Remove vendored front-end libraries
235 - Remove environment specific .gitignore entries
236
237 ### Fixed
238 - Ignore the case while checking DOCTYPE during the file import
239 - Fix removal of on=... attributes from html generated from Markdown
240 - httpd: always forward the 'Authorization' header
241 - Ensure user-specific CSS file is loaded
242 - Fix feed permalink rendering when Markdown escaping is enabled
243 - Fix order of tags with the same number of occurrences
244 - Fixed the referrer meta tag in default template
245 - Disable MkDocs' strict mode for ReadTheDocs builds to pass
246 - fix and simplify Dockerfile for armhf
247
248 ### Security
249 - Update `.htaccess` to prevent accessing Git metadata when using a Git-based installation
250
251
252 ## [v0.9.7](https://github.com/shaarli/Shaarli/releases/tag/v0.9.7) - 2018-06-20
253 ### Changed
254 - Build the Docker images from the local Git sources
255
256
257 ## [v0.9.6](https://github.com/shaarli/Shaarli/releases/tag/v0.9.6) - 2018-03-25
258 ### Changed
259 - htaccess: prevent accessing resources not managed by SCM
260 - htaccess: always forward the 'Authorization' HTTP header
261
262
263 ## [v0.9.5](https://github.com/shaarli/Shaarli/releases/tag/v0.9.5) - 2018-02-02
264 ### Fixed
265 - Fix a warning happening when `php-intl` is not installed on the system
266 - Fix warnings happening when updating from legacy SebSauvage version
267
268 ## [v0.9.4](https://github.com/shaarli/Shaarli/releases/tag/v0.9.4) - 2018-01-30
269 ### Added
270 - Enable translations: Shaarli is now also available in French. Other language translations are welcome!
271 - Add EditorConfig configuration
272 - Add favicons for mobile devices
273 - Add Alpine Linux arm32v7 Dockerfiles (master, latest)
274
275 ### Changed
276 - Do not write bookmark edition history during file imports (performance)
277 - Migrate Docker images (master, latest) to Alpine Linux
278 - Improve unitary tests and code coverage
279 - Improve thumbnail display
280 - Improve theme ergonomics
281 - Improve messages if there is no plugin or parameter available in the admin page
282 - Increase buffer size for cURL download
283 - Force HTTPS if the original port is 443 behind a reverse proxy (workaround)
284 - Improve page title retrieval performances
285
286 ### Removed
287 - Remove redirector setting from Configure page
288
289 ### Fixed
290 - Fix broken links in the documentation
291 - Enable access to `data/user.css` (Apache 2.2 & 2.4)
292 - Don't URL encode description links if parameter `redirector.encode_url` is set to false
293 - Fix an issue preventing the Save button to appear for plugin parameters
294
295
296 ## [v0.9.3](https://github.com/shaarli/Shaarli/releases/tag/v0.9.3) - 2018-01-04
297 **XSS vulnerability fixed. Please update.**
298
299 ## Security
300 - Fix an XSS (cross-site-scripting) vulnerability in `index.php` -
301 [CVE-2018-5249](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-5249)
302
303
304 ## [v0.9.2](https://github.com/shaarli/Shaarli/releases/tag/v0.9.2) - 2017-10-07
305
306 **Major security issue fixed. Please update.**
307
308 ### Added
309 - Tag search now supports wildcards `*`
310 - New setting `privacy.force_login` which can be used with `privacy.hide_public_links` to redirect anonymous users to the login page.
311 - New setting `general.default_note_title` used to override default `Note:` title prefix for notes.
312 - Add a version hash for asset loading to prevent browser's cache issue
313
314 ### Changed
315 - The "Remember me" checkbox is unchecked by default
316 - The default value of the "Remember me" checkbox can be configured under `data/config.json.php`
317
318 ### Removed
319 - Remove obsolete PHP magic quote support
320
321 ### Fixed
322 - Generates a permalink URL if the URL is set to blank
323 - Replace links to the old GitHub wiki with ReadTheDocs URIs
324 - Use single quotes in the note bookmarklet
325 - Daily page if there is no link
326 - Bulk link deletion with a single link
327 - HTTPS detection behind a reverse proxy
328 - Travis tests environment and localization
329 - Improve template paths robustness (trailing slash)
330 - Robustness: safer gzinflate/zlib usage
331 - Description links parsing with parenthesis (without Markdown)
332 - Templates:
333 - Sort the tag cloud alphabetically
334 - Firefox social title
335 - Improved visited link color
336 - Fix jumpy textarea with long content in post edit
337
338 ### Security
339
340 - Fixed reflected XSS vulnerability introduced in v0.9.1, discovered by @chb9 ([CVE-2017-15215](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-15215)).
341
342
343 ## [v0.9.1](https://github.com/shaarli/Shaarli/releases/tag/v0.9.1) - 2017-08-23
344
345 The documentation has been migrated to ReadTheDocs:
346 - https://shaarli.readthedocs.io/
347 - edits are submitted as pull requests
348
349 ### Added
350 - Allow bulk link deletion
351 - Display subtags in the tag cloud
352 - Add an endpoint to refresh the token
353 - Add a token on every page
354 - Add a tag list view for management
355 - Add Note bookmarklet
356 - Add creation date when editing a link
357
358 ### Changed
359 - Documentation:
360 - Generate static HTML documentation with [mkdocs](http://www.mkdocs.org/)
361 - Host documentation on [ReadTheDocs](http://www.mkdocs.org/)
362 - Update documentation structure
363 - Update Makefile targets to:
364 - Build the docs locally
365 - Include the generated docs in the release archives
366 - Theme:
367 - Use the new theme as the default
368 - Rename the tag cloud template to `tag.cloud.html`
369 - Display visited links in grey
370 - Use only one search form in `linklist.html`
371 - Hide the "search links with these tags" option when an empty `searchtags` is passed to `tag.list.html`
372 - Improve HTTP header handling when hosting Shaarli with Docker behind a reverse proxy
373 - Searching for tags with an empty value returns untagged links only
374 - Set Travis environment to `precise` until the new `trusty` environment is ready
375
376 ### Removed
377 - Remove dead Pubsubhubbub code
378 - Disable the GitHub wiki (see changed/documentation)
379 - Remove Docker `dev` image and resources
380 - Theme:
381 - Remove the bottom "Sort by" menu in `tag.list.html`
382
383 ### Fixed
384 - Fix file existence check for `user.css`
385 - Limit selection to 2k characters when using the bookmarklet
386 - Fix JS error `uncaught type error`
387 - Fix Firefox Social button
388 - Use pinned PHP dependencies when generating release archives
389 - Make sure that the tag exists before altering/removing it
390
391 ### Security
392 - Add a whitelist for protocols for URLs
393
394
395 ## [v0.9.0](https://github.com/shaarli/Shaarli/releases/tag/v0.9.0) - 2017-05-07
396
397 This release introduces the REST API, and requires updating HTTP server
398 configuration to enable URL rewriting, see:
399 - https://shaarli.github.io/api-documentation/
400 - https://shaarli.readthedocs.io/en/master/Server-configuration/
401
402 **WARNING**: Shaarli now requires PHP 5.5+.
403
404 ### Added
405 - REST API v1
406 - [Slim](https://www.slimframework.com/) framework
407 - [JSON Web Token](https://jwt.io/introduction/) (JWT) authentication
408 - versioned API endpoints:
409 - `/api/v1/info`: get general information on the Shaarli instance
410 - `/api/v1/links`: get a list of shaared links
411 - `/api/v1/history`: get a list of latest actions
412 Theming:
413 - Introduce a new theme
414 - Allow selecting themes/templates from the configuration page
415 - New/Edit link form can be submitted using CTRL+Enter in the textarea
416 - Shaarli version is displayed in the footer when logged in
417 - Add plugin placeholders to Atom/RSS feed templates
418 - Add OpenSearch to feed templates
419 - Add `campaign_` to the URL cleanup pattern list
420 - Add an AUTHORS file and Makefile target to list authors from Git commit data
421 - Link imports are now logged in `data/` folder, and can be debug using `dev.debug=true` setting.
422 - `composer.lock` is now included in git file to allow proper `composer install`
423 - History mechanism which logs link addition/modification/deletion
424
425 ### Changed
426 - Docker: enable nginx URL rewriting for the REST API
427 - Theming:
428 - Move `user.css` to the `data` folder
429 - Move default template files to a subfolder (`default`)
430 - Rename the legacy theme to `vintage`
431 - Private only filter is now displayed as a search parameter
432 - Autocomplete: pre-select the first element
433 - Display daily date in the page title (browser title)
434 - Timezone lists are now passed as an array instead of raw HTML
435 - Move PubSubHub to a dedicated plugin
436 - Coding style:
437 - explicit method visibility
438 - safe boolean comparisons
439 - remove unused variables
440 - The updater now keeps custom theme preferences
441 - Simplify the COPYING information
442 - Improved client locale detection
443 - Improved date time display depending on the locale
444 - Partial namespace support for Shaarli classes
445 - Shaarli version is now only present in `shaarli_version.php`
446 - Human readable maximum file size upload
447
448
449 ### Removed
450 - PHP < 5.5 compatibility
451 - ReadItYourself plugin
452
453 ### Fixed
454 - Ignore generated release tarballs
455 - Hide default port when behind a reverse proxy
456 - Fix a typo in the Markdown plugin description
457 - Fix the presence of empty tags for private tags and in search results
458 - Fix a fatal error during the install
459 - Fix permalink image alignment in daily page
460 - Fix the delete button in `editlink`
461 - Fix redirection after link deletion
462 - Do not access LinkDB links by ID before the Updater applies migrations
463 - Remove extra spaces in the bookmarklet's name
464 - Piwik plugin: Piwik URL protocol can now be set (http or https)
465 - All inline JS has been moved to dedicated JS files
466 - Keep tags after login redirection
467
468 ### Security
469 - Markdown plugin: escape HTML entities by default
470
471
472 ## [v0.8.7](https://github.com/shaarli/Shaarli/releases/tag/v0.8.7) - 2018-06-20
473 ### Changed
474 - Build the Docker image from the local Git sources
475
476 ### Removed
477 - Disable PHP 5.3 Travis build (unsupported)
478
479
480 ## [v0.8.6](https://github.com/shaarli/Shaarli/releases/tag/v0.8.6) - 2018-02-19
481 ### Changed
482 - Run version check tests against the 'stable' branch
483
484
485 ## [v0.8.5](https://github.com/shaarli/Shaarli/releases/tag/v0.8.5) - 2018-01-04
486 **XSS vulnerability fixed. Please update.**
487
488 ## Security
489 - Fix an XSS (cross-site-scripting) vulnerability in `index.php` -
490 [CVE-2018-5249](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-5249)
491
492 ## [v0.8.4](https://github.com/shaarli/Shaarli/releases/tag/v0.8.4) - 2017-03-04
493 ### Security
494 - Markdown plugin: escape HTML entities by default
495
496 ## [v0.8.3](https://github.com/shaarli/Shaarli/releases/tag/v0.8.3) - 2017-01-20
497 ### Fixed
498 - PHP 7.1 compatibility: add ConfigManager parameter to anti-bruteforce function call in login template.
499
500 ## [v0.8.2](https://github.com/shaarli/Shaarli/releases/tag/v0.8.2) - 2016-12-15
501 ### Fixed
502
503 - Editing a link created before the new ID system would change its permalink.
504
505 ## [v0.8.1](https://github.com/shaarli/Shaarli/releases/tag/v0.8.1) - 2016-12-12
506
507 > Note: this version will create an automatic backup of your database if anything goes wrong.
508
509 ### Added
510 - Add CHANGELOG.md to track the whole project's history
511 - Enable Composer cache for Travis builds
512 - Save the last edition date for shaares and use it in Atom/RSS feeds
513 - Plugins:
514 - Add an [Isso](https://posativ.org/isso/) plugin to enable user comments on permalinks
515 - Allow defining init functions, e.g. for performing checks and error processing
516 - Add a Piwik plugin for analytics.
517 - Markdown: add warning notice regarding HTML rendering
518 - Meta tag to *not* send the referrer to external resources.
519
520 ### Changed
521 - Link ID complete refactoring:
522 - Links now have a numeric ID instead of dates
523 - Short URLs are now created once and can't change over time (previous URL are kept)
524 - Templates:
525 - Changed placeholder behaviour for: `buttons_toolbar`, `fields_toolbar` and `action_plugin`
526 - Cleanup `{loop}` declarations in templates
527 - Tools: hide Firefox Social button when not in HTTPS
528 - Firefox Social: show Shaarli's title when shaaring using Firefox Social
529 - Release archives now have the same structure as GitHub-generated archives:
530 - archives contain a `Shaarli` directory, itself containing sources + dependencies
531 - the tarball is now gzipped
532 - Plugins:
533 - Markdown: Parsedown library is now imported through Composer
534 - Minor code cleanup: PHPDoc, spelling, unused variables, etc.
535 - Docker: explicitly set the maximum file upload size to 10 MiB
536
537 ### Fixed
538 - Fix the server `<self>` value in Atom/RSS feeds
539 - Plugins:
540 - Tools: only display parameter description when it exists
541 - archive.org: do not propose archival of private notes
542 - Markdown:
543 - render links properly in code blocks
544 - bug regarding the `nomarkdown` tag
545 - W3C compliance
546 - Use absolute URL for hashtags in RSS and ATOM feeds
547 - Docker: specify the location of the favicon
548 - ATOM feed: remove new line between content tag and data
549
550 ### Security
551 - Allow whitelisting trusted IPs, else continue banning clients upon login failure
552
553
554 ## [v0.8.0](https://github.com/shaarli/Shaarli/releases/tag/v0.8.0) - 2016-10-12
555 Shaarli now uses [Composer](https://getcomposer.org/) to handle its dependencies.
556 Please use our release archives, or follow the
557 [installation documentation](https://github.com/shaarli/Shaarli/wiki/Download-and-Installation).
558
559 ### Added
560 - Composer is required to resolve Shaarli's PHP dependencies
561 - Shaarli now supports `#hashtags`
562 - Firefox social share now uses selected text as a description
563 - Plugin parameters can have a description in each plugin's `.meta` file
564
565 ### Changed
566 - Configuration is now stored as a JSON file
567 - Previous configuration format will be automatically updated (PHP -> JSON)
568 - Shaarli now defaults to cURL to fetch shaare titles
569 - URL cleanup: remove `PHPSESSID` parameter
570 - `nomarkdown` tag is no longer private, and now affects visitors
571 - Cleanup template indentation
572 - Rewrite bookmark import using a generic Netscape parser
573
574 ### Removed
575 - Shaarli no longer references Delicious in its description
576
577 ### Deprecated
578 - Shaarli configuration is not held as PHP globals anymore
579
580 ### Fixed
581 - Ignore case for tags in autocompletion and cloud tag
582 - Avoid generating empty tags
583 - Fix a Dockerfile syntax error
584
585 ### Security
586 - Fixed a bug preventing to change password
587 - XSRF token now generated each time a page is rendered
588
589
590 ## [v0.7.1](https://github.com/shaarli/Shaarli/releases/tag/v0.7.1) - 2017-03-08
591 ### Security
592 - Markdown plugin: escape HTML entities by default
593
594 ## [v0.7.0](https://github.com/shaarli/Shaarli/releases/tag/v0.7.0) - 2016-05-14
595 ### Added
596 - Adds an option to encode redirector URL parameter
597 - Atom/RSS feeds now support Markdown formatting, and plugins in general
598 - Markdown: use the tag `.nomarkdown` to avoid markdown processing
599 - Prefill the login field when the authentication has failed
600 - Show a private links counter
601
602 ### Changed
603 - Allow to use the bookmarklet in Firefox reader view (URL clean up)
604 - Improve tagcloud font size
605 - Improve title retrieving
606 - Markdown: inline code background color
607 - Refactor Netscape bookmark export
608 - Refactor Atom/RSS feed generation
609
610 ### Removed
611 - Remove delicious from Shaarli description
612
613 ### Fixed
614 - Fix bad login redirections causing a 404 in a few cases
615 - Fix tagcloud font-size with French locale
616 - Don't display empty tags in tag search
617 - Fix Awesomeplete conflicts with jQuery
618 - Fix UTC timezone selection
619 - Fix a bug preventing to import notes in browsers from bookmarks export
620 - Don't redirect to ?post if ?addlink is reached while logged out
621
622
623 ## [v0.6.5](https://github.com/shaarli/Shaarli/releases/tag/v0.6.5) - 2016-03-02
624 ### Fixed
625 - Fixes a regression generating an unnecessary warning (language in HTTP request)
626 - Fixes a bug where going through multiple reverse proxy could generate malformed URL
627 - Markdown: Fixes a bug where empty description blocks were displayed
628
629
630 ## [v0.6.4](https://github.com/shaarli/Shaarli/releases/tag/v0.6.4) - 2016-02-28
631 ### Added
632 - Add an updater class to automate user data upgrades
633 - Plugin admin page: adds a label for checkboxes and improve name display
634 - Plugin Wallabag: API version can be specified in plugin admin page
635
636 ### Changed
637 - Better tag cloud sorting, including special chars (`a > E > é > z`)
638 - Autolocale now sets all locale categories, not just time
639 - Use PHP's DateTime object instead of custom functions
640 - Plugin hooks: process includes before header/footer
641 - Markdown plugin: better styles for `<code>` and `<pre>` tags
642 - Improve searching:
643 - search terms are now considered separated and won't only return exact results anymore
644 - exact search can be done with quotes `"this exact sentence"`
645 - search supports excluded terms starting a dash `-exclude`
646 - implement crossed search: terms + tags
647 - all of them combined across all shaare fields
648 - New tag behaviour:
649 - tags starting with a dash will be renamed without it
650 - tags starting with a dot `.` will be hidden unless the user is logged in
651
652 ### Fixed
653 - Fix Markdown plugin escape issues (code/quote blocks, etc.)
654 - Link description aren't trimmed anymore to allow markdown format at the beginning of a shaare
655 - Fixes plugin admin redirection page on error
656
657 ### Security
658 - Fix a bug where non initialized variables were causing a warning
659 - Fix a bug where saving a link after edit could cause a 404 error
660
661
662 ## [v0.6.3](https://github.com/shaarli/Shaarli/releases/tag/v0.6.3) - 2016-01-31
663 ### Added
664 - Plugins administration page
665 - Markdown plugin added for shaares description
666 - Docker: Dockerfile is now in the main git repository and improved
667 - Add a `.gitattributes` to ease repository management
668 - Travis: include file permission checks
669
670 ### Changed
671 - Auto retrieve of title know works with websites (HTTPS, follow redirections, etc.)
672 - 404 page is now handled in a template
673 - Date in log files updated to work with fail2ban
674 - Wallabag: support of Wallabag v2 and minor fixes
675 - Link search refactoring
676 - Logging function refactoring
677
678 ### Fixed
679 - Fix a bug where renaming a tag was causing a 404
680 - Fix a bug allowing to search blank terms
681 - Fix a bug preventing to remove a tag with special chars when searching
682
683
684 ## [v0.6.2](https://github.com/shaarli/Shaarli/releases/tag/v0.6.2) - 2015-12-23
685 ### Changed
686 - Plugins: new footer hook
687 - Plugins: improve QR code
688 - Cleanup templates
689
690 ### Fixed
691 - Plugins: use the actual link URL to generate QR codes
692 - Templates: missing/erroneous page titles
693 - Templates: missing variables resulting in PHP errors
694
695 ### Security
696 - Fix invalid file permissions (remove executable bit)
697
698
699 ## [v0.6.1](https://github.com/shaarli/Shaarli/releases/tag/v0.6.1) - 2015-12-01
700 ### Added
701 - Add OpenSearch support
702 - Add a Doxygen makefile target
703 - Tools: add fine-grained file/directory permission checks (installation)
704
705 ### Changed
706 - Tools: check the 'stable' branch for new versions (updates)
707 - Cleanup: introduce an `ApplicationUtils` class
708
709 ### Removed
710 - Cleanup: remove `json_encode()` function (built-in since PHP 5.2)
711
712 ### Fixed
713 - Auto-complete more than one tag
714 - Bookmarklet: support titles containing quotes
715 - URL encode links when setting a redirector
716
717
718 ## [v0.6.0](https://github.com/shaarli/Shaarli/releases/tag/v0.6.0) - 2015-11-18
719 ### Added
720 - Introduce a plugin system
721 - Add a demo_plugin
722 - Add plugins:
723 - addlink_toolbar
724 - archiveorg
725 - playvideos
726 - qrcode
727 - readityourself
728 - wallabag
729
730 ### Changed
731 - Coding style
732
733 ### Fixed
734 - Adding a new link now returns the correct anchor in the URL
735 - Set default file permissions
736
737
738 ## [v0.5.4](https://github.com/shaarli/Shaarli/releases/tag/v0.5.4) - 2015-09-15
739 ### Added
740 - HTTPS: support being served behing an SSL-enabled proxy
741
742 ### Changed
743 - HTTP/Server utilities: refactor & add test coverage
744 - Project & documentation:
745 - improve/rewrite `README.md`
746 - update contributor list
747 - update `index.php` header
748
749 ### Fixed
750 - PHP session IDs: handle hash algorithms and bits per char representations
751
752
753 ## [v0.5.3](https://github.com/shaarli/Shaarli/releases/tag/v0.5.3) - 2015-09-02
754 ### Fixed
755 - Fix a bug that could prevent user to login
756
757
758 ## [0.5.3](https://github.com/shaarli/Shaarli/releases/tag/0.5.3) - 2015-09-02
759 This release has been YANKED as it points to a tag that does not follow our naming convention. Please use `v0.5.3` instead
760
761 ### Fixed
762 - Allow uppercase letters in PHP sessionid format
763
764
765 ## [v0.5.2](https://github.com/shaarli/Shaarli/releases/tag/v0.5.2) - 2015-08-31
766 ### Added
767 - Add PHP 7 to Travis platforms
768
769 ### Changed
770 - Also extract HTTPS page metadata (title)
771
772 ### Fixed
773 - Fix regression preventing to load LinkDB info when adding an existing link
774
775 ### Security
776 - Fix Full Path Disclosure upon cookie forgery
777
778
779 ## [v0.5.1](https://github.com/shaarli/Shaarli/releases/tag/v0.5.1) - 2015-08-17
780 ### Added
781 - Add a link to the shaarli/shaarli DockerHub repository
782
783 ### Changed
784 - Update local documentation
785 - Improve timezone detection at installation
786 - Improve feed cache handling
787 - Improve URL cleanup for new links
788
789 ### Fixed
790 - Fix 404 after editing a link while being logged out
791
792
793 ## [v0.5.0](https://github.com/shaarli/Shaarli/releases/tag/v0.5.0) - 2015-07-31
794 ### Added
795 - Add Firefox Social API
796 - Start code refactoring:
797 - add unit test coverage
798 - add Travis integration
799
800 ### Changed
801 - Search/Filter by tag fieds can now be accessed quickly with the `Tab` key
802 - Update documentation
803 - Remove duplicate tags in links
804 - Remove annoying URL patterns
805 - Start code refactoring:
806 - move all settings to `data/config.php`
807 - refactor Config, LinkDB, TimeZone, Utils
808
809 ### Fixed
810 - Fix locale handling
811 - Fix note URLs
812 - Fix page redirections
813 - Fix daily RSS browsing
814 - Fix title display
815 - Restore compatibility with PHP 5.3
816
817 ### Security
818 - Fix links not being hidden when `HIDE_PUBLIC_LINKS` is set
819
820
821 ## [v0.0.45beta](https://github.com/shaarli/Shaarli/releases/tag/v0.0.45beta) - 2015-03-16
822 ### Fixed
823 - Fix improperly displayed Unicode character
824 - Fix incorrect font size for "Add link" input field
825
826
827 ## [v0.0.44beta](https://github.com/shaarli/Shaarli/releases/tag/v0.0.44beta) - 2015-03-15
828 ### Added
829 - Add a Makefile to run static code checkers
830 - Add local documentation (help link in page footer)
831 - Use awesomplete library for autocompletion
832 - Use bLazy.js library for images lazy loading
833 - New 'Add Note' bookmarklet to immediatly open a note (text post) compose window
834
835 ### Changed
836 - Theme improvements and cleanup (menu, search fields, icons, linklist...)
837 - Allow 'javascript:' links sharing (bookmarklets)
838 - Make update check optional
839 - Redirect to homepage after adding a link via "Add Link" dialog
840 - Remove more annoying URL parameters for shared links
841 - Code cleanup
842
843 ### Removed
844 - Remove jQuery
845
846 ### Security
847 - Don't disclose version to visitors (shaarli-version.txt)
848
849
850 ## [v0.0.43beta](https://github.com/shaarli/Shaarli/releases/tag/v0.0.43beta) - 2015-02-20
851 ### Added
852 - Title button link URL is now configurable
853 - RainTPL's TMP and TPL directories path are now configurable
854 - Displayed URLs for each link are now clickable links
855 - Show links timestamps in Daily view
856
857 ### Changed
858 - Automatically prepend "Note:" to title of self-posts (posts not pointing to an URL)
859 - Make ATOM toolbar button optional (`SHOW_ATOM` configuration variable)
860 - Optional archive.org links for each Shaarli link (`ARCHIVE_ORG` option)
861 - Thumbnails: force HTTPS when possible
862 - Improve tag cloud font scaling
863 - Allow pointing RSS items to the permalink instead of the direct URL (`ENABLE_RSS_PERMALINKS` option)
864 - Update JS libraries and add version numbers in filenames
865 - Updates to README and footer
866
867 ### Fixed
868 - Fix problems when running Shaarli behind a reverse proxy (invalid RSS feed URL)
869 - Update check now checks against the community fork version
870 - Include `cache/`, `data/`, `pagecache/` and `tmp/` directories in the repository
871 - Fix duplicate tag search returning no results
872 - Fix unnecessary 404 error on "Add link" when the user is logged out
873 - Fixes to copyright/licensing information and unlicensed media
874 - Fixes for tag cloud invalid links
875 - Coding style fixes/cleanup
876 - Fix redirection after deleteing a link leading to a 404 error
877 - Shaarli's HTML is now W3C-compliant
878 - Search now works with Unicode characters
879
880 ### Security
881 - Do not leak server's PHP version and Shaarli's full path on errors
882 - Prevent Shaarli from sending a lot of duplicate cookies
883
884
885 ## [v0.0.42beta](https://github.com/shaarli/Shaarli/releases/tag/v0.0.42beta) - 2014-07-27
886 ### Added
887 - Add QRCode Javascript library
888 - Allow importing bookmarks with the same timestamp (hack)
889 - Allow putting a description in the bookmarklet URL
890 - Add `json_encode()` implementation for PHP<5.2
891 - Highlight search results
892
893 ### Changed
894 - Improve 'Stay signed in' behaviour
895 - Improve `smallHash()`
896 - Refactor QRCode generation
897 - Update Javascript lazyloading
898 - Update CSS
899
900 ### Removed
901 - Remove jQuery from almost all pages
902
903 ### Fixed
904 - Fix overlapping tags
905 - Fix field foxus in the bookmarklet
906 - Fix error message when `data/` is not writable
907 - Fix HTML generation
908
909 ### Security
910 - Fix XSS flaw
911
912
913 ## [v0.0.41beta](https://github.com/shaarli/Shaarli/releases/tag/v0.0.41beta) - 2013-03-08
914 ### Added
915 - Add HTTPS to the allowed protocols
916 - Add support for magnet links in link descriptions
917 - Allow creating new links as private by default
918 - Allow disabling jQuery
919 - Check write permissions
920 - Check session support before installation
921
922 ### Changed
923 - Improve token security
924 - RSS feed: allow inverting links/permalinks
925
926 ### Fixed
927 - Fix display issues during installation
928 - Fix popup redirection after login failure
929 - Fix RSS formatting for Thunderbird
930 - Fix thumbnail creation
931 - Fix cache purge
932
933 ### Security
934 - Fix login issue with WebKit browsers
935
936
937 ## [v0.0.40beta](https://github.com/shaarli/Shaarli/releases/tag/v0.0.40beta) - 2013-02-26
938 Initial release on GitHub.
939
940
941 ## [v0.0.40beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-08-24
942 ### Added
943 - Flickr thumbnail now also support albums, galleries and users
944 - Add a configuration option to disable session cookie protection
945 Check this if your get disconnected often or your IP address changes often
946
947 ### Removed
948 - Removed the xml comment in cached RSS/ATOM feed
949 (although W3C-compliant, this may cause problems in some feed readers)
950
951 ### Fixed
952 - A bug in the RSS cache would present old items as new in some cases
953 - A small bug (non-initialized variable) in page cache cleaning
954 - Proper "Nothing found" message when search returns no results
955 - No more 404 error when searching with empty input
956 - Flickr thumbnails are back (Flickr has made some changes to their domains)
957
958 ## [v0.0.39beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-08-10
959 ### Added
960 - A cache for RSS feed, ATOM feed and Daily RSS feed, because these URLs
961 are massively hammered. Cache is automatically purged whenever the database
962 is changed. This will reduce server load. I may add cache to other pages later.
963
964 ### Changed
965 - No more global `$LINKSDB` (Yuk)
966 - Background color was removed when hovering a link
967
968 ### Fixed
969 - Small bug corrected in config screen on timezones
970 - Calling a non-existing permalink now returns a crude 404 error instead of 200 (OK)
971 This is done on purpose
972 - The `shaarli` session cookie now has a proper path
973 Thus you can now install several Shaarlis on the same server in different paths,
974 and each will have its session
975 - Now when you delete a link, you go back the same page/search parameters you were on
976 - Restore previously removed `error_get_last()`, to ensure PHP 5.1 compatibility
977 (Yes, now it works on free.fr hosting)
978 - Added `dialog=1` in bookmarklet code for some browsers
979
980
981 ## [v0.0.38beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-02-06
982 ### Added
983 - Automatic creation of the `tmp` directory with proper rights (for RainTPL)
984 - When you click the key to see only private links, it turns yellow
985
986 ### Changed
987 - The "Daily" page now automatically skips empty days.
988
989 ### Fixed
990 - Corrected the tag encoding (there was a bug when selecting a second tag which contains accented characters)
991
992
993 ## [v0.0.37beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-02-01
994 ### Added
995 - Basic CSS for mobiles, which makes Shaarli //much// more usable on mobile devices
996 - Picture wall no more instantly kills your browser. Now it uses
997 [lazy image loading](http://www.appelsiini.net/projects/lazyload);
998 the pictures are loaded only as you scroll the page.
999 This will reduce browser memory usage (especially on mobile devices),
1000 as well as server load.
1001 If you have javascript disabled, the page will still work as before
1002 (all images loaded at once)
1003 - RSS feed for the "Daily" page. 1 RSS entry per day, with all links of that day.
1004 RSS feed provides the last 7 days (only non-empty days are returned).
1005 - In link list, added an icon to see only private links. Click to toggle (only private / all)
1006
1007
1008 ## [v0.0.36beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-01-25
1009 ### Added
1010 - Shaarli licence in COPYING
1011
1012 ### Changed
1013 - Display adjustments in "Daily" page
1014
1015 ### Fixed
1016 - Improper text color in install form
1017 - Error in QRCode url (missing '?')
1018
1019
1020 ## [v0.0.35beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-01-25
1021 ### Fixed
1022 - Corrected a bug introduced in 0.0.34 which would improperly preprend data to URLs
1023
1024
1025 ## [v0.0.34beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-01-25
1026 ### Added
1027 - There is now a QR-Code of each permalink to easily open a link on your smartphone
1028 - Protocols `file:` and `apt:` are now also converted to clickable links (patch by Francis Chavanon)
1029 - Thumbnail support for http://xkcd.com/ (patch by Emilien Klein)
1030 - Thumbnail support for http://pix.toile-libre.org/
1031 - Well I had _some_ mercy for users with antique browsers (IE) which do not have
1032 support for gradients: I added a few `background-color`
1033 - First version of the "Shaarli Daily", a page showing all links of a specific day.
1034 By default, you see the links of the previous day.
1035 There is still work to do on this page (error checking, better navigation (calendar?),
1036 RSS feed, CSS for mobile and printing...)
1037
1038 ### Changed
1039 - Upgraded bundled versions of jQuery (1.7.1) and jQuery UI (1.8.17)
1040 - Upgraded bundled version of RainTPL (2.7)
1041 - Changed HTTPS detection code
1042
1043 ### Fixed
1044 - In link edition, you can now click the word "Private" to check the box
1045 - Clicking a tag would not work properly if the tag contained special characters (like +)
1046 - Added proper jQuery licence (shame on me)
1047
1048
1049 ## [v0.0.33beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2012-01-17
1050 ### Added
1051 - Shaarli packaged to ease Linux distributions integration
1052 As a simple user, you do not need to cope with these versions
1053 Future releases of Shaarli will also be customized and published in these directories
1054 Differences with the standard Shaarli version:
1055 - deb:
1056 - .tar.gz instead of .zip
1057 - COPYING licence file added
1058 - jQuery/jQuery-UI libraries removed to cope with Debian rules
1059 This version links to the libs hosted at http://code.jquery.com
1060 - rpm:
1061 - sources located in a subdirectory with the same name as the zip file
1062 - COPYING licence file added
1063 - WARNING: When downloading the .tar.gz, always use wget (and not your browser),
1064 otherwise the .tar.gz will be corrupted
1065
1066 ### Fixed
1067 - ATOM feed validates again
1068
1069 ### Security
1070 - XSS vulnerability patched (thanks to Stanislas D.!)
1071
1072
1073 ## [v0.0.32beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-12-16
1074 ### Added
1075 - Better check on URL parameters (patch by gege2061)
1076 - Add `max-height` and `overflow:auto` attributes so that content can be scrolled if too large
1077
1078 ### Changed
1079 - HTML generation moved to RainTPL templates (in the `tpl/` directory)
1080 - Better detection of HTTPS (patch by gege2061)
1081 - In RSS/ATOM feeds, the GUID is now the permalink instead of the final URL (patch by gege2061)
1082 - Jerrywham CSS patch included
1083 - Multiple spaces are now respected in description.
1084 Thus you can use Shaarli as a personal pastebin (for posting source code, for example).
1085
1086 ### Removed
1087 - Page time generation was removed
1088
1089 ### Fixed
1090 - Tab order changed in login screen
1091 - Permalinks now work even if additional parameters have been added
1092 (e.g. `/?E8Yj2Q&utm_source=blablabla...`)
1093 - user.css is included only if the file is present
1094 (This prevents a useless CSS include which makes a harmless but useless 404 error.)
1095
1096
1097 ## [v0.0.31beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-11-29
1098 ### Added
1099 - Support for TED Talks (ted.com/talks) thumbnails (patch by Emilien K.)
1100 - 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
1101 - Support for bookmark files without ADD_DATE attributes
1102 - Logo is clickable
1103 - `user.css` can be added to overload Shaarli base CSS.(patch by Jerrywham).
1104 Just put `user.css` in the same directory as shaarli.css.
1105 Example: `<code css>#pageheader { background: blue; }</code>`
1106 Please note that Shaarli CSS are not stable and may completely change on each version
1107
1108 ### Changed
1109 - Edit and Delete buttons in link list were replaced with icons. (patch by Jerrywham)
1110
1111 ### Fixed
1112 - Better error handling in thumbnail generation (patch by Emilien K.)
1113 - The top menu is no longer displayed in bookmarklet popup
1114 - Bookmark which have the exact same date/time are now correctly imported.
1115 Most remaining import problems should be solved now
1116 - Comment in Shaarli export moved to beginning of file to prevent clash with last link description
1117
1118
1119 ## [v0.0.30beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-11-18
1120 ### Added
1121 - Add a small `delete` button in link list (after the `edit` button)
1122
1123 ### Fixed
1124 - Moved the call to PubSubHub
1125
1126
1127 ## [v0.0.29beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-11-18
1128 ### Fixed
1129 - Corrected a bug introduced in v0.0.28beta
1130 (there was an error if you use the bookmarklet and you're not logged in)
1131
1132
1133 ## [v0.0.28beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-11-17
1134 ### Added
1135 - Thumbnail support for youtu.be URLs (YouTube short url service)
1136 - PubSubHub protocol support (from http://aldarone.fr/les-flux-rss-shaarli-et-pubsubhubbub/).
1137 Warning: This was not tested. You need to set your hub url in
1138 `$GLOBALS['config']['PUBSUBHUB_URL']` and put the official client (`publisher.php`)
1139 in the same directory as Shaarli's `index.php`
1140 - RSS and ATOM feeds now also contain tags (in `category` tags, as per their
1141 respective specifications)
1142
1143 ### Changed
1144 - New Shaarli theme and logo by Idle (http://www.idleman.fr/blog/?p=469)
1145 - In picture wall, pictures point to Shaarli permalink instead of final URL.
1146 This way, users can read the description.
1147 - In RSS/ATOM feeds, guid and link URL of permalinks are now proper absolute URLs
1148 - In RSS/ATOM feeds, URLs are now clickable
1149 - Rename `http_parse_headers()` to `http_parse_headers_shaarli()` to prevent
1150 name collision with some PHP extensions
1151
1152 ### Fixed
1153 - Thumbnails removed for imgur.com/a/ URLs (Thumbnails are not available for albums on imgur)
1154 - Shaarli now correctly only tries to get thumbnails for vimeo video URLs
1155 - Fix a bug in imgur.com URLs handling that would cause some thumbnails not to appear
1156 - The search engine would not return a result if the word to search was the first in description
1157 - Extracted title is now correct if the page has two `title` html tags
1158
1159
1160 ## [v0.0.27beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-10-18
1161 ### Added
1162 - Add a picture wall, which can be filtered too: it will use the same filters
1163 (tags,text search) as current page when clicked.
1164
1165
1166 ## [v0.0.26beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-10-17
1167 ### Changed
1168 - Made permalink more visible (smallHash)
1169
1170 ### Fixed
1171 - Removed extras space in description when URLs are converted to clickable links
1172 - Thumbnail for subreddit imgur urls (/r/...) were corrected (thanks to Accent Grave)
1173
1174
1175 ## [v0.0.25beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-10-13
1176 ### Added
1177 - Better CSS for printing (thanks to jerrywham suggestion)
1178 - Allow using a redirector or anonymizing proxy for links
1179 (such as `http://anonym.to/?` to mask you `HTTP_REFERER`).
1180 Just go to `Tools > Configure > Redirector`
1181 (thanks to Accent Grave for the suggestion).
1182 - The `ENABLE_LOCALCACHE` option can be set to `false` for those who have
1183 a limited quota on their host.
1184 This will disable the local thumbnail cache.
1185 Services which require the use of the cache will have no thumbnails
1186 (vimeo, flickr, direct link to image).
1187 Other services will still have a thumbnail (youtube,imgur.com,dailymotion,imageshack.us)
1188
1189 ### Changed
1190 - Now thumbnails generated by Shaarli are croped to a height of 120 pixels
1191 - YouTube thumbnails now use `default.jpg` instead of `2.jpg` (This is usually more pertinent)
1192 - Configuration options (such as `HIDE_TIMESTAMPS`, `ENABLE_THUMBNAILS`, etc.)
1193 can now be put in a an external file so that you do not have to tweak them again
1194 when you upgrade Shaarli.
1195 Just add the file `data/options.php`.
1196 - If a single link is displayed, the page title contains the title of the link
1197 - Shaarli page title is clickable (and has the same link as "Home")
1198 - A few CSS tweaks (thanks to maethor for suggestion)
1199
1200 ### Fixed
1201 - Shaarli now supports newlines in titles (thanks to dixy)
1202 - The link to the RSS feed in page header was not correct
1203
1204
1205 ## [v0.0.24beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1206 ### Added
1207 - Allow posting an entry without a link. (You can use Shaarli as a kind of "personal twitter")
1208 - Each Shaarli entry now has a short link (just click on the date of a link).
1209 Now you can send a link that points to a single entry in your Shaarli
1210 - In descriptions, URLs are now clickable
1211 - Thumbnails will be generated for all link pointing to .jpg/png/gif
1212 (as long as the images are less than 4 Mb and take less than 30 seconds to download)
1213
1214 ### Fixed
1215 - Now thumbnails also work for imgur gallery links (/gallery/...)
1216 (Thanks to Accent Grave for the correction)
1217 - Removed useless debugging information in log
1218 - The filter in RSS/ATOM feed now works again properly (it was broken in 0.0.17beta)
1219
1220
1221 ## [v0.0.23beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1222 ### Added
1223 - Added thumbnail support for imageshack.us
1224
1225 ### Changed
1226 - Now you can clic the sentence "Stay signed in" to tick the checkbox (patch by Emilien)
1227 - In tag editing, comma (,) are now automatically converted to spaces
1228 - In tag editing, autocomplete no longuer suggests a tag you have already entered in the same line
1229
1230
1231 ## [v0.0.22beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1232 ### Added
1233 - Support for thumbnails for flickr.com
1234 - Allow staying signed in:
1235 Your session will be kept open even if you close the browser.
1236 This is available through a checkbox in the login screen.
1237
1238 ### Changed
1239 - Some hosts (flickr, vimeo) are slow as hell for the thumbnails,
1240 or require an extra HTTP request.
1241 For these hosts the thumbnail generation has been deported outside the generation
1242 of the page to keep Shaarli snappy.
1243 For these slow services, the thumbnails are also cached.
1244
1245 ### Fixed
1246 - Title was not properly passed if you had to login when using the bookmarklet (patch by shenshei)
1247
1248
1249 ## [v0.0.21beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1250 ### Added
1251 - Thumbnails for some services
1252 Currently supports: YouTube.com, dailymotion.com, vimeo.com (slow!) and imgur.com.
1253 Thumbnails are enabled by default, but you can turn them off
1254 (set `define('ENABLE_THUMBNAILS',true);` to `false`).
1255
1256 ### Changed
1257 - Removed the focus on the searchbox (this is cumbersome when you want to browse pages
1258 and scroll with the keyboard)
1259
1260
1261 ## [v0.0.20beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1262 ### Fixed
1263 - RSS feed is now served as `application/rss+xml` instead of `application/xhtml+xml`
1264 (which was causing problem in //RSS Lounge//)
1265 - ATOM feed is now served as `application/atom+xml` instead of `application/xhtml+xml`
1266
1267
1268 ## [v0.0.19beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1269 ### Added
1270 - ATOM feed
1271
1272 ### Fixed
1273 - Patch by Emilien to remove the update notification after the update
1274
1275
1276 ## [v0.0.18beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1277 ### Added
1278 - You can now configure the title of your page
1279 - New screen to configure title and timezone
1280
1281 ### Changed
1282 - Nicer timezone selection patch by killruana
1283
1284 ### Fixed
1285 - New lines now appear correctly in the RSS feed descriptions.
1286
1287
1288 ## [v0.0.17beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1289 ### Added
1290 - Change password screen added (based on a patch by killruana)
1291 - Autocomplete in the tag search form
1292 - You can rename or delete a tag in all links
1293 (very handy if you misspelled a tag or want to merge tags)
1294 - When you click the RSS feed, the feed will be filtered with the same filters
1295 as the page you were viewing
1296
1297 ### Changed
1298 - CSS adjustments by jerrywham
1299 - Minor corrections
1300
1301
1302 ## [v0.0.16beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1303 ### Added
1304 - Upgrade notification:
1305 If a new version of Shaarli is available, you will be notified by a discreet
1306 message in top-right corner.
1307 This message will only be visible if you are logged in, and the check will be
1308 performed at most once a day.
1309 - Preliminary tag cloud (ugly for the moment, I need to find something better)
1310
1311 ### Changed
1312 - Replaced `preg_match()` with `version_compare()` to check PHP version
1313 - Includes a patch by Emilien K. to mask dates if user is not logged in.
1314 The option can be activated by changing `define('HIDE_TIMESTAMPS',false);` to `true`
1315
1316
1317 ## [v0.0.15beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1318 ### Added
1319 - New in import: Option to overwrite existing links when importing
1320 - On free.fr, automatic creation of the `/sessions` directory
1321
1322 ### Changed
1323 - CSS Stylesheet is now an external file (shaarli.css).
1324 This reduces page size and eases customization.
1325
1326 ### Removed
1327 - Removed some parameters in URL added by some feed proxies (`#xtor=RSS-...`)
1328
1329 ### Fixed
1330 - Bug corrected: Prevented loop on login screen upon successful login after a failed login
1331 - Bug corrected in import: HTML entities were not properly decoded.
1332 If you imported your Delicious/Diigo bookmarks, your should import them again
1333 and use the 'overwrite' option of the import feature.
1334
1335
1336 ## [v0.0.14beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1337 ### Added
1338 - You no longer need to disable `magic_quotes` on your host.
1339 Shaarli will cope with this option beeing activated.
1340
1341
1342 ## [v0.0.13beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1343 ### Added
1344 - Import: New option to import html bookmark file as private links
1345 - Import: Importing a bookmark file will not overwrite existing links anymore
1346 - Export: New options to export only public or private links
1347
1348 ### Changed
1349 - In tag autocomplete, tags are presented in use order
1350 (most used tags first, instead of alphabetical order)
1351 - RSS Feed can now be filtered by tags or fulltext search. Just add to the feed url:
1352 - `&searchtags=minecraft+video` for tag filtering
1353 - `&searchterm=portal` for fulltext search to the feed url
1354
1355
1356 ## [v0.0.12beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1357 ### Added
1358 - Add a check that the config file was properly created
1359 (in case Shaarli does not have the write rights in its folder)
1360 - Open Shaarli: there is an option to open your Shaarli to anyone.
1361 Anybody will be able to add/edit/delete links without having to login.
1362 In code, change `define('OPEN_SHAARLI',false);` to `true`.
1363 Note: No anti-spam for the moment. You are warned!
1364 - Autocomplete for tags
1365
1366
1367 ## [v0.0.11beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1368 ### Added
1369 - Add a check and a warning for some hosts which still have `magic_quotes` activated
1370
1371
1372 ## [v0.0.10beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1373 ### Added
1374 - Get rid of `&quot;` in titles
1375
1376
1377 ## [v0.0.9beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1378 ### Added
1379 - Now works on hosts `free.fr` and `1and1`
1380 - Now works with PHP 5.1
1381 - PHP version is now checked and an error message is displayed if version is not correct
1382
1383 ### Fixed
1384 - No more error messages if the browser does not send `HTTP_REFERER`
1385 - No more error messages if the host has disabled http protocol in PHP config (eg. 1and1)
1386
1387
1388 ## [v0.0.8beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history)
1389 ### Changed
1390 - In RSS feed, GUID content replaced with the URL of the link, because some
1391 stupid RSS reader (like Google Reader) use `<guid>` as a link instead of using `<link>`
1392
1393
1394 ## [v0.0.7beta](http://sebsauvage.net/wiki/doku.php?id=php:shaarli:history) - 2011-09-16
1395 First public release by Sebsauvage, see original article:
1396 [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)