aboutsummaryrefslogtreecommitdiffhomepage
path: root/CHANGELOG.md
blob: b1508a2f8880580259c4d769ab02668bcfbf1c18 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
# Change Log

## [1.9.2](https://github.com/wallabag/wallabag/tree/1.9.2) (2016-04-18)
**Fixed bugs:**

- No branch or tag called 2.0.1 [\#1920](https://github.com/wallabag/wallabag/issues/1920)
- Cannot update from v2.0  git a119acd [\#1917](https://github.com/wallabag/wallabag/issues/1917)
- unable to add link, when user needs to login first [\#961](https://github.com/wallabag/wallabag/issues/961)
- export pdf/epub : 504 Gateway Time-out  [\#1808](https://github.com/wallabag/wallabag/issues/1808)
- Do not capture mouse gestures [\#1674](https://github.com/wallabag/wallabag/issues/1674)
- "Stay signed in" don't do what it promise [\#1550](https://github.com/wallabag/wallabag/issues/1550)
- json export doesn't work [\#1534](https://github.com/wallabag/wallabag/issues/1534)
- large bookmark imports fails [\#1458](https://github.com/wallabag/wallabag/issues/1458)
- Import fails with white screen [\#1405](https://github.com/wallabag/wallabag/issues/1405)
- Add URL -\> URL not saved and logged out [\#1361](https://github.com/wallabag/wallabag/issues/1361)
- Lost session too often [\#1339](https://github.com/wallabag/wallabag/issues/1339)
- Marking article text advances to the next article [\#1309](https://github.com/wallabag/wallabag/issues/1309)
- Sessions do not last when switching networks [\#1277](https://github.com/wallabag/wallabag/issues/1277)
- Send articles by mail is sometimes broken [\#1273](https://github.com/wallabag/wallabag/issues/1273)
- still using the “fr\_FR.utf8 [\#1271](https://github.com/wallabag/wallabag/issues/1271)
- pb recherche dans les tags avec caractère spéciaux. [\#1258](https://github.com/wallabag/wallabag/issues/1258)
- Deleting user fails with PHP Fatal error [\#1242](https://github.com/wallabag/wallabag/issues/1242)
- Show button for adding firefox social service only on secured connections [\#1237](https://github.com/wallabag/wallabag/issues/1237)
- database port not managed [\#1218](https://github.com/wallabag/wallabag/issues/1218)
- Epub generation is slow [\#1199](https://github.com/wallabag/wallabag/issues/1199)
- Long chapter names produce malformed epub [\#1196](https://github.com/wallabag/wallabag/issues/1196)
- Installation error solution [\#1192](https://github.com/wallabag/wallabag/issues/1192)
- Erreur à l'installation [\#1114](https://github.com/wallabag/wallabag/issues/1114)
- Change tag icon [\#1079](https://github.com/wallabag/wallabag/issues/1079)
- PDF export fails if pictures are not accessible [\#1011](https://github.com/wallabag/wallabag/issues/1011)
- Deleting article in archive return to "unread" [\#1005](https://github.com/wallabag/wallabag/issues/1005)
- Click on "Save link"/"Search" doesn't closes popup [\#962](https://github.com/wallabag/wallabag/issues/962)
- Absolute urls in pochePictures.php tend to break [\#950](https://github.com/wallabag/wallabag/issues/950)
- Download pictures: some pictures are not downloaded [\#949](https://github.com/wallabag/wallabag/issues/949)
- 1.8.0: Only the RSS for favs works, unread and archive RSS doesn't  [\#914](https://github.com/wallabag/wallabag/issues/914)
- The pagination's variable has no effect [\#875](https://github.com/wallabag/wallabag/issues/875)
- Fatal error on Importing from Pocket [\#833](https://github.com/wallabag/wallabag/issues/833)
- Articles content never fetched after import if no article is present [\#793](https://github.com/wallabag/wallabag/issues/793)
- Login session is not remembered. [\#769](https://github.com/wallabag/wallabag/issues/769)
- Some themes display a citation box wrong [\#759](https://github.com/wallabag/wallabag/issues/759)
- Out of memory size limit with big article [\#682](https://github.com/wallabag/wallabag/issues/682)
- Repeating notifications [\#648](https://github.com/wallabag/wallabag/issues/648)
- Unable to get the content of shaarli posts [\#639](https://github.com/wallabag/wallabag/issues/639)
- https redirect with htaccess  [\#534](https://github.com/wallabag/wallabag/issues/534)
- can't add link if referers are blocked [\#82](https://github.com/wallabag/wallabag/issues/82)
- Fix UTF-8 encoding before JSON export [\#1866](https://github.com/wallabag/wallabag/pull/1866) ([ymage](https://github.com/ymage))

**Closed issues:**

- Save articles sending them by email [\#1928](https://github.com/wallabag/wallabag/issues/1928)
- Login fails after upgrading to 2.0.1 [\#1914](https://github.com/wallabag/wallabag/issues/1914)
- Docker image [\#1858](https://github.com/wallabag/wallabag/issues/1858)
- Vendor Package Alpha v2 [\#1623](https://github.com/wallabag/wallabag/issues/1623)
- Unable to retrieve full-text content http://www.ulyces.co/ [\#1539](https://github.com/wallabag/wallabag/issues/1539)
- \[v2\] Remove tags from an entry [\#1377](https://github.com/wallabag/wallabag/issues/1377)
- \[v2\] Assign multiple tags at once [\#1376](https://github.com/wallabag/wallabag/issues/1376)
- No article from Catholic.com get save to wallabag [\#1076](https://github.com/wallabag/wallabag/issues/1076)
- Automatic site config [\#1029](https://github.com/wallabag/wallabag/issues/1029)
- Bylines not being grabbed [\#850](https://github.com/wallabag/wallabag/issues/850)
- Bad support of instructables.com [\#792](https://github.com/wallabag/wallabag/issues/792)
- Share articles between users of the same wallabag instance [\#779](https://github.com/wallabag/wallabag/issues/779)
- \[List\] unable to retrieve full-text content [\#598](https://github.com/wallabag/wallabag/issues/598)
- "stay signed in" do not work [\#1515](https://github.com/wallabag/wallabag/issues/1515)
- Add title on "random article" link [\#1315](https://github.com/wallabag/wallabag/issues/1315)
- unable to retrieve full-text content [\#1264](https://github.com/wallabag/wallabag/issues/1264)
- No warning at login when session can't be created [\#1188](https://github.com/wallabag/wallabag/issues/1188)
- Does this web site work for you? [\#1146](https://github.com/wallabag/wallabag/issues/1146)
- Wallabag doesn't retrieve any text on one site [\#1140](https://github.com/wallabag/wallabag/issues/1140)
- \[UX\] The cross button in the upper right toolset should be to close current article  [\#1125](https://github.com/wallabag/wallabag/issues/1125)
- Are all of the dependecies including those installed by composer under the MIT license as well? [\#1118](https://github.com/wallabag/wallabag/issues/1118)
- add site\_config [\#1117](https://github.com/wallabag/wallabag/issues/1117)
- Make the dice bigger [\#1101](https://github.com/wallabag/wallabag/issues/1101)
- Wrong display in wallabag: graswurzel.net - umlauts are missing [\#1074](https://github.com/wallabag/wallabag/issues/1074)
- Empty Articles from www.businessinsider.com [\#1073](https://github.com/wallabag/wallabag/issues/1073)
- unable to retrieve full-text content [\#885](https://github.com/wallabag/wallabag/issues/885)
- Create an "About" section - Get a way to check server configuration again [\#864](https://github.com/wallabag/wallabag/issues/864)
- Make the cache time for Flattr checking a setting [\#765](https://github.com/wallabag/wallabag/issues/765)
- Locally hosted Wallabag behind proxy [\#698](https://github.com/wallabag/wallabag/issues/698)
- Only show the wallabag this link when on an article when the mouse is over the link. [\#685](https://github.com/wallabag/wallabag/issues/685)
- Footnotes lost in article [\#670](https://github.com/wallabag/wallabag/issues/670)
- Please add GPG signature to verify before installing Poche [\#257](https://github.com/wallabag/wallabag/issues/257)

**Merged pull requests:**

- Update messages.es.yml [\#1935](https://github.com/wallabag/wallabag/pull/1935) ([jami7](https://github.com/jami7))
- remove buggy swipe actions [\#1825](https://github.com/wallabag/wallabag/pull/1825) ([tcitworld](https://github.com/tcitworld))
- Add message on unread page about v2 [\#1815](https://github.com/wallabag/wallabag/pull/1815) ([nicosomb](https://github.com/nicosomb))
- \[Do Not Merge\] Wallabag 1.9.2 [\#1814](https://github.com/wallabag/wallabag/pull/1814) ([tcitworld](https://github.com/tcitworld))

## [1.9.1-b](https://github.com/wallabag/wallabag/tree/1.9.1-b) (2015-08-04)
**Merged pull requests:**

- 1.9.1-b [\#1274](https://github.com/wallabag/wallabag/pull/1274) ([nicosomb](https://github.com/nicosomb))
- remove new syntax for array [\#1272](https://github.com/wallabag/wallabag/pull/1272) ([nicosomb](https://github.com/nicosomb))

## [1.9.1](https://github.com/wallabag/wallabag/tree/1.9.1) (2015-08-03)
**Fixed bugs:**

- error loading feed when synchronizing [\#1212](https://github.com/wallabag/wallabag/issues/1212)
- tags & tags\_entry not properly deleted after article deletion [\#1209](https://github.com/wallabag/wallabag/issues/1209)
- Tags not being exported in Wallabag 1.9.0 [\#1203](https://github.com/wallabag/wallabag/issues/1203)
- Clear cache function deleted .htaccess, .gitignore files under cache/ [\#1154](https://github.com/wallabag/wallabag/issues/1154)
- Update jQuery [\#1139](https://github.com/wallabag/wallabag/issues/1139)
- translation issue [\#1133](https://github.com/wallabag/wallabag/issues/1133)
- Baggy theme: no Icon for shaarli [\#1131](https://github.com/wallabag/wallabag/issues/1131)
- Archive an unread article [\#1126](https://github.com/wallabag/wallabag/issues/1126)
- Error in first log in [\#1121](https://github.com/wallabag/wallabag/issues/1121)
- "About" not translated into french in the menu ? [\#1116](https://github.com/wallabag/wallabag/issues/1116)
- I'm getting duplicate articles. [\#1102](https://github.com/wallabag/wallabag/issues/1102)
- The "back to top" button is missing in responsive design \(Baggy theme\) [\#1010](https://github.com/wallabag/wallabag/issues/1010)
- Security issue [\#997](https://github.com/wallabag/wallabag/issues/997)
- fix security bug with PHP\_AUTH\_USER [\#1252](https://github.com/wallabag/wallabag/pull/1252) ([tcitworld](https://github.com/tcitworld))

**Closed issues:**

- Wrong documentation URL [\#1263](https://github.com/wallabag/wallabag/issues/1263)
- Integrate freddyb/wallabag-fxos in wallabag organization [\#1259](https://github.com/wallabag/wallabag/issues/1259)
- \[v2\] Wallabag stay in English even when configured with other language [\#1256](https://github.com/wallabag/wallabag/issues/1256)
- \[v2\] Not able to export in epub/pdf/mobi [\#1255](https://github.com/wallabag/wallabag/issues/1255)
- Installation : wrong path to themes [\#1243](https://github.com/wallabag/wallabag/issues/1243)
- Add Iceblog [\#1238](https://github.com/wallabag/wallabag/issues/1238)
- Unable to retrieve content from CloudFlare Blog [\#1224](https://github.com/wallabag/wallabag/issues/1224)
- Unable to retrieve full-text content from bastamag.net [\#1223](https://github.com/wallabag/wallabag/issues/1223)
- Broken link [\#1221](https://github.com/wallabag/wallabag/issues/1221)
- http://jsforcats.com/ [\#1219](https://github.com/wallabag/wallabag/issues/1219)
- 413 Request Entity Too Large [\#1204](https://github.com/wallabag/wallabag/issues/1204)
- Revues.org [\#1201](https://github.com/wallabag/wallabag/issues/1201)
- Import fails unexpectedly [\#1193](https://github.com/wallabag/wallabag/issues/1193)
- unable to retrieve full-text content from bastamag.net [\#1186](https://github.com/wallabag/wallabag/issues/1186)
- Unable to retrieve content for github. [\#1185](https://github.com/wallabag/wallabag/issues/1185)
- unable to retrieve full-text content from frontburner.dmagazine.com [\#1184](https://github.com/wallabag/wallabag/issues/1184)
- unable to retrieve full-text content from www.it-connect.fr [\#1181](https://github.com/wallabag/wallabag/issues/1181)
- Could not get body text for this URL [\#1155](https://github.com/wallabag/wallabag/issues/1155)
- Almost empty articles from computerworld.com [\#1090](https://github.com/wallabag/wallabag/issues/1090)
- Empty Articles from www.theatlantic.com [\#1089](https://github.com/wallabag/wallabag/issues/1089)
- Installation instructions in wrong order [\#1024](https://github.com/wallabag/wallabag/issues/1024)
- \(Semantic-\)Scuttle import? [\#1006](https://github.com/wallabag/wallabag/issues/1006)
- Articles on quechoisir.org are empty [\#982](https://github.com/wallabag/wallabag/issues/982)
- Firefox OS app [\#521](https://github.com/wallabag/wallabag/issues/521)
- Random feature must fetch an article in current status [\#1153](https://github.com/wallabag/wallabag/issues/1153)
- Update documentation inside wallabag [\#1141](https://github.com/wallabag/wallabag/issues/1141)
- \[UX\] Next, previous article [\#1123](https://github.com/wallabag/wallabag/issues/1123)
- See all tags while tagging [\#1122](https://github.com/wallabag/wallabag/issues/1122)
- Update documentation with the 1.9 changes [\#1119](https://github.com/wallabag/wallabag/issues/1119)
- Check for existing accounts at install [\#952](https://github.com/wallabag/wallabag/issues/952)
- import chromium / mozilla / firefox bookmarks.html files \(\<dd\>/\<dt\> based\) [\#892](https://github.com/wallabag/wallabag/issues/892)
- sticky article toolbar [\#511](https://github.com/wallabag/wallabag/issues/511)

**Merged pull requests:**

- Fix site config [\#1266](https://github.com/wallabag/wallabag/pull/1266) ([nicosomb](https://github.com/nicosomb))
- Dev autoclose [\#1257](https://github.com/wallabag/wallabag/pull/1257) ([freddyb](https://github.com/freddyb))
- fix link to documentation [\#1251](https://github.com/wallabag/wallabag/pull/1251) ([axelsimon](https://github.com/axelsimon))
- Revert "fix link to save your first article" [\#1248](https://github.com/wallabag/wallabag/pull/1248) ([tcitworld](https://github.com/tcitworld))
- fix link to save your first article [\#1247](https://github.com/wallabag/wallabag/pull/1247) ([axelsimon](https://github.com/axelsimon))
- add site config for des-livres-pour-changer-de-vie.fr [\#1234](https://github.com/wallabag/wallabag/pull/1234) ([jmlrt](https://github.com/jmlrt))
- add site\_config for cloudacademy.com and cyrille-borne.com [\#1228](https://github.com/wallabag/wallabag/pull/1228) ([jmlrt](https://github.com/jmlrt))
- Enable base\_url for proxies [\#1226](https://github.com/wallabag/wallabag/pull/1226) ([tcitworld](https://github.com/tcitworld))
- 1.9.1 [\#1267](https://github.com/wallabag/wallabag/pull/1267) ([nicosomb](https://github.com/nicosomb))
- Fix \#1215 [\#1217](https://github.com/wallabag/wallabag/pull/1217) ([tcitworld](https://github.com/tcitworld))

## [1.9.1beta3](https://github.com/wallabag/wallabag/tree/1.9.1beta3) (2015-06-06)
**Closed issues:**

- cannot synchronize on ubuntu [\#1195](https://github.com/wallabag/wallabag/issues/1195)
- API Feature request, modify posts to performe additional processing [\#1191](https://github.com/wallabag/wallabag/issues/1191)

**Merged pull requests:**

- Update fr\_FR.utf8.po [\#1211](https://github.com/wallabag/wallabag/pull/1211) ([goofy-bz](https://github.com/goofy-bz))
- issue \#1203: fixing tag export [\#1207](https://github.com/wallabag/wallabag/pull/1207) ([vpmalley](https://github.com/vpmalley))
- fix restart of import [\#1200](https://github.com/wallabag/wallabag/pull/1200) ([nicosomb](https://github.com/nicosomb))

## [1.9.1beta2](https://github.com/wallabag/wallabag/tree/1.9.1beta2) (2015-05-09)
**Fixed bugs:**

- I don't see any icons. [\#1183](https://github.com/wallabag/wallabag/issues/1183)
- Error in install process. [\#1175](https://github.com/wallabag/wallabag/issues/1175)

**Closed issues:**

- Saving to pdf doesn't work because it can't download a picture. [\#1190](https://github.com/wallabag/wallabag/issues/1190)
- Error after installation in IIS - "login failed: user doesn't exist" [\#1187](https://github.com/wallabag/wallabag/issues/1187)
- Connection time out during import [\#1171](https://github.com/wallabag/wallabag/issues/1171)

## [1.9.1beta1](https://github.com/wallabag/wallabag/tree/1.9.1beta1) (2015-04-08)
## [1.9.1alpha2](https://github.com/wallabag/wallabag/tree/1.9.1alpha2) (2015-04-07)
**Fixed bugs:**

- Firefox Addon give an error on saving a link [\#1104](https://github.com/wallabag/wallabag/issues/1104)

**Closed issues:**

- Trying to access wallabag for the first time on a fresh install. [\#1172](https://github.com/wallabag/wallabag/issues/1172)
- If I install wallabag over my current wallabag like I am upgrading will it keep my data? [\#1170](https://github.com/wallabag/wallabag/issues/1170)
- Saving URL from FeedaFever [\#1169](https://github.com/wallabag/wallabag/issues/1169)
- Solarized Dark theme issue [\#1159](https://github.com/wallabag/wallabag/issues/1159)
- false parentheses [\#1157](https://github.com/wallabag/wallabag/issues/1157)
- Password is cached only for a very short time [\#1156](https://github.com/wallabag/wallabag/issues/1156)

**Merged pull requests:**

- double closing parentheses [\#1158](https://github.com/wallabag/wallabag/pull/1158) ([bohni](https://github.com/bohni))

## [1.9.1alpha1](https://github.com/wallabag/wallabag/tree/1.9.1alpha1) (2015-03-08)
**Closed issues:**

- Error when trying to save and now I can't even view articles. [\#1138](https://github.com/wallabag/wallabag/issues/1138)
- Add the ability to edit URLs [\#1136](https://github.com/wallabag/wallabag/issues/1136)
- How to backup wallabag. [\#1135](https://github.com/wallabag/wallabag/issues/1135)
- \[feature\] RSS feeds to choose from [\#1134](https://github.com/wallabag/wallabag/issues/1134)
- Error while exporting to pdf. [\#1113](https://github.com/wallabag/wallabag/issues/1113)
- Wallabag using WordPress [\#1112](https://github.com/wallabag/wallabag/issues/1112)
- Courgette theme still present [\#1103](https://github.com/wallabag/wallabag/issues/1103)
- Login screen not centered [\#1099](https://github.com/wallabag/wallabag/issues/1099)
- 'X-Frame-Options' - 'DENY' [\#1097](https://github.com/wallabag/wallabag/issues/1097)
- Did you forget to select a file?  Import finished. When trying to import. [\#1096](https://github.com/wallabag/wallabag/issues/1096)
- Wrong display in wallabag: jungle-world.com [\#1034](https://github.com/wallabag/wallabag/issues/1034)

**Merged pull requests:**

- composer: min PHP 5.3 added [\#1151](https://github.com/wallabag/wallabag/pull/1151) ([TomasVotruba](https://github.com/TomasVotruba))
- Wallabag v2 api hypermedia pager [\#1148](https://github.com/wallabag/wallabag/pull/1148) ([willdurand](https://github.com/willdurand))
- locale es\_ES.utf8 files fully translated → Translation to Spanish updated [\#1106](https://github.com/wallabag/wallabag/pull/1106) ([icaroperseo](https://github.com/icaroperseo))

## [1.9](https://github.com/wallabag/wallabag/tree/1.9) (2015-02-18)
**Fixed bugs:**

- Register email at installation [\#1093](https://github.com/wallabag/wallabag/issues/1093)

**Closed issues:**

- 413 Request entity too large error when importing [\#1094](https://github.com/wallabag/wallabag/issues/1094)
- How do I add new user without the interface after installation. [\#1092](https://github.com/wallabag/wallabag/issues/1092)
- How long should I expect wallabag to be down after importing? [\#1091](https://github.com/wallabag/wallabag/issues/1091)
- v1.9 beta: random does not work [\#1082](https://github.com/wallabag/wallabag/issues/1082)

**Merged pull requests:**

- Version 1.9.0 [\#1081](https://github.com/wallabag/wallabag/pull/1081) ([tcitworld](https://github.com/tcitworld))

## [1.9RC1](https://github.com/wallabag/wallabag/tree/1.9RC1) (2015-02-16)
**Fixed bugs:**

- Saying I don't have permission to access to /inc/poche/config.inc.php during install. [\#1086](https://github.com/wallabag/wallabag/issues/1086)

**Closed issues:**

- add capability to download pictures for android app [\#1085](https://github.com/wallabag/wallabag/issues/1085)

## [1.9beta2](https://github.com/wallabag/wallabag/tree/1.9beta2) (2015-02-15)
## [1.9beta](https://github.com/wallabag/wallabag/tree/1.9beta) (2015-02-14)
**Fixed bugs:**

- allow\_url\_fopen disabled try to use php-curl [\#1078](https://github.com/wallabag/wallabag/issues/1078)
- "Fetch content for articles with no content" doesn't work  [\#1058](https://github.com/wallabag/wallabag/issues/1058)
- New Install - Can't Log In [\#1040](https://github.com/wallabag/wallabag/issues/1040)
- \[Installation\] Throw an exception if PDO isn't found at installation. [\#996](https://github.com/wallabag/wallabag/issues/996)
- \[Installation\] Wrong login on MySQL/PostgreSQL databases fail silently [\#995](https://github.com/wallabag/wallabag/issues/995)
- An error occured: "db" directory must be writeable for your web server user! [\#990](https://github.com/wallabag/wallabag/issues/990)
- logic bug in autoclose code? [\#984](https://github.com/wallabag/wallabag/issues/984)
- Can't mark an article as favorite [\#983](https://github.com/wallabag/wallabag/issues/983)
- Export does not work \(JSON & ePub\) [\#970](https://github.com/wallabag/wallabag/issues/970)
- Problem with Readability.php when save link [\#963](https://github.com/wallabag/wallabag/issues/963)
- White Screen after Install [\#955](https://github.com/wallabag/wallabag/issues/955)
- wallabag install enable to save links on openbsd [\#948](https://github.com/wallabag/wallabag/issues/948)
- Courgette theme really broken  [\#941](https://github.com/wallabag/wallabag/issues/941)
- White Screen when mysql user has no privileges. [\#940](https://github.com/wallabag/wallabag/issues/940)
- crashing because unknown character set 'utf8mb4' [\#935](https://github.com/wallabag/wallabag/issues/935)
- Article not saved if not logged in [\#877](https://github.com/wallabag/wallabag/issues/877)
- New self-hosted install: Android app and FF Extension do not work [\#829](https://github.com/wallabag/wallabag/issues/829)
- Empty page after upgrade [\#796](https://github.com/wallabag/wallabag/issues/796)
- Delete Courgette theme [\#781](https://github.com/wallabag/wallabag/issues/781)
- icons blocked/not loading when font is blocked [\#465](https://github.com/wallabag/wallabag/issues/465)
- New installation process [\#1026](https://github.com/wallabag/wallabag/pull/1026) ([tcitworld](https://github.com/tcitworld))

**Closed issues:**

- 1.7.x to 1.8 gives blank page [\#1064](https://github.com/wallabag/wallabag/issues/1064)
- wallabag.org : 504 Gateway Time-Out : cloudflare-nginx [\#1046](https://github.com/wallabag/wallabag/issues/1046)
- Install instruction is a mess!  [\#1045](https://github.com/wallabag/wallabag/issues/1045)
- Feature Request: Evernote [\#1043](https://github.com/wallabag/wallabag/issues/1043)
- Rethink installation process [\#1025](https://github.com/wallabag/wallabag/issues/1025)
- Authentication to websites needed to fetch the text [\#1009](https://github.com/wallabag/wallabag/issues/1009)
- "Stay signed in" not working [\#1007](https://github.com/wallabag/wallabag/issues/1007)
- social api [\#1002](https://github.com/wallabag/wallabag/issues/1002)
- Wrong  url in the iOS application [\#1001](https://github.com/wallabag/wallabag/issues/1001)
- Register with Packagist? [\#993](https://github.com/wallabag/wallabag/issues/993)
- Allow tagging when saving to wallabag [\#991](https://github.com/wallabag/wallabag/issues/991)
- Can not add a GitHub Gist [\#979](https://github.com/wallabag/wallabag/issues/979)
- add link to documentation on about page [\#954](https://github.com/wallabag/wallabag/issues/954)
- "update article" button [\#951](https://github.com/wallabag/wallabag/issues/951)
- http://wllbg.org/latest points to an old 1.8.0 instead of 1.8.1 [\#947](https://github.com/wallabag/wallabag/issues/947)
- Images are not cached/downloaded [\#946](https://github.com/wallabag/wallabag/issues/946)
- Parse 9gag posts. [\#934](https://github.com/wallabag/wallabag/issues/934)
- Wallabag and fail2ban \[Feature\] [\#931](https://github.com/wallabag/wallabag/issues/931)
- refresh untitled articles [\#930](https://github.com/wallabag/wallabag/issues/930)
- Multiple size favicons [\#929](https://github.com/wallabag/wallabag/issues/929)
- Read a random article [\#927](https://github.com/wallabag/wallabag/issues/927)
- Change opacity when displaying search popup [\#916](https://github.com/wallabag/wallabag/issues/916)
- Diaspora sharing button [\#872](https://github.com/wallabag/wallabag/issues/872)
- Clean up code to respect guidelines [\#852](https://github.com/wallabag/wallabag/issues/852)
- Wallabag seems to download doubleclick ad images [\#827](https://github.com/wallabag/wallabag/issues/827)
- Tags not imported [\#823](https://github.com/wallabag/wallabag/issues/823)
- Make a class for e-books produced [\#772](https://github.com/wallabag/wallabag/issues/772)
- Migrate some settings from config file to database [\#686](https://github.com/wallabag/wallabag/issues/686)
- Gestion d'export PDF pour lecture hors ligne [\#77](https://github.com/wallabag/wallabag/issues/77)

**Merged pull requests:**

- added site config for github gists, jungle-world.com and toolinux.com [\#1067](https://github.com/wallabag/wallabag/pull/1067) ([vpmalley](https://github.com/vpmalley))
- V2 api tests entry [\#1066](https://github.com/wallabag/wallabag/pull/1066) ([j0k3r](https://github.com/j0k3r))
- Cleanup default assets symlinks [\#1065](https://github.com/wallabag/wallabag/pull/1065) ([FabienM](https://github.com/FabienM))
- add a real relation between user and entry [\#1062](https://github.com/wallabag/wallabag/pull/1062) ([nicosomb](https://github.com/nicosomb))
- Remove temporary entities [\#1061](https://github.com/wallabag/wallabag/pull/1061) ([j0k3r](https://github.com/j0k3r))
- rename User entity [\#1060](https://github.com/wallabag/wallabag/pull/1060) ([nicosomb](https://github.com/nicosomb))
- Rename entry [\#1059](https://github.com/wallabag/wallabag/pull/1059) ([nicosomb](https://github.com/nicosomb))
- PATCH method, boolean for some parameters and change entity methods name [\#1055](https://github.com/wallabag/wallabag/pull/1055) ([nicosomb](https://github.com/nicosomb))
- we can now set a title to the article when we use POST /api/entries [\#1054](https://github.com/wallabag/wallabag/pull/1054) ([nicosomb](https://github.com/nicosomb))
- Fix fetched entries when localized [\#1053](https://github.com/wallabag/wallabag/pull/1053) ([erixtekila](https://github.com/erixtekila))
- Added en-GB  [\#1042](https://github.com/wallabag/wallabag/pull/1042) ([edent](https://github.com/edent))
- CS [\#1037](https://github.com/wallabag/wallabag/pull/1037) ([j0k3r](https://github.com/j0k3r))
- Update composer [\#1036](https://github.com/wallabag/wallabag/pull/1036) ([j0k3r](https://github.com/j0k3r))
- Tests are working again [\#1035](https://github.com/wallabag/wallabag/pull/1035) ([j0k3r](https://github.com/j0k3r))
- Update german localisation. [\#1031](https://github.com/wallabag/wallabag/pull/1031) ([jlnostr](https://github.com/jlnostr))
- Revert "Update german localisation." [\#1030](https://github.com/wallabag/wallabag/pull/1030) ([tcitworld](https://github.com/tcitworld))
- Update german localisation. [\#1028](https://github.com/wallabag/wallabag/pull/1028) ([jlnostr](https://github.com/jlnostr))
- Send email at registration [\#1022](https://github.com/wallabag/wallabag/pull/1022) ([tcitworld](https://github.com/tcitworld))
- working on registration support [\#1021](https://github.com/wallabag/wallabag/pull/1021) ([tcitworld](https://github.com/tcitworld))
- Revert "URL encode 'via @wallabagapp' email body" [\#1019](https://github.com/wallabag/wallabag/pull/1019) ([nicosomb](https://github.com/nicosomb))
- URL encode 'via @wallabagapp' email body [\#1018](https://github.com/wallabag/wallabag/pull/1018) ([shtrom](https://github.com/shtrom))
- Savewithtags [\#1015](https://github.com/wallabag/wallabag/pull/1015) ([tcitworld](https://github.com/tcitworld))
- Importtags [\#1013](https://github.com/wallabag/wallabag/pull/1013) ([tcitworld](https://github.com/tcitworld))
- Fixed \#993: add wallabag to packagist [\#1004](https://github.com/wallabag/wallabag/pull/1004) ([nicosomb](https://github.com/nicosomb))
- \[RSS\] introducing query param 'limit' for max items in RSS feed [\#1003](https://github.com/wallabag/wallabag/pull/1003) ([vpmalley](https://github.com/vpmalley))
- Miscellaneous additions [\#999](https://github.com/wallabag/wallabag/pull/999) ([moparisthebest](https://github.com/moparisthebest))
- Update fr\_FR.utf8.po [\#986](https://github.com/wallabag/wallabag/pull/986) ([goofy-bz](https://github.com/goofy-bz))
- don't call flattr if flattr is disabled [\#975](https://github.com/wallabag/wallabag/pull/975) ([tcitworld](https://github.com/tcitworld))
- Make call to FTRSS silent to avoid warnings which can break import [\#974](https://github.com/wallabag/wallabag/pull/974) ([jbfavre](https://github.com/jbfavre))
- Fix jquery installation [\#971](https://github.com/wallabag/wallabag/pull/971) ([nicosomb](https://github.com/nicosomb))
- added reload function [\#968](https://github.com/wallabag/wallabag/pull/968) ([tcitworld](https://github.com/tcitworld))
- implemented random button [\#964](https://github.com/wallabag/wallabag/pull/964) ([tcitworld](https://github.com/tcitworld))
- Update wallabag\_compatibility\_test.php [\#958](https://github.com/wallabag/wallabag/pull/958) ([etiess](https://github.com/etiess))
- remove courgette theme [\#953](https://github.com/wallabag/wallabag/pull/953) ([nicosomb](https://github.com/nicosomb))
- Fixing icon text on unread page [\#945](https://github.com/wallabag/wallabag/pull/945) ([jsit](https://github.com/jsit))
- Globalizing and creating two variants of Carrot.org icon [\#944](https://github.com/wallabag/wallabag/pull/944) ([jsit](https://github.com/jsit))
- fix Flattrs [\#943](https://github.com/wallabag/wallabag/pull/943) ([tcitworld](https://github.com/tcitworld))
- implementing carrot into wallabag [\#942](https://github.com/wallabag/wallabag/pull/942) ([tcitworld](https://github.com/tcitworld))
- \_global-izing some more js & css [\#939](https://github.com/wallabag/wallabag/pull/939) ([jsit](https://github.com/jsit))
- Fix for favicons in Firefox [\#938](https://github.com/wallabag/wallabag/pull/938) ([jsit](https://github.com/jsit))
- Moving favicons to new \_global theme dir and adjusting \<link\> tags [\#937](https://github.com/wallabag/wallabag/pull/937) ([jsit](https://github.com/jsit))
- add HTML documentation [\#923](https://github.com/wallabag/wallabag/pull/923) ([nicosomb](https://github.com/nicosomb))
- Add message in web server log in case of authentication failure [\#690](https://github.com/wallabag/wallabag/pull/690) ([doc75](https://github.com/doc75))

## [1.8.1bis](https://github.com/wallabag/wallabag/tree/1.8.1bis) (2014-11-16)
## [1.8.1b](https://github.com/wallabag/wallabag/tree/1.8.1b) (2014-11-16)
## [1.8.1old](https://github.com/wallabag/wallabag/tree/1.8.1old) (2014-11-16)
**Merged pull requests:**

- 1.8.1b [\#933](https://github.com/wallabag/wallabag/pull/933) ([tcitworld](https://github.com/tcitworld))

## [1.8.1](https://github.com/wallabag/wallabag/tree/1.8.1) (2014-11-15)
**Fixed bugs:**

- Mobile view and popups [\#912](https://github.com/wallabag/wallabag/issues/912)
- Installation of Wallabag with SQLite3 database fails [\#788](https://github.com/wallabag/wallabag/issues/788)
- autoclose with baggy theme and firefox addon [\#527](https://github.com/wallabag/wallabag/issues/527)
- Texts not translated when adding tag [\#887](https://github.com/wallabag/wallabag/issues/887)
- epub Export does not work [\#882](https://github.com/wallabag/wallabag/issues/882)
- In baggy : no preview text in linear visualisation [\#874](https://github.com/wallabag/wallabag/issues/874)
- In baggy mark as read button stays gray [\#873](https://github.com/wallabag/wallabag/issues/873)
- Fix "Mark as read" translations [\#871](https://github.com/wallabag/wallabag/issues/871)
- CSS Bug on article list when browsing on Small size device [\#834](https://github.com/wallabag/wallabag/issues/834)
- Search and SaveALink windows overlap [\#830](https://github.com/wallabag/wallabag/issues/830)
- wired.com comes out totally messed up  [\#756](https://github.com/wallabag/wallabag/issues/756)

**Closed issues:**

- epub generation doesn't work [\#925](https://github.com/wallabag/wallabag/issues/925)
- Export epubs via cli [\#915](https://github.com/wallabag/wallabag/issues/915)
- English translation doesn't work when en\_US is the only locale available [\#901](https://github.com/wallabag/wallabag/issues/901)
- UI text should be title case, and made lowercase with CSS [\#899](https://github.com/wallabag/wallabag/issues/899)
- When starting in list mode, switching to table mode doesn't change width of entries \(Baggy theme\) [\#896](https://github.com/wallabag/wallabag/issues/896)
- Add "by estimated reading time" sort [\#876](https://github.com/wallabag/wallabag/issues/876)
- Not Parse site [\#866](https://github.com/wallabag/wallabag/issues/866)
- hide database password [\#891](https://github.com/wallabag/wallabag/issues/891)
- Re-focusing the text input for "search" [\#831](https://github.com/wallabag/wallabag/issues/831)
- This page is not retrieved fully [\#828](https://github.com/wallabag/wallabag/issues/828)
- Problem retrieving articles from www.wordyard.com [\#826](https://github.com/wallabag/wallabag/issues/826)
- This page is fetched partially [\#797](https://github.com/wallabag/wallabag/issues/797)

**Merged pull requests:**

- 1.8.1 [\#932](https://github.com/wallabag/wallabag/pull/932) ([nicosomb](https://github.com/nicosomb))
- Fixing URL typo on about page [\#926](https://github.com/wallabag/wallabag/pull/926) ([jsit](https://github.com/jsit))
- Fixing menu hiding behavior when switching from mobile width to desktop width [\#922](https://github.com/wallabag/wallabag/pull/922) ([jsit](https://github.com/jsit))
- add about page [\#921](https://github.com/wallabag/wallabag/pull/921) ([nicosomb](https://github.com/nicosomb))
- Many small UI changes/fixes to Baggy theme and English translation files [\#920](https://github.com/wallabag/wallabag/pull/920) ([jsit](https://github.com/jsit))
- Improving JavaScript for popup forms [\#919](https://github.com/wallabag/wallabag/pull/919) ([jsit](https://github.com/jsit))
- Fixing opacity issue when using mobile menu \(\#912\) [\#917](https://github.com/wallabag/wallabag/pull/917) ([jsit](https://github.com/jsit))
- Fixing regression in popup close button styling [\#913](https://github.com/wallabag/wallabag/pull/913) ([jsit](https://github.com/jsit))
- Standardizing style and code for menu popup forms [\#911](https://github.com/wallabag/wallabag/pull/911) ([jsit](https://github.com/jsit))
- Moving search-form style out of messages css and into style.css [\#910](https://github.com/wallabag/wallabag/pull/910) ([jsit](https://github.com/jsit))
- Standardizing class names and styles for close buttons [\#909](https://github.com/wallabag/wallabag/pull/909) ([jsit](https://github.com/jsit))
- Changing close message button to use &times; instead of X [\#908](https://github.com/wallabag/wallabag/pull/908) ([jsit](https://github.com/jsit))
- Some small design tweaks to the login page: Moving 'Stay signed in'... [\#907](https://github.com/wallabag/wallabag/pull/907) ([jsit](https://github.com/jsit))
- Uppercasing 'tags' page title [\#906](https://github.com/wallabag/wallabag/pull/906) ([jsit](https://github.com/jsit))
- Making the close button more visually consistent on the menu popup forms [\#905](https://github.com/wallabag/wallabag/pull/905) ([jsit](https://github.com/jsit))
- Vagrantfile [\#904](https://github.com/wallabag/wallabag/pull/904) ([nicosomb](https://github.com/nicosomb))
- Fixing some more text case issues [\#903](https://github.com/wallabag/wallabag/pull/903) ([jsit](https://github.com/jsit))
- Adding 'en\_US' locale \(issue \#901\) [\#902](https://github.com/wallabag/wallabag/pull/902) ([jsit](https://github.com/jsit))
- Fixing a bunch of English translation letter casing and syntax \(issue \#899\) [\#900](https://github.com/wallabag/wallabag/pull/900) ([jsit](https://github.com/jsit))
- Fixing issue \#874, displaying preview text when in list mode [\#898](https://github.com/wallabag/wallabag/pull/898) ([jsit](https://github.com/jsit))
- Fixing display mode switching in Baggy theme \(issue \#896\) [\#897](https://github.com/wallabag/wallabag/pull/897) ([jsit](https://github.com/jsit))
- Fix \#891: change type for password field in installation [\#894](https://github.com/wallabag/wallabag/pull/894) ([nicosomb](https://github.com/nicosomb))
- fix \#882 [\#883](https://github.com/wallabag/wallabag/pull/883) ([tcitworld](https://github.com/tcitworld))
- update zeit.de.txt for removal of inline ads [\#879](https://github.com/wallabag/wallabag/pull/879) ([Marmo](https://github.com/Marmo))
- fix \#873 [\#878](https://github.com/wallabag/wallabag/pull/878) ([tcitworld](https://github.com/tcitworld))
- fix z-index-menu mobile view bug \#834 [\#867](https://github.com/wallabag/wallabag/pull/867) ([tcitworld](https://github.com/tcitworld))
- update heise.de.txt [\#865](https://github.com/wallabag/wallabag/pull/865) ([Marmo](https://github.com/Marmo))
- Fix\#871 [\#889](https://github.com/wallabag/wallabag/pull/889) ([tcitworld](https://github.com/tcitworld))
- updated site\_config [\#888](https://github.com/wallabag/wallabag/pull/888) ([nicosomb](https://github.com/nicosomb))
- fix for \#830 [\#868](https://github.com/wallabag/wallabag/pull/868) ([tcitworld](https://github.com/tcitworld))
- Add support for custom http port [\#848](https://github.com/wallabag/wallabag/pull/848) ([11mariom](https://github.com/11mariom))
- Convert the MySQL charset to utf8mb4 to support the full range of unicode [\#843](https://github.com/wallabag/wallabag/pull/843) ([rros](https://github.com/rros))

## [1.8.0](https://github.com/wallabag/wallabag/tree/1.8.0) (2014-10-10)
**Fixed bugs:**

- Download pictures doesn't work [\#822](https://github.com/wallabag/wallabag/issues/822)
- \[EPUB\] Images not included when cached on the server. [\#804](https://github.com/wallabag/wallabag/issues/804)
- The link to check the server compatibility is broken [\#858](https://github.com/wallabag/wallabag/issues/858)
- Trouble installing with Postgres as DB [\#844](https://github.com/wallabag/wallabag/issues/844)
- \[dev branch\] Installation doesn't work [\#813](https://github.com/wallabag/wallabag/issues/813)
- Import empty file [\#776](https://github.com/wallabag/wallabag/issues/776)
- Add check php5-gd to wallabag: Compatibility Test [\#766](https://github.com/wallabag/wallabag/issues/766)
- « welcome to your wallabag » is not translated [\#763](https://github.com/wallabag/wallabag/issues/763)
- Add support for multipage articles [\#750](https://github.com/wallabag/wallabag/issues/750)
- Ereader complains about DRM with epubs [\#748](https://github.com/wallabag/wallabag/issues/748)
- Arrays not being displayed the same depending on theme \(previously was : new site\_config file\) [\#740](https://github.com/wallabag/wallabag/issues/740)
- Check file permissions at install [\#584](https://github.com/wallabag/wallabag/issues/584)
- Data is not retrieved properly [\#561](https://github.com/wallabag/wallabag/issues/561)
- Fix the PostgreSQL install errors [\#845](https://github.com/wallabag/wallabag/pull/845) ([rros](https://github.com/rros))
- fix display of 'Done' message when we add a link from 'save a link' item [\#784](https://github.com/wallabag/wallabag/pull/784) ([nicosomb](https://github.com/nicosomb))
- \#763 fix to display the login successful message with the translation [\#783](https://github.com/wallabag/wallabag/pull/783) ([nicosomb](https://github.com/nicosomb))
- Fix \#776 [\#782](https://github.com/wallabag/wallabag/pull/782) ([nicosomb](https://github.com/nicosomb))
- fixed bug for epub export \#755 ; also better metadata title [\#771](https://github.com/wallabag/wallabag/pull/771) ([tcitworld](https://github.com/tcitworld))

**Closed issues:**

- Adding Articles via URL [\#862](https://github.com/wallabag/wallabag/issues/862)
- Not syncing anything [\#817](https://github.com/wallabag/wallabag/issues/817)
- This page does not work [\#810](https://github.com/wallabag/wallabag/issues/810)
- Post pop-up too small [\#798](https://github.com/wallabag/wallabag/issues/798)
- Easy setup for Apps [\#538](https://github.com/wallabag/wallabag/issues/538)
- Baggy theme: Show 12 articles per page to save space [\#760](https://github.com/wallabag/wallabag/issues/760)
- Problem sending pages to wallabag [\#758](https://github.com/wallabag/wallabag/issues/758)
- Big refactoring [\#755](https://github.com/wallabag/wallabag/issues/755)
- Remove useless code [\#753](https://github.com/wallabag/wallabag/issues/753)
- retour a la page [\#734](https://github.com/wallabag/wallabag/issues/734)
- Stay in Archive after deleting an article in the archive [\#704](https://github.com/wallabag/wallabag/issues/704)
- Rename « home »  into « unread » [\#683](https://github.com/wallabag/wallabag/issues/683)
- Solarized dark theme is monochrome [\#645](https://github.com/wallabag/wallabag/issues/645)
- Tags tab empty on new install, explanation would be helpful [\#624](https://github.com/wallabag/wallabag/issues/624)

**Merged pull requests:**

- 1.8.0 [\#863](https://github.com/wallabag/wallabag/pull/863) ([nicosomb](https://github.com/nicosomb))
- Fix \#826 [\#856](https://github.com/wallabag/wallabag/pull/856) ([tcitworld](https://github.com/tcitworld))
- Fix \#828 [\#855](https://github.com/wallabag/wallabag/pull/855) ([tcitworld](https://github.com/tcitworld))
- Saveclick2search \(fix for \#831\) [\#854](https://github.com/wallabag/wallabag/pull/854) ([tcitworld](https://github.com/tcitworld))
- Fix for \#797 [\#853](https://github.com/wallabag/wallabag/pull/853) ([tcitworld](https://github.com/tcitworld))
- Refactor [\#851](https://github.com/wallabag/wallabag/pull/851) ([tcitworld](https://github.com/tcitworld))
- Fix \#766 - GD detection [\#841](https://github.com/wallabag/wallabag/pull/841) ([tcitworld](https://github.com/tcitworld))
- fix pictures display when DOWNLOAD\_PICTURES is enabled [\#839](https://github.com/wallabag/wallabag/pull/839) ([tcitworld](https://github.com/tcitworld))
- Implemented additional check for using the 'X-Forwarded-Port' header. [\#836](https://github.com/wallabag/wallabag/pull/836) ([akoenig](https://github.com/akoenig))
- Complete rework of faz.net-template  [\#816](https://github.com/wallabag/wallabag/pull/816) ([zinnober](https://github.com/zinnober))
- vendor dir is not accessible before install, sqlite db dir write check moved into db class [\#814](https://github.com/wallabag/wallabag/pull/814) ([mariroz](https://github.com/mariroz))
- Adduseremail [\#808](https://github.com/wallabag/wallabag/pull/808) ([tcitworld](https://github.com/tcitworld))
- Ebook [\#801](https://github.com/wallabag/wallabag/pull/801) ([tcitworld](https://github.com/tcitworld))
- query for populate mysql/postgres was called when we choosed sqlite [\#861](https://github.com/wallabag/wallabag/pull/861) ([nicosomb](https://github.com/nicosomb))
- Move compatibility file \(fixes \#858\) [\#860](https://github.com/wallabag/wallabag/pull/860) ([nicosomb](https://github.com/nicosomb))
- Fix downloading SQLite database from all users [\#819](https://github.com/wallabag/wallabag/pull/819) ([tcitworld](https://github.com/tcitworld))
- Traductionfix [\#802](https://github.com/wallabag/wallabag/pull/802) ([tcitworld](https://github.com/tcitworld))
- Add data for mysql installation, see \#624 [\#787](https://github.com/wallabag/wallabag/pull/787) ([nicosomb](https://github.com/nicosomb))
- change default pagination, set it to 12, to have a nice baggy display [\#785](https://github.com/wallabag/wallabag/pull/785) ([nicosomb](https://github.com/nicosomb))

## [1.7.2](https://github.com/wallabag/wallabag/tree/1.7.2) (2014-07-24)
**Closed issues:**

- Upgrade to 1.7.1 failed [\#774](https://github.com/wallabag/wallabag/issues/774)
- Permissions on "db" should not be checked if SQLite isn't used [\#773](https://github.com/wallabag/wallabag/issues/773)
- \[Android\] Pas d'accès aux Settings sur Galaxy Tab Pro [\#746](https://github.com/wallabag/wallabag/issues/746)

**Merged pull requests:**

- security fix [\#791](https://github.com/wallabag/wallabag/pull/791) ([mariroz](https://github.com/mariroz))
- security issue [\#790](https://github.com/wallabag/wallabag/pull/790) ([mariroz](https://github.com/mariroz))
- config for habrahabr.ru to grab articles with comments [\#789](https://github.com/wallabag/wallabag/pull/789) ([mariroz](https://github.com/mariroz))
- highlight.js library added to highlight programming code examples in article view [\#786](https://github.com/wallabag/wallabag/pull/786) ([mariroz](https://github.com/mariroz))
- Proposed fix for \#773 [\#780](https://github.com/wallabag/wallabag/pull/780) ([anno1337](https://github.com/anno1337))
- Updated polish translation [\#777](https://github.com/wallabag/wallabag/pull/777) ([skibbipl](https://github.com/skibbipl))
- issue \#750 - config for dn.pt site added [\#775](https://github.com/wallabag/wallabag/pull/775) ([mariroz](https://github.com/mariroz))
- Refactor [\#768](https://github.com/wallabag/wallabag/pull/768) ([nicosomb](https://github.com/nicosomb))
- Refactor [\#764](https://github.com/wallabag/wallabag/pull/764) ([tcitworld](https://github.com/tcitworld))

## [1.7.1](https://github.com/wallabag/wallabag/tree/1.7.1) (2014-07-15)
**Fixed bugs:**

- Warning: putenv\(\) \[function.putenv\]: Safe Mode warning [\#646](https://github.com/wallabag/wallabag/issues/646)
- Soucis traduction bouton envoyer [\#743](https://github.com/wallabag/wallabag/issues/743)
- Sort RSS Tag Feed [\#738](https://github.com/wallabag/wallabag/issues/738)
- Error parsing file imported from Pocket [\#718](https://github.com/wallabag/wallabag/issues/718)
- EPUB-Download for more than one article create a corrupt file [\#717](https://github.com/wallabag/wallabag/issues/717)
- When downloading images, wallabag doesnt respect html "base" tag [\#677](https://github.com/wallabag/wallabag/issues/677)
- page not saved [\#675](https://github.com/wallabag/wallabag/issues/675)
- Errors importing from Pocket [\#650](https://github.com/wallabag/wallabag/issues/650)
- Multi-User problem [\#630](https://github.com/wallabag/wallabag/issues/630)
- \[Windows\] Many problems with WAMP [\#579](https://github.com/wallabag/wallabag/issues/579)
- missing rss.png files [\#568](https://github.com/wallabag/wallabag/issues/568)
- Cron.php deadlocks import process on many "Untitled" elements [\#565](https://github.com/wallabag/wallabag/issues/565)
- Parser Fail: Text overwrites other text and images [\#537](https://github.com/wallabag/wallabag/issues/537)
- Instapaper Import Failed [\#536](https://github.com/wallabag/wallabag/issues/536)
- Wallabag this link doesn't work [\#440](https://github.com/wallabag/wallabag/issues/440)

**Closed issues:**

- Caching images? [\#757](https://github.com/wallabag/wallabag/issues/757)
- FR: Editing Titles [\#747](https://github.com/wallabag/wallabag/issues/747)
- Rules for automatic tagging [\#745](https://github.com/wallabag/wallabag/issues/745)
- wallabag breaks raw text formatting [\#744](https://github.com/wallabag/wallabag/issues/744)
- Send article to wallabag via email [\#735](https://github.com/wallabag/wallabag/issues/735)
- Chrome extension link is broken [\#732](https://github.com/wallabag/wallabag/issues/732)
- RSS feed XML error [\#731](https://github.com/wallabag/wallabag/issues/731)
- Wallabag silently fails on pocket import [\#723](https://github.com/wallabag/wallabag/issues/723)
- Problems with feeds [\#721](https://github.com/wallabag/wallabag/issues/721)
- Save a link fails - Untitled [\#714](https://github.com/wallabag/wallabag/issues/714)
- Support TED videos [\#676](https://github.com/wallabag/wallabag/issues/676)
- \[ideas\] how to submit a bug [\#662](https://github.com/wallabag/wallabag/issues/662)
- JavaScript login solution for wallabag v1 [\#656](https://github.com/wallabag/wallabag/issues/656)
- Use new branches [\#514](https://github.com/wallabag/wallabag/issues/514)
- change poche folder into wallabag folder [\#449](https://github.com/wallabag/wallabag/issues/449)
- Help for plugin [\#378](https://github.com/wallabag/wallabag/issues/378)
- Make a Docker image for easy install  [\#220](https://github.com/wallabag/wallabag/issues/220)
- about license [\#179](https://github.com/wallabag/wallabag/issues/179)
- wallabag uses an old version of TLS [\#702](https://github.com/wallabag/wallabag/issues/702)
- Please add a way to disable google fonts [\#674](https://github.com/wallabag/wallabag/issues/674)
- "Stay signed in" doesn't work [\#654](https://github.com/wallabag/wallabag/issues/654)
- \[Suggestion\] On main page, choose X articles / page [\#573](https://github.com/wallabag/wallabag/issues/573)

**Merged pull requests:**

- 1.7.1 [\#761](https://github.com/wallabag/wallabag/pull/761) ([nicosomb](https://github.com/nicosomb))
- Add support for \*.about.com [\#754](https://github.com/wallabag/wallabag/pull/754) ([sinisterstuf](https://github.com/sinisterstuf))
- fix of issue \#650, \#619 and other similar, error in JSLikeHTMLElement: node no longer exists. [\#752](https://github.com/wallabag/wallabag/pull/752) ([mariroz](https://github.com/mariroz))
- quick fix of issue \#750: mulipage content for politico.com/magazine articles [\#751](https://github.com/wallabag/wallabag/pull/751) ([mariroz](https://github.com/mariroz))
- fix of issue \#677: When downloading images, wallabag doesnt respect html "base" tag, tnx to @fivefilters [\#737](https://github.com/wallabag/wallabag/pull/737) ([mariroz](https://github.com/mariroz))
- fix of issue \#718: Error parsing file imported from Pocket \#718 [\#736](https://github.com/wallabag/wallabag/pull/736) ([mariroz](https://github.com/mariroz))
- typo FR après vérif. [\#728](https://github.com/wallabag/wallabag/pull/728) ([Draky50110](https://github.com/Draky50110))
- typo FR [\#724](https://github.com/wallabag/wallabag/pull/724) ([Draky50110](https://github.com/Draky50110))
- do not output debug while generating epub [\#722](https://github.com/wallabag/wallabag/pull/722) ([tcitworld](https://github.com/tcitworld))
- error reporting level set in E\_ALL & ~E\_NOTICE by default, can be overriden in config [\#716](https://github.com/wallabag/wallabag/pull/716) ([mariroz](https://github.com/mariroz))
- fix of undefined ATOM constant warning in full-text-rss, will fix ios-app issue \#14 [\#715](https://github.com/wallabag/wallabag/pull/715) ([mariroz](https://github.com/mariroz))
- small xss vulnerability and translation ability fix [\#713](https://github.com/wallabag/wallabag/pull/713) ([mariroz](https://github.com/mariroz))
- \[V2\] changed everything from Poche to Wallabag [\#705](https://github.com/wallabag/wallabag/pull/705) ([tcitworld](https://github.com/tcitworld))

## [1.7.0](https://github.com/wallabag/wallabag/tree/1.7.0) (2014-05-29)
**Fixed bugs:**

- Can't save new article [\#710](https://github.com/wallabag/wallabag/issues/710)
- Dailymotion support [\#708](https://github.com/wallabag/wallabag/issues/708)
- Deleting install dir isn't automatic in dev branch [\#700](https://github.com/wallabag/wallabag/issues/700)
- Installation fails with "parse\_ini\_file" disabled [\#678](https://github.com/wallabag/wallabag/issues/678)
- RSS Problems [\#664](https://github.com/wallabag/wallabag/issues/664)
- 1.6.1 storage name mismatch for postgres in installer [\#657](https://github.com/wallabag/wallabag/issues/657)
- Error 500 - PHP fatal error [\#647](https://github.com/wallabag/wallabag/issues/647)
- rss feed content type [\#636](https://github.com/wallabag/wallabag/issues/636)
- Import doesn't finish [\#619](https://github.com/wallabag/wallabag/issues/619)
- Walla bag fails to grab pages from tutplus.com [\#615](https://github.com/wallabag/wallabag/issues/615)
- display problem with smartphone and Baggy [\#610](https://github.com/wallabag/wallabag/issues/610)
- Embed videos in an iframe don't show [\#590](https://github.com/wallabag/wallabag/issues/590)
- \[Bug ?\] Export wallabag data : not saving but opening in browser [\#570](https://github.com/wallabag/wallabag/issues/570)
- In RSS feed, the link leads to my wallabag page [\#556](https://github.com/wallabag/wallabag/issues/556)
- youtube videos are not saved [\#508](https://github.com/wallabag/wallabag/issues/508)
- Import from Pocket not working in 1.5.2 [\#486](https://github.com/wallabag/wallabag/issues/486)

**Closed issues:**

- Show number of articles in categories, and on tag pages [\#684](https://github.com/wallabag/wallabag/issues/684)
- Feature request : Editing article titles [\#672](https://github.com/wallabag/wallabag/issues/672)
- Add URL from e-mail - Feature Request [\#669](https://github.com/wallabag/wallabag/issues/669)
- PHP - Warning - 3rdparty HTMLpurifier [\#666](https://github.com/wallabag/wallabag/issues/666)
- Create a new user [\#649](https://github.com/wallabag/wallabag/issues/649)
- Improve error management [\#644](https://github.com/wallabag/wallabag/issues/644)
- Paypal? [\#616](https://github.com/wallabag/wallabag/issues/616)
- Wallabag on postgresql fails silently [\#651](https://github.com/wallabag/wallabag/issues/651)
- Save search as new tag [\#638](https://github.com/wallabag/wallabag/issues/638)
- Print friendly formatting? [\#617](https://github.com/wallabag/wallabag/issues/617)
- Update links to 3rd party applications on courgette theme [\#600](https://github.com/wallabag/wallabag/issues/600)
- FeedWriter.php & ATOM [\#550](https://github.com/wallabag/wallabag/issues/550)
- Search engine [\#520](https://github.com/wallabag/wallabag/issues/520)
- wallabag a link in wallabag [\#505](https://github.com/wallabag/wallabag/issues/505)
- FQDN with non-standard ports broken \(testet with PHP's built-in web server\) [\#344](https://github.com/wallabag/wallabag/issues/344)

**Merged pull requests:**

- 1.7, call me "Premium version" [\#712](https://github.com/wallabag/wallabag/pull/712) ([nicosomb](https://github.com/nicosomb))
- fix of uninitialized object warning, issue \#710 [\#711](https://github.com/wallabag/wallabag/pull/711) ([mariroz](https://github.com/mariroz))
- update to 3.2 version of full-text-rss, issue \#694 [\#707](https://github.com/wallabag/wallabag/pull/707) ([mariroz](https://github.com/mariroz))
- Fixed Baggy theme CSS for Chrome Extension \(and \< 500px width layout\) [\#706](https://github.com/wallabag/wallabag/pull/706) ([gboudreau](https://github.com/gboudreau))
- Security fixes for downloaded images \(thanks @leblanc-simon\) [\#703](https://github.com/wallabag/wallabag/pull/703) ([tcitworld](https://github.com/tcitworld))
- Up-to-date with me [\#697](https://github.com/wallabag/wallabag/pull/697) ([tcitworld](https://github.com/tcitworld))
- better wallabag in wallabag button \(see \#685\) [\#693](https://github.com/wallabag/wallabag/pull/693) ([tcitworld](https://github.com/tcitworld))
- Epub is here ! [\#691](https://github.com/wallabag/wallabag/pull/691) ([tcitworld](https://github.com/tcitworld))
- Tag-related features [\#689](https://github.com/wallabag/wallabag/pull/689) ([tcitworld](https://github.com/tcitworld))
- French translation update [\#680](https://github.com/wallabag/wallabag/pull/680) ([m-r-r](https://github.com/m-r-r))
- fix of putenv warning under safe mode, issue \#646 [\#667](https://github.com/wallabag/wallabag/pull/667) ([mariroz](https://github.com/mariroz))
- fix of rss headers problem [\#665](https://github.com/wallabag/wallabag/pull/665) ([mariroz](https://github.com/mariroz))
- Multi-user system \(end\) [\#663](https://github.com/wallabag/wallabag/pull/663) ([tcitworld](https://github.com/tcitworld))
- last error: config.inc.default.php missed [\#659](https://github.com/wallabag/wallabag/pull/659) ([mariroz](https://github.com/mariroz))
- inc/poche/config.inc.php.new removed [\#658](https://github.com/wallabag/wallabag/pull/658) ([mariroz](https://github.com/mariroz))
- parse mobile.lemondeinformatique.fr [\#655](https://github.com/wallabag/wallabag/pull/655) ([ghost](https://github.com/ghost))
- print view fixed in baggy; print link added; read percent added in default theme; archive and favorite re-factored to be ajax action in article view [\#653](https://github.com/wallabag/wallabag/pull/653) ([mariroz](https://github.com/mariroz))
- \[fix\] rss feed content type set to text/xml \#636 [\#643](https://github.com/wallabag/wallabag/pull/643) ([nicosomb](https://github.com/nicosomb))
- Added IF NOT EXISTS [\#642](https://github.com/wallabag/wallabag/pull/642) ([jplock](https://github.com/jplock))
- Improvements on french translation [\#637](https://github.com/wallabag/wallabag/pull/637) ([AmauryCarrade](https://github.com/AmauryCarrade))
- added missing image to dmagenta theme [\#635](https://github.com/wallabag/wallabag/pull/635) ([DmitrySandalov](https://github.com/DmitrySandalov))

## [1.6.1b](https://github.com/wallabag/wallabag/tree/1.6.1b) (2014-04-11)
**Fixed bugs:**

- PosgreSQL error on sequence users\_id\_seq with version 1.6 [\#628](https://github.com/wallabag/wallabag/issues/628)

**Closed issues:**

- RSS feeds don't work [\#631](https://github.com/wallabag/wallabag/issues/631)
- Can't sync articles with the android app [\#608](https://github.com/wallabag/wallabag/issues/608)
- \[Feature Request\] Mobile offline sync support [\#607](https://github.com/wallabag/wallabag/issues/607)
- The rss feed isn't working on version 1.6.0 [\#604](https://github.com/wallabag/wallabag/issues/604)
- Link to the "Update"-documentation in annocements [\#597](https://github.com/wallabag/wallabag/issues/597)
- Export / Import : suggestions & problems [\#571](https://github.com/wallabag/wallabag/issues/571)

**Merged pull requests:**

- 1.6.1 [\#634](https://github.com/wallabag/wallabag/pull/634) ([nicosomb](https://github.com/nicosomb))
- error with empty content by import fixed. Also youtube and vimeo videos are allowd in content now. [\#633](https://github.com/wallabag/wallabag/pull/633) ([mariroz](https://github.com/mariroz))
- logging by import added; error by creation table if exists in postgresql... [\#632](https://github.com/wallabag/wallabag/pull/632) ([mariroz](https://github.com/mariroz))
- Fix display problem with smartphone and Baggy \#610 [\#623](https://github.com/wallabag/wallabag/pull/623) ([nicosomb](https://github.com/nicosomb))
- \[fix\] Escap key displays save a link form \#612 [\#622](https://github.com/wallabag/wallabag/pull/622) ([nicosomb](https://github.com/nicosomb))
- can't close search popup with the cross picture \#613 [\#621](https://github.com/wallabag/wallabag/pull/621) ([nicosomb](https://github.com/nicosomb))
- remove duplicates by import; code formatting changes: tabs replaced with spaces [\#618](https://github.com/wallabag/wallabag/pull/618) ([mariroz](https://github.com/mariroz))
- \[fix\] with some config, http host is different [\#614](https://github.com/wallabag/wallabag/pull/614) ([nicosomb](https://github.com/nicosomb))
- update french locale, thx to @goofy-bz and @Draky50110 \#596 [\#611](https://github.com/wallabag/wallabag/pull/611) ([nicosomb](https://github.com/nicosomb))
- remove unnecessary variable declaration [\#609](https://github.com/wallabag/wallabag/pull/609) ([nicosomb](https://github.com/nicosomb))
- in RSS feed, add link to wallabag URL \#556 [\#606](https://github.com/wallabag/wallabag/pull/606) ([nicosomb](https://github.com/nicosomb))
- \[fix\] Use of undefined constant ATOM \#604 [\#605](https://github.com/wallabag/wallabag/pull/605) ([nicosomb](https://github.com/nicosomb))
- postgres sequence error fix, issue \#602 [\#603](https://github.com/wallabag/wallabag/pull/603) ([mariroz](https://github.com/mariroz))

## [1.6.1](https://github.com/wallabag/wallabag/tree/1.6.1) (2014-04-03)
**Fixed bugs:**

- I can't close "search" popup with the cross picture [\#613](https://github.com/wallabag/wallabag/issues/613)
- Escap key displays "save a link" form [\#612](https://github.com/wallabag/wallabag/issues/612)
- Post 1.6 upgrade - bagging anything lead to PDOException [\#602](https://github.com/wallabag/wallabag/issues/602)
- Fail to sync articles with poche app. [\#593](https://github.com/wallabag/wallabag/issues/593)
- Import fail from Poche [\#530](https://github.com/wallabag/wallabag/issues/530)
- Can't import from Pocket [\#294](https://github.com/wallabag/wallabag/issues/294)

**Closed issues:**

- Migration from third services - Framabag [\#426](https://github.com/wallabag/wallabag/issues/426)

## [1.6.0](https://github.com/wallabag/wallabag/tree/1.6.0) (2014-04-03)
**Fixed bugs:**

- The RSS Feed doesn't seem valid [\#583](https://github.com/wallabag/wallabag/issues/583)
- on Framabag re-login needed after "bag it!" [\#509](https://github.com/wallabag/wallabag/issues/509)
- Bug: makefulltextfeed.php crashing on article [\#494](https://github.com/wallabag/wallabag/issues/494)
- This page contains a script from unauthenticated sources [\#482](https://github.com/wallabag/wallabag/issues/482)
- Running Wallabag on Windows Host [\#580](https://github.com/wallabag/wallabag/issues/580)
- Invalid url message for this page [\#578](https://github.com/wallabag/wallabag/issues/578)
- baggy theme - "powered by" overlapps pagination  [\#577](https://github.com/wallabag/wallabag/issues/577)
- Failing to add a link [\#555](https://github.com/wallabag/wallabag/issues/555)
- CTRL S open "save this page" in firefox [\#552](https://github.com/wallabag/wallabag/issues/552)
- deactivate keyboard shortcuts when entering tags [\#546](https://github.com/wallabag/wallabag/issues/546)
- Failure in makefulltextfeed.php [\#529](https://github.com/wallabag/wallabag/issues/529)
- Firefox: download the extension - Link Broken [\#528](https://github.com/wallabag/wallabag/issues/528)
- minor glitch in baggy theme [\#526](https://github.com/wallabag/wallabag/issues/526)
- baggy theme removed "remember scroll position" feature [\#519](https://github.com/wallabag/wallabag/issues/519)
- Heise article crashes online demo  [\#498](https://github.com/wallabag/wallabag/issues/498)
- Erreur PHP Fatal error: Call to undefined method [\#493](https://github.com/wallabag/wallabag/issues/493)
- Impossible de changer de langue [\#492](https://github.com/wallabag/wallabag/issues/492)
- \[Baggy\] Prob. "hover" sur lien de déco [\#489](https://github.com/wallabag/wallabag/issues/489)
- Config en FR mais langue EN affichée ? [\#488](https://github.com/wallabag/wallabag/issues/488)
- Update to 1.5.2 : PHP extension required: pdo\_sqlite [\#483](https://github.com/wallabag/wallabag/issues/483)
- pages are not imported [\#463](https://github.com/wallabag/wallabag/issues/463)
- Permission error if no cache dir exist [\#451](https://github.com/wallabag/wallabag/issues/451)
- wallabag a tumblr will only save the first post [\#441](https://github.com/wallabag/wallabag/issues/441)
- RSS Feeds don't validate / W3C [\#384](https://github.com/wallabag/wallabag/issues/384)
- No content after fresh install \(v1.3.0\) [\#366](https://github.com/wallabag/wallabag/issues/366)
- Local import does not work [\#332](https://github.com/wallabag/wallabag/issues/332)
- stay connected checkbox - Add cookie [\#115](https://github.com/wallabag/wallabag/issues/115)
- image non récupérée [\#52](https://github.com/wallabag/wallabag/issues/52)
- bagit link + overlay save link + listmode [\#540](https://github.com/wallabag/wallabag/pull/540) ([courgette](https://github.com/courgette))
- fix of global $http visibility, issues \#493, \#494 [\#495](https://github.com/wallabag/wallabag/pull/495) ([mariroz](https://github.com/mariroz))

**Closed issues:**

- "Cannot redeclare autoload\(\)" error when importing from Readability [\#575](https://github.com/wallabag/wallabag/issues/575)
- Link to F-Droidpoints to old app [\#574](https://github.com/wallabag/wallabag/issues/574)
- \[Bug\] MySQL tables have NO prefix ! [\#569](https://github.com/wallabag/wallabag/issues/569)
- \[Bug\] Only Baggy theme have cron import instructions [\#559](https://github.com/wallabag/wallabag/issues/559)
- When tagging, recommend already used tags [\#542](https://github.com/wallabag/wallabag/issues/542)
- \[Suggestion\] bookmarklet : retour à la page d'origine [\#539](https://github.com/wallabag/wallabag/issues/539)
- \[Bug\] Saving link menu item : javascript problem [\#516](https://github.com/wallabag/wallabag/issues/516)
- Pagination sur le theme baggy [\#507](https://github.com/wallabag/wallabag/issues/507)
- Update Firefox extension [\#506](https://github.com/wallabag/wallabag/issues/506)
- \[Feature request\] Use QR codes to set the mobile applications up [\#432](https://github.com/wallabag/wallabag/issues/432)
- \[Cron ?\] Import [\#545](https://github.com/wallabag/wallabag/issues/545)
- Close "save a link" popup without using "esc" key [\#541](https://github.com/wallabag/wallabag/issues/541)
- Hide content in list view \(with baggy theme\) [\#525](https://github.com/wallabag/wallabag/issues/525)
- Empty cache after changing theme [\#503](https://github.com/wallabag/wallabag/issues/503)
- After token generation, don't redirect to home screen [\#491](https://github.com/wallabag/wallabag/issues/491)
- \[theme\] \[baggy\] Get an actual flattr icon [\#490](https://github.com/wallabag/wallabag/issues/490)
- \[Trad/Transl\] FR [\#487](https://github.com/wallabag/wallabag/issues/487)
- Baggy theme navigation bug [\#485](https://github.com/wallabag/wallabag/issues/485)
- Update logo [\#484](https://github.com/wallabag/wallabag/issues/484)
- \[Feature\] View as list [\#479](https://github.com/wallabag/wallabag/issues/479)
- List of existing Tags [\#477](https://github.com/wallabag/wallabag/issues/477)
- Pocket import does not support tag ? [\#457](https://github.com/wallabag/wallabag/issues/457)
- \[Suggestion\] Forcer la vérif. de version [\#455](https://github.com/wallabag/wallabag/issues/455)
- \[Suggestion\] Bouton pour vider le cache [\#454](https://github.com/wallabag/wallabag/issues/454)
- \[v1\] improve import system [\#365](https://github.com/wallabag/wallabag/issues/365)

**Merged pull requests:**

- wallabag 1.6.0 [\#595](https://github.com/wallabag/wallabag/pull/595) ([nicosomb](https://github.com/nicosomb))
- import into wallabag without cron and file type [\#594](https://github.com/wallabag/wallabag/pull/594) ([mariroz](https://github.com/mariroz))
- fix of bug with default theme constant [\#588](https://github.com/wallabag/wallabag/pull/588) ([mariroz](https://github.com/mariroz))
- problem with resources and localhost url fix [\#587](https://github.com/wallabag/wallabag/pull/587) ([mariroz](https://github.com/mariroz))
- wallabag a link in wallabag now in default theme, issue \#505 [\#586](https://github.com/wallabag/wallabag/pull/586) ([mariroz](https://github.com/mariroz))
- updated german localisation [\#585](https://github.com/wallabag/wallabag/pull/585) ([kevmeyer](https://github.com/kevmeyer))
- fix of localhost cookie related to nginx binding to 0.0.0.0 [\#582](https://github.com/wallabag/wallabag/pull/582) ([mariroz](https://github.com/mariroz))
- fix of issue under nginx and php-fpm [\#581](https://github.com/wallabag/wallabag/pull/581) ([mariroz](https://github.com/mariroz))
- fix of  \_SESSION - indefined variable [\#576](https://github.com/wallabag/wallabag/pull/576) ([mariroz](https://github.com/mariroz))
- fix of \#115, server relater config value added [\#572](https://github.com/wallabag/wallabag/pull/572) ([mariroz](https://github.com/mariroz))
- fix of \#115 - stay connected and session livetime [\#567](https://github.com/wallabag/wallabag/pull/567) ([mariroz](https://github.com/mariroz))
- Update brazilian traslation title to "Português \(Brasil\)" [\#566](https://github.com/wallabag/wallabag/pull/566) ([brunelli](https://github.com/brunelli))
- Update brazilian translation [\#563](https://github.com/wallabag/wallabag/pull/563) ([brunelli](https://github.com/brunelli))
- saving link form now sends ajax request, article view is now justified \(issue \#554\) [\#557](https://github.com/wallabag/wallabag/pull/557) ([mariroz](https://github.com/mariroz))
- feature \#505 - it is now possible to add link from bagged article \(TODO: redev it to ajax action\). Some enhancements to "save a link" popup div [\#551](https://github.com/wallabag/wallabag/pull/551) ([mariroz](https://github.com/mariroz))
- fix of conflict of s shortcat and entering s in input fields [\#549](https://github.com/wallabag/wallabag/pull/549) ([mariroz](https://github.com/mariroz))
- a lot of enhancements related to tags: tags list is now sorted, shows number of articles, autocomplete added according to \#477, \#542 [\#544](https://github.com/wallabag/wallabag/pull/544) ([mariroz](https://github.com/mariroz))
- Changed config section to clarify import process. [\#535](https://github.com/wallabag/wallabag/pull/535) ([bobmaerten](https://github.com/bobmaerten))
- fix of \#530 - import fail from Poche [\#533](https://github.com/wallabag/wallabag/pull/533) ([mariroz](https://github.com/mariroz))
- New import system [\#532](https://github.com/wallabag/wallabag/pull/532) ([nicosomb](https://github.com/nicosomb))
- getPageContent moved to Tools, fix of \#426 [\#531](https://github.com/wallabag/wallabag/pull/531) ([mariroz](https://github.com/mariroz))
- updated german localization [\#524](https://github.com/wallabag/wallabag/pull/524) ([kevmeyer](https://github.com/kevmeyer))
- effect of block rebuilding on next page removed, issue \#479 [\#517](https://github.com/wallabag/wallabag/pull/517) ([mariroz](https://github.com/mariroz))
- fix of \#509, related to php 5.3 [\#515](https://github.com/wallabag/wallabag/pull/515) ([mariroz](https://github.com/mariroz))
- Brazilian portuguese translation [\#513](https://github.com/wallabag/wallabag/pull/513) ([brunelli](https://github.com/brunelli))
- some baggy theme fixes and enhancement: issue \#479 [\#510](https://github.com/wallabag/wallabag/pull/510) ([mariroz](https://github.com/mariroz))
- translation related: how-to md file added, script to generate php from all twig templates, polish mo file compiled [\#504](https://github.com/wallabag/wallabag/pull/504) ([mariroz](https://github.com/mariroz))
- Update pl\_PL.utf8.po [\#502](https://github.com/wallabag/wallabag/pull/502) ([skibbipl](https://github.com/skibbipl))
- fix of \#498, \#493, \#494 - because disappeared in last commit [\#501](https://github.com/wallabag/wallabag/pull/501) ([mariroz](https://github.com/mariroz))
- French translation added by @Draky50110, issue \#488 [\#499](https://github.com/wallabag/wallabag/pull/499) ([mariroz](https://github.com/mariroz))

## [1.5.2](https://github.com/wallabag/wallabag/tree/1.5.2) (2014-02-21)
**Fixed bugs:**

- \[Bug\] Liste des thèmes par ordre alpha ? [\#470](https://github.com/wallabag/wallabag/issues/470)
- \[Bug\] Label du bouton sur l'écran d'identification [\#456](https://github.com/wallabag/wallabag/issues/456)
- \[Bug\] Thème Baggy : le lien vers Wallabag en footer ne marche pas [\#453](https://github.com/wallabag/wallabag/issues/453)

**Closed issues:**

- One tag displayed multiple times on tags page [\#474](https://github.com/wallabag/wallabag/issues/474)
- display language name in config page [\#480](https://github.com/wallabag/wallabag/issues/480)
- Missing pagination on tag page [\#476](https://github.com/wallabag/wallabag/issues/476)
- \[Changement de nom\] Anciens thèmes [\#471](https://github.com/wallabag/wallabag/issues/471)
- Make the installation more user-friendly [\#466](https://github.com/wallabag/wallabag/issues/466)
- add Slovenian language [\#462](https://github.com/wallabag/wallabag/issues/462)
- move the "save a link" field on homepage [\#461](https://github.com/wallabag/wallabag/issues/461)

**Merged pull requests:**

- 1.5.2 [\#481](https://github.com/wallabag/wallabag/pull/481) ([nicosomb](https://github.com/nicosomb))
- a lot of refactoring: tag action is now handled by home view and uses sorting and pagination. Some small view enhacenments. Fix of \#476, \#461 for baggy and other themes [\#478](https://github.com/wallabag/wallabag/pull/478) ([mariroz](https://github.com/mariroz))
- Baggy Theme - PtSans font is now local [\#473](https://github.com/wallabag/wallabag/pull/473) ([nsteinmetz](https://github.com/nsteinmetz))
- Full-Text RSS included as a script instead of file\_get\_contents call. Tnx to @Faless. Fix issues \#366 and \#463 [\#472](https://github.com/wallabag/wallabag/pull/472) ([mariroz](https://github.com/mariroz))
- version number 1.5.1 [\#469](https://github.com/wallabag/wallabag/pull/469) ([nicosomb](https://github.com/nicosomb))
- "save a link" added to top menu \(default theme\) to toggle "save link" form,  issue \#461 [\#467](https://github.com/wallabag/wallabag/pull/467) ([mariroz](https://github.com/mariroz))

## [1.5.1.1](https://github.com/wallabag/wallabag/tree/1.5.1.1) (2014-02-19)
## [1.5.1](https://github.com/wallabag/wallabag/tree/1.5.1) (2014-02-19)
**Fixed bugs:**

- \[Bug\] Bas de page index : problème avec le fichier de langue ? [\#452](https://github.com/wallabag/wallabag/issues/452)
- duplicate check added. fix of issue \#400 [\#460](https://github.com/wallabag/wallabag/pull/460) ([mariroz](https://github.com/mariroz))

**Merged pull requests:**

- 1.5.1 [\#468](https://github.com/wallabag/wallabag/pull/468) ([nicosomb](https://github.com/nicosomb))
- Feature \#457 : import from pocket now import tags too [\#459](https://github.com/wallabag/wallabag/pull/459) ([arnaudmm](https://github.com/arnaudmm))

## [1.5.0](https://github.com/wallabag/wallabag/tree/1.5.0) (2014-02-13)
**Fixed bugs:**

- Bug with theme name case [\#447](https://github.com/wallabag/wallabag/issues/447)
- notification cross doesn't work [\#446](https://github.com/wallabag/wallabag/issues/446)
- Login time [\#442](https://github.com/wallabag/wallabag/issues/442)
- An error report:Parse error: syntax error, unexpected T\_FUNCTION [\#436](https://github.com/wallabag/wallabag/issues/436)
- Incorrect url when adding from Android [\#424](https://github.com/wallabag/wallabag/issues/424)
- Some language problems in the french Config Page [\#416](https://github.com/wallabag/wallabag/issues/416)
- RSS Feed URL problem [\#364](https://github.com/wallabag/wallabag/issues/364)

**Closed issues:**

- new default content  [\#445](https://github.com/wallabag/wallabag/issues/445)
- Update the demo [\#430](https://github.com/wallabag/wallabag/issues/430)
- Move all Unread articles to Archive [\#385](https://github.com/wallabag/wallabag/issues/385)

**Merged pull requests:**

- 1.5.0 [\#450](https://github.com/wallabag/wallabag/pull/450) ([nicosomb](https://github.com/nicosomb))
- Adding .htaccess files to prohibit access to critical directories, e.g., db/ [\#439](https://github.com/wallabag/wallabag/pull/439) ([flolauck](https://github.com/flolauck))
- Polish and Ukrainian translations added. Russian - updated. Plust 2 smal... [\#435](https://github.com/wallabag/wallabag/pull/435) ([mariroz](https://github.com/mariroz))
- Theme courgette [\#434](https://github.com/wallabag/wallabag/pull/434) ([courgette](https://github.com/courgette))
- all locale files re-compiled: fix of \#416 Some language problems in the ... [\#428](https://github.com/wallabag/wallabag/pull/428) ([mariroz](https://github.com/mariroz))

## [1.4.0](https://github.com/wallabag/wallabag/tree/1.4.0) (2014-02-03)
**Fixed bugs:**

- remember user [\#401](https://github.com/wallabag/wallabag/issues/401)
- Poche on Apache, behind Ngnix [\#395](https://github.com/wallabag/wallabag/issues/395)
- remove all poche references in code [\#415](https://github.com/wallabag/wallabag/issues/415)
- Add support for X-Forwarded-Proto header field [\#413](https://github.com/wallabag/wallabag/issues/413)
- \[unable to retrieve full-text content\]... [\#396](https://github.com/wallabag/wallabag/issues/396)
- Empty article title and content \(blank title tag and content\) [\#390](https://github.com/wallabag/wallabag/issues/390)
- Import from readability doesn't work \(0 links imported\) [\#375](https://github.com/wallabag/wallabag/issues/375)
- Endless redirects or user doesn't exist with basic authentication [\#368](https://github.com/wallabag/wallabag/issues/368)
- table tags\_entries already exists  [\#367](https://github.com/wallabag/wallabag/issues/367)
- fix of bug \#368 Endless redirects or user doesn't exist with basic authe... [\#419](https://github.com/wallabag/wallabag/pull/419) ([mariroz](https://github.com/mariroz))
- Page data extraction with basic auth [\#394](https://github.com/wallabag/wallabag/pull/394) ([aaa2000](https://github.com/aaa2000))

**Closed issues:**

- Error when installing: Fatal error: Call to a member function render\(\) on a non-object in [\#423](https://github.com/wallabag/wallabag/issues/423)
- Add undelete [\#422](https://github.com/wallabag/wallabag/issues/422)
- \[1.3.1\] Poche Call to a member function render\(\) on a non-object [\#399](https://github.com/wallabag/wallabag/issues/399)
- Rationnaliser la doc [\#297](https://github.com/wallabag/wallabag/issues/297)
- Tables content in solarized dark theme unreadable [\#421](https://github.com/wallabag/wallabag/issues/421)
- 1.3.0: Pulished feeds by tt-rss will be empty in wallabag [\#420](https://github.com/wallabag/wallabag/issues/420)
- Display link to poche\_compatibility\_test at installation [\#392](https://github.com/wallabag/wallabag/issues/392)
- Empty article title \(blank title tag\) [\#389](https://github.com/wallabag/wallabag/issues/389)
- \[v1\] update translation files  [\#340](https://github.com/wallabag/wallabag/issues/340)
- Sharing on self hosted social networks [\#327](https://github.com/wallabag/wallabag/issues/327)

**Merged pull requests:**

- changelog 1.4 [\#427](https://github.com/wallabag/wallabag/pull/427) ([nicosomb](https://github.com/nicosomb))
- Courgette theme revision [\#425](https://github.com/wallabag/wallabag/pull/425) ([Lonnytunes](https://github.com/Lonnytunes))
- Fix: stops multiplication, in database, of a same user config item [\#410](https://github.com/wallabag/wallabag/pull/410) ([Lonnytunes](https://github.com/Lonnytunes))
- Correction de bugs dans le schema mysql [\#391](https://github.com/wallabag/wallabag/pull/391) ([Newinx](https://github.com/Newinx))

## [1.3.1](https://github.com/wallabag/wallabag/tree/1.3.1) (2014-01-07)
**Fixed bugs:**

- Some links crash RSS feeds [\#386](https://github.com/wallabag/wallabag/issues/386)
- Encoding trouble in \<title\> of RSS [\#376](https://github.com/wallabag/wallabag/issues/376)
- Some articles break the RSS [\#374](https://github.com/wallabag/wallabag/issues/374)
- Notice: Trying to get property of non-object in poche/inc/3rdparty/FlattrItem.class.php on line 22 [\#359](https://github.com/wallabag/wallabag/issues/359)

**Closed issues:**

- Problem with fresh install [\#383](https://github.com/wallabag/wallabag/issues/383)
- Vector version of logo? [\#372](https://github.com/wallabag/wallabag/issues/372)

**Merged pull requests:**

- poche 1.3.1 [\#387](https://github.com/wallabag/wallabag/pull/387) ([nicosomb](https://github.com/nicosomb))
- Create sqlite table tags\_entries only if not already exists [\#382](https://github.com/wallabag/wallabag/pull/382) ([aaa2000](https://github.com/aaa2000))
- Flattr Class : Bug 359 [\#381](https://github.com/wallabag/wallabag/pull/381) ([tcitworld](https://github.com/tcitworld))
- Change Permissions in pochePictures.php [\#380](https://github.com/wallabag/wallabag/pull/380) ([F1reF0x](https://github.com/F1reF0x))
- Minor changes to tag edit and config pages [\#379](https://github.com/wallabag/wallabag/pull/379) ([williamtheaker](https://github.com/williamtheaker))
- docs link, typos [\#370](https://github.com/wallabag/wallabag/pull/370) ([DmitrySandalov](https://github.com/DmitrySandalov))

## [1.3.0](https://github.com/wallabag/wallabag/tree/1.3.0) (2013-12-23)
**Fixed bugs:**

- can't parse youtube [\#253](https://github.com/wallabag/wallabag/issues/253)

**Closed issues:**

- offline access to list possible?  [\#361](https://github.com/wallabag/wallabag/issues/361)
- Template tpl inachevé empêche le retour au thème par défaut [\#355](https://github.com/wallabag/wallabag/issues/355)
- Actions icons not displayed with default theme [\#346](https://github.com/wallabag/wallabag/issues/346)
- \[Feature\] Article length [\#345](https://github.com/wallabag/wallabag/issues/345)
- \[Feature\] Custom Parse Scripts [\#335](https://github.com/wallabag/wallabag/issues/335)
- Wrong current version [\#330](https://github.com/wallabag/wallabag/issues/330)

**Merged pull requests:**

- poche 1.3.0 [\#363](https://github.com/wallabag/wallabag/pull/363) ([nicosomb](https://github.com/nicosomb))
- fix for long lasting session [\#362](https://github.com/wallabag/wallabag/pull/362) ([DmitrySandalov](https://github.com/DmitrySandalov))
- tags: mysql create tables if not exists [\#360](https://github.com/wallabag/wallabag/pull/360) ([DmitrySandalov](https://github.com/DmitrySandalov))
- Edited English text [\#358](https://github.com/wallabag/wallabag/pull/358) ([williamtheaker](https://github.com/williamtheaker))
- Tags feature [\#356](https://github.com/wallabag/wallabag/pull/356) ([nicosomb](https://github.com/nicosomb))
- \[change\] we now use Full-Text RSS 3.1, thank you so much @fivefilters [\#353](https://github.com/wallabag/wallabag/pull/353) ([nicosomb](https://github.com/nicosomb))
- updating the "es\_ES" locale [\#352](https://github.com/wallabag/wallabag/pull/352) ([versvs](https://github.com/versvs))
- add atom feeds for unread / favs [\#350](https://github.com/wallabag/wallabag/pull/350) ([nicosomb](https://github.com/nicosomb))
- Stackoverflow parsing and subdomain failover fix. [\#349](https://github.com/wallabag/wallabag/pull/349) ([JasonGhent](https://github.com/JasonGhent))
- Fix links [\#347](https://github.com/wallabag/wallabag/pull/347) ([evgeni](https://github.com/evgeni))
- \[add\] preparing to poche a new link [\#337](https://github.com/wallabag/wallabag/pull/337) ([nicosomb](https://github.com/nicosomb))
- \[fix\] paths of assets fixed [\#336](https://github.com/wallabag/wallabag/pull/336) ([nicosomb](https://github.com/nicosomb))
- \[add\] layout [\#331](https://github.com/wallabag/wallabag/pull/331) ([nicosomb](https://github.com/nicosomb))
- Create fa\_IR.utf8.po [\#329](https://github.com/wallabag/wallabag/pull/329) ([mabkenar](https://github.com/mabkenar))
- 1.2.0 [\#326](https://github.com/wallabag/wallabag/pull/326) ([nicosomb](https://github.com/nicosomb))

## [1.2.0](https://github.com/wallabag/wallabag/tree/1.2.0) (2013-11-25)
**Fixed bugs:**

- poche not accessible anymore via https [\#283](https://github.com/wallabag/wallabag/issues/283)
- content not well displayed with bulletins-electroniques.com [\#177](https://github.com/wallabag/wallabag/issues/177)
- problem with CURLOPT\_FOLLOWLOCATION [\#287](https://github.com/wallabag/wallabag/issues/287)
- html output of poche is linking to localhost [\#270](https://github.com/wallabag/wallabag/issues/270)
- Deleting article doesn't redirect [\#259](https://github.com/wallabag/wallabag/issues/259)
- error 500 with the .htaccess [\#254](https://github.com/wallabag/wallabag/issues/254)

**Closed issues:**

- "Stay signed in" doesn't work on Poche Hosting / Chrome [\#325](https://github.com/wallabag/wallabag/issues/325)
- pouvoir taguer ses posts - Tag posts [\#319](https://github.com/wallabag/wallabag/issues/319)
- RSS/atom feed of unread items [\#318](https://github.com/wallabag/wallabag/issues/318)
- \[v2\] enhancement add Russian locale [\#314](https://github.com/wallabag/wallabag/issues/314)
- ru\_RU.utf8.po locale proposal [\#308](https://github.com/wallabag/wallabag/issues/308)
- No icons visible in dark theme - new set proposed. [\#306](https://github.com/wallabag/wallabag/issues/306)
- \[v2\] Mark an arcticle as 'read' on the actual arcticle page [\#305](https://github.com/wallabag/wallabag/issues/305)
- Always wants me to login [\#303](https://github.com/wallabag/wallabag/issues/303)
- Créer son utilisateur, howto?  [\#298](https://github.com/wallabag/wallabag/issues/298)
- Can't import from Pocket [\#295](https://github.com/wallabag/wallabag/issues/295)
- Utilisation de librairies locales [\#293](https://github.com/wallabag/wallabag/issues/293)
- API doesn't feech content - L'API ne récupère pas le contenu [\#292](https://github.com/wallabag/wallabag/issues/292)
- mysql collation not UTF8 [\#279](https://github.com/wallabag/wallabag/issues/279)
- Mobile view of a rue89 website doesnt work [\#276](https://github.com/wallabag/wallabag/issues/276)
- Être au niveau d'Evernote Web Clipper [\#252](https://github.com/wallabag/wallabag/issues/252)
- parse a SPIP website [\#241](https://github.com/wallabag/wallabag/issues/241)
- use Font Awesome [\#133](https://github.com/wallabag/wallabag/issues/133)
- vider le cache depuis la config [\#122](https://github.com/wallabag/wallabag/issues/122)
- gestion des erreurs sqlite [\#14](https://github.com/wallabag/wallabag/issues/14)
- \#article\_toolbar in hardcopy printouts must die [\#311](https://github.com/wallabag/wallabag/issues/311)
- Use ajax to perform actions on an article [\#197](https://github.com/wallabag/wallabag/issues/197)

**Merged pull requests:**

- \[v2\] ru\_RU locale file [\#315](https://github.com/wallabag/wallabag/pull/315) ([DmitrySandalov](https://github.com/DmitrySandalov))
- \[v2\] fix \#270 access from remote machine [\#313](https://github.com/wallabag/wallabag/pull/313) ([DmitrySandalov](https://github.com/DmitrySandalov))
- dark theme images replaced to visible set, no executable bits for pictures [\#310](https://github.com/wallabag/wallabag/pull/310) ([jn0](https://github.com/jn0))
- Added possibility to mark items as read/unread on the item page itself. [\#307](https://github.com/wallabag/wallabag/pull/307) ([baurmatt](https://github.com/baurmatt))
- Autoclose [\#291](https://github.com/wallabag/wallabag/pull/291) ([banux](https://github.com/banux))
- 1.1.0 [\#289](https://github.com/wallabag/wallabag/pull/289) ([nicosomb](https://github.com/nicosomb))

## [1.1.0](https://github.com/wallabag/wallabag/tree/1.1.0) (2013-10-25)
**Fixed bugs:**

- New menu bar bad display on Windows Phone Browser [\#258](https://github.com/wallabag/wallabag/issues/258)
- new menu bar in beta 5 not usable on android firefox in portrait orientation [\#255](https://github.com/wallabag/wallabag/issues/255)

**Closed issues:**

- on hosting platform : login and headers already sent warning [\#288](https://github.com/wallabag/wallabag/issues/288)
- Fix German Translation [\#286](https://github.com/wallabag/wallabag/issues/286)
- Increase or decrease font size [\#282](https://github.com/wallabag/wallabag/issues/282)
- longer lasting "Stay signed in" [\#277](https://github.com/wallabag/wallabag/issues/277)
- move POCHE\_VERSION in index.php [\#268](https://github.com/wallabag/wallabag/issues/268)
- Searching? [\#265](https://github.com/wallabag/wallabag/issues/265)
- Themes link is broken [\#260](https://github.com/wallabag/wallabag/issues/260)
- Install and login failure using MAMP [\#251](https://github.com/wallabag/wallabag/issues/251)
- tests with behat [\#217](https://github.com/wallabag/wallabag/issues/217)
- about links which are bad displayed [\#176](https://github.com/wallabag/wallabag/issues/176)
- czech translation [\#271](https://github.com/wallabag/wallabag/issues/271)
- make installation steps easier [\#266](https://github.com/wallabag/wallabag/issues/266)
- Change language [\#215](https://github.com/wallabag/wallabag/issues/215)

**Merged pull requests:**

- Adding support for http\_auth [\#285](https://github.com/wallabag/wallabag/pull/285) ([dsacchet](https://github.com/dsacchet))
- Updated Screenshots URLs [\#278](https://github.com/wallabag/wallabag/pull/278) ([tcitworld](https://github.com/tcitworld))
- Update select theme filter and sort names \(dev branch PR\) [\#274](https://github.com/wallabag/wallabag/pull/274) ([NumEricR](https://github.com/NumEricR))
- Emdeded Roboto webfont [\#273](https://github.com/wallabag/wallabag/pull/273) ([jcsaaddupuy](https://github.com/jcsaaddupuy))
- Custom ssl port [\#272](https://github.com/wallabag/wallabag/pull/272) ([jcsaaddupuy](https://github.com/jcsaaddupuy))
- Embeding jquery [\#264](https://github.com/wallabag/wallabag/pull/264) ([jcsaaddupuy](https://github.com/jcsaaddupuy))
- Fix \#255 : increase article toolbar height if necessary [\#261](https://github.com/wallabag/wallabag/pull/261) ([NumEricR](https://github.com/NumEricR))
- merge 1.0.0 [\#256](https://github.com/wallabag/wallabag/pull/256) ([nicosomb](https://github.com/nicosomb))

## [1.0.0](https://github.com/wallabag/wallabag/tree/1.0.0) (2013-10-03)
**Fixed bugs:**

- alert message aat field in config is in french [\#246](https://github.com/wallabag/wallabag/issues/246)
- when archive last poched links from a page, redirect to an other page [\#219](https://github.com/wallabag/wallabag/issues/219)
- Coherent install instructions? [\#248](https://github.com/wallabag/wallabag/issues/248)
- Flattr Cache : File names too long [\#243](https://github.com/wallabag/wallabag/issues/243)
- problem with estimated reading time on smartphone / tablet [\#242](https://github.com/wallabag/wallabag/issues/242)
- inc/3rdparty/site\_config missing [\#240](https://github.com/wallabag/wallabag/issues/240)
- full paths of import files displayed [\#234](https://github.com/wallabag/wallabag/issues/234)
- Can't poche a github page with bookmarklet [\#233](https://github.com/wallabag/wallabag/issues/233)
- save position not enabled [\#230](https://github.com/wallabag/wallabag/issues/230)
- theme not stored [\#229](https://github.com/wallabag/wallabag/issues/229)
- Deleting element in archive redirect to home [\#227](https://github.com/wallabag/wallabag/issues/227)
- Problème avec la page d'un élément poché et la date [\#225](https://github.com/wallabag/wallabag/issues/225)
- Export Twitter : Caractères spéciaux qui ne passent pas  [\#135](https://github.com/wallabag/wallabag/issues/135)
- verif csrf pour l'ajout d'un lien [\#40](https://github.com/wallabag/wallabag/issues/40)

**Closed issues:**

- Firefox addon not compatible with version 24 [\#249](https://github.com/wallabag/wallabag/issues/249)
- just created my account but can't login [\#247](https://github.com/wallabag/wallabag/issues/247)
- Login page URL link on homepage [\#237](https://github.com/wallabag/wallabag/issues/237)
- Strange login problem on development environment [\#232](https://github.com/wallabag/wallabag/issues/232)
- 1.0-beta5: Missing themes into themes folder [\#228](https://github.com/wallabag/wallabag/issues/228)
- back button on bottom right of the article view [\#231](https://github.com/wallabag/wallabag/issues/231)
- Try to keep flattr links [\#194](https://github.com/wallabag/wallabag/issues/194)
- Language declaration is missing [\#183](https://github.com/wallabag/wallabag/issues/183)
- choose a theme from config screen [\#161](https://github.com/wallabag/wallabag/issues/161)
- Add a print stylesheet [\#157](https://github.com/wallabag/wallabag/issues/157)
- changer la classe de Session [\#127](https://github.com/wallabag/wallabag/issues/127)
- génération du salt à l'installation [\#119](https://github.com/wallabag/wallabag/issues/119)
- relier poche à shaarli [\#112](https://github.com/wallabag/wallabag/issues/112)

**Merged pull requests:**

- Force download on poche export [\#250](https://github.com/wallabag/wallabag/pull/250) ([NumEricR](https://github.com/NumEricR))
- Avoid ".git" option in themes list of config page [\#245](https://github.com/wallabag/wallabag/pull/245) ([NumEricR](https://github.com/NumEricR))
- Changed Flattr Caching System [\#244](https://github.com/wallabag/wallabag/pull/244) ([tcitworld](https://github.com/tcitworld))

## [1.0-beta5.2](https://github.com/wallabag/wallabag/tree/1.0-beta5.2) (2013-09-20)
## [1.0-beta5.1](https://github.com/wallabag/wallabag/tree/1.0-beta5.1) (2013-09-20)
## [1.0-beta5](https://github.com/wallabag/wallabag/tree/1.0-beta5) (2013-09-20)
**Fixed bugs:**

- Poche can't parse LWN.net articles where subscription is needed despite login [\#201](https://github.com/wallabag/wallabag/issues/201)
- Wrong title on favorites and archives pages [\#182](https://github.com/wallabag/wallabag/issues/182)
- \<h2\> Title not displaying [\#153](https://github.com/wallabag/wallabag/issues/153)
- titles with colon bad parsed [\#209](https://github.com/wallabag/wallabag/issues/209)
- update doc links in poche [\#208](https://github.com/wallabag/wallabag/issues/208)
- bbc and guardian [\#200](https://github.com/wallabag/wallabag/issues/200)
- DOWNLOAD\_PICTURES function [\#186](https://github.com/wallabag/wallabag/issues/186)

**Closed issues:**

- Paging is not filtered [\#223](https://github.com/wallabag/wallabag/issues/223)
- Unable to add urls to view.twig [\#213](https://github.com/wallabag/wallabag/issues/213)
- Enhancement : Share on android through API [\#207](https://github.com/wallabag/wallabag/issues/207)
- no content displayed [\#206](https://github.com/wallabag/wallabag/issues/206)
- Redirection login ? [\#204](https://github.com/wallabag/wallabag/issues/204)
- Impossible de parser une documentation Sphinx [\#203](https://github.com/wallabag/wallabag/issues/203)
- Don'ty working when download pictures is enabled [\#202](https://github.com/wallabag/wallabag/issues/202)
- Export articles as PDF \(or plain text\) [\#198](https://github.com/wallabag/wallabag/issues/198)
- Add a link to add an URL directly from Poche [\#196](https://github.com/wallabag/wallabag/issues/196)
- Error : SQLite [\#195](https://github.com/wallabag/wallabag/issues/195)
- PHP Fatal error:  Uncaught exception 'PDOException'  [\#193](https://github.com/wallabag/wallabag/issues/193)
- update app.inthepoche.com [\#192](https://github.com/wallabag/wallabag/issues/192)
- déplacer la config des sites dans un autre projet et faire un submodule [\#190](https://github.com/wallabag/wallabag/issues/190)
- BFMTV.com article appears wrong in poche [\#189](https://github.com/wallabag/wallabag/issues/189)
- User documentation [\#187](https://github.com/wallabag/wallabag/issues/187)
- Image downloader feature [\#185](https://github.com/wallabag/wallabag/issues/185)
- website: link to github [\#184](https://github.com/wallabag/wallabag/issues/184)
- Scroll position save / sync [\#105](https://github.com/wallabag/wallabag/issues/105)

**Merged pull requests:**

- beta5 [\#226](https://github.com/wallabag/wallabag/pull/226) ([nicosomb](https://github.com/nicosomb))
- Fix \#183: language declaration [\#221](https://github.com/wallabag/wallabag/pull/221) ([NumEricR](https://github.com/NumEricR))
- Move icon's no-repeat to common code and clean CSS [\#216](https://github.com/wallabag/wallabag/pull/216) ([NumEricR](https://github.com/NumEricR))
- Flattr [\#214](https://github.com/wallabag/wallabag/pull/214) ([tcitworld](https://github.com/tcitworld))
- Add url directly [\#212](https://github.com/wallabag/wallabag/pull/212) ([tcitworld](https://github.com/tcitworld))
- Less is more :-\) [\#205](https://github.com/wallabag/wallabag/pull/205) ([NumEricR](https://github.com/NumEricR))
- Add the number of results next to pager [\#199](https://github.com/wallabag/wallabag/pull/199) ([NumEricR](https://github.com/NumEricR))
- Display a message when there is no link [\#191](https://github.com/wallabag/wallabag/pull/191) ([NumEricR](https://github.com/NumEricR))
- beta4 [\#181](https://github.com/wallabag/wallabag/pull/181) ([nicosomb](https://github.com/nicosomb))

## [1.0-beta4](https://github.com/wallabag/wallabag/tree/1.0-beta4) (2013-08-25)
**Fixed bugs:**

- IP addresses do not appear in "view original" [\#175](https://github.com/wallabag/wallabag/issues/175)
- can't parse http://12factor.net/ [\#166](https://github.com/wallabag/wallabag/issues/166)
- if cURL is not installed, content is not well displayed [\#164](https://github.com/wallabag/wallabag/issues/164)
- URL with special char could not be imported [\#155](https://github.com/wallabag/wallabag/issues/155)
- HTML entities in titles are encoded twice [\#151](https://github.com/wallabag/wallabag/issues/151)
- Poche won't import the content [\#149](https://github.com/wallabag/wallabag/issues/149)
- Use of undefined constant POCHE\_VERSION [\#148](https://github.com/wallabag/wallabag/issues/148)
- répertoire DB inexistant [\#147](https://github.com/wallabag/wallabag/issues/147)
- getPocheVersion doesn't work ?  [\#142](https://github.com/wallabag/wallabag/issues/142)
- Error importing readability json [\#136](https://github.com/wallabag/wallabag/issues/136)
- Images coded with relative paths are not imported [\#123](https://github.com/wallabag/wallabag/issues/123)

**Closed issues:**

- Désactiver authentification [\#178](https://github.com/wallabag/wallabag/issues/178)
- Désactiver les errerurs PHP sur app.inthepoche.com [\#172](https://github.com/wallabag/wallabag/issues/172)
- Je ne peux pas ajouter certaines URL [\#152](https://github.com/wallabag/wallabag/issues/152)
- myconfig.inc.php missing in beta3 release [\#145](https://github.com/wallabag/wallabag/issues/145)
- Poche should not reimport article if already saved [\#144](https://github.com/wallabag/wallabag/issues/144)
- Wrong article preview [\#139](https://github.com/wallabag/wallabag/issues/139)
- links to android / chrome / firefox apps [\#162](https://github.com/wallabag/wallabag/issues/162)
- Fix markup in poche pages [\#158](https://github.com/wallabag/wallabag/issues/158)
- Add support of text files by setting a default title. [\#150](https://github.com/wallabag/wallabag/issues/150)

**Merged pull requests:**

- Externalize some CSS code [\#180](https://github.com/wallabag/wallabag/pull/180) ([NumEricR](https://github.com/NumEricR))
- Add support for URLS with digits [\#174](https://github.com/wallabag/wallabag/pull/174) ([nicofrand](https://github.com/nicofrand))
- Graceful error-handling with imports and defining where import files are stored [\#173](https://github.com/wallabag/wallabag/pull/173) ([EliasZ](https://github.com/EliasZ))
- Login button [\#170](https://github.com/wallabag/wallabag/pull/170) ([NumEricR](https://github.com/NumEricR))
- Entries height with short description [\#169](https://github.com/wallabag/wallabag/pull/169) ([NumEricR](https://github.com/NumEricR))
- Clean up the templates markup [\#168](https://github.com/wallabag/wallabag/pull/168) ([nicofrand](https://github.com/nicofrand))
- Improve tools list code [\#163](https://github.com/wallabag/wallabag/pull/163) ([NumEricR](https://github.com/NumEricR))
- Add a print stylesheet [\#160](https://github.com/wallabag/wallabag/pull/160) ([nicofrand](https://github.com/nicofrand))
- CSS clean up on style.css file [\#159](https://github.com/wallabag/wallabag/pull/159) ([NumEricR](https://github.com/NumEricR))
- Dev [\#154](https://github.com/wallabag/wallabag/pull/154) ([nicofrand](https://github.com/nicofrand))

## [1.0-beta3](https://github.com/wallabag/wallabag/tree/1.0-beta3) (2013-08-17)
**Fixed bugs:**

- Lien qui ne s'ajoute pas [\#138](https://github.com/wallabag/wallabag/issues/138)
- Un nouveau type d'URL qui ne fonctionne pas [\#125](https://github.com/wallabag/wallabag/issues/125)

**Closed issues:**

- config/update poche: wrong last version? [\#131](https://github.com/wallabag/wallabag/issues/131)
- Mixed content alert in HTTPS [\#137](https://github.com/wallabag/wallabag/issues/137)
- ne pas indexer poche dans les moteurs de recherche [\#130](https://github.com/wallabag/wallabag/issues/130)

**Merged pull requests:**

- beta3 [\#141](https://github.com/wallabag/wallabag/pull/141) ([nicosomb](https://github.com/nicosomb))
- beta3 [\#140](https://github.com/wallabag/wallabag/pull/140) ([nicosomb](https://github.com/nicosomb))
- merge with beta2 [\#132](https://github.com/wallabag/wallabag/pull/132) ([nicosomb](https://github.com/nicosomb))

## [1.0-beta2](https://github.com/wallabag/wallabag/tree/1.0-beta2) (2013-08-11)
**Fixed bugs:**

- Impossible d'installer poche [\#111](https://github.com/wallabag/wallabag/issues/111)
- URL refusée [\#110](https://github.com/wallabag/wallabag/issues/110)
- Can't add some urls [\#91](https://github.com/wallabag/wallabag/issues/91)
- Can't Poch url with special caracter [\#73](https://github.com/wallabag/wallabag/issues/73)
- impossible d'ajouter un lien en https [\#38](https://github.com/wallabag/wallabag/issues/38)
- Taille police et icones [\#114](https://github.com/wallabag/wallabag/issues/114)

**Closed issues:**

- Toggle Mark as read prevents Go home [\#128](https://github.com/wallabag/wallabag/issues/128)
- lien \#top qui suit tout l'article [\#120](https://github.com/wallabag/wallabag/issues/120)
- Please tag release 0.1-beta-1 [\#106](https://github.com/wallabag/wallabag/issues/106)
- Icône pour le bookmarklet [\#94](https://github.com/wallabag/wallabag/issues/94)
- extension firefox [\#43](https://github.com/wallabag/wallabag/issues/43)
- ajouter un lien depuis poche sans le bookmarklet [\#37](https://github.com/wallabag/wallabag/issues/37)
- appli android [\#26](https://github.com/wallabag/wallabag/issues/26)
- temps de lecture [\#113](https://github.com/wallabag/wallabag/issues/113)

**Merged pull requests:**

- merge dev into master [\#109](https://github.com/wallabag/wallabag/pull/109) ([nicosomb](https://github.com/nicosomb))

## [1.0-beta1](https://github.com/wallabag/wallabag/tree/1.0-beta1) (2013-08-07)
**Fixed bugs:**

- suppression d'un lien depuis la page view [\#103](https://github.com/wallabag/wallabag/issues/103)
- Erreur date.timezone [\#98](https://github.com/wallabag/wallabag/issues/98)
- Texte lors de la suppression d'un item incorrect [\#97](https://github.com/wallabag/wallabag/issues/97)
- afficher les messages "flash" lorsqu'on met en favori et quand on archive [\#66](https://github.com/wallabag/wallabag/issues/66)

**Closed issues:**

- Demo URL not working [\#102](https://github.com/wallabag/wallabag/issues/102)
- Partager vers twitter [\#101](https://github.com/wallabag/wallabag/issues/101)
- instapaper import [\#100](https://github.com/wallabag/wallabag/issues/100)
- Add a button to go back to the beginning of the article [\#92](https://github.com/wallabag/wallabag/issues/92)
- pouvoir signaler qu'un lien a été mal parsé [\#80](https://github.com/wallabag/wallabag/issues/80)
- login/password pour la démo ? [\#70](https://github.com/wallabag/wallabag/issues/70)
- indiquer que poche a été mis à jour [\#69](https://github.com/wallabag/wallabag/issues/69)
- stockage par fichier [\#68](https://github.com/wallabag/wallabag/issues/68)
- site web : fr / gb [\#57](https://github.com/wallabag/wallabag/issues/57)
- site web : détailler fonctionnalités poche [\#56](https://github.com/wallabag/wallabag/issues/56)
- import depuis readability [\#48](https://github.com/wallabag/wallabag/issues/48)
- avoir une liste au format "list" et non pas au format "square icone" [\#42](https://github.com/wallabag/wallabag/issues/42)
- bug css affichage liens sur la page view [\#39](https://github.com/wallabag/wallabag/issues/39)
- vérification du traitement ajax [\#35](https://github.com/wallabag/wallabag/issues/35)
- site web [\#27](https://github.com/wallabag/wallabag/issues/27)

**Merged pull requests:**

- Twig [\#104](https://github.com/wallabag/wallabag/pull/104) ([nicosomb](https://github.com/nicosomb))

## [0.3](https://github.com/wallabag/wallabag/tree/0.3) (2013-07-31)
**Fixed bugs:**

- impossible to start poche on my Apache! [\#85](https://github.com/wallabag/wallabag/issues/85)
- Articles mal parsés [\#47](https://github.com/wallabag/wallabag/issues/47)

**Closed issues:**

- ajouter système de connexion  [\#4](https://github.com/wallabag/wallabag/issues/4)

**Merged pull requests:**

- v0.2.1 [\#74](https://github.com/wallabag/wallabag/pull/74) ([nicosomb](https://github.com/nicosomb))

## [0.2.1](https://github.com/wallabag/wallabag/tree/0.2.1) (2013-04-23)
**Closed issues:**

- Multi user enhancement for the future [\#71](https://github.com/wallabag/wallabag/issues/71)

**Merged pull requests:**

- Style de l'écran de connexion [\#72](https://github.com/wallabag/wallabag/pull/72) ([Silvus](https://github.com/Silvus))
- tag 0.2 [\#67](https://github.com/wallabag/wallabag/pull/67) ([nicosomb](https://github.com/nicosomb))

## [0.2](https://github.com/wallabag/wallabag/tree/0.2) (2013-04-21)
**Fixed bugs:**

- impossible d'ajouter un lien si pas connecté [\#63](https://github.com/wallabag/wallabag/issues/63)

**Closed issues:**

- focus au champ login [\#65](https://github.com/wallabag/wallabag/issues/65)
- nettoyage inc/mytool [\#64](https://github.com/wallabag/wallabag/issues/64)
- Login System - security [\#60](https://github.com/wallabag/wallabag/issues/60)
- supprimer process.php [\#58](https://github.com/wallabag/wallabag/issues/58)
- export [\#55](https://github.com/wallabag/wallabag/issues/55)
- dark version / light version [\#36](https://github.com/wallabag/wallabag/issues/36)

**Merged pull requests:**

- Thème dark [\#61](https://github.com/wallabag/wallabag/pull/61) ([Silvus](https://github.com/Silvus))

## [0.11](https://github.com/wallabag/wallabag/tree/0.11) (2013-04-19)
## [0.1](https://github.com/wallabag/wallabag/tree/0.1) (2013-04-19)
**Fixed bugs:**

- erreur lors de l'import pocket [\#53](https://github.com/wallabag/wallabag/issues/53)
- supprimer un lien depuis view.php [\#51](https://github.com/wallabag/wallabag/issues/51)
- disparition des icônes lors d'un tri [\#45](https://github.com/wallabag/wallabag/issues/45)
- problème session si on est sur la page depuis longtemps [\#41](https://github.com/wallabag/wallabag/issues/41)
- bug chrome : affichage d'un seul élément dans la grille [\#32](https://github.com/wallabag/wallabag/issues/32)
- vérification des liens pochés [\#16](https://github.com/wallabag/wallabag/issues/16)
- url vide [\#9](https://github.com/wallabag/wallabag/issues/9)

**Closed issues:**

- corriger la récupération de l'id  [\#54](https://github.com/wallabag/wallabag/issues/54)
- L'URL du bookmarklet contient "https" alors que ma poche est en http [\#49](https://github.com/wallabag/wallabag/issues/49)
- les éléments s'affichent d'abord verticalement puis horizontalement, donc quand on supprime, l'affichage ne se fait pas comme il faudrait [\#34](https://github.com/wallabag/wallabag/issues/34)
- suppression et ajout d'un lien : ne plus passer en get comme actuellement [\#33](https://github.com/wallabag/wallabag/issues/33)
- Pouvoir situer sur quelle page on se trouve [\#30](https://github.com/wallabag/wallabag/issues/30)
- embarquer jquery [\#29](https://github.com/wallabag/wallabag/issues/29)
- pouvoir mettre un lien en fav ou considéré comme lu depuis le lien ouvert [\#28](https://github.com/wallabag/wallabag/issues/28)
- modifier les liens d'outils en formulaire [\#25](https://github.com/wallabag/wallabag/issues/25)
- revoir système de cache [\#24](https://github.com/wallabag/wallabag/issues/24)
- compression css [\#23](https://github.com/wallabag/wallabag/issues/23)
- ajouter un lien "retour à l'accueil" en pied de page d'un article [\#22](https://github.com/wallabag/wallabag/issues/22)
- adapter hauteur des div sur la même ligne [\#21](https://github.com/wallabag/wallabag/issues/21)
- Titres trop longs [\#20](https://github.com/wallabag/wallabag/issues/20)
- stockage du contenu des pages lors de l'ajout [\#17](https://github.com/wallabag/wallabag/issues/17)
- traiter les variables [\#15](https://github.com/wallabag/wallabag/issues/15)
- tri des liens [\#13](https://github.com/wallabag/wallabag/issues/13)
- aligner verticalement les icones d'action [\#12](https://github.com/wallabag/wallabag/issues/12)
- améliorer présentation d'un article [\#11](https://github.com/wallabag/wallabag/issues/11)
- améliorer affichage liens [\#10](https://github.com/wallabag/wallabag/issues/10)
- confirmation lors d'une suppression [\#8](https://github.com/wallabag/wallabag/issues/8)
- édition d'un lien poché [\#7](https://github.com/wallabag/wallabag/issues/7)
- utm\_source, utm\_medium & utm\_campaign [\#6](https://github.com/wallabag/wallabag/issues/6)
- import depuis pocket [\#3](https://github.com/wallabag/wallabag/issues/3)
- icones [\#2](https://github.com/wallabag/wallabag/issues/2)
- Empêcher le téléchargement du fichier poche.sqlite [\#1](https://github.com/wallabag/wallabag/issues/1)

**Merged pull requests:**

- Ajout conf nginx pour la protection de la bdd [\#50](https://github.com/wallabag/wallabag/pull/50) ([Gregoire-M](https://github.com/Gregoire-M))
- Modifications css [\#19](https://github.com/wallabag/wallabag/pull/19) ([tmos](https://github.com/tmos))
- Some fixes and improvements [\#5](https://github.com/wallabag/wallabag/pull/5) ([fatihorhan](https://github.com/fatihorhan))



\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*