-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.hg
6755 lines (4603 loc) · 224 KB
/
ChangeLog.hg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2021-12-13 17:26 +0100 tmodes <tmodes> (ab0c1337006e [tip])
* Merge
2021-12-13 17:25 +0100 tmodes <tmodes> (1f44b6e37e89)
* panorama.h:
Fixes big endian check for FreeBSD
2021-11-29 20:46 +0000 Bruno Postle <[email protected]> (cdd43e6c053c)
* ChangeLog.hg:
update ChangeLog.hg
2021-11-28 10:20 +0100 tmodes <tmodes> (3fb06db30161)
* panorama.h:
Improved fix for endianess for more systems
2021-11-02 20:45 +0000 Bruno Postle <[email protected]> (84b6a82c8afc)
* panorama.h:
Fix for bigendian architectures (Thomas Modes)
2021-11-01 18:47 +0000 Bruno Postle <[email protected]> (4d12cc78cc80)
* CMakeLists.txt:
Fix support for lib/lib64 installation dirs (Andreas Metzler)
2021-10-30 14:37 +0200 tmodes <tmodes> (a97fddc5a031)
* CMakeLists.txt:
Fix pkg-config file contents and location (Patch by Andreas Metzler)
2021-10-28 17:43 +0200 tmodes <tmodes> (1b0e1a205121)
* CMakeLists.txt:
Check if linking against libm is needed
2021-10-28 17:43 +0200 tmodes <tmodes> (b6aef04b6318)
* CMakeLists.txt:
Let CMake for itself figure out the lib directory
2021-10-26 21:24 +0200 tmodes <tmodes> (2822f00918bc)
* tools/CMakeLists.txt:
Install tools in all configurations
2021-10-26 17:39 +0200 tmodes <tmodes> (343847e37b1f)
* CMakeLists.txt:
Remove Windows rc files from file list for Unix
2021-10-26 17:37 +0200 tmodes <tmodes> (af97aa936771)
* CMakeLists.txt:
Fixes generation of libpano13.pc file
2021-10-16 19:04 +0100 Bruno Postle <[email protected]> (ac7932640266)
* ChangeLog.hg:
update Changelog.hg
2021-09-18 11:22 +0200 tmodes <tmodes> (454a8e337d54)
* CMakeLists.txt:
Silence a CMake warning
2021-09-18 11:08 +0200 tmodes <tmodes> (ef176a030c82)
* PTcommon.c, parser.c, ppm.c, resample.c,
tests/simpleTiff2psd/reference/simpleStitch_crop_1_layer.psd,
tests/simpleTiff2psd/reference/simpleStitch_crop_2_layer.psd,
tests/simpleTiff2psd/reference/simpleStitch_uncrop_1_layer.psd,
tests/simpleTiff2psd/reference/simpleStitch_uncrop_2_layer.psd,
tests/simpleTiff2psd/reference/simpleTiff16-16-_uncrop_1_layer.psd,
tests/simpleTiff2psd/reference/simpleTiff16-16-_uncrop_2_layer.psd:
Merged branch libpano13-2.9.21
2021-09-18 11:04 +0200 tmodes <tmodes> (e1b647e267a0 <libpano13-2.9.21>)
* tests/README.TXT,
tests/simpleTiff2psd/tests/simpleStitch_crop_1_layer.psd,
tests/simpleTiff2psd/tests/simpleStitch_crop_2_layer.psd,
tests/simpleTiff2psd/tests/simpleStitch_uncrop_1_layer.psd,
tests/simpleTiff2psd/tests/simpleStitch_uncrop_2_layer.psd,
tests/simpleTiff2psd/tests/simpleTiff16-16-_uncrop_1_layer.psd,
tests/simpleTiff2psd/tests/simpleTiff16-16-_uncrop_2_layer.psd:
deleted file.
* tests/README.TXT,
tests/simpleTiff2psd/tests/simpleStitch_crop_1_layer.psd,
tests/simpleTiff2psd/tests/simpleStitch_crop_2_layer.psd,
tests/simpleTiff2psd/tests/simpleStitch_uncrop_1_layer.psd,
tests/simpleTiff2psd/tests/simpleStitch_uncrop_2_layer.psd,
tests/simpleTiff2psd/tests/simpleTiff16-16-_uncrop_1_layer.psd,
tests/simpleTiff2psd/tests/simpleTiff16-16-_uncrop_2_layer.psd:
Remove unused files
2021-09-18 11:03 +0200 tmodes <tmodes> (d247e9b41788 <libpano13-2.9.21>)
* file.c,
tests/simpleTiff2psd/reference/simpleStitch_crop_1_layer.psd,
tests/simpleTiff2psd/reference/simpleStitch_crop_2_layer.psd,
tests/simpleTiff2psd/reference/simpleStitch_uncrop_1_layer.psd,
tests/simpleTiff2psd/reference/simpleStitch_uncrop_2_layer.psd,
tests/simpleTiff2psd/reference/simpleTiff16-16-_uncrop_1_layer.psd,
tests/simpleTiff2psd/reference/simpleTiff16-16-_uncrop_2_layer.psd:
PTTiff2psd: Don't write libpano13 version number in generated files
Regenerate test reference files with libpano13 version number
2021-09-18 11:02 +0200 tmodes <tmodes> (d75bed990894 <libpano13-2.9.21>)
* adjust.c, levmar.c, levmar.h, optimize.c:
Further speedup of sparse optimizer by direct calculation of
Jacobian matrix
Initial patch by Florian Königstein
2021-09-14 17:47 +0200 tmodes <tmodes> (fd9dd1404381)
* tests/simpleTiff2psd/reference/simpleStitch_crop_1_layer.psd,
tests/simpleTiff2psd/reference/simpleStitch_crop_2_layer.psd,
tests/simpleTiff2psd/reference/simpleStitch_uncrop_1_layer.psd,
tests/simpleTiff2psd/reference/simpleStitch_uncrop_2_layer.psd,
tests/simpleTiff2psd/reference/simpleTiff16-16-_uncrop_1_layer.psd,
tests/simpleTiff2psd/reference/simpleTiff16-16-_uncrop_2_layer.psd:
Update version number in reference files for test
Test are now passed again
2021-05-09 16:28 +0200 tmodes <tmodes> (6f94e735c4b7 <libpano13-2.9.21>)
* parser.c:
Check that linking of image variables is done correctly
Reject forward linking or negative image numbers
2021-04-23 17:55 +0200 tmodes <tmodes> (62aa7eed8fae <libpano13-2.9.21>)
* parser.c:
Check pointer before incrementing - prevent crash
2021-04-23 17:55 +0200 tmodes <tmodes> (40c5cc21f660 <libpano13-2.9.21>)
* tools/PTtiffdump.c:
PTtiffdump: Removed unused overwrite option
2021-04-23 17:54 +0200 tmodes <tmodes> (9efcca9c36ea <libpano13-2.9.21>)
* tools/PTtiffdump.c:
PTtiffdump: Fixes typos in usage screen
2021-04-15 19:19 +0200 tmodes <tmodes> (efd9cc171025 <libpano13-2.9.21>)
* CMakeLists.txt:
More fiddeling with install target on Windows
Some more dll were needed Improve search logic
2021-04-15 18:17 +0200 tmodes <tmodes> (51ea609a2352 <libpano13-2.9.21>)
* .cvsignore, doc/.cvsignore, man/.cvsignore, tests/.cvsignore,
tests/simpleStitch/.cvsignore,
tests/simpleStitch/reference/.cvsignore,
tests/simpleTiff16/.cvsignore,
tests/simpleTiff16/reference/.cvsignore, tools/.cvsignore: deleted
file.
* .cvsignore, doc/.cvsignore, man/.cvsignore, tests/.cvsignore,
tests/simpleStitch/.cvsignore,
tests/simpleStitch/reference/.cvsignore,
tests/simpleTiff16/.cvsignore,
tests/simpleTiff16/reference/.cvsignore, tools/.cvsignore:
Removed old and outdated files from CVS
2021-04-15 18:16 +0200 tmodes <tmodes> (a491c533c1c4 <libpano13-2.9.21>)
* README.windows, makefile.win32: deleted file.
* README.windows, makefile.win32:
Removed obsolete files for Windows
2021-04-15 18:15 +0200 tmodes <tmodes> (adb2b4a56090 <libpano13-2.9.21>)
* CMakeLists.txt:
Install necessary DLL for Windows
2021-04-15 17:57 +0200 tmodes <tmodes> (06f08ec6d7ca <libpano13-2.9.21>)
* CMakeLists.txt, man/CMakeLists.txt:
Create the man pages during build process
2021-04-15 08:51 +0100 Bruno Postle <[email protected]> (42b62897faf3 <libpano13-2.9.21>)
* AUTHORS:
Convert AUTHORS file from Latin1 to UTF-8
2021-04-15 00:50 +0100 Bruno Postle <[email protected]> (115bebb424ed <libpano13-2.9.21>)
* CMakeLists.txt:
CMake pick-up version number from version.h
2021-04-15 00:19 +0100 Bruno Postle <[email protected]> (31ab188bf42d <libpano13-2.9.21>)
* README.linux: deleted file.
* INSTALL, README, README.linux:
Update installation instructions for cmake build system
2021-04-14 23:41 +0100 Bruno Postle <[email protected]> (f57d275ee4d6 <libpano13-2.9.21>)
* PTcommon.c, parser.c, ppm.c, resample.c:
remove executable bit from source files
2021-04-14 23:34 +0100 Bruno Postle <[email protected]> (7448ebf4d707 <libpano13-2.9.21>)
* CMakeModules/FindSUITESPARSE.cmake, man/Makefile: new file.
* Makefile.am, bootstrap, build/.cvsignore,
build/CMakeModules/FindSUITESPARSE.cmake, build/Makefile.am,
build/README, build/win32/.cvsignore, build/win32/Makefile.am,
build/win32/compile-resource, build/win32/lt-compile-resource,
configure.ac, doc/Makefile.am, m4/.cvsignore, m4/Makefile.am,
m4/ax_check_graphics.m4, m4/ax_check_java.m4, man/Makefile.am,
tests/Makefile.am, tests/simpleStitch/Makefile.am,
tests/simpleStitch/reference/Makefile.am,
tests/simpleTiff16/Makefile.am,
tests/simpleTiff16/reference/Makefile.am,
tests/simpleTiff2psd/Makefile.am,
tests/simpleTiff2psd/reference/Makefile.am,
tests/simpleTiff2psd/tests/Makefile.am, tools/Makefile.am: deleted
file.
* .hgignore, CMakeLists.txt, CMakeModules/FindSUITESPARSE.cmake,
Makefile.am, bootstrap, build/.cvsignore,
build/CMakeModules/FindSUITESPARSE.cmake, build/Makefile.am,
build/README, build/win32/.cvsignore, build/win32/Makefile.am,
build/win32/compile-resource, build/win32/lt-compile-resource,
configure.ac, doc/Makefile.am, m4/.cvsignore, m4/Makefile.am,
m4/ax_check_graphics.m4, m4/ax_check_java.m4, man/Makefile,
man/Makefile.am, tests/Makefile.am, tests/simpleStitch/Makefile.am,
tests/simpleStitch/reference/Makefile.am,
tests/simpleTiff16/Makefile.am,
tests/simpleTiff16/reference/Makefile.am,
tests/simpleTiff2psd/Makefile.am,
tests/simpleTiff2psd/reference/Makefile.am,
tests/simpleTiff2psd/tests/Makefile.am, tools/Makefile.am:
Remove autotools build system
2021-04-14 17:48 +0200 tmodes <tmodes> (6413c8758fc8 <libpano13-2.9.21>)
* build/CMakeModules/FindSUITESPARSE.cmake, levmar.c, levmar.h: new
file.
* AUTHORS, CMakeLists.txt, adjust.c,
build/CMakeModules/FindSUITESPARSE.cmake, levmar.c, levmar.h,
optimize.c:
Added new sparse Levenberg Marquardt algorithm (Florian Königstein)
The sparse Levenberg Marquardt should be faster than the current
dense Levenberg Marquardt algorithm used before
It is optional and can be activated in the build system
It needs the SuiteSparse package for doing the calculations
2021-04-14 17:37 +0200 tmodes <tmodes> (41d8c3032007 <libpano13-2.9.21>)
* parser.c:
Added more error checking for reading v lines (Florian Königstein)
2021-04-10 11:33 +0200 tmodes <tmodes> (c36f88d24fce <libpano13-2.9.21>)
* parser.c:
Initialize enough value for writing to output, part 2 (Florian
Königstein)
Also provide enough space for the cp description in the PTOptimizer
output (for each cp, 3 lines are written)
2021-04-10 10:48 +0200 tmodes <tmodes> (0218eab2f0ca <libpano13-2.9.21>)
* parser.c:
Initialize enough value for writing to output (Florian Königstein)
The introduction of the translation parameters has increased the
size of the output block for each image, so increase the size
2021-04-09 17:29 +0200 tmodes <tmodes> (2106eb0dfaad <libpano13-2.9.21>)
* .hgignore:
Don't ignore CMake files
2021-04-07 19:31 +0200 tmodes <tmodes> (cc6fa699e0bb <libpano13-2.9.21>)
* optimize.c:
One more safer string formatting
2021-04-07 19:13 +0200 tmodes <tmodes> (c1955b6aca96 <libpano13-2.9.21>)
* lmdif.c, optimize.c:
Explicit use 64 bit int type for fjac in LMStruct
On Windows, even on 64 bit system int is only 32 bit For big project
the 32 bit integer is too small for holding all values in fjac
Patch based on initial findings by Florian Königstein
2021-04-07 17:21 +0200 tmodes <tmodes> (40f9fc3210d3 <libpano13-2.9.21>)
* parser.c:
Removed an unnecessary while check
2021-04-06 18:26 +0200 tmodes <tmodes> (d525d97cd36c <libpano13-2.9.21>)
* parser.c:
Correctly count empty lines when parsing script
2021-04-06 17:13 +0200 tmodes <tmodes> (6efce6f96b29 <libpano13-2.9.21>)
* parser.c:
One more fix for format string in error reporting
2021-04-06 17:13 +0200 tmodes <tmodes> (1909bbffd0b5 <libpano13-2.9.21>)
* CMakeLists.txt:
Fixes typo in CMake
2021-04-06 17:13 +0200 tmodes <tmodes> (0890432e6c60 <libpano13-2.9.21>)
* CMakeLists.txt:
CMake: Set minimum version to 3.0
Newer CMake version don't support compatibility to 2.8 version
anymore
2011-05-02 00:00 +0100 Bruno Postle <[email protected]> (bd4240de8a4f)
* .hgtags:
Added tag 2.9.18 for changeset bea8d3f35359
2014-06-04 00:00 +0100 Bruno Postle <[email protected]> (61c8d5e1aa7a)
* .hgtags:
Added tag 2.9.19 for changeset 7339b1014e88
2021-04-06 15:14 +0100 Bruno Postle <[email protected]> (647a2c63f080)
* .hgtags: new file.
* .hgtags:
Added tag 2.9.20 for changeset e2d59edbddf5
2021-04-05 18:07 +0200 tmodes <tmodes> (0d5b64db974a <libpano13-2.9.21>)
* parser.c:
Fix some error strings
2021-04-05 17:21 +0200 tmodes <tmodes> (be688177f217 <libpano13-2.9.21>)
* PaniniGeneral.c:
Fixes an include, use local version
2021-04-04 17:15 +0200 tmodes <tmodes> (db0620862d38 <libpano13-2.9.21>)
* ColourBrightness.c, PTcommon.c, adjust.c, correct.c, file.c,
filter.c, fourier.c, optimize.c, parser.c, ppm.c, ptstitch.c,
resample.c, seamer_.c, sys_ansi.c, sys_compat_win.c, sys_win.c,
tools/PTAInterpolate.c, tools/PTtiff2psd.c, tools/panoinfo.c:
Replace sprintf calls with safer snprintf calls
Initial patch by Florian Königstein
2021-04-04 16:20 +0200 tmodes <tmodes> (cd23befa4e3a <libpano13-2.9.21>)
* LocalDefs.props, LocalDefs.vsprops, libpano.sln, libpano.vcproj,
libpano.vcxproj, tools/PTAInterpolate.vcproj,
tools/PTAInterpolate.vcxproj, tools/PTOptimizer.vcproj,
tools/PTOptimizer.vcxproj, tools/PTblender.vcproj,
tools/PTblender.vcxproj, tools/PTcrop.vcproj, tools/PTcrop.vcxproj,
tools/PTinfo.vcproj, tools/PTinfo.vcxproj, tools/PTmasker.vcproj,
tools/PTmasker.vcxproj, tools/PTmender.vcproj,
tools/PTmender.vcxproj, tools/PTroller.vcproj,
tools/PTroller.vcxproj, tools/PTtiff2psd.vcproj,
tools/PTtiff2psd.vcxproj, tools/PTtiffdump.vcproj,
tools/PTtiffdump.vcxproj, tools/PTuncrop.vcproj,
tools/PTuncrop.vcxproj: deleted file.
* LocalDefs.props, LocalDefs.vsprops, libpano.sln, libpano.vcproj,
libpano.vcxproj, tools/PTAInterpolate.vcproj,
tools/PTAInterpolate.vcxproj, tools/PTOptimizer.vcproj,
tools/PTOptimizer.vcxproj, tools/PTblender.vcproj,
tools/PTblender.vcxproj, tools/PTcrop.vcproj, tools/PTcrop.vcxproj,
tools/PTinfo.vcproj, tools/PTinfo.vcxproj, tools/PTmasker.vcproj,
tools/PTmasker.vcxproj, tools/PTmender.vcproj,
tools/PTmender.vcxproj, tools/PTroller.vcproj,
tools/PTroller.vcxproj, tools/PTtiff2psd.vcproj,
tools/PTtiff2psd.vcxproj, tools/PTtiffdump.vcproj,
tools/PTtiffdump.vcxproj, tools/PTuncrop.vcproj,
tools/PTuncrop.vcxproj:
Removed Visual studio solution files They can be recreated with the
CMake build system
2021-04-04 16:16 +0200 tmodes <tmodes> (ac03fda20014 <libpano13-2.9.21>)
* ColourBrightness.c, queryfeature.c:
Removed some workaround for newer MS Visual compilers
2021-04-04 16:16 +0200 tmodes <tmodes> (2b892d820e97 <libpano13-2.9.21>)
* configure.ac, version.h:
Update version numbers
2021-03-16 20:28 +0000 Bruno Postle <[email protected]> (e2d59edbddf5 [2.9.20])
* ChangeLog.hg:
update ChangeLog for rc3
2021-03-16 17:23 +0100 tmodes <tmodes> (f02459498cb4 [tip])
* file.c, tools/PTcrop.c:
Prevent string vulnerability by refusing prefix strings with
percentage sign
2020-12-13 15:37 +0100 tmodes <[email protected]> (2e9ee0a5e32f)
* Merge
2020-12-13 15:36 +0100 tmodes <[email protected]> (282b57fc22cb)
* adjust.c:
Fixes typo (spotted by A. Metzler)
2020-12-11 21:51 +0000 Bruno Postle <[email protected]> (a042ec0cb9bf)
* ChangeLog.hg, parser.c:
Fix reading beyond end of string
https://bugs.launchpad.net/bugs/1906996 (Florian Königstein)
2019-10-31 15:40 +0100 tmodes <[email protected]> (9f43f0980d29)
* PTcommon.c:
Use default isnan on new MSVC compilers instead
2018-10-31 13:04 +0100 tmodes <[email protected]> (82996ca476c5)
* parser.c, tiff.c:
Fixes 2 typos (Patch by Andreas Metzler)
2018-09-06 17:45 +0200 tmodes <[email protected]> (d71285db01f0)
* version.h:
Bump up some more version numbers
2018-03-25 10:45 +0100 Bruno Postle <[email protected]> (415deb81168f)
* ChangeLog, ChangeLog.hg:
Update ChangeLog for
2018-03-25 10:36 +0100 Bruno Postle <[email protected]> (f5ac8cc3aa91)
* configure.ac:
Update version to 2.9.20
2018-03-25 10:35 +0100 Bruno Postle <[email protected]> (e5632a455634)
* bootstrap:
Support latest automake
2018-03-25 10:34 +0100 Bruno Postle <[email protected]> (0a71a9f8a45a)
* tests/simpleTiff16/temp.txt: deleted file.
* tests/simpleTiff16/Makefile.am, tests/simpleTiff16/temp.txt:
Don't ship test output file
2018-03-23 17:19 +0100 tmodes <[email protected]> (5b23ce4acaf4)
* PaniniGeneral.c:
Fixes inverse transformation of Panini General
2018-03-11 08:30 +0100 tmodes <[email protected]> (f220884e22e3)
* math.c:
Triplane: Check more return codes instead of ignoring it
2018-03-11 08:30 +0100 tmodes <[email protected]> (1eaaec6809a2)
* math.c, queryfeature.c:
Biplane: Added new parameter for rounded corner
2018-03-05 17:26 +0100 tmodes <[email protected]> (1a3e1f817145)
* math.c:
Fixes image->pano transformation for triplane projection
2018-03-05 17:26 +0100 tmodes <[email protected]> (793506b19f1f)
* CMakeLists.txt:
Add debug postfix for debug libraries
2018-02-07 17:54 +0100 tmodes <[email protected]> (3ad2089ab924)
* CMakeLists.txt:
Windows: Make building shared library (DLL) default
2017-09-29 16:49 +0200 tmodes <[email protected]> (977a50b2a634)
* file.c:
Recognize also jpeg file extension [1681022]
2017-09-29 16:48 +0200 tmodes <[email protected]> (e3808b4f9a78)
* CMakeLists.txt:
Fixes compilation with Mingw Mingw has already getopt, no need for
our file
2017-01-02 18:34 +0100 tmodes <[email protected]> (20434c36b266)
* tools/panoinfo.c:
Fixes path separator for cross compiling for Windows
2016-12-30 13:21 +0100 tmodes <[email protected]> (9fb6fd19947a)
* math.c:
Don't take shortcut in setup_panini_general This breaks calculation
of ppg->distance parameter which is needed in stack calculations.
This fixes hang during line control points calculations [1016258]
2016-12-30 13:19 +0100 tmodes <[email protected]> (83e0c78ad594)
* math.c:
Updates for MSVC 2015
2016-09-17 16:12 +0200 tmodes <[email protected]> (9d16f4a39c36)
* math.c:
Comment out double assignment
2015-12-06 13:06 +0100 tmodes <[email protected]> (d1ca12b2146b)
* pt_stdint.h:
Fix for MSVC 2015
2014-04-23 00:31 +0100 Bruno Postle <[email protected]> (7339b1014e88)
* ChangeLog.hg:
update changelog
2014-02-12 17:57 +0100 tmodes <tmodes> (071273ed3a44)
* math.c:
Fixes condition introduced in last commit (Matthew Petroff)
2014-02-12 14:38 +1100 tduell <tduell> (5db9915fc7d0)
* math.c:
use default atanh function for MSVC 2012+ (Matthew Petroff)
2014-01-06 23:00 +0000 Bruno Postle <[email protected]> (bced6574df70)
* ChangeLog.hg:
update ChangeLog
2014-01-04 01:58 +0000 Bruno Postle <[email protected]> (d33c9a9ed0f9)
* tests/simpleTiff2psd/Makefile.am,
tests/simpleTiff2psd/reference/Makefile.am,
tests/simpleTiff2psd/tests/Makefile.am: new file.
* Makefile.am, configure.ac, tests/Makefile.am,
tests/simpleTiff16/Makefile.am, tests/simpleTiff2psd/Makefile.am,
tests/simpleTiff2psd/reference/Makefile.am,
tests/simpleTiff2psd/tests/Makefile.am, tools/Makefile.am:
Add lots of missing files to the autotools 'dist' target
2014-01-04 01:57 +0000 Bruno Postle <[email protected]> (cfadac620dd6)
* .hgignore:
add some patterns to .hgignore
2014-01-04 01:06 +0000 Bruno Postle <[email protected]> (81edd9d85242)
* CMakeLists.txt:
CPACK_SET_DESTDIR needs to be ON for package_source target
2014-01-04 00:48 +0000 Bruno Postle <[email protected]> (8764c3cdc139)
* CMakeLists.txt:
files that shouldn't be packaged by cpack
2014-01-03 11:48 +0100 Kornel Benko <[email protected]> (b6bb69bb754f)
* CMakeLists.txt:
Cmake build: Adapt the build to make rpm-packaging easier.
We had to find the correct library-directory to install our data.
This should work for all platforms.
In collaboration with Terry Duell (working on creating rpm-package
for fedora Linux).
2014-01-01 08:52 +0100 Kornel Benko <[email protected]> (c967f865cfc3)
* CMakeLists.txt, FindGnuTar.cmake:
Cmake build: Usage of FindPackageHandleStandardArgs corrected.
2013-12-31 10:49 +0100 Kornel Benko <[email protected]> (a32c832b554b)
* CMakeLists.txt, excludes:
Cmake build: Adapted the output of 'make dist' to appear the same as
would come from 'hg archive {build-dir}/libpano13-2.9.19.tar -p
libpano13-2.9.19 --exclude ".hg*"'
2013-12-30 23:57 +0100 Kornel Benko <[email protected]> (f68ddd79ed4b)
* excludes: new file.
* excludes:
This file is missing in previous commit.
Its content specifies files names, which should not be part of the
source tar.
2013-12-30 23:54 +0100 Kornel Benko <[email protected]> (5b660b010aa8)
* FindGnuTar.cmake: new file.
* CMakeLists.txt, FindGnuTar.cmake:
Cmake build: Added a new way to get source-tar, if there is a gnu
tar available
2013-12-24 13:52 +0100 Kornel Benko <[email protected]> (dc6694ef78a7)
* CMakeLists.txt:
Honor the configured installation prefix also in created packages
2013-12-24 13:22 +0100 Kornel Benko <[email protected]> (12f629da7d77)
* CpackDescription.txt: new file.
* CMakeLists.txt, CpackDescription.txt, man/CMakeLists.txt,
tools/CMakeLists.txt:
Package creation revised.
1. Removed option DISABLE_DPKG; For debian packaging always try to
determine package dependencies 2. Renamed 'HAVE_JAVA' variable to
'SUPPORT_JAVA_PROGRAMS' option. 3. Added COMPONENT keywords to
install commands. ATM this has no effect. Preparing for later use
with component-aware package generators like RPM.
2013-12-23 12:28 +1100 tduell <[email protected]> (b0f579114b63)
* CMakeLists.txt:
Backed out changeset: eb7322988b38
2013-12-23 08:36 +1100 tduell <[email protected]> (eb7322988b38)
* CMakeLists.txt:
Fixes CMakeLists.txt for Unix/Linux, to find Java, and set lib dir
to /usr/lib or /usr/lib64, as appropriate
2013-12-22 09:06 +0100 Kornel Benko <[email protected]> (0a6e4330f822)
* tools/CMakeLists.txt:
Added panoinfo to list of commands for unix too
2013-12-21 17:27 +0100 tmodes <tmodes> (85654befbd91)
* parser.c:
Correctly restore locale if parsing of script file fails [686482]
2013-12-21 16:27 +0100 tmodes <tmodes> (032bc7cc62e6)
* ColourBrightness.c, ColourBrightness.h, PTDialogs.c, PTcommon.c,
PTcommon.h, Triangulate.c, ZComb.c, ZComb.h, adjust.c, adjust.h,
correct.c, dump.c, file.c, file.h, filter.c, filter.h, filter.r,
fourier.c, javastub.c, math.c, metadata.c, metadata.h, multilayer.c,
pan.c, panorama.h, parser.c, perspect.c, ppm.c, ptfeather.c,
ptfeather.h, ptstitch.c, ptstitch.h, pttiff.h, remap.c, resample.c,
sys_X11.c, sys_X11.h, sys_ansi.c, sys_ansi.h, sys_common.c,
sys_compat.h, sys_compat_unix.c, sys_compat_win.c, sys_mac.c,
sys_mac.h, sys_win.c, sys_win.h, tiff.c, tools/PTAInterpolate.c,
tools/PTblender.c, tools/PTcrop.c, tools/PTinfo.c, tools/PTmasker.c,
tools/PTmender.c, tools/PTmender.h, tools/PToptimizer.c,
tools/PTroller.c, tools/PTtiff2psd.c, tools/PTtiffdump.c,
tools/PTuncrop.c, tools/panoinfo.c, tools/panoinfo_unix.c,
version.h:
Fixes copy and paste error in licence
2013-12-21 16:23 +0100 tmodes <tmodes> (4f56474cc8a0)
* PTcommon.c, tiff.c:
Fixes initialization of some variables (Patch by Andreas Metzler)
Fixes sporadic testsuite error [734867]
2013-12-21 16:20 +0100 tmodes <tmodes> (f666a3664d02)
* PTcommon.c, tools/panoinfo_unix.c:
Fixes 2 typos (spotted by Andreas Metzler)
2013-12-20 14:25 +1100 tduell <[email protected]> (35b5485f7e7a)
* man/PTmasker.pod:
Fix PTmasker.pod
2013-12-20 14:06 +1100 tduell <[email protected]> (37986ffdd87f)
* CMakeLists.txt:
Some fixes to CMakeLists.txt for binary package name and source
package name
2013-12-19 12:30 +1100 tduell <[email protected]> (6e9c7581a433)
* CMakeLists.txt:
Remove hg version and "hg" from cpack source package name to avoid
issues with Fedora rpmbuild
2013-12-19 12:28 +1100 tduell <[email protected]> (af17614b0443)
* bootstrap:
Update bootstrap to allow use of automake 1.13
2013-12-18 14:59 +0100 Kornel Benko <[email protected]> (21822d49c404)
* Debian/postinst: new file.
* CMakeLists.txt, Debian/postinst:
Enhanced creation of dependences for debian build
1.) The creation now honors libraries created in the same build. 2.)
Also added call to ldconfig to make the installed libraries known to
the system
2013-12-16 22:41 +0000 Bruno Postle <[email protected]> (0dd1fabfc868)
* ChangeLog.hg:
Update ChangeLog
2013-12-16 22:35 +0000 Bruno Postle <[email protected]> (777f5eb48962)
* COPYING, ColourBrightness.c, ColourBrightness.h, PTDialogs.c,
PTcommon.c, PTcommon.h, Triangulate.c, ZComb.c, ZComb.h, adjust.c,
adjust.h, correct.c, dump.c, file.c, file.h, filter.c, filter.h,
filter.r, fourier.c, javastub.c, math.c, metadata.c, metadata.h,
multilayer.c, pan.c, panorama.h, parser.c, perspect.c, ppm.c,
ptfeather.c, ptfeather.h, ptstitch.c, ptstitch.h, pttiff.h, remap.c,
resample.c, sys_X11.c, sys_X11.h, sys_ansi.c, sys_ansi.h,
sys_common.c, sys_compat.h, sys_compat_unix.c, sys_compat_win.c,
sys_mac.c, sys_mac.h, sys_win.c, sys_win.h, tiff.c,
tools/PTAInterpolate.c, tools/PTblender.c, tools/PTcrop.c,
tools/PTinfo.c, tools/PTmasker.c, tools/PTmender.c,
tools/PTmender.h, tools/PToptimizer.c, tools/PTroller.c,
tools/PTtiff2psd.c, tools/PTtiffdump.c, tools/PTuncrop.c,
tools/panoinfo.c, tools/panoinfo_unix.c, version.h:
Fixed the FSF address to make an rpmlint error go away...
2013-12-16 21:03 +0000 Bruno Postle <[email protected]> (3c558c23fbc0)
* CMakeLists.txt, Makefile.am:
Increment the soname from 2.0.0 to 3.0.0 due to ABI change
2013-12-08 11:18 +0100 tmodes <tmodes> (5f73aa3334ae)
* file.c, fourier.c:
Fixes sign of some pointers
2013-12-08 11:17 +0100 tmodes <tmodes> (92a290290d3a)
* parser.c:
Add missing variables to format string
2013-12-08 11:17 +0100 tmodes <tmodes> (cba530fd3127)
* pt_stdint.h:
Fixes /* in comment
2013-12-08 11:16 +0100 tmodes <tmodes> (8fdc2b13c2c7)
* correct.c:
Don't include \0 in format string
2013-12-08 11:16 +0100 tmodes <tmodes> (839d2ea0602c)
* ColourBrightness.c, PTcommon.c, file.c, math.c, parser.c, png.c,
ptfeather.c, resample.c, rgbe.c, seamer_.c, tiff.c:
Removed unused variables
2013-12-08 11:14 +0100 tmodes <tmodes> (84521eb90c05)
* tools/compat_win32/getopt.c:
[Mingw] Fix a compiler warning by implizit include of necessary
header
2013-12-08 10:11 +0100 tmodes <tmodes> (30f4cb70d93c)
* tiff.c:
Correct check for invalid resolutions in TIF files (spotted by dcb
[1256972])
2013-10-12 09:08 +0200 thomas <thomas@Virtual> (36d7541b8384)
* PTcommon.c, parser.c, ppm.c, resample.c:
Fixes formating sequence for x86_64 [1184375] Patch by Stefan Peter
2013-10-12 09:07 +0200 thomas <thomas@Virtual> (0a44cbd60ac8)
* tests/simpleTiff2psd/reference/simpleStitch_crop_1_layer.psd,
tests/simpleTiff2psd/reference/simpleStitch_crop_2_layer.psd,
tests/simpleTiff2psd/reference/simpleStitch_uncrop_1_layer.psd,
tests/simpleTiff2psd/reference/simpleStitch_uncrop_2_layer.psd,
tests/simpleTiff2psd/reference/simpleTiff16-16-_uncrop_1_layer.psd,
tests/simpleTiff2psd/reference/simpleTiff16-16-_uncrop_2_layer.psd:
Update psd references for 2.9.19
2013-10-12 09:06 +0200 thomas <thomas@Virtual> (879f75a8eae7)
* tests/CMakeLists.txt, tests/simpleTiff2psd/CMakeLists.txt:
[CMake]: Copy necessary files for test
2013-05-14 19:44 +0100 Bruno Postle <[email protected]> (ce361a3cfb97)
* sys_compat_unix.c:
Fix to build on OS X 10.6/10.8 (Matthieu Desile)
2013-05-13 20:37 +0100 Bruno Postle <[email protected]> (d3703d445473)
* README, README.linux, README.windows:
Fix some really out-of-date README text
2013-04-12 18:56 +0200 tmodes <tmodes> (04c52cae988a)
* math.c:
Fixes wrong calculation in triplane_erect
2013-03-21 10:42 +1100 tduell <[email protected]> (8ccb62eb329a)
* Makefile.am:
fix for removed .def files
2013-03-17 18:55 +0100 tmodes <tmodes> (3b87e44598ea)
* libpano13.def, pano13vc.def: deleted file.
* CMakeLists.txt, ColourBrightness.h, PTcommon.h, ZComb.h, file.h,
filter.h, libpano13.def, pano13vc.def, panorama.h, ptfeather.h,
ptstitch.h, pttiff.h, queryfeature.h, tools/PToptimizer.c:
[Windows] Use __declspec(dllexport) instead of modul definition file
Functions exported via modul definition file can't be compared with
function points (needed by nona gpu). Function pointers works for
functions exported with __declspec(dllexport).
2013-03-17 08:08 +0100 tmodes <tmodes> (4b93725a1f29)
* PTcommon.c, adjust.c, correct.c, dump.c, filter.h, math.c,
panorama.h, parser.c:
Moved test parameter 0 and 1 to Tpy and Tpr
2013-03-17 08:06 +0100 tmodes <tmodes> (253c1bcde35e)
* configure.ac, version.h:
Bump version number
2013-03-17 08:06 +0100 tmodes <tmodes> (c2a40aad1b51)
* bootstrap:
Update bootstrap for automake 1.12 (Patch by Terry Duell) [11561269]
2013-03-16 08:38 +0100 tmodes <tmodes> (b1e1204fe014)
* math.c:
Fixes for architectural projection
* correctly report success of transformation
* check if values are in valid ranges
2013-03-16 08:19 +0100 tmodes <tmodes> (8bf958d04557)
* math.c:
Removed unused variables
2013-03-16 07:45 +0100 tmodes <tmodes> (531cd379005d)
* adjust.c, filter.h, math.c, panorama.h, parser.c, queryfeature.c:
Added Hammer projection
2013-03-03 08:32 +0100 tmodes <tmodes> (6e390e07eac5)
* math.c:
Prevent division by zero [791473]
2013-03-03 08:31 +0100 tmodes <tmodes> (1b78f71b2c32)
* CMakeLists.txt:
Fixes a typo in version string
2013-03-03 08:30 +0100 tmodes <tmodes> (c251644f9866)
* CMakeLists.txt, ColourBrightness.c, sys_compat_win.c:
Fixes compilation with MinGW compiler
2013-03-02 13:18 +0100 tmodes <tmodes> (489ef38b776c)
* CMakeLists.txt:
Use mercurial instead of subversion in CMake build
2013-03-02 13:14 +0100 tmodes <tmodes> (e4a5489e244d)
* filter.h, panorama.h, parser.c:
Fixes some typos
2013-01-31 18:14 +0100 tmodes <tmodes> (1299ba47658f)
* panorama.h, tiff.c:
Unified use of path length Check also length before copying
[1057012]
2013-01-12 10:21 +0100 tmodes <tmodes> (b2f10b688fd6)
* adjust.c:
Modified scale calculation for orthographic images
This takes into account the issue that the image could also contain
a thin black border around the (circular) image.
2012-12-28 13:39 +0100 tmodes <tmodes> (376cc090f008)
* math.c:
Fixes bug in orthographic projection
Orthographic projection is limited to fov of 180 degree Higher
values were not correctly cropped, instead these coordinates were
mirrored inside
2012-11-19 22:37 -0400 Jim Watters <[email protected]> (e63acb0227b7)
* adjust.c:
Fix a bug when cropping images that go outside the image boundry.
mp->horizontal & mp->vertical would otherwise get extrordinary
large.
2012-09-18 19:51 +0200 tmodes <tmodes> (c9f63bc558e9)
* PTcommon.c, panorama.h:
Use unsigned int for PTRect Otherwise crop is not correctly
calculated
2012-09-18 19:10 +0200 tmodes <tmodes> (bb55bfdfa33e)
* sys_compat_unix.c, sys_compat_win.c: new file.
* CMakeLists.txt, Makefile.am, pano13vc.def, pt_stdint.h, sys_ansi.c,
sys_compat.h, sys_compat_unix.c, sys_compat_win.c, sys_win.c,
sys_win.h, tools/CMakeLists.txt:
Update build system to compile on Windows again
Added option to CMake build to allow building static or shared
version on Windows
2012-09-17 22:55 +0100 Bruno Postle <[email protected]> (17b9409b0fcc)
* adjust.c:
Fix "unsupported Panorama Format" error Bug #1049994 (Thomas Modes)
2012-09-17 22:55 +0100 Bruno Postle <[email protected]> (a1660991bf10)
* math.c:
Fix Inverse transformation from output projection to Thoby input
image is wrong Bug #891912 reported by Timothee Groleau (Thomas
Modes)
2012-03-02 23:19 +0000 Bruno Postle <[email protected]> (0c73d8794377)
* .hgignore, CMakeLists.txt, ChangeLog, png.c, pteditor.c,
tests/CMakeLists.txt:
merged PSD branch
2012-01-11 10:27 +1100 Terry Duell <[email protected]> (20a9b820aba0)
* dump.c, pteditor.c, ptpicker.c:
Fix outstanding pt_int32 problems
2011-05-31 09:54 +0200 Kornel Benko <[email protected]> (bd103552abef)
* CMakeLists.txt:
1.) Make it compilable on ubuntu 11.4 using '-DHUGIN_BASE_DIR=path
to hugin sources' Define SYSTEM_LIB_DIRS for use of hugins
CMakeModules Define 'HUGIN_SHARED', because of it's use 2.) Add
dependences creation on debian systems
2011-03-21 21:36 +0000 Bruno Postle <[email protected]> (da48158224d6)
* ChangeLog.hg:
Update changelog
2011-03-21 21:30 +0000 Bruno Postle <[email protected]> (f819fe70b239)
* CMakeLists.txt, man/CMakeLists.txt, tests/CMakeLists.txt,
tests/simpleStitch/CMakeLists.txt,
tests/simpleTiff16/CMakeLists.txt, tools/CMakeLists.txt:
Fixes for cmake after switching from gpl.txt to COPYING, Bug #739612
(Thomas Modes)
2011-03-16 19:16 +0000 Bruno Postle <[email protected]> (34d8f7279b7d)
* ChangeLog.hg:
Update ChangeLog.hg for default branch
2011-03-06 23:07 +0000 Bruno Postle <[email protected]> (9fc682e73eb1)
* tests/simpleStitch/Makefile.am, tests/simpleTiff16/Makefile.am:
Rename "clean" target to "clean-local" in Makefile.am. This way the
specified target supplements automake's clean target instead of