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