forked from lwindolf/liferea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1638 lines (1305 loc) · 54.8 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
2021-05-07 Lars Windolf <[email protected]>
Version 1.13.6
* Change reader mode toggle from item view icon to toggle entry in
item view context menu.
(Lars Windolf)
* #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
(sunwire)
* #983: Use GtkFileChooserNative to allow selecting local files when
run in sandbox.
(Leiaz)
* Fixes #780: Improve date formatting when in locale en_GB
(sunwire)
* 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
(sunwire)
* Fixes #973: Broken CSS in Webkit2Gtk >= 2.32
(Leiaz)
* Updated Albanian translation
(Besnik Bleta)
* Updated French translation
(guilieb)
* Updated Italian translation
(Janvitus)
* Updated German translation
(Lars Windolf)
2021-01-10 Lars Windolf <[email protected]>
Version 1.13.5
* #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.
(sunwire)
* Add F10 hotkey to headerbar plugin to allow triggering the hamburger menu
(sunwire)
* Update Flatpak AppData with release dates
(Mikel Olasagasti)
* Make several plugins support gettext
(sunwire)
* 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)
* Updated Polish translation
(sunwire)
* Updated German translation
(Lars Windolf)
2020-12-24 Lars Windolf <[email protected]>
Version 1.13.4
* 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 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)
* 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)
* #902: Updated Polish translation
(sunwire)
2020-10-09 Lars Windolf <[email protected]>
Version 1.13.3
* #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)
* 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)
* 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)
* #893: Added Persion default feed list
(Kevin Scruff)
* #890: Update of Indionesian translation
(Samsul Ma'arif)
* #890: Update of French translation
(Yannick A.)
2020-08-29 Lars Windolf <[email protected]>
Version 1.13.2
* #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)
* #851: Fix accessibility annotations for several combo boxes.
(Lars Windolf)
* #850: Fix embedded youtube video bug.
(reported by sblondon)
* #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)
* 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)
* #747: Font improvements
(Azhar Mithani)
* #250 Update some dialog labels
(GreenLunar)
* #803: Fix legacy links to mailing list and IRC in
documentation.
(reported by Bill Dietrich)
* Updated German translation
(Lars Windolf)
* #861: Updated Spanish translation
(vosian)
2020-06-11 Lars Windolf <[email protected]>
Version 1.13.1
* Fixes #840: OPML source subfolders not working
(fixed by Tomáš Janoušek)
* #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)
* Fixes #821: Skip current item when finding next unread item
(Tom Perez)
* #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.
* Fixes #821: Skip current selected unread item on
'next unread item'
(Tom Perez)
* #800: Expose remove-item action for plugins
(mozbugbox)
* Fixes #799: plugins/headerbar.py translations not active
(reported by Paul Gevers)
* Fixes #783: Update IS_STATE when update item in itemlistview
(mozbugbox)
* #752: Trayicon plugin has now a configuration option
to change the behaviour when closing Liferea.
(BurnhamG)
* Fixes #693: Add trayicon plugin option to disable minimizing to tray
(BurnhamG)
2020-03-04 Lars Windolf <[email protected]>
Version 1.13.0
* #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)
* Drop unused glade/google_source.ui
* #699: Refactoring of duplicate check handlingg
(dymoksc)
* #746: Fix 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)
* #737: Update of Italian translation
(madmurphy)
* #745: URL fix for French example feeds
(sblondon)
* Update inline docs on headline view modes
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)
* Fixes Github #140, #158: Vertical pane placement is forgotten.
(patch by foresto)
* Fixes Github #182: Missing config.h include in date.c
(reported by Paul Gevers)
* Update of Russian translation (bboa)
2015-04-14 Lars Windolf <[email protected]>
Version 1.11.4
* Fixes Github #154: Crashes while starting (corrupt icon)
(reported by jcamposz)
* Github #149: Fixes a random crash on startup
(patch by mozbugbox)
* Fixes Github #79: RTL ordering of Back/Forward icons
(reported by GreenLunar)
* Fixes Github #30: Segfault after updating from 1.8 to 1.10
(reported by vakuum)
* Fixes Github #87: URL resolving wrong if base tag involved
(reported by DanMan, fixed by mozbugbox)
* Fixes all defects reported by Coverity scan
* Simplied external browser handling. Now Liferea only supports
the gtk_show_uri() launch mechanism for the system default browser
and a user specified browser command.
* Update of Albanian translation (Besnik Bleta)
* Update of Hebrew translation (Genghis Khan)
* Update of Spanish translation (Juan Campos Zambrana)
* Fixes typo in Italian translation
2015-02-11 Lars Windolf <[email protected]>
Version 1.11.3
* Fixes Github #134: Broken default news feed.
(reported by pvdl)
* Fixes Github #133: Subscribe into TheOldReader categories
* Fixes Github #122: Crashes at launch, "segmentation fault"
(reported by geoffm)
* Fixes some memory leaks
(patch by Rich Coe)
* Fixes Github #145: Incorrect method triggered for 'Launch External'
(patch by mozbugbox)
* Fixes Github #48: Window stays hidden on next start after Ctrl+W
(reported by Jeff Fortin)
* Expose LifereaHtmlView to GObject Introspection
(patch by mozbugbox)
* Improves Google Reader API error handling
* Now using HTTPS only when accessing TheOldReader
* Added LifereaNodeSourceActivatable interface to allow plugins
implementing new node source types.
* Downgrade enclosure drop warning from Glib warning to debug trace.
2015-01-06 Lars Windolf <[email protected]>
Version 1.11.2
* Fixes Github #132: Broken documentation link
(reported by kallus)
* Fixes Github #121: Wrapping issue in folder display
(reported by Jeff Forting)
* Fixes Github #114: Avoid termination on UTF-8 validation error
* Fixes Github #90: Libnotify plugin not working
(reported by asl97)
* Fixes Github #86: Support HTTP content negotiation
(suggested by DanMan)
* Black-list some categories used by Google Reader clones
that should not be visible.
* Allowing browser history to go back to previously
shown headline when browsing inside the item view.
* Dropping offline option as this is duplicated with
desktop environment in GNOME/network manager.
* Fixes Github #100: Problems with dark Adwaita theme in GTK 3.14
(reported by majutsushi)
* Fixes for preferences dialog width.
(patch by Jeff Fortin)
* Update of Arabic translation (Khaled Hosny)
2014-08-31 Lars Windolf <[email protected]>
Version 1.11.1
* Fixes Github #81: Inability to add subscriptions
(reported by GreenLunar)
* Fixes Javascript links not opening in new browser tabs
* Updated Hebrew translation (Genghis Khan)
* Fixes Github #88: Minor DE translation mistake (moraxy)
2014-08-12 Lars Windolf <[email protected]>
Version 1.11.0
* Added experimental InoReader support
* Added experimental Reedah support
* Fixes SF #1123: Mistakenly claims "TinyTinyRSS source is not self-updating"
(reported by Dominik Grafenhoher)
* Fixes SF #1119: Crash on font resize at startup.
(reported by David Smith)
* Fixes #1056, #1089, #1098: Honor preferences when opening links
(patch by Daniel Seither)
* Fixes #1117: Selecting last unread item in reduced feed list jumps to next feed
(reported by Bruce Guenter)
* Fixes missing "Via" metadata type
(patch by Rich Coe)
* Fixes incorrect new count reset handling in item_state.c and
some of the node source implementations.
* Fixes SF #1096: missing installation of liferea.convert file
(reported by stqn)
* Fixes SF #1135: liferea-add-feed doesn't process feed:https//
(patch by Kevin Walke)
* Fixes SF #1137, #1142: startup race with LifereaHtmlView
(reported by Yanko Kaneti)
* Fixes Github #13: Parsing errors not visible with dark themes
(reported by Steve Kelly)
* Fixes Github #29: Do not use bold text for feeds/folders with unread items
in the leftmost treeview (repored by Jeff Fortin)
* Fixes SF #1141: Liferea does not update feeds with TinyTinyRSS
(reported by Dominik Grafenhofer, denk_mal, Fabian Henze)
* Fixes SF #1150: subscription prop/source: not all fields and
buttons visible (reported by David Smith)
* Fixes Github #26: RTL comments appear incorrectly
(reported by yaconf)
* Fixes Github #27: Images do not autosize to fit the available space
(reported by Jeff Fortin)
* Fixes Github #34: Add TinyTinyRSS Enclosure Support
(reported by Adrixan)
* Fixes Github #43: "Any of the following" search condition doesn't work
(reported by Jeff Fortin)
* Fixes Github #49: Some dialogs scrolling areas do not request enough height
(reported by Jeff Fortin)
* Fixes Github #53: Doesn't automatically update feed name and favicon
for new feed (reported by asl97)
* Patch SF #224: Update to new libxml2 buffer API
(Simon Kagedal Reimer)
* Patch SF #209: Avoid copying list in itemset_merge_items
(kaloyan)
* Make Liferea use ETags and send If-None-Match
(patch by Chris Siebenmann)
* Support NOCONFIGURE for RPM builds
(Charles A Edwards)
* Rename README to README.md
* Removing libindicate support (to be added as plugin maybe)
* Removing libnotify support (to be added as plugin maybe)
* Removing build in tray icon support
* Added tray icon plugin
* Added category/folder support for TheOldReader
* Added folder auto-removal for TinyTinyRSS & TheOldReader
* Updated README on plugin contribution
* Updated Arabic translation (Khaled Hosny)
2013-10-08 Lars Windolf <[email protected]>
Version 1.10.3
* Asking for credentials again if TinyTinyRSS login fails
* Asking for TinyTinyRSS credentials only 3 times
* Checking wether TinyTinyRSS base URL is lost
* Added warning on TinyTinyRSS login when source is not self-updating
* "--debug-net --debug-verbose" now traces POST data
* Patch #230 Add GNOME AppData XML (Mikel Olasagasti)
* Updated Italian translation (Gianvito Cavasoli)
* Updated Italian localized feed list (Gianvito Cavasoli)
2013-09-05 Lars Windolf <[email protected]>
Version 1.10.2
* Patch SF #222: Make media player seekable
(Simon Kågedal Reimer)
* Fixes SF #1102: Spelling error in man page
(David Smith)
* Fixes SF #1104: liferea.desktop missing keywords
(David Smith)
* Fixes SF #1105: Start Minimized to Tray Does Not Work
(reported by bitlord)
* Fixes SF #1114: Crashes opening browser on item without link via popup
(reported by Rich Coe, David Smith)
* Improved handling of broken Atom author information.
(Lars Windolf)
* Removed dead Google Reader code to avoid doing requests to Google.
Replaced with dummy source that even allows normal feed updates.
(Lars Windolf)
* Added hint to FAQ on how to workaround broken Flash support
(Lars Windolf)
* Dumping feedlist.opml with indentation for readability.
(suggested by Christoph Temmel and Simon Kågedal Reimer)
2013-07-28 Lars Windolf <[email protected]>
Version 1.10.1a
* Fixes SF #1102: Liferea does not show a window
(reported by genodeftest)
2013-07-28 Lars Windolf <[email protected]>
Version 1.10.1
* Fixes SF #1059: Liferea crashes with system proxy enabled
(reported by genodeftest)
* Fixes SF #1095: Theme color detection bug / white fonts.
(reported by David Smith and others)
* Fixes SF #1097: Default feed refresh interval cannot be set to 0
(reported by stqn)
* Fixes SF #1100: --debug-gui crashes with segmentation fault
(reported by genodeftest)
* Fixes SF #1101: Outdated manpage
(reported by genodeftest)
* Patch SF #225: Make media player work with GStreamer 1.0
(Simon Kågedal Reimer)
* Patch SF #226: Add trailing semi-colon to MimeType so that the desktop
file validates (Yanko Kaneti)
* Patch SF #227: Remove letfover square bracket configure.ac
(Yanko Kaneti)
* Patch SF #228: Add net.sf.liferea.gschema.xml to AC_CONFIG_FILES
(Yanko Kaneti)
2013-07-10 Lars Windolf <[email protected]>
Version 1.10.0
* Added experimental sync support for TheOldReader
(Lars Windolf)
* Removed 'Update' link in comments display as it is pretty useless
(Lars Windolf)
* Removed 'No Comments' display as it is rather useless
(Lars Windolf)
* Prevent re-rendering item display on setting item flagged
(Lars Windolf)
* Changed unread number rendering to be right bound and non-ellipsized
(Lars Windolf)
* Fixes g_strstr_len assertions caused by search folder item matching
(Rich Coe)
* Updated documentation to reflect Google Reader, TheOldReader changes
(Lars Windolf)
* Removed welcome text, restoring last feed/item selection instead
(Lars Windolf)
* autogen.sh now reports errors on missing autoconf or intltool
(suggested by Scott Kostyshak)
* Correctly check for gobject-introspection build dependency
(suggested by Scott Kostyshak)
* Updated Basque translation (Mikel Olasagasti Uranga)
* Updated Danish translation (Joe Hansen)
* Updated Dutch translation (Erwin Poeze)
* Updated Finnish translation (Jorma Karvonen)
* Updated Russian translation (Leonid Selivanov)
* Updated Ukrainian translation (Yuri Chornoivan)
* Updated Vietnamese translation (Trần Ngọc Quân)
* Updated German translation (Lars Windolf)
2013-05-22 Lars Windolf <[email protected]>
Version 1.10-RC4
* Added an option to convert Google Reader subscriptions
to local feeds (Lars Windolf)
* Fixes SF #1080: segfault opening attachment due to incorrect g_free()
(reported by Adam Nielsen)
* Fixes SF #1075: GLib warnings of "string != NULL" assertion failure
(reported by Simon Kågedal Reimer)
* Fixes missing shading in 2-pane mode rendering