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