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