forked from lwindolf/liferea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1917 lines (1499 loc) · 63.9 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2023-04-16 Lars Windolf <[email protected]>
Version 1.15.0
* Fixes #1217, #1224: Endless recursion in 1.14.3
(reported by uduecoder, mokraemer)
* Fixes #1214: crash in conf_get_bool_value_from_schema
(mozbugbox, reported by Mikel Olasagasti)
* Fixes #1215: failed to build in launchpad PPA due to
auto_test permission issue (reported by PandaJim)
* Fixes #1212: 1.14.1 crash when refreshing feeds.
(mozbugbox, reported by Froggy232)
* Fixes #1198: FreshRSS logging in correctly but can't get posts
(reported by Roger Gonzalez)
* Fixes a memory leak when reloading CSS
(Lars Windolf)
* Fixes CVE-2023-1350: RCE vulnerability on feed enrichment
(patch by Alexander Erwin Ittner)
* Fixes #1200: Crash on double free
(mozbugbox)
* Improve #1192 be reordering widget creation order
(Lars Windolf)
* Improvements to the libnotify plugin
(Tasos Sahanidis)
* Fixes a g_object_unref warning on shutdown
* Drops a debug output in the plugin installer
* Drop webkit inspector from installable plugins in favour of --debug-html
* Drop pane plugin from default plugins
* Drop pane plugin (old workaround for pane issues)
2023-01-10 Lars Windolf <[email protected]>
Version 1.14.0
New features/changes:
* #1152: Reduces height of the status bar to save vertical space.
(Lars Windolf)
* #1070: Added new plugin 'add-bookmark-site' that allows to configure
a custom bookmarking site.
(Lars Windolf)
* Liferea now supports gtk-application-prefer-dark-theme based
dark mode switching.
(Lars Windolf, Alexander Erwin Ittner)
* #1148: Add search rule to find items from a given author.
(Alexander Erwin Ittner)
* #1147: Exported OPML feed lists are now UTF-8 encoded for better readability.
(Alexander Erwin Ittner)
* #1145: Render <media:description> field for Youtube feeds
(Lars Windolf)
* #1143: Updated default feed sources (HTTP->HTTPS)
(Alexander Erwin Ittner)
* #1133: Added new "podcast" search folder rule.
(Alexander Erwin Ittner)
* #1139: Also add enclosures when saving items to file.
(Alexander Erwin Ittner)
* Patch #1184: Solving Webkit proxy method deprecations
(Matthew Horan)
* Changes to UserAgent handling: same UA is now used for both feed fetching
and internal browsing. User agent now indicates Android+Mobile per default
instead of suggesting a Linux desktop to better adapt to the smaller
(in comparison to browsers) rendering pane. Additionally special env
vars LIFEREA_UA and LIFEREA_UA_ANONYMOUS now also affect the internal
browsing.
* Improve HTML5 extraction: extract <main> if it exists and no article
was found.
* #1117: Hide unused expander space in item list. This saves horizontal
space. (Sefler Zhou)
* Drop enclosure icon from item list. This saves horizontal space.
(Lars Windolf)
* #515, #962, #1113 adds generic Google Reader API support
(this enables access to FeedHQ, FreshRSS, Miniflux...)
* #1108, #113: Improve performance by different check order in itemset
merging (suggested by mozbugbox)
* #1103: New hot key Ctrl-D for 'Open in External Browser'
(David Yang)
* #1095: New feature: Export items to feed file
(Alexandre Erwin Ittner)
* #1078, #1081, #1082: Make several plugins XDG path aware
(Paweł Marciniak)
* #1071: Various fixes and feature enhancements for TheOldReader sources
Sync titles, sync folder changes, fix removal consistency
(Matthew Horan)
* #1061: Faster and safer generation of localized filenames
(Lorenzo Ancora)
* #1052: Allow building with libpango < 1.43.0 (Ubuntu 18.04)
(Alexandre Erwin Ittner)
* #778: New preference: deferred removal of read items from folders and
search folders. (Rich Coe)
* Allow converting TinyTinyRSS subscriptions to local subscriptions
(Lars Windolf)
* #1045: Further integration of Reader mode with internal browser
(Matthew Moran)
* #1044: Support for user-agent string customization and anonymization
(Lorenzo Ancora)
* #1037: Fix deprecation of g_time_zone_new
(Paweł Marciniak)
* #1027: Add option to show news bins in reduced feed list
(Alexandre Erwin Ittner)
* #1023: Execute feed pipe/filter commands asynchronously
(Alexandre Erwin Ittner)
* #1018: Fix deprecation of pango_find_base_dir
(Paweł Marciniak)
* #1017: Fix deprecation of g_memdup
(Paweł Marciniak)
* #1016: Type casting to silence compiler warnings
(Paweł Marciniak)
* #1014: Fixes some compiler warnings
(Paweł Marciniak)
* #343: UX redesign of the update message in the status bar. Now shows a
update counter of the feeds being in update.
(Lars Windolf)
* #964: Added pane position fix plugin providing a workaround for pane position
issues when using the headerbar
(Paweł Marciniak)
* #983: Use GtkFileChooserNative to allow selecting local files when
run in sandbox.
(Leiaz)
* #907: Add new search folder property that allows hiding read items
(Lars Windolf, suggested by Jeff Fortin)
* Now always shows the unread count of a search folder (instead of the
item count) in the feed list
(Lars Windolf)
* Now search folders are automatically rebuild when rules are changed
(Lars Windolf)
* Adds a new simple focus plugin that adds transparency on the feed list
when it is not focussed.
(Paweł Marciniak)
* Add F10 hotkey to headerbar plugin to allow triggering the hamburger menu
(Paweł Marciniak)
* Update Flatpak AppData with release dates
(Mikel Olasagasti)
* Make several plugins support gettext
(Paweł Marciniak)
* Prevent endless loop on favicon discovery
(Lars Windolf)
* #903: Prevent endless loop in feed autodiscovery
(reported by Leiaz)
* #912: Allow mutiple feed in same libnotify notification
(Tasos Sahanidis)
* Further favicon discovery improvements: now detects all types of
Apple Touch Icons, MS Tile Images and Safari Mask Icons
Fixes #440
(Lars Windolf)
* Add reader mode context menu toggle in the item view
(Lars Windolf)
* #876 Add reader mode preference
(Lars Windolf)
* Implement support for subscribing to LD+Json metadata
listings e.g. concert or theater event listings
(Lars Windolf)
* Provide the default icon for feeds with no favicon as SVG
for nicer rendering in wide view. Drop some unused icons.
Replace tray icon with scalable version.
(Lars Windolf)
* #893: Update of bookmarking sites
(Mikel Olasagasti)
* #888: Changes required for Flathub
(Mikel Olasagasti)
* #882: Implement support for Webkits Intelligent Tracking Protection
(Leiaz)
* #875: Add <Ctrl>-0 hotkey to reset zoom
(Leiaz)
* #874: Add debug printing of SAX parser errors
(Leiaz)
* #846: Remove deprecated usage of gdk_screen_*
(ghost)
* #844: Update metainfo path (appdata target directory)
(Yuri Konotopov)
* #776: CSS color update on theme change without restart
(sillyslux)
* #846, #864, #735: Fix main menu/toolbar not being translated
(reported by nesfla, Qik000, SingleMalt2104)
* #854: Adding new search folder options to match
subscription source ULR and parent folder name.
(suggested by muhlinux)
* #851: Add accessibility check to code tests
(Lars Windolf)
* #765: Embed YouTube videos from MediaRSS feeds
(Mikel Olasagasti)
* #749: Add Readability.js library (Apache 2.0 licensed)
and auto-apply Readability.js to all headlines
(Lars Windolf)
* Drop unused glade/google_source.ui
(Lars Windolf)
* #747: Font improvements
(Azhar Mithani)
* #250 Update some dialog labels
(GreenLunar)
* #837: Removing GTimeVal references
(Tom Perez)
* #827: Respect global update refresh interval for TheOldReader
(Matthew Horan)
* #826: Fix save/restore position issues with tray icon
(Matthew Horan)
* #822: Improve performance of item list loading
(Rich Coe)
* #815: Add support for subscribing to HTML5 websites
without RSS/Atom feeds by extracting article
titles,links and descriptions
(Lars Windolf)
* #816: Increase size of stored favicons to 128x128px
to improve icon quality in 3-pane wide view. Also add
favicon URL discovery tests.
* #800: Expose remove-item action for plugins
(mozbugbox)
* #752: Trayicon plugin has now a configuration option
to change the behaviour when closing Liferea.
(BurnhamG)
* #764: Add MediaRSS support (e.g. Youtube feeds) to display
descriptions and thumbnails
(Mikel Olasagasti)
* #773: Add WebKit Inspector menu option to HTML view when
run with --debug-html (by sillyslux)
* #714: Replaces deprecated gtk_menu_popup
(Leiaz)
* #705: New hotkey Ctrl-O to open enclosures
(Leiaz)
* #680: Add xdg-email command to item list popup menu
(poetsmeniet)
* #699: Refactoring of duplicate check handlingg
(dymoksc)
Deprecations:
* Drop blogChannel namespace support
(Lars Windolf)
* Support multi-feed discovery
(Lars Windolf)
* Default to https:// instead of http:// when user doesn't
provide protocol on subscribing feed
(Lars Windolf)
* Drop CDF channel legacy support
(Lars Windolf)
* Drop Atom 0.2/0.3 (aka Pie) legacy support
(Lars Windolf)
* Drop support of combined view mode, this is necessary
to add rich content support which relies on DOM
transformation and Readability.js
(Lars Windolf)
* Drop ns_photo support, as it is rarely used and
allows us to get rid of XSLT extra handling
(Lars Windolf)
Bugfixes:
* Fixes #1182: Periodic crash when navigating items (TheOldReader)
(reported by Matthew Horan)
* Fixes #1176: Custom liferea.css no longer working
(Matthew Horan)
* Fixes #1174: Missing date for some feeds
(reported by jfbauer432)
* Fixes #1170: broken notification icon in libnotify plugin
(Tasos Sahanidis)
* Fixes #1162: a string impossible to translation
(Paweł Marciniak)
* Fixes #1124: Formation vanishes after a few seconds
(reported by Michael F. Schönitzer)
* Fixes #1121: Wait for network to be fully available before updating
(reported by Jeff Fortin)
* Fixes #1155: Toolbar/menu actions disabling wrong for search
folders/folders
(Lars Windolf)
* Fixes #1154: Search folder property "Hide read items" has wrong
initial state when opening dialog
(Lars Windolf)
* Fixes #1100: Dates are overwritten on every update for feeds
that do not provide date information.
(Lars Windolf)
* Fixes #923: Reading folders with unread filtering active often
has remnant read items
(Lars Windolf)
* Fixes #723: LiveJournal feeds parsing can make the headline link
a link to an XML document. Liferea now checks for the line MIME type.
(Lars Windolf)
* Fixes #720: Mark all as read doesn't clear Unread folder if one
entry is selected
(Lars Windolf)
* Fixes #501: Fixes segfault when deleting a search folder that
is rebuilding
(Lars Windolf)
* Fixes #1132: Improved timeout error handling in feed commands
(Alexander Erwin Ittner)
* Fixes #1129: Accessibility errors in .ui files
(reported by Paul Gevers)
* Fixes #1126: Some images broken in reader mode
(reported by Saijin-Naib)
* Fixes #901, #1123: resize view panes to sensible positions
when they were at min or max position on last shutdown. Makes
left pane 30% window width and item list pane 50% height/width
when pane position is 0 or 95% of height/width. (Lars Windolf)
* Fixes #992: HTML with self-closing tags not rendering properly.
(Rich Coe)
* Fixes #644, #901, #909: restoring window size/position with header
bar plugin active. (Lars Windolf)
* Fixes #1033: Subscribing defaulted to HTML5 feeds even when real
feeds do exist. (reported by Hanno Braun)
* Fixes #1111: wrong base URI in reader mode
(Lars Windolf)
* Fixes #1112: Image duplication caused by feeds providing an image
link which is also in the item description as additional metadata.
(Lars Windolf)
* Fixes #1094: Fix Next Unread Item crash when no feed selected
(Matthew Horan)
* Fixes #1092: --debug-html seems broken
(Matthew Horan)
* Fixes #1073: Memory leak in stylesheet reloading
(Matthew Horan)
* Fixes #1069: Don't update HTML view when browsing internally
(Matthew Horan)
* Fixes #1064: Fix strsep implicit declaration warning
(Paweł Marciniak)
* Fixes #1058: Italian manpage installation
(Paweł Marciniak)
* Fixes #1053: Use liferea_shell_show_window() when activating
This shold fix an issue where position is not restored on XOrg when
Liferea is trigger from Cinnamon launcher (instead of tray)
(Matthew Horan)
* Fixes #1066: Browse to requested URI on JS window creation (this
prevents loading empty tabs on weird JS links some sites/feeds have)
(Matthew Horan)
* Fixes #1013: Certificate problems with some URLs
(Paweł Marciniak)
* Fixes 1005: aria2 download manager triggered by wrong command
(zorlaski)
* Fixes #981: Left-clicking an external link in the headline view caused the
Javascript disabled setting to be ignored.
(Lars Windolf)
* Fixes #993: Duplicate registration of libsoup content decoder
(Yanko Kaneti)
* Fixes #955: Blog post truncated after a YouTube embed
(reported by Jeff Fortin, fix by Rich Coe)
* Fixes #952: Number of unread items is 2 times the correct number
(reported by GaryGate15)
* Fixes #950: Multiple license issues:
- several header files with LGPLv2+ license -> fixed to GPLv2+
- several plugins with outdated LGPLv2+ -> updated to LGPLv3+
- missing LGPL license file COPYING.LIB -> added
(reported by Paul Gevers)
* Fixes #780: Improve date formatting when in locale en_GB
(Paweł Marciniak)
* Fixes #944: Broken RTL text direction in feed content view
(Lars Windolf)
* Fixes #949: Regression in notification plugin that caused it to show
non-new items
(Lars Windolf)
* Fixes #963: Checking for git command in plugin installer -> warn user
(Paweł Marciniak)
* Fixes #973: Broken CSS in Webkit2Gtk >= 2.32
(Leiaz)
* Fixes #192: wrong button order of media player in RTL locales
(patch by GreenLunar)
* Fixes #343: Usability of update infos in status bar. Now a total
count is displayed on mass-updates and a per-feed info on single
feed updates
(Lars Windolf)
* Fixes #809: Usability of feed fetching errors.
(Lars Windolf)
* Fixes CRITICAL on trayicon plugin init
(Lars Windolf)
* Fixes #884: Content of wrong feed is shown
(Leiaz, reported by Michael F. Schönitzer)
* Fixes #900: Flatpak needs icon named after appid
(Mikel Olasagasti)
* Fixes #908, #332: Search folder are not case-insensitive as documented
(reported by Heinz Peter Hippenstiel and Jeff Fortin)
* Fixes #899: Truncated articles (on 'Extrat full content')
(reported by Leiaz)
* Fixes #883: Feed with comments: last comment replaces all content
(Leiaz)
* Fixes #866: Bad encoding in doc/html/reference_de.html
(reported by Paul Gevers)
* Fixes #865: Fixes view mode switch
(Leiaz)
* Fixes #841: Now shows progress bar when loading websites
(Leiaz)
* Fixes #828: Crashing with segfault after opening feed articles
(chronoscz)
* Fixes XLST exception on mediarss feeds with description
(Lars Windolf)
* Fixes #851: accessibility annotations for several combo boxes.
(Lars Windolf)
* Fixes #850: embedded youtube video bug.
(reported by sblondon)
* Fixes #803: legacy links to mailing list and IRC in documentation.
(reported by Bill Dietrich)
* Fixes #840: OPML source subfolders not working
(fixed by Tomáš Janoušek)
* Fixes #821: Skip current item when finding next unread item
(Tom Perez)
* Fixes #799: plugins/headerbar.py translations not active
(reported by Paul Gevers)
* Fixes #783: Update IS_STATE when update item in itemlistview
(mozbugbox)
* Fixes #693: Add trayicon plugin option to disable minimizing to tray
(BurnhamG)
* Fixes #746: accessibility fatals reported by gla11y
(reported by Paul Gevers)
* Fixes #730: "Update all subscriptions at startup" overrides
"Don't update this feed automatically"
(Dymtro Kyrychuk, reported by Paul Wise)
* Fixes #639: Right clicking on article no longer selects it
(Leiaz, reported by Bruce Guenter)
* Fixes #745: URL fix for French example feeds
(sblondon)
Translations:
* Updated Albanian trasnlation (Besnik Bleta)
* Updated Brazilian-Portugese translation (Alexandre Erwin Ittner, Fúlvio Alves)
* Updated Czech translation (RadimNo)
* Updated Chinese translation (David Yang)
* Updated Simplified Chinese translation (Sefler Zhou)
* Updated Dutch translation (Gert-dev)
* Updated French translation (Guillaume Bernard, sblondon, guilieb, Yannik A.)
* Updated German translation (Lars Windolf)
* Updated Hungarian translation (Balázs Úr)
* Updated Indionesian translation (Samsul Ma'arif)
* Updated Italian translation (Janvitus, madmurphy)
* Updated Polish translation (Paweł Marciniak)
* Updated Russian trasnlation (mbrav)
* Updated Spanish translation (Christian Martinez, vosian)
* #893: Added Persion default feed list (Kevin Scruff)
* #1134, #1135: Updated Spanish example feeds (Joel Barrios)
Documentation:
* #1043: Added Italian documentation translation (Lorenzo Ancora)
* #1040: Updated all documentation for WCAG and HTML5 semantics
improves accessibility for screen readers
(Lorenzo Ancora)
* #1049: Update and extend man page
(Lorenzo Ancora)
2020-08-28 Lars Windolf <[email protected]>
Version 1.12.9
* #850: Fix embedded youtube video bug.
(reported by sblondon)
* Fixes #846, #864: Translations not applied to application
menu bar and tool bar.
(Skif-off)
2020-06-11 Lars Windolf <[email protected]>
Version 1.12.8
* Fixes #840: OPML source subfolders not working
(fixed by Tomáš Janoušek)
* Update of French translation
2019-08-03 Lars Windolf <[email protected]>
Version 1.12.7
* #734: Fixes crash when selecting empty nodes
(Leiaz)
* Fixes #727: Out-dated documentation on Firefox live bookmarks
(reported by blueray453)
* Fixes headline large images/videos or images with margins
causing horizontal scrolling in headline view
(Lars Windolf)
2019-12-04 Lars Windolf <[email protected]>
Version 1.12.6
* #658: Add confirmation dialog when adding duplicate subscription
(dymoksc)
* Fixes #689: When resuming from sleep feeds were being fetched
before Wifi cam up
(ghost)
* Fixes #685: Headerbar plugin "Mark All Read" button is not
feed-specific
(Robbie Cooper)
* Fixes #549: Scrollbars not always present in the headline area
(Leiaz)
* Fixes #543: Next update overrides HTML5 enrichment
(Lars Windolf)
* Fixes overly wide label in enclosure preferences dialog
(Lars Windolf)
* Dropped unencrypted warning from auth dialog (not true anymore)
(Lars Windolf)
* #692: Update of Czech translation
(RadimNo)
* #688: Adding translatable tooltips for the headerbar plugin
(Robbie Cooper)
2018-09-07 Lars Windolf <[email protected]>
Version 1.12.5
* #665: Webkit browser now supplies 'Liferea' component in user agent
* #664: Added "Mark All As Read" button to headerbar plugin
* #620: Added flatpak JSON
(glitsj16)
* #579: Added item list column drag and drop reordering
(Yanko Kaneti)
* #436, #662: Move from GnomeKeyring to libsecret
(bgermann)
* Fixes #663: Correct instapaper sharing link
(Daniel Alexandersen)
* Fixes #661: Update sharing links
(Daniel Alexandersen)
* Fixes #271: Consistent over usage of CPU (trigger by "Next Unread" loop)
(reported by GreenLunar)
* #472, #632: Dropping Inoreader support (API broke)
2018-07-23 Lars Windolf <[email protected]>
Version 1.12.4
* Fixes #660: Added installable plugin to change accels
(Lars Windolf)
* Fixes #654: Segfault on date out of range
(Leaiz)
* Fixes #651: Fixes Free Music Archive link in default OPMLs
(reported by benjbrandall)
* Fixes #649: Switch from persistent to session-only cookies
(Daniel Alexandersen)
* Fixes #645, #646: unread count of vfolder
(Leaiz)
* Fixes #637: Extra keywords in .desktop file (syndication; rss; atom)
(Daniel Alexandersen)
* Fixes #557: Updating counters for remote sources
(Leiaz)
* Updated cookie usage hint in FAQ
2018-05-02 Lars Windolf <[email protected]>
Version 1.12.3
* #634: Added setting for custom download commands
(Leiaz)
* #614: GTK Headerbar support via plugin
(Lars Windolf)
* #608: Refactoring UI code to switch to GAction and GtkBuilder
Note: this implies not having icons in the main menu anymore
which were still there for all non-GNOME users (see #626).
(Leiaz)
* #589: Item list view column order rework as a preparation for
possible real column drag&drop. Introduces a new DConf setting
for the column order.
(Yanko Kaneti)
* Fixes #280: Mark read toolbar button always disabled for search folders
(Lars Windolf, reported by dvahalev)
* Fixes #591: Please add a safety question when "marking all read"
(Leiaz, reported by Nudin)
* Fixes #625: Avoid exception in trayicon.py
(Lars Windolf)
* Fixes #627: GnomeKeyring plugin fails to activate when keyring doesn't exist
(Lars Windolf)
* Fixes #630: Fix feed list selection after DnD
(Peter Zaitev)
* Fixes #633: Big Memory leak in date code
(Leiaz)
* Update of Turkish translation (emintufan)
* Update of French translation (guilieb)
2018-03-07 Lars Windolf <[email protected]>
Version 1.12.2
* Adding a plugin installer plugin that allows discovering
and automatically installing 3rd party plugins
* #585: Drop language from user agent to increase privacy
(Daniel Aleksandersen)
* #583: Add transmission-gtk and aria2 as download tool options
(Daniel Aleksandersen)
* #495: New command line option --disable-plugins (-p) to start
with all plugins disabled.
* Fixes #610: Liferea not showing up in GNOME Software
(Yanko Kaneti)
* Fixes #604: Correctly print error message when failing
to unlock GNOME keyring
(ghost)
* Fixes #602: CSS style for GTK link colors not used
(reported by pupyc)
* Fixes #581: Redirect location updates and adds HTTP 308 (RFC 7538) support
(Daniel Aleksandersen)
* Fixes #578: Unable to set unread items in bold
(Leiaz, reported by EverEve)
* #612: Update of French translation
(Guillaume Bernard)
* #596: Update of Swedish translation
(jony0008)
* #594: Update of Polish default feed list
(wmyrda)
* #584: Fixes broken OPML feed list entries
(Daniel Aleksandersen)
* #584: Added Norwegian feed list
(Daniel Aleksandersen)
* #577: Fixes newsbin doc typo
(Daniel Aleksandersen)
2017-12-27 Lars Windolf <[email protected]>
Version 1.12.1
* Fixes #562: Lintian spelling errors
(reported by Paul Gevers)
* Fixes #563: Appstream data has new format
(patch by Paul Gevers)
* Fixes #572: Doesn't remember some sort orders
(reported by geplus)
* Fixes #504: Fix assertions/crashes on changing view layouts
(Leiaz)
* Fixes #573: Workaround to avoid GtkPaned shrinking
(Leiaz)
* #566: Update of Italian translation (Gianvito Cavasoli)
* #566: Update of Italian default feed list (Gianvito Cavasoli)
* #514: Update of Indonesian translation (Samsul Ma'arif)
* #514: Added Indonesian default feed list (Samsul Ma'arif)
* Update of German translation
2017-11-30 Lars Windolf <[email protected]>
Version 1.12.0
* Fixes unhiding from tray icon when activated via GApplication
(when starting Liferea a 2nd time)
* #399: Reorder columns in 'Normal' email-like view
to have the date column always at the end
(Mikel Olasagasti)
* #532: Add plugin to make unread feeds titles bold
(Yanko Kaneti)
* Workaround for #503: Liferea deanonymize Tor
(Leiaz)
* Fixes #450: #546 Resize both panes in normal and wide view
(Leiaz)
* Fixes #538: toggle_visibility() does not make a minimized window
visible again
(reported by Balló György)
* Fixes #522: Segfault when switching feed in combined view
(patch by jonmstone)
* Fixes #419, #457: Handling of relative URLs in Atom parser
(Leiaz)
* Added 'View Image' context menu option in HTML view
* Dropped del.icio.us from social bookmarking options
as it is a read-only service now.
* Redesign of the wide view mode: larger titles with small text teasers
* Added optional AMP/HTML5 content enrichment feature
2017-03-26 Lars Windolf <[email protected]>
Version 1.12-rc3
* Fixes #459: Fixes GtkDoc warnings
(Leiaz)
* Fixes #415: Filter commands are not asynchronous
(Rich Coe)
* Fixes #363: Missing space above internal browser address bar
(reported by nekohayo, patch by Mikel Olasagasti)
* Fixes #208: All "Unread" search folder items marked read at once
(Leiaz)
* Fixes #251: Liferea does not always use theme icons when it is launched
on system startup (reported by GreenLunar, fix by Leiaz)
* Change headline column sorting in wide view to time sorted
* Updated Finnish translation (Jorma Karvonen)
* Updated Latvian translation (Rihards Prieditis)
* Updated Albanian translation (Bensik Bleta)
* Updated Hungarian translation (Balázs Úr)
* Updated Brazlian translation (Rafael Ferreira)
* Updated French translation (Guillaume Bernard)
2016-11-11 Lars Windolf <[email protected]>
Version 1.12-rc2
* Change all g_warnings() to g_print() for remote source
to avoid "crashing" on errors.
* Reorganized all UI definitions in separate files to simplify
GtkBuilder handling.
* Github #425: Add GeoRSS info and map link in item header
(Mikel Olasagasti)
* Github #407: Replacing deprecated elements in preferences
(Leiaz)
* Github #396: Create LifereaApplication type
(Leiaz)
* Github #434: Partial RFC3229+feed support for bandwidth savings
(Daniel Aleksandersen)
* Fixes Github #208: gtk_tree_store_get_path: assertion
'iter->stamp == priv->stamp'
(reported by Mno-hime)
* Fixes Github #403: Leftover OSM XSLT in item view
(reported by Paul Gevers)
* Fixes Github #423: Internal browser shows files system on go-back
(Leiaz, reported by Paul Gevers)
* Updated German translation
* Github #441: Updated French translation
(Surfoo)
2016-09-20 Lars Windolf <[email protected]>
Version 1.12-rc1a
* Fixing missing header files
2016-09-19 Lars Windolf <[email protected]>
Version 1.12-rc1
* Github #348: Added support for downloading content that
cannot be displayed by HTML widget (e.g. PDFs)
(Leiaz)
* Github #355: Migrate to Python3 libpeas loader
(patch by picsel2)
* Github #311: Upgrade to WebKit2
(patch by Leiaz)
* Github #292: Show new item count in tray icon
(patch by mozbugbox)
* Github #297: Minimize to systray on window close
(patch by Hugo Arregui)
* Github #325: Auto-fitting, translated license
(patches by GreenLunar and Adolfo Jayme-Barrientos)
* Fixes Github #73: Problem with favicon update
(reported by asl97)
* Fixes Github #177, #350: Tray icon not scaled properly
(patch by mozbugbox)
* Removes GeoIP rendering via OSM to avoid exposing
users to remote JS library resources.
(reported by Paul Gevers)
* Fixes Github #337: Case sensitive sorting
(reported by Pi03k)
* Fixes Github #361: Show all enclosuers
(Leiaz)
* Fixes Github #368: Segfault on liferea-feed-add
(Leiaz)
* Fixes Github #382: Broken Auto-Detect/No Proxy setting
(Leiaz)
* Fixes Github #383: Per feed don't use proxy setting is broken
(reported by Leiaz)
* Github #309: Update of Japanese translation
(IWAI, Masaharu)
* Github #329: Update of Hebrew translation
(GreenLunar)
* Github #330: Update of Spanish translation
(Adolfo Jayme-Barrientos)
* Update of Swedish translation
(Andreas Ronnquist)
2016-01-30 Lars Windolf <[email protected]>
Version 1.11.7
* Github #287: Add support for media:group.
(patch by Leiaz)
* Github #287: Fixes issues with media:content.
(patch by Leiaz)
* Fixes Github #283: Bad .desktop categories definition
(reported by Wuzzy2)
* Fixes Github #279: Fixes rules no visible in searchdialog
(patch by Leiaz)
* Fixes Github #278: No "Download" tab in Tools/Preferences
(docs error, reported by Anders Jonsson)
* Fixes Github #83: Segfault when sorting feeds in folder
(patch by Leiaz)
* Fixes French translation
(patch by polo2ro)
* Github #300: Updated manpage
(patch by GreenLunar)
2015-10-12 Lars Windolf <[email protected]>
Version 1.11.6
* Added "Do Not Track" support (enabled per default)
* Github #193: Added x-scheme-handler/feed to desktop file
(suggested by GreenLunar)
* Github #209: Add image icons to plugins
(by GreenLunar)
* Github #210: Enable tests for parsing RFC822 dates with 2 digit year
(patch by arunanbala)
* Fixes Github #78: Shaky text in feed list
(reported by GreenLunar)
* Fixes Github #195: Out-dated documentation on enclose download
(reported by brian-in-crawford)
* Fixes Github #198: Traceback on popup notifications
(reported by GreenLunar)
* Fixes Github #216: Untranslatable strings
(reported by GreenLunar)
* Fixes Github #256: PyGIWarnings on loading plugins
(patch by glitjs16)
2015-06-19 Lars Windolf <[email protected]>
Version 1.11.5
* Github #178: Implementing full screen mode for videos
(mozbugbox)
* Fixes Github #32: Prevent erroneous "Mark all as read"
(reported by Mno-hime)
* Improves Github #36, #113: UI lock up during refresh
(suggested by mozbugbox)
* Fixes Github #180: Removing item from (v)folder marks all read
(reported by GreenLunar)