forked from lwindolf/liferea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1249 lines (1037 loc) · 45.2 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
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
(reported by Zoho Vignochi)
* Fixes search folders including comment items
(reported by David Willmore)
2013-05-22 Lars Windolf <[email protected]>
Version 1.10-RC3
* Fixes SF #1069: broken rendering in tt-rss feeds
(patch by Simon Kågedal Reimer)
* Merged SF #219: View *.xml files along with *.opml files in file chooser
(patch by Simon Kågedal Reimer)
* Merged SF #233: Show feed name in item view when in merged views.
(patch by Simon Kågedal Reimer)
* Merged SF #193: Use GtkInfoBar for note in preferences window
(patch by Fred Morcos)
* Require intltool >= 0.40.4 (Adrian Bunk)
* Updated Catalan translation (Gil Forcada)
* Updated Danish translation (Joe Hansen)
* Updated Polish translation (Piotr Sokół)
2013-05-12 Lars Windolf <[email protected]>
Version 1.10-RC2
* Extended user agent by "AppleWebKit (KHTML, like Gecko)"
to solve incorrect mobile redirect with zdf.de
* Added social bookmarking support for Mister Wong
* Added social bookmarking support for Google Bookmarks
* Update of German FAQ
* Update of English FAQ
* Added MimeType to .desktop file (Craig Barnes)
* Fixes SF #1063: Can't open preferences twice
(Emilio Pozuelo Monfort, reported by David Smith)
* Fixes SF #1040: In feed entries, spaces are replaced with "+"
(reported by Emmanuel Seyman)
* Fixes SF #1051: Issues in RTL GUI of Liferea
(reported by phixy)
* Fixes SF #1038, #1074: Updates ttrss feeds over and over
(reported by many users)
* Fix several memory leaks (Emilio Pozuelo Monfort)
* Require glib >= 2.28 for GApplication (Adrian Bunk)
* Use the GTK+ 3 version, not wrongly the GTK+ 2 version,
of the libindicate GTK+ bindings (Adrian Bunk)
* Updated the default feedlists (Adrian Bunk)
* Removed support for libnotify < 0.7 (Adrian Bunk)
* Added Vietnamese translation (Trần Ngọc Quân)
* Updated Albanian translation (Besnik Bleta)
* Updated Asturian translation (Iñigo Varela)
* Updated Basque translation (Mikel Olasagasti Uranga)
* Updated Danish translation (Joe Hansen)
* Updated Finnish translation (Jorma Karvonen)
* Updated German translation (Christian Stadelmann)
* Updated Hungarian translation (Gabor Kelemen)
* Updated Japanese translation (Takeshi Hamasaki)
* Updated Latvian translation (Rihards Priedītis)
* Updated Ukrainian translation (Yuri Chornoivan)
2013-01-30 Lars Windolf <[email protected]>
Version 1.10-RC1
Please note that due to the SourceForge upgrade bug ticket numbering
did change. This might be confusing... Old numbers are 7 figures,
newer ones only 4!
* Patch SF #3407290: Migrate to GSettings
(by Mikel Olasagasti)
* Patch SF #3579177: Change .desktop category to News;Feed;
(by Stanislav Brabec)
* Fix for Debian #668197: x-www-browser preference not working
(David Smith)
* Added slider and time display to media player plugin.
* Added Google Plus to social bookmarking options.
* Removing deprecated g_thread_init() call
* Auto-enable plugins on migration
* Added missing -a option to manpage
* Updated manpage to reflect XDG path migration
* Changing GSettings path from /apps/liferea to /org/gnome/liferea
* Changes default download thread concurrency from 2 to 3
* Fixes regression about using the GNOME default font
* Improves all item/link launching menus to consistently provide
three options: Tab, Browser and External Browser
* Fixes SF #1037: Incorrect notifications for Google Reader
(patch by David Smith)
* Fixes SF #1048: Removed all feedvalidator.org references from FAQ
and XSLT as it was reported to host malware.
(reported by bkat)
* Fixes SF #1041: Some GPLv2 license headers were outdated
(reported by Emmanuel Seyman)
* Fixes SF #1044: tt-rss API changed (we now support only 1.6 API)
(patch by Sebastian Noel)
* Fixes assertion when creating new tt-rss subscriptions
* Fixes XHTML errors caused by extra <body> tags returned by tt-rss
* Fixes missing item list update when browsing item URLs in Liferea
2012-10-28 Lars Windolf <[email protected]>
Version 1.9.7
* Added new preference for default viewing mode.
* Changing toolbar button order to prevent accidental clicks on
"Mark All Read" when clicking on more frequent buttons like
"Next Unread".
* Added Google Chrome as a browser choice to preferences.
* Roughly reordered browser choices after browser market share.
* Removed shading behaviour for unread items in combined view
as it doesn't match GTK theming well
* Removed auto-hide Javascript menu from combined view to simplify
rendering in 3-pane modes.
* Fixes items not removed from search folder count when feed is removed.
* Fixes search folder rebuilding (do not include comment items).
* Fixes SELECT offset handling when rebuilding search folders.
* Now gives feedback when rebuilding search folders in feed list.
* Update of German translation
2012-10-09 Lars Windolf <[email protected]>
Version 1.9.6
* Removed "pass URL" check box from MIME type dialog.
* Removed "Save In" entry from "Download" tab in preferences.
* Removed "curl" choice in download tool preferences.
* Removed "wget" choice in download tool preferences.
* Added "steadyflow" choice in download tool preferences.
* Patch SF #3569056: Use symbolic close buttons and spacing on tabs like gedit
(Sebastian Keller)
* Fixes reloading item when browsing the web inside the item view.
* Fixes preferences dialog not opening up a second time.
* Fixes padding/alignments in preferences dialog.
* Fixes SF #1418701: Remote server pounded into dirt on auto-download
(reported by anonymous)
* Fixes SF #3567827: Double border around webview
(reported by borschty)
* Fixes SF #3572660: crash in google_source_remove_node
(reported by Yanko Kaneti)
* Prevents adding folders/search folders/newsbins to Google Reader
* Prevents sorting subscriptions in Google Reader
* Updated Polish translation (Wojciech Myrda)
2012-09-14 Lars Windolf <[email protected]>
Version 1.9.5
* GIR dependencies are now mandatory
* Migration to XDG directory layout in $HOME
* Migrate from X session manager to GtkApplication
* Raising GTK dependency to 3.4 for GtkApplication
* Storing last window state in GConf now instead in the session command
* Added Instapaper.com to social bookmarking sites (SF #3564393)
(patch by prurigro)
* Use hint label for manual browser command preference (SF #3129429)
(patch by Fred Morcos)
* Fixes comments_deinit() never being called
* Fixes search folder counter update on feed removal
* Fixes SF #3567715: Crash on network online status changes
(patch by Yanko Kaneti)
2012-08-24 Lars Windolf <[email protected]>
Version 1.9.4
* Changes (c) name "Lars Lindner" -> "Lars Windolf" due to marriage
* Removed compilation support for GTK2
* Added GIR plugin system with libpeas
* Added GnomeKeyring plugin that stores password in a keyring
instead of in the exported OPML.
* Added simple media player plugin to play audio and video enclosures.
* Only present enclosures of audio and video MIME type
* Raise libindicate minimum dependency to 0.6
* Patch SF #3515882: Also support libindicate 0.7 (Chow Loong Jin)
* Dropping SIGSEGV signal handler to allow distro crash report tools to
work (as found in Ubuntu)
* Ensure node ids are in DB node relation on startup.
* Adding AM_PROG_AR to configure.ac to work with automake 1.12
* Moved tab close button from the URL bar to the right of the tab label.
* Smarter browser toolbar: appears now also in the item view when
browsing external content.
* Don't ask for Google Reader authentication more than three times
with auto-update to avoid annoying the user.
* Fixes SF Trac #10: Crash on empty search folders within folders
(reported by phyxi)
* Fixes SF Trac #19: Auto-load-link doesn't work with feeds with comments
(reported by wonk0)
* Fixes SF #2855990: Crash when dragging Google Reader feeds outside
Google Reader. This is now prevented.
(reported by algnod)
* Fixes SF #3515880: missing include when compiling with libindicate
(patch by Chow Loong Jin)
* Fixes search folders being invisible in reduced mode.
* Fixes ever growing temporary DB files.
(patch by Sven Hartge)
* Fixes visibility of enclosure list view for Ubuntu.
* Fixes crashes on enclosure list context menu.
* Fixes SF #3557513: Fixes crash on empty links in auto-load-link mode.
(patch by msquared84)
* Fixes unknown metadata types reported in trace when loading Google
Reader subscriptions from DB.
2012-03-30 Lars Windolf <[email protected]>
Version 1.9.3
* Added a new item history feature that allows navigating
through recently viewed items.
* Added new "Fullscreen" toggle menu option.
* For GTK+3: request dark theme variant for better contrast
between GUI and content. (Jeff Fortin)
* Change schema defaults for folder display. Now unread
items are loaded per-default when clicking a folder.
* Patch SF #3473743: GTK2 dependency has to be 2.24 (bento)
* Improve DB item counting statements.
(patch by Regis Floret)
* Change OpenStreetMap rendering from osmarender to mapnik.
(patch by Mikel Olasagasti)
* Patch SF #3127016: Automatic scrollbars on enclosure actions view
(patch by Fred Morcos)
* SF Trac #7: Removing icon from "Cancel All" in update dialog
so that .gtkrc "gtk-button-images=0" does have correct effect.
(reported by phixy)
* Fixes SF #3480238: crashes when double clicking find
(reported by joeserneem)
* Fixes Debian #660602: Item pane may be reset during feed update
(reported by Ben Hutchings)
* Reimplemented search folder rule for item with enclosures.
* Reimplemented search folder rule for item categories.
* Reimplemented feed title matching rule for search folders.
(patch by John Levon)
* Updated Catalan translation (Gil Forcada)
2012-03-23 Lars Windolf <[email protected]>
Version 1.9.2
* Fixes another migration issue left from 1.9.1
* Increasing sqlite3 dependency to 3.7+ for WAL journaling.
* Removed sqliteasync code in favour of WAL journaling.
This significantly improves performance for ext4.
* Added indices for parent_item_id and parent_node_id
to avoid slow item removal. (suggested by Paulo Anes)
2012-03-18 Lars Windolf <[email protected]>
Version 1.9.1
* Disabled migration to ~/.liferea_1.9
* Revert ISO 8601 parsing using Glib due to Debian #653196
This fixes SF #3465106 (reported by Vincent Lefevre)
* Fixes SF #3477582: welcome screen not using theme colors.
(reported by stqn)
* Do not update DB node and subscription info on startup
for performance reasons.
* Perform VACCUM only when page fragmentation ratio < 10%.
(suggested by adriatic)
* Removed tooltip on the "Next Unread Item" button to avoid
having it flashing each time it is clicked when skimming
through items.
2011-12-23 Lars Windolf <[email protected]>
Version 1.9.0
* Add configure switch to compile against GTK2 or GTK3.
(Emilio Pozuelo Monfort, Adrian Bunk)
* Raise dependencies and updated code to compile against GTK3.
(Emilio Pozuelo Monfort, Adrian Bunk)
* Fixes proxy preference not affecting the HTML widget.
(reported by Chris Siebenmann)
* Fixes SF #3363481: Feeds fail to update properly when entries ordered
"wrong" (patch by Robert Trace)
* Fixes writing subscriptions into DB when importing from OPML
(reported by Dennis Nezic)
2011-12-10 Lars Windolf <[email protected]>
Version 1.8.0
* Fixes SF #3441643: Deleting a feed also removes items copied to
news bins (reported by Jan Larres)
* Updated French translation (Vincent Lefevre)
* Added Hungarian default feed list (Gabor Kelemen)
* Removed broken feeds from all default feed lists.
(suggested by Gabor Kelemen)
2011-11-16 Lars Windolf <[email protected]>
Version 1.8 RC2
* Fixes Basque feed list. (Mikel Olasagasti)
* Added user template CSS that helps users
changing the CSS definitions and is installed
into the cache directory per default.
(suggested by Jeff Fortin)
* Fixes SF #3349330: Segfault when dropping
folders into Google Reader subscription.
(reported by no|disc)
* Fixes SF #3046762: DB contains old comment items
of deleted feed entries.
(reported by FuturePilot)
* Added Latvian translation. (Rihards Priedītis, Rūdolfs Mazurs)
* Added Lithuanian translation. (Mindaugas Baranauskas)
* Updated Basque translation. (Mikel Olasagasti Uranga)
* Updated Chinese/Simplified translation. (Aron Xu)
* Updated Dutch translation. (Erwin Poeze)
* Updated Hungarian translation. (Gabor Kelemen)
* Updated Russian translation. (Leonid Selivanov)
* Updated Swedish translation. (Daniel Nylander)
* Updated Ukrainian translation. (Yuri Chornoivan)
2011-09-14 Lars Windolf <[email protected]>
Version 1.8 RC1
* Migrate cache directory to ~/.liferea_1.8
* Merges SF #3367900: Fixes memory allocation issues.
(patch by doomkopf)
* Merges new default feedlist for European Portuguese
(provided by Bruno Miguel)
* Fixes SF #3398789: Keeps marking read items as unread.
(reported by naoliv)
* Updated manual page
2011-06-21 Lars Windolf <[email protected]>
Version 1.7.6 (Unstable)
* Fixes SF #3102116: MIME type definitions not saved.
(reported by Alexander Gnodtke)
* Merges SF #3273050: Added diggio bookmarking option.
(patch by Daniel Noffsinger)
* Merges SF #3273213: Open Social bookmarking in tab.
(patch by Daniel Noffsinger)
* Allow reordering browser tabs.
* Support popup menu key in feed/item/enclosure tree view.
* Raise tt-rss dependency to 1.5
(patch by Paulo Schreiner)
* Update tt-rss subscriptions when source node is updated.
(patch by Paulo Schreiner)
* Fixes 2 way item state sync for tt-rss subscriptions.
(patch by Paulo Schreiner)
* Fixes SF #3162756: HTML view doesn't use configured font.
(reported by nomnex)
* Add X-GNOME-FullName to desktop file.
(Maia Kozheva)
* Added optional libindicate support.
(Maia Kozheva)
* Added partial Google Reader label support: Labels are
now sync'ed as folders from Google into Liferea.
(patch by Peter Oliver and Sergey Snitsaruk)
* Fixes accidental drag&drop in HTML view.
* Updated Polish translation (Myrda Wojciech)
2011-04-14 Lars Windolf <[email protected]>
Version 1.7.5 (Unstable)
* Some more GTK+ GSEAL work. (Emilio Pozuelo Monfort)
* Make "Disable Javascript" and "Enable plugins" preferences
have an effect without having to restart Liferea.
(Emilio Pozuelo Monfort)
* Fix NetworkManager support. (Emilio Pozuelo Monfort)