891456ba9a
Links on each tag in Tags view
2016-08-23 07:24:42 +02:00
79efca1e6f
Merge remote-tracking branch 'origin/master' into 2.1
2016-08-22 23:03:16 +02:00
474b086656
Simplify the initialization of the plugin dotdotdot
2016-08-22 23:59:20 +03:00
e32aea53ab
Added the jquery library dotdotdot ( http://dotdotdot.frebsite.nl/ ) that allows you to clip a text on the second line and fixed cut entries title in card view
2016-08-22 23:34:44 +03:00
9c545fe028
Added name on client
...
- Fix typos in field name
- Added migration for name field in API client table
Manually cherry-picked from PR
https://github.com/wallabag/wallabag/pull/2171
2016-08-22 20:18:27 +02:00
c649d43381
Merge pull request #2222 from wallabag/add-date-on-article-view
...
Added creation date and reading time on article view
2016-08-22 09:40:21 +02:00
d35ba2c3d6
Display text on baggy
...
Instead of using icons (which aren't available) display real text for reading time & creation date
2016-08-21 22:22:34 +02:00
4e4e8e9899
Merge pull request #2221 from wallabag/replace-favorite-star
...
Replaced favorite word/icon with star one
2016-08-21 22:11:20 +02:00
19d9efab32
Avoid breaking import when fetching fail
...
graby will throw an Exception in some case (like a bad url, a restricted url or a secured pdf).
Import doesn't handle that case and break the whole import.
With that commit the import isn't stopped but the entry is just skipped.
Also, as a bonus, I've added extra test on WallabagImportV2 when the json is empty.
2016-08-20 01:17:26 +02:00
e7732deb1f
Changed code indentation
2016-08-18 15:37:44 +02:00
eecd7e406d
Fixed some translations
2016-08-18 15:30:28 +02:00
4e1be104ab
Added creation date and reading time on article view
...
Fix #2034
2016-08-18 15:23:19 +02:00
519ba0b5e7
Replaced favorite word/icon with star one
...
Fix #2041
2016-08-18 14:27:17 +02:00
0cecfa2536
CS
2016-08-17 14:36:20 +02:00
e49c62fac8
Fix form user display for baggy theme
2016-08-17 11:41:46 +02:00
8f5e220327
Fix form user display when 2FA is disabled
2016-08-17 11:41:46 +02:00
8cb869ea95
add some missing phpdoc parameters
2016-07-24 11:47:03 +02:00
75ac3e6289
Fixed typo in entry:notice:entry_saved
...
"Eintag" to "Eintrag"
2016-07-23 22:40:23 +02:00
8c7d7c0300
Merge pull request #2199 from Simounet/facto/social-links
...
Handling socials links into a config file
2016-07-21 16:17:53 +02:00
57c608fa94
php-cs-fixer pass
2016-07-20 23:08:04 +02:00
40288b7166
Chrome extension URL updated
2016-07-20 22:55:43 +02:00
0e1abf392c
FIX image inside a figure element max-width (baggy theme)
2016-07-20 20:23:55 +02:00
f64472e9f8
FIX image inside a figure element max-width
2016-07-20 19:39:24 +02:00
39f27d6370
Handling socials links into a config file
2016-07-20 19:36:01 +02:00
0faeabefa7
Merge remote-tracking branch 'origin/master' into 2.1
2016-07-20 12:02:02 +02:00
57b62cbf79
Fixed spelling Artúclos --> Artículos
2016-07-18 21:53:53 +02:00
8d4152f70d
Remove fr part
2016-07-02 11:56:14 +02:00
baef8ea26c
Fix 3rd-Party Apps links (Chrome & Firefox)
2016-07-02 11:50:32 +02:00
1d4d9aaf29
Bring tags on entries view to baggy
...
Also, a couple of UI improvement and CSS fixing
2016-07-01 13:59:30 +02:00
4f0558a0d4
fix merge issue
2016-06-29 20:52:37 +02:00
28803f106b
Add filter for tags on API
2016-06-29 09:55:57 +02:00
e43c78abd9
CS
2016-06-25 23:19:21 +02:00
e5fb89e5d3
Add since parameter
2016-06-25 21:05:50 +02:00
e7aed21b33
add line to other languages
2016-06-24 11:45:42 +02:00
a15022db96
minor ui fixes
2016-06-23 23:13:25 +02:00
91826e3ca2
fix typo on icons
2016-06-23 22:51:09 +02:00
25dc07d3c9
Add tags on entries view
...
Should be tested on old browsers
2016-06-23 22:50:39 +02:00
f49d9ca383
Merge branch 'master' into 2.1
2016-06-23 11:47:46 +02:00
fb5c17a9ab
Merge pull request #2157 from wallabag/lower-upper-readingtime
...
Handle only upper or only lower reading filter
2016-06-23 11:38:10 +02:00
2c00dddf01
fixup! Handle only upper or only lower reading filter
2016-06-23 09:41:30 +02:00
1bdbc39f02
Handle only upper or only lower reading filter
...
When we select only one value in the reading time filter, we need to perform a query with only one value (greater than OR lower than).
2016-06-23 09:41:30 +02:00
b46124cb9b
Fix a few french translations typos
2016-06-23 09:38:49 +02:00
49e2854d5c
Merge pull request #2142 from wallabag/v2-use-npm
...
Manage assets through npm
2016-06-23 09:25:01 +02:00
4e411208cc
Try to find bad redirection after delete
...
Instead of checking for the whole absolute url, we just check with the relative url.
If the referer ends with the relative url of the deleted entry, don't redirect to the referer.
2016-06-23 09:15:50 +02:00
e42b13bcff
Change ManyToMany between entry & tag
...
Following https://gist.github.com/Ocramius/3121916
Be sure to remove the related entity when removing an entity.
Let say you have Entry -> EntryTag -> Tag.
If you remove the entry:
- before that commit, the EntryTag will stay (at least using SQLite).
- with that commit, the related entity is removed
2016-06-23 09:15:50 +02:00
6334f2cac1
Display a message when saving an entry failed
...
When saving an entry fail because of database error we previously just returned `false`.
Now we got an error in the log and the displayed notice to the user is updated too.
2016-06-23 09:15:50 +02:00
f06f840c9d
Move fixtures to the right place
2016-06-23 09:15:50 +02:00
af95c09c80
Fix the deletion of Tags/Entries relation when delete an entry
...
Fix #2121
2016-06-23 09:15:50 +02:00
26ed851f52
Add unread filter test to EntryControllerTest
...
Add a new test to the EntryControllerTest collection which checks that
only entries which have not been archived (and are treated as "unread")
are retrieved.
2016-06-23 09:15:50 +02:00
710f8e69d7
Add unread filter to entries pages
...
Add the ability to filter for unread pages in the filters menu.
2016-06-23 09:15:50 +02:00