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