| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | |
|
| | |
|
| |
| |
| |
| |
| | |
Instead of sending an email to the devs, it now creates an issue on GitHub using a zap from zapier.
|
| | |
|
| | |
|
| |
| |
| |
| | |
And add a step to validate a generated code from the OTP app
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
Replace “Google Authenticator” by “Google Authenticator, Authy or FreeOTP” in all text.
Translate how to use the code / qr code.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- 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
|
| | |
|
| | |
|
| |
| |
| |
| | |
And run newer cs fixer
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
- 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
|
| | |
|
| | |
|
| |
| |
| |
| | |
That status was used as `http_status` in ContentProxy->stockEntry
|
| |
| |
| |
| |
| |
| |
| | |
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
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
Instead of one per type, one for all is ok.
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
- Fix error for level 0 & 1 (level 7 has 699 errors...)
- Add `updated_at` to site_credential (so the `timestamps()` method applies correctly)
|
| |
| |
| |
| |
| |
| |
| | |
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.
|
| | |
|
|\| |
|
| |
| |
| |
| | |
Only allowed parameter are asc & desc
|
| |\
| | |
| | | |
Rework of EPUB/PDF exports
|
| | |
| | |
| | |
| | | |
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Add metadata to the cover of each entry:
- Publishers
- Estimated reading time
- Date of creation ("Added on")
- Address (URL)
Related to #2821
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Change '{method} authors' (which gives 'Tag_entries authors' when
exporting a tag) to 'Various authors'.
When exporting a tag (tag_entries), change the title from 'Tag_entries
articles' to 'Tag {tag} articles'.
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This commit renames entry chapters file using a sha1 sum of their title
for simplicity. Also we fix the 'Title' chapter duplicate issue by using
the hash of the related entry and the suffix '_title'.
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This change only remove the rendered page of the TOC at the end of the
book, the TOC remains available to readers.
Fixes #3603
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
|
| |\ \
| | | |
| | | | |
Cast client id to avoid PG error
|
| | | |
| | | |
| | | |
| | | | |
If someone send a malformated client_id when trying to authenticate using the API we got a 500 if wallabag use postgres because the request send a string instead of an integer.
|
| | | |
| | | |
| | | | |
Should fix https://github.com/wallabag/wallabag/issues/3832
|
| | |/
| |/|
| | | |
Should fix https://github.com/wallabag/wallabag/issues/3832
|
| |\ \
| | | |
| | | | |
EntriesExport/epub: replace epub identifier with unique urn
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We replace the title used as the unique identifier of the epub file with
a urn following the format:
urn:wallabag:{sha1("wallabagUrl:listOfEntryIdsSeparatedByComma")}
This format is repeatable: it always gives the same uid for the same
list of entries.
Fixes #3811
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
|
| |\ \ \
| | |/ /
| |/| |
| | | |
| | | | |
lizyn/bugfix/incorrect-calculation-of-CJK-characters-in-reading-time-estimation
Fix incorrect reading time calculation for entries with CJK characters
|