aboutsummaryrefslogtreecommitdiffhomepage
path: root/app
Commit message (Collapse)AuthorAgeFilesLines
* Add SQLite & PG migrationJeremy Benoist2019-01-231-5/+41
| | | | | Also remove the forced `server_version` from dbal config to avoid an hard overriding across all database.
* Add backup codesJeremy Benoist2019-01-232-2/+23
|
* Enable OTP 2FAJeremy Benoist2019-01-236-2/+68
| | | | | | | | | - Update SchebTwoFactorBundle to version 3 - Enable Google 2fa on the bundle - Disallow ability to use both email and google as 2fa - Update Ocramius Proxy Manager to handle typed function & attributes (from PHP 7) - use `$this->addFlash` shortcut instead of `$this->get('session')->getFlashBag()->add` - update admin to be able to create/reset the 2fa
* Removed hardcoded database versionJeremy Benoist2019-01-221-1/+0
|
* Move icon into the top menu barJeremy Benoist2019-01-192-2/+16
| | | | | | | Change the way to select a random entry: - select all ids from the given user (with filters) - choose randomly one in php - find that entry
* Enable PHPStanJeremy Benoist2019-01-181-0/+32
| | | | | - Fix error for level 0 & 1 (level 7 has 699 errors...) - Add `updated_at` to site_credential (so the `timestamps()` method applies correctly)
* Add a new endpoint to retrieve information from the wallabag instanceJeremy Benoist2019-01-151-3/+1
| | | | | | | Useful for api client which required some information. We might add more inside them in the future. The endpoint /api/version should be avoided now as it contains not so much information rather the version.
* Merge remote-tracking branch 'origin/master' into 2.4Jeremy Benoist2019-01-152-21/+19
|\
| * Jump to 2.3.7-devJérémy Benoist2019-01-111-1/+1
| |
| * Prepare 2.3.6 releaseJeremy Benoist2019-01-111-1/+1
| |
| * Jump to 2.3.6-dev and update release processJeremy Benoist2018-12-151-1/+1
| | | | | | | | Fix release archive in `release.sh` and also fix a typo in the release process
| * Prepare 2.3.5 releaseJeremy Benoist2018-12-141-1/+1
| |
| * Merge pull request #3783 from wallabag/issue-3780Kevin Decherf2018-11-261-1/+3
| |\ | | | | | | material: decrease size of tags on list view
| | * material: decrease size of tags on list viewKevin Decherf2018-11-251-1/+3
| | | | | | | | | | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
| * | Merge pull request #3782 from wallabag/issue-3779Kevin Decherf2018-11-261-19/+15
| |\ \ | | | | | | | | material: fix missing thumbnail on list view
| | * | material: fix missing thumbnail on list viewKevin Decherf2018-11-251-19/+15
| | |/ | | | | | | | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
| * / Jump to 2.3.5-dev and update release processJeremy Benoist2018-11-251-1/+1
| |/ | | | | | | After the latest release, I update the documentation about it so it’s more clear
* | Fix utf8mb4 on vendor tablesJeremy Benoist2018-11-282-19/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When creating the schema for test these tables use default length for string: 255. Which fail when using utf8mb4. > Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes Also move the `setKeepStaticConnections` in before and after class to avoid: > SAVEPOINT DOCTRINE2_SAVEPOINT_2 does not exist See https://github.com/dmaicher/doctrine-test-bundle#troubleshooting
* | Remove custom Postgres classJeremy Benoist2018-11-287-8/+0
| | | | | | | | Because PG > 10 is now supported by DBAL >= 2.6.0
* | Update fixturesJeremy Benoist2018-11-281-6/+6
| |
* | CleanupJeremy Benoist2018-11-282-16/+19
| |
* | Merge remote-tracking branch 'origin/master' into 2.4Jeremy Benoist2018-11-252-2/+7
|\| | | | | | | | | | | | | | | # Conflicts: # web/wallassets/baggy.js # web/wallassets/manifest.json # web/wallassets/material.css # web/wallassets/material.js
| * Prepare 2.3.4 releaseJeremy Benoist2018-11-231-1/+1
| |
| * Card no preview replaced by wallabag logoSimounet2018-11-211-6/+5
| |
| * Add placeholder image to card-based gallery entries page for #3651Matt Burke2018-10-151-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | I referenced https://css-tricks.com/using-svg/ for using the SVG icon. The icon has a black foreground and white background, which doesn't look very good as a placeholder. So, using the background-image style to show the svg and the inversion filter to make it white on gray. With the image always present, there isn't much difference between the with and without image preview templates, so I merged them. Tested on Chrome, Firefox, and Safari on OSX.
* | Merge pull request #3574 from shulard/feature/rename-tagsJérémy Benoist2018-10-153-1/+40
|\ \ | | | | | | Allow to rename tags from the web interface.
| * | Add specific styles for the card tag form element.Stéphane HULARD2018-09-252-1/+21
| | | | | | | | | | | | Also add a `.hidden` class in the baggy theme to have consistency with material.
| * | Update tag list template to allow renaming.Stéphane HULARD2018-09-251-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | * Add a form on each tag to handle rename action. * Add JavaScript to handle action on the corresponding page inside the global index.js file. * Add support for the 2 active themes : material / baggy The form solution is cleaner than an Ajax one because it let the browser validate input data and make the POST easier without the need to handle JSON response.
* | | Added possibility to change locale from login/register pagesNicolas Lœuillet2018-10-131-0/+1
| | |
* | | Add secure emailGlenn Goffin2018-10-112-8/+14
| | |
* | | Jump to Symfony 3.4Jeremy Benoist2018-10-046-7/+48
|/ / | | | | | | | | | | | | Thanks to the BC compatibility, almost nothing have to be changed. All changes are related to new bundle version of: - SensioFrameworkExtraBundle - DoctrineFixturesBundle
* / Entry: add archived_at property and updateArchived methodSébastien Viande2018-09-211-0/+68
|/
* php-cs-fixerKevin Decherf2018-09-051-1/+1
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Fixes another typoAleksandar Todorović (r3bl)2018-08-101-2/+2
|
* wallabag logo (side-nav) replaced by an SVG oneSimounet2018-07-112-0/+1
|
* wallabag logo with typo replaced by an SVG oneSimounet2018-07-112-0/+4
|
* Fake wallabag logo data image replaced by real SVGSimounet2018-07-111-300/+1
|
* Merge pull request #3683 from Simounet/fix/iframe-video-width-sharedJérémy Benoist2018-07-061-0/+6
|\ | | | | Fix mobile viewport on big iframe and video elements
| * Fix mobile viewport on big iframe and video elementsSimounet2018-06-281-0/+6
| |
* | The 'framework.trusted_proxies' configuration key has been deprecated in ↵Jeremy Benoist2018-07-051-1/+0
|/ | | | Symfony 3.3
* Prepare 2.3.3 releaseJeremy Benoist2018-06-191-1/+1
|
* We should able to get the table name unescapedJeremy Benoist2018-06-141-4/+4
| | | | When we want to perform complex queries to retrieve metadata from the database
* Fixed migrations with dash into db nameJeremy Benoist2018-06-1436-705/+93
|
* Merge pull request #3636 from flozz/syntax-highlightJérémy Benoist2018-06-072-1/+11
|\ | | | | Highlight code in articles using highlight.js
| * Highlight code in articles using highlight.jsFabien LOISON2018-04-232-1/+11
| |
* | Merge pull request #3646 from Quenty31/masterJérémy Benoist2018-06-011-2/+2
|\ \ | | | | | | [i18n] Occitan update
| * | Update CraueConfigBundle.oc.ymlQuentí2018-05-051-1/+1
| | |
| * | Update CraueConfigBundle.oc.ymlQuentí2018-05-051-2/+2
| |/
* | Fix Firefox mobile unneeded resizeSimounet2018-05-242-3/+5
| | | | | | | | | | | | Before that, on Firefox Mobile, when you were moving to the top or to the bottom of the page, you were stopped before to go to the opposite side.
* | Fix overflow wrap issueSimounet2018-05-212-0/+11
|/