-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
8788 lines (6007 loc) · 182 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit c0a4fec
Author: Toni Gundogdu <[email protected]>
Date: 2013-09-03
Update NEWS for v0.9.3
Signed-off-by: Toni Gundogdu <[email protected]>
NEWS
commit dd1456d
Author: Toni Gundogdu <[email protected]>
Date: 2013-09-03
Use word "library" in the source file headers
Signed-off-by: Toni Gundogdu <[email protected]>
src/_quvi_file_ext_s.h
src/api/errcode.c
src/api/file_ext_free.c
src/api/file_ext_get.c
src/api/file_ext_new.c
src/curl/reset.c
src/gcrypt/crypto.c
src/gcrypt/crypto.h
src/gcrypt/init.c
src/lua/quvi/base64/decode.c
src/lua/quvi/base64/encode.c
src/lua/quvi/crypto/copts.c
src/lua/quvi/crypto/en_decrypt.c
src/lua/quvi/crypto/err.c
src/lua/quvi/crypto/err.h
src/lua/quvi/crypto/hash.c
src/lua/quvi/crypto/opts.h
src/lua/quvi/http/cookie.c
src/lua/quvi/http/header.c
src/lua/quvi/http/metainfo.c
src/lua/quvi/opts.c
src/lua/quvi/opts.h
src/misc/slst.c
src/misc/slst.h
commit 0ab60a7
Author: Toni Gundogdu <[email protected]>
Date: 2013-09-03
tests_media_escaped_url: Change test URL
Signed-off-by: Toni Gundogdu <[email protected]>
tests/media.c
commit f2ce9b7
Author: Toni Gundogdu <[email protected]>
Date: 2013-09-03
FIX: Unescape input URL before URL resolving
Unescape the input URL in m_{media,subtitle,playlist}_new, otherwise
libcurl will attempt to resolve escaped (if any) URLs and fail.
Signed-off-by: Toni Gundogdu <[email protected]>
src/misc/match_media_script.c
src/misc/match_playlist_script.c
src/misc/match_subtitle_script.c
src/misc/media.c
src/misc/playlist.c
src/misc/subtitle.c
commit 484637c
Author: Toni Gundogdu <[email protected]>
Date: 2013-09-03
quvi_resolve_new: Update to use the added m_resolve_url
Signed-off-by: Toni Gundogdu <[email protected]>
src/api/resolve_new.c
commit 876107e
Author: Toni Gundogdu <[email protected]>
Date: 2013-09-03
Rewrite m_resolve, add m_resolve_url
Modify m_resolve to reuse the GString:
* Read input URL from it
* Write resolved destination URL to it
Add m_resolve_url:
* Identical to the old m_resolve which took the input URL parameter
Signed-off-by: Toni Gundogdu <[email protected]>
src/misc/resolve.c
src/misc/resolve.h
commit 12c1faa
Author: Toni Gundogdu <[email protected]>
Date: 2013-09-03
Remove a vim modeline line
Signed-off-by: Toni Gundogdu <[email protected]>
src/misc/match_subtitle_export_script.c
commit c2a7ade
Author: Toni Gundogdu <[email protected]>
Date: 2013-09-03
tests: media: Replace dmotion URLs
Update any tests that previously used dailymotion test URLs to use
spiegel test URLs. The updated tests previously relied on the order of
the returned stream IDs -- this no longer is possible with spiegel. This
commit changes the tests so that they use hardcoded expected values,
instead.
Signed-off-by: Toni Gundogdu <[email protected]>
tests/media.c
commit 61cc7f7
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
DOC: manpage: footer: Revise "FURTHER RESOURCES"
Signed-off-by: Toni Gundogdu <[email protected]>
doc/footer.txt
commit e8605c8
Merge: 353f0d7 ed10f8e
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
Merge branch 'tg/next__opt-in_allow_cookies' into next
commit ed10f8e
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
examples/media: Add -c (enable cookies)
Signed-off-by: Toni Gundogdu <[email protected]>
examples/media.c
commit a9ad57c
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
libconvenience_example: Add examples_enable_cookies
Signed-off-by: Toni Gundogdu <[email protected]>
examples/lib/Makefile.am
examples/lib/enable_cookies.c
examples/lib/examples.h
commit 5c9a1dd
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
DOC: quvi-object(7): Update quvi.http.cookie with QUVI_OPTION_ALLOW_COOKIES
Signed-off-by: Toni Gundogdu <[email protected]>
doc/man7/quvi-object.7.txt
commit c20a66c
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
DOC: Glossary: Terminology: Update with CURLOPT_COOKIEFILE=""
Signed-off-by: Toni Gundogdu <[email protected]>
src/api/doxy/glossary_termino.dp
commit 876949e
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
quvi.http.cookie: Return unless QUVI_OPTION_ALLOW_COOKIES is QUVI_TRUE
Signed-off-by: Toni Gundogdu <[email protected]>
src/lua/quvi/http/cookie.c
commit a6f1c10
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
c_reset: Set CURLOPT_COOKIELIST="ALL" conditionally
Clear the cookies in the (libcurl) memory, only if
QUVI_OPTION_ALLOW_COOKIES was set to QUVI_TRUE.
Signed-off-by: Toni Gundogdu <[email protected]>
src/curl/reset.c
commit 6dae749
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
c_init: Set CURLOPT_COOKIEFILE="" conditionally
Enable cookie support only if QUVI_OPTION_ALLOW_COOKIE was set to
QUVI_TRUE.
The earlier libquvi 0.9 versions presumed, incorrectly, that setting
CURLOPT_COOKIELIST="ALL" would cause libcurl to parse the received
cookies and use them in the subsequent HTTP requests. Setting
CURLOPT_COOKIEFILE="" fixes that.
Signed-off-by: Toni Gundogdu <[email protected]>
src/curl/init.c
commit f158aa9
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
API: quvi_set: Handle QUVI_OPTION_ALLOW_COOKIES
Signed-off-by: Toni Gundogdu <[email protected]>
src/api/set.c
commit f56798b
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
API: Add QUVI_OPTION_ALLOW_COOKIES
Signed-off-by: Toni Gundogdu <[email protected]>
src/quvi-0.9/quvi/qoption.h
commit 280566c
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
_quvi_s: Add "allow_cookies" flag
Signed-off-by: Toni Gundogdu <[email protected]>
src/_quvi_s.h
commit 353f0d7
Merge: c591b1b 6a68b8e
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-31
Merge branch 'tg/next__scripts_version_as_ini' into next
commit 6a68b8e
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-29
examples: version: Print QUVI_VERSION_SCRIPTS_CONFIGURATION
Signed-off-by: Toni Gundogdu <[email protected]>
examples/version.c
commit 4466c98
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-29
API: quvi_version: Read "version" file as ini-file
libquvi-scripts now writes the "version" file as a ini-file. Update
quvi_version to parse the contents using GKeyFile.
Other:
* Add support for QUVI_VERSION_SCRIPTS_CONFIGURATION
Signed-off-by: Toni Gundogdu <[email protected]>
src/api/version.c
commit f0c95e0
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-29
API: Add QUVI_VERSION_SCRIPTS_CONFIGURATION
Signed-off-by: Toni Gundogdu <[email protected]>
src/quvi-0.9/quvi/qversion.h
commit 097d13a
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-29
configure.ac: scriptsver: Change how version is parsed
Signed-off-by: Toni Gundogdu <[email protected]>
configure.ac
commit c591b1b
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-26
AC_PREREQ: Bump to 2.69
Signed-off-by: Toni Gundogdu <[email protected]>
configure.ac
commit f02cc3a
Author: Toni Gundogdu <[email protected]>
Date: 2013-08-06
FIX: error: implicit declaration of function 'luaL_register'
Signed-off-by: Toni Gundogdu <[email protected]>
configure.ac
commit 015d7f8
Author: Toni Gundogdu <[email protected]>
Date: 2013-07-16
Updates NEWS for v0.9.2
Signed-off-by: Toni Gundogdu <[email protected]>
NEWS
commit 20b1ee3
Author: Toni Gundogdu <[email protected]>
Date: 2013-07-07
LDFLAGS: libtool: Use -release with unstable 0.9 releases
The rationale behind the switch (`-version-info' to `-release'):
* The 0.9 series is currently under development, and will gradually
mature as the next stable (1.0), replacing the 0.4 series completely
* The series may still see:
- ABI and API breakages with the earlier 0.9 versions
- Feature additions and/or removals
Instead of bumping the `-version-info C+1:R:A' everytime something
breaks the backward-compatibility with the earlier 0.9 releases, we will
use the `-release RELEASE'. Once 0.9 graduates as the next stable (1.0),
we can switch back to using the `-version-info'.
Downside:
* Every release of the package will not be binary compatible with any
other release (which would frequently be the case anyway)
* Applications that depend on (this) libquvi 0.9 release will have to
be recompiled later again to use a new release of libquvi
Other:
* Leave the -version-info line commented out for the next stable (1.0)
Signed-off-by: Toni Gundogdu <[email protected]>
src/Makefile.am
commit cfc17fd
Author: Toni Gundogdu <[email protected]>
Date: 2013-07-03
FIX: configure.ac: AS_IF for date(1)
Signed-off-by: Toni Gundogdu <[email protected]>
configure.ac
commit 6612228
Author: Toni Gundogdu <[email protected]>
Date: 2013-07-03
configure.ac: Rewrite 6cdebfdf4 using $srcdir and AS_IF
Signed-off-by: Toni Gundogdu <[email protected]>
configure.ac
commit 68a48e2
Merge: 1004836 7a5fa40
Author: Toni Gundogdu <[email protected]>
Date: 2013-07-03
Merge branch 'tg/next__quvi_version__build_cflags' into next
commit 7a5fa40
Author: Toni Gundogdu <[email protected]>
Date: 2013-07-03
examples/version: Print QUVI_VERSION_BUILD_CC_CFLAGS
Signed-off-by: Toni Gundogdu <[email protected]>
examples/version.c
commit c93ce12
Author: Toni Gundogdu <[email protected]>
Date: 2013-07-03
quvi_version: Add support for QUVI_VERSION_BUILD_CC_CFLAGS
Save, and return, $CC and $CFLAGS via quvi_version with
QUVI_VERSION_BUILD_CC_CFLAGS.
Signed-off-by: Toni Gundogdu <[email protected]>
configure.ac
src/api/version.c
src/quvi-0.9/quvi/qversion.h
commit 1004836
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
configure.ac: Add a vim modeline
Signed-off-by: Toni Gundogdu <[email protected]>
configure.ac
commit 6cdebfd
Author: Bastien Nocera <[email protected]>
Date: 2013-06-21
Require a2x when building from git
Otherwise make in the doc/man7 directory will fail as quvi-object.7 is
missing.
Signed-off-by: Bastien Nocera <[email protected]>
Signed-off-by: Toni Gundogdu <[email protected]>
configure.ac
commit 91375fd
Author: Bastien Nocera <[email protected]>
Date: 2013-06-20
FIX: declaration of quvi_new()
qfunc.h:28:3: warning: function declaration isn't a prototype
w/ [-Wstrict-prototypes]
Signed-off-by: Bastien Nocera <[email protected]>
src/quvi-0.9/quvi/qfunc.h
commit 1e82245
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
tests: quvi: Sprinkle with quvi_ok calls
To confirm that `quvi_ok' functions as expected.
Signed-off-by: Toni Gundogdu <[email protected]>
tests/quvi.c
commit 905a544
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
Remove unused net/def.h
Signed-off-by: Toni Gundogdu <[email protected]>
src/curl/fetch.c
src/curl/http_metainfo.c
src/net/Makefile.am
src/net/def.h
src/net/fetch.c
commit 3816c41
Merge: 78e1589 a90e659
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
Merge branch 'tg/next__statuscb_with_userdata' into next
commit a90e659
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
examples: examples_status: Add user_data parameter
Other:
* Rename parameters
Signed-off-by: Toni Gundogdu <[email protected]>
examples/lib/examples.h
examples/lib/status.c
commit a3cfa20
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
tests: Add test_scan_userdata
This testcase will serve as a userdata-with-status-callback -test. It
could have been any other network-dependent unit of the testsuite.
Signed-off-by: Toni Gundogdu <[email protected]>
tests/scan.c
commit bc80328
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
libconvenience_net: Pass userdata with status callback
Signed-off-by: Toni Gundogdu <[email protected]>
src/net/fetch.c
src/net/http_metainfo.c
src/net/resolve.c
commit 07f7387
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
Define QUVI_OPTION_CALLBACK_STATUS_USERDATA
Signed-off-by: Toni Gundogdu <[email protected]>
src/quvi-0.9/quvi/qoption.h
commit 5b3cebb
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
Redefine quvi_callback_status with userdata parameter
Signed-off-by: Toni Gundogdu <[email protected]>
src/quvi-0.9/quvi/qdef.h
commit 587958b
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
quvi_set: Add support for QUVI_OPTION_CALLBACK_STATUS_USERDATA
Signed-off-by: Toni Gundogdu <[email protected]>
src/api/set.c
commit ffcd072
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
_quvi_s: Add userdata property for "status" callback
Signed-off-by: Toni Gundogdu <[email protected]>
src/_quvi_s.h
commit 78e1589
Merge: e6b1b0e 0ddda1b
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
Merge branch 'tg/next__add__quvi_errcode' into next
commit 0ddda1b
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
examples: supports: chk_support: Update to use quvi_errcode
Signed-off-by: Toni Gundogdu <[email protected]>
examples/supports.c
commit 4b110f3
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
examples: examples_exit_if_error: Use quvi_errcode
Signed-off-by: Toni Gundogdu <[email protected]>
examples/lib/exit_if_error.c
commit 82b9519
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
tests: Use quvi_errcode instead of QUVI_INFO_ERROR_CODE
Signed-off-by: Toni Gundogdu <[email protected]>
tests/goto.c
tests/http_metainfo.c
tests/media.c
tests/playlist.c
tests/quvi.c
tests/resolve.c
tests/scan.c
tests/script.c
tests/subtitle.c
tests/supports.c
commit 2970b50
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
tests: libconvenience_test: Remove qerr function
Signed-off-by: Toni Gundogdu <[email protected]>
tests/lib/qerr.c
tests/lib/tests.h
commit 5f98b90
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
API: quvi_get: Remove QUVI_INFO_ERROR_CODE support
Set the q->status.rc which was previously removed in aa7772f0f8, making
the `quvi_get' secure to use again. The API now provides the
`quvi_errcode' to query the last library error code.
See also:
* e508f1ba3f
Other:
* Remove the _CURRENTLY_UNUSED blocks
Signed-off-by: Toni Gundogdu <[email protected]>
src/api/get.c
src/quvi-0.9/quvi/qinfo.h
commit c9d1ca1
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
API: Add quvi_errcode
Signed-off-by: Toni Gundogdu <[email protected]>
src/api/Makefile.am
src/api/errcode.c
src/quvi-0.9/quvi/qfunc.h
commit e6b1b0e
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
_set: QUVI_OPTION_USER_AGENT: Use gchar instead of char
Signed-off-by: Toni Gundogdu <[email protected]>
src/api/set.c
commit 92b4c17
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
_media_get: Make const QuviMediaProperty param
Signed-off-by: Toni Gundogdu <[email protected]>
src/api/media_get.c
commit c7cbc17
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
test_playlist_core: Update expected title values
Signed-off-by: Toni Gundogdu <[email protected]>
tests/playlist.c
commit f63721a
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-25
test_goto_url: Use another URL
Signed-off-by: Toni Gundogdu <[email protected]>
tests/goto.c
commit 080f9f8
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-04
tests: Do not invoke gtester-report
This results in:
Traceback (most recent call last):
File "/usr/bin/gtester-report", line 492, in <module>
main()
File "/usr/bin/gtester-report", line 486, in main
HTMLReportWriter(rr.get_info(), rr.binary_list()).printout()
File "/usr/bin/gtester-report", line 350, in printout
self.handle_info ()
File "/usr/bin/gtester-report", line 244, in handle_info
self.oprint ('<h3>Package: %(package)s, version: \
%(version)s</h3>\n' % self.info)
KeyError: 'package'
$ python --version
Python 2.7.3
$ gtester -v
gtester version 2.32.4
$ gtester-report -v
gtester-report (GLib utils) version 0.0-uninstalled.
See also:
* https://bugzilla.gnome.org/show_bug.cgi?id=668035
Signed-off-by: Toni Gundogdu <[email protected]>
tests/Makefile.am
commit fa35e81
Author: Toni Gundogdu <[email protected]>
Date: 2013-06-04
README: Add liblua 5.1 note for Debian Wheezy
Signed-off-by: Toni Gundogdu <[email protected]>
README
commit bedd9af
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-20
Update NEWS for v0.9.1
Signed-off-by: Toni Gundogdu <[email protected]>
NEWS
commit 3e9bd70
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-20
README: Requirements: Add aptitude commands
README
commit 8bf02f2
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-19
gen-news.sh: Do not print release author
Trivial information. Release date matters.
Signed-off-by: Toni Gundogdu <[email protected]>
gen-news.sh
commit eef806a
Merge: 5cf0f46 7384203
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-19
Merge branch 'tg/next__fix_tests' into next
commit 7384203
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-19
tests: test_resolve_nodst: Update URL
The previous URL now redirects to a new location.
Signed-off-by: Toni Gundogdu <[email protected]>
tests/resolve.c
commit 732c516
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-19
tests: Comment out test_resolve_3
The URL has been disabled by the shortening service.
Signed-off-by: Toni Gundogdu <[email protected]>
tests/resolve.c
commit a133f26
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-19
tests: playlist: Update URLs
* youtube: Use an actual playlist URL
* soundcloud: Use a new URL
Signed-off-by: Toni Gundogdu <[email protected]>
tests/playlist.c
commit 5cf0f46
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-13
misc/scan_scripts.c: Make show_dir a static variable
Signed-off-by: Toni Gundogdu <[email protected]>
src/misc/scan_scripts.c
commit 1bcff92
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-13
misc/scan_scripts.c: Make scripts_dir a static variable
Signed-off-by: Toni Gundogdu <[email protected]>
src/misc/scan_scripts.c
commit 5d5fc70
Merge: 98b24df d5d320c
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-13
Merge branch 'tg/next__extend_LIBQUVI_SCRIPTS_DIR' into next
commit d5d320c
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-13
DOC: Add LIBQUVI_EXCLUSIVE_SCRIPTS_DIR
Signed-off-by: Toni Gundogdu <[email protected]>
doc/man3/libquvi.3.txt
src/api/doxy/env.dp
commit 93eee9d
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-13
Add support for LIBQUVI_EXCLUSIVE_SCRIPTS_DIR
See the libquvi.3.txt for the full description.
Signed-off-by: Toni Gundogdu <[email protected]>
src/misc/scan_scripts.c
commit 98b24df
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-13
Remove "excl." from the comment
As this is a remnant of 0.4 and would suggest that LIBQUVI_SCRIPTS_DIR
value would be used "exclusively", e.g. if set, then only those paths
would be checked for the scripts.
Signed-off-by: Toni Gundogdu <[email protected]>
src/misc/scan_scripts.c
commit 204d594
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-13
test_scan_short: Update test URL
Signed-off-by: Toni Gundogdu <[email protected]>
tests/scan.c
commit 154a9ed
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-09
FIX: DOC: LIBQUVI_SCRIPTS_VERBOSE env. variable name
LIBQUVI_VERBOSE_SCRIPTS is an an invalid name of the variable. The
quvi/debug module checks for LIBQUVI_SCRIPTS_VERBOSE.
Signed-off-by: Toni Gundogdu <[email protected]>
src/api/doxy/env.dp
commit 76e0ede
Author: Toni Gundogdu <[email protected]>
Date: 2013-05-08
FIX: DOC: Remove LIBQUVI_VERBOSE_SCRIPTS
LIBQUVI_VERBOSE_SCRIPTS is an an invalid name of the variable. The
'quvi/debug' module checks for LIBQUVI_SCRIPTS_VERBOSE.
Signed-off-by: Toni Gundogdu <[email protected]>
doc/man3/libquvi.3.txt
commit 24327c3
Author: Toni Gundogdu <[email protected]>
Date: 2013-04-16
gen-news.sh: Do not print commits with >1 one parent
Signed-off-by: Toni Gundogdu <[email protected]>
gen-news.sh
commit 1ebe33e
Merge: acff53e a588ad9
Author: Toni Gundogdu <[email protected]>
Date: 2013-04-14
Merge branch 'tg/next/1.0' into next
Conflicts:
configure.ac
commit a588ad9
Author: Toni Gundogdu <[email protected]>
Date: 2013-04-07
FIX: 'copt' is used uninitialized whenever switch default is taken
Signed-off-by: Toni Gundogdu <[email protected]>
src/lua/quvi/http/cookie.c
commit d98782b
Author: Toni Gundogdu <[email protected]>
Date: 2013-03-28
FIX: quvi_subtitle_select: If lang count is zero
_default:
If the support script failed to return any subtitles for the media,
then return NULL.
Signed-off-by: Toni Gundogdu <[email protected]>
src/api/subtitle_select.c
commit 6cfe046
Merge: aaf8169 f741f55
Author: Toni Gundogdu <[email protected]>
Date: 2013-03-25
Merge branch 'tg/next/1.0__asciidoc.conf' into tg/next/1.0
commit f741f55
Author: Toni Gundogdu <[email protected]>
Date: 2013-03-25
man7: quvi-object.7.txt: Revise for asciidoc.conf
* Use linkman macro from asciidoc.conf
* Include footer.txt
Signed-off-by: Toni Gundogdu <[email protected]>
doc/man7/quvi-object.7.txt
commit 7ab7243
Author: Toni Gundogdu <[email protected]>
Date: 2013-03-25
man7: Makefile.am: Use ASCIIDOC_OPTS with a2x
Signed-off-by: Toni Gundogdu <[email protected]>
doc/man7/Makefile.am
commit bcfc2f6
Author: Toni Gundogdu <[email protected]>
Date: 2013-03-25