When i get a article i dont see the image that illustrates this post , image i xan see from my wallabag instance.
Exemple of article that does not display image http://sixactualites.fr/high-tech/hubble-etonne-decouverte-dune-lune-gravitant-autour-de-planete-makemake/27331
The preview picture is not part of the content of that article saved in the database. It is saved separetly (separate column in the DB).
If we do not get the preview picture within the content of that article delivered through the RSS feed, there is no chance for the app to display that picture.
This is not even possible with the API of Wallabag v2 by now. If you want to have that preview pic somehow included, can you please address it in the wallabag repository. Maybe the entry delivered by the API can get extended by the preview picture.
(i hope you understand what i want to say. )
I close this issue for now, cause it is not possible to implement that at the moment. Feel free to reopen it, if we somehow can get the image from Wallabag API (and RSS feed maybe).
This is not even possible with the API of Wallabag v2 by now. If you want to have that preview pic somehow included, can you please address it in the wallabag repository. Maybe the entry delivered by the API can get extended by the preview picture.
The API _should_ return the preview picture preview_picture
@tcitworld You are referring to the section "Adding your first entry". This is the result you should get when you add an entry. I did not test that. But i tested /api/entries.json and there the article items do not have the preview picture in Wallabag v2.0.3
Not sure about it, but when you get an individual entry you should get it.
It would also make sense to get when retrieving a couple of entries. The preview picture would be the only data that's missing ATM.
Thanks for the hint, i will double check.
But i don't know why in this example the preview picture is stripped from the content.
We need to check because in the Windows Phone app (ping @jlnostr), preview pictures are available.
Preview pictures (link to it) are already available via API. Sorry, I overlooked that.
Well, the issue can be closed now, right?
@jlnostr no: the preview is in the API, but is not used yet by the app.
I really need this feature. There are many articles in which the most important info is in the preview_image.
Example => http://www.economist.com/blogs/graphicdetail/2017/01/daily-chart-19?fsrc=rss
Example => http://www.economist.com/blogs/graphicdetail/2017/01/daily-chart-19?fsrc=rss
This should be in the content, not only in the preview image. So maybe the content expression is wrong
Without image caching
line 143 @ ReadArticleActivity
String previewPicture = "<br><img src='" + mArticle.getPreviewPictureURL() + "'/><br>";
int estimatedReadingTime = mArticle.getEstimatedReadingTime(settings.getReadingSpeed());
htmlContent = getString(R.string.content_estimatedReadingTime,
estimatedReadingTime > 0 ? estimatedReadingTime : "< 1")
+ previewPicture + htmlContent;
I want this feature 馃槏
Would be great to have pls!
@di72nn could you make it for us? :heart:
Would be nice to have this settings:
There's a lot of stuff to implement:
No estimates.
By now, implementing an option to show/hide the preview image at the beginning of the article content is sufficient for most people.

I'm not sure that the preview picture should be shown in the article view, but it seems the web version does exactly that. So here you go: #539. I don't check for duplicates too.
Should work with commit b97b4a3175eb55f783d1ff60f40e73316a6acfbc on master.
Thanks @di72nn