aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAgeFilesLines
...
| | * Change the way to enable 2FAJeremy Benoist2019-01-2320-290/+617
| | | | | | | | | | | | And add a step to validate a generated code from the OTP app
| | * Remove secret from adminJeremy Benoist2019-01-231-6/+0
| | |
| | * Update translationJeremy Benoist2019-01-2314-14/+14
| | |
| | * Fix PG & Travis drop/create databaseJeremy Benoist2019-01-233-5/+13
| | |
| | * 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-2321-14/+96
| | |
| | * Better translationsJeremy Benoist2019-01-2315-35/+76
| | | | | | | | | | | | | | | | | | Replace “Google Authenticator” by “Google Authenticator, Authy or FreeOTP” in all text. Translate how to use the code / qr code.
| | * CleanupJeremy Benoist2019-01-232-3/+1
| | |
| | * Fix testsJeremy Benoist2019-01-234-69/+36
| | |
| | * Fix test for custom version of the tidy extensionJeremy Benoist2019-01-231-7/+7
| | |
| | * Enable OTP 2FAJeremy Benoist2019-01-2336-177/+553
| | | | | | | | | | | | | | | | | | | | | | | | | | | - 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
| | * Create a dedicated tab to reset dataJeremy Benoist2019-01-2315-31/+46
| |/
| * Merge pull request #3627 from craig0990/feature/add-search-api-endpoint2.4Jérémy Benoist2019-01-235-21/+159
| |\ | | | | | | Add a basic Search REST endpoint
| | * Fix third argument to RouteJeremy Benoist2019-01-222-4/+2
| | |
| | * Factorize sendResponse between Api controllersJeremy Benoist2019-01-224-41/+21
| | | | | | | | | | | | And run newer cs fixer
| | * [wallabag/wallabag#2611] Fix PHPCS lint errorsCraig Roberts2019-01-222-11/+2
| | |
| | * Fixes [wallabag/wallabag#2611] Add a basic Search REST endpointCraig Roberts2019-01-223-0/+169
| | | | | | | | | | | | | | | | | | | | | - Adds a new `search` key to `src/Wallabag/ApiBundle/Resources/config/routing_rest.yml` - Reuses the `getBuilderForSearchByUser` method from the EntryRepository - Supports, `term`, `page`, and `perPage` query parameters - Some very basic tests
| * | Merge pull request #3864 from wallabag/fix/database-init-versionJérémy Benoist2019-01-232-3/+0
| |\ \ | | |/ | |/| Removed hardcoded database version
| | * Avoid creating PG database on TravisJeremy Benoist2019-01-221-2/+0
| | | | | | | | | | | | And Travis build on PHP 7.3 should not fail.
| | * Removed hardcoded database versionJeremy Benoist2019-01-221-1/+0
| |/
| * Merge pull request #3526 from wallabag/add-random-articleKevin Decherf2019-01-2224-67/+214
| |\ | | | | | | Add random feature
| | * Update icon to `casino`Jeremy Benoist2019-01-222-2/+2
| | |
| | * Handle no random result foundJeremy Benoist2019-01-191-1/+6
| | |
| | * Fix status from InstapaperJeremy Benoist2019-01-191-1/+0
| | | | | | | | | | | | That status was used as `http_status` in ContentProxy->stockEntry
| | * Move icon into the top menu barJeremy Benoist2019-01-1922-28/+57
| | | | | | | | | | | | | | | | | | | | | 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
| | * Redirect to the current view instead of homepageJeremy Benoist2019-01-192-19/+18
| | |
| | * Better iconJeremy Benoist2019-01-191-1/+1
| | |
| | * Better random functionJeremy Benoist2019-01-191-9/+13
| | |
| | * Use only one method to randomizeJeremy Benoist2019-01-194-85/+42
| | | | | | | | | | | | Instead of one per type, one for all is ok.
| | * Fix testsJeremy Benoist2019-01-192-99/+94
| | |
| | * Added random featureNicolas Lœuillet2019-01-1918-10/+169
| |/
| * Merge pull request #3858 from wallabag/bump-ocramiusJérémy Benoist2019-01-181-3/+8
| |\ | | | | | | Bump ocramius/proxy-manager
| | * CSJeremy Benoist2019-01-183-3/+3
| | |
| | * Bump ocramius/proxy-managerThomas Citharel2019-01-171-3/+8
| | | | | | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
| * | Merge pull request #3859 from wallabag/phpstanJérémy Benoist2019-01-1827-43/+118
| |\ \ | | | | | | | | Enable PHPStan
| | * | Enable PHPStanJeremy Benoist2019-01-1827-43/+118
| |/ / | | | | | | | | | | | | - Fix error for level 0 & 1 (level 7 has 699 errors...) - Add `updated_at` to site_credential (so the `timestamps()` method applies correctly)
| * | Merge pull request #3845 from wallabag/feature/api-info-endpointKevin Decherf2019-01-153-3/+38
| |\ \ | | | | | | | | Add a new endpoint to retrieve information from the wallabag instance
| | * | Add a new endpoint to retrieve information from the wallabag instanceJeremy Benoist2019-01-153-3/+38
| |/ / | | | | | | | | | | | | | | | | | | 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.
| * | CSJeremy Benoist2019-01-153-3/+3
| | |
| * | Merge remote-tracking branch 'origin/master' into 2.4Jeremy Benoist2019-01-1561-1519/+3823
| |\ \ | |/ / |/| / | |/
* | Merge pull request #3841 from wallabag/fix/bad-order-apiJérémy Benoist2019-01-144-15/+33
|\ \ | | | | | | Fix bad order parameter in the API
| * | Avoid error when a bad `order` parameter is givenJeremy Benoist2019-01-143-14/+32
| | | | | | | | | | | | Only allowed parameter are asc & desc
| * | Come back to stable versionJeremy Benoist2019-01-141-1/+1
|/ / | | | | | | Previous one was used because some PHPUnit version where deleted and tests can't be run anymore.
* | Merge pull request #3837 from wallabag/2.3.7-devKevin Decherf2019-01-121-1/+1
|\ \ | | | | | | Jump to 2.3.7-dev
| * | Jump to 2.3.7-devJérémy Benoist2019-01-111-1/+1
|/ /
* | Merge pull request #3835 from wallabag/prepare-2.3.6Jérémy Benoist2019-01-112-1/+15
|\ \ | | | | | | Prepare 2.3.6 release
| * | Prepare 2.3.6 releaseJeremy Benoist2019-01-112-1/+15
|/ /
* | Merge pull request #3826 from wallabag/epub-tocJérémy Benoist2019-01-1117-32/+165
|\ \ | | | | | | Rework of EPUB/PDF exports
| * | EntriesExport: avoid else on $authorsKevin Decherf2019-01-091-4/+2
| | | | | | | | | | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
| * | EntriesExport: sanitize filename and fix testsKevin Decherf2019-01-082-13/+26
| | | | | | | | | | | | | | | | | | | | | | | | Filename will now only use a-zA-Z0-9-' and space. Fixes remaining filename issue on #3811 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>