-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathChangeLog.hg
6232 lines (4254 loc) · 208 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
2014-02-12 17:57 +0100 tmodes <tmodes> (071273ed3a44 [tip])
* 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)
* LocalDefs.props, libpano.vcxproj, sys_compat.h,
tests/panoAutomatePSDtest.pl, tests/simpleTiff2psd/CMakeLists.txt,
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,
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,
tests/tiff2psdTest.bat, tools/PTAInterpolate.vcxproj,
tools/PTOptimizer.vcxproj, tools/PTblender.vcxproj,
tools/PTcrop.vcxproj, tools/PTinfo.vcxproj, tools/PTmasker.vcxproj,
tools/PTmender.vcxproj, tools/PTroller.vcxproj,
tools/PTtiff2psd.vcxproj, tools/PTtiffdump.vcxproj,
tools/PTuncrop.vcxproj: new file.
* .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
replacing it. Without this change the respective code is not invoked
for distclean, but only for clean. Also delete temp.txt, which is
generated by testsuite. (Andreas Metzler)
2011-03-06 22:52 +0000 Bruno Postle <[email protected]> (f6a5d6cfbbba)
* COPYING, INSTALL: new file.
* gpl.txt: deleted file.
* COPYING, INSTALL, Makefile.am, gpl.txt:
Don't rely on autotools for COPYING and INSTALL (Andreas Metzler)
2011-03-05 23:04 +0000 Bruno Postle <[email protected]> (6fea63273310)
* ChangeLog.hg: new file.
* ChangeLog.svn: deleted file.
* ChangeLog.hg, ChangeLog.svn, Makefile.am:
Switch ChangeLog generator from svn to hg
2011-03-05 22:34 +0000 Bruno Postle <[email protected]> (661831b81ffb)
* png.c:
Fix build with libpng-1.5 Bug #719076 (Thomas Klausner)
2011-03-04 01:15 -0800 dmg <[email protected]> (95e1c5da422e)
* .hgignore, ChangeLog:
Sorted files to .hgignore
2011-03-04 01:15 -0800 dmg <[email protected]> (2ae987ad64a2)
* .hgignore, ChangeLog:
Added files to .hgignore
2011-03-03 21:53 -0800 dmg <[email protected]> (8c929483d775 <PhotoshopPSB>)
* ChangeLog, tools/PTtiff2psd.c:
added jim to credits of PTtiff2psd
2011-03-03 20:43 -0800 dmg <[email protected]> (6d05236f8495 <PhotoshopPSB>)
* ChangeLog:
Added test cases for PTtiff2psd
2011-03-03 20:43 -0800 dmg <[email protected]> (dd2b0f7313d0 <PhotoshopPSB>)
* tests/panoAutomatePSDtest.pl, tests/simpleTiff2psd/CMakeLists.txt,
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,
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: new
file.
* tests/tiff2psdSimple/reference/crop.psb,
tests/tiff2psdSimple/reference/crop.psd,
tests/tiff2psdSimple/reference/uncrop.psb,
tests/tiff2psdSimple/reference/uncrop.psd: deleted file.
* .hgignore, ChangeLog, file.c, tests/CMakeLists.txt,
tests/panoAutomatePSDtest.pl, tests/simpleTiff2psd/CMakeLists.txt,
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,
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,
tests/tiff2psdSimple/reference/crop.psb,
tests/tiff2psdSimple/reference/crop.psd,
tests/tiff2psdSimple/reference/uncrop.psb,
tests/tiff2psdSimple/reference/uncrop.psd:
Added test cases for PTtiff2psd
2011-03-03 16:36 -0800 dmg <[email protected]> (d61239410f3d <PhotoshopPSB>)
* sys_compat.h: new file.
* sys_compat.h:
I forgot to add sys_compat.h
2011-03-03 16:30 -0800 dmg <[email protected]> (0ed11c91c143 <PhotoshopPSB>)
* CMakeLists.txt, ChangeLog, file.c, sys_ansi.c, sys_win.c:
Refactored system dependent code
2011-03-03 14:54 -0400 Jim Watters <Jim Watters> (a2fdc9b8616d <PhotoshopPSB>)
* file.c:
Fix timezone in PSDPICTResource
%z and %Z in strftime produces a alpha string need a numeric string.
Fix some sign unsign warnings
2011-03-03 01:30 -0800 dmg <[email protected]> (61011fb1ba7b)
* CMakeLists.txt, ChangeLog, Makefile.am:
cherry picked 721 from PhotoshopPSB to default
2011-03-03 01:24 -0800 dmg <[email protected]> (e881eb9a4ba0 <PhotoshopPSB>)
* CMakeLists.txt, ChangeLog, Makefile.am:
Added TAGS file creation, undid removal of hugin-related paths.
2011-03-03 00:44 -0800 dmg <[email protected]> (5ce79b438819 <PhotoshopPSB>)
* file.c:
Ported code to write name of writing program
2011-03-03 00:21 -0800 dmg <[email protected]> (d284d6621bff <PhotoshopPSB>)
* tests/tiff2psdSimple/reference/crop.psb,
tests/tiff2psdSimple/reference/crop.psd,
tests/tiff2psdSimple/reference/uncrop.psb,
tests/tiff2psdSimple/reference/uncrop.psd: new file.
* tests/tiff2psdSimple/crop.psb, tests/tiff2psdSimple/crop.psd,
tests/tiff2psdSimple/uncrop.psb, tests/tiff2psdSimple/uncrop.psd:
deleted file.
* tests/tiff2psdSimple/crop.psb, tests/tiff2psdSimple/crop.psd,
tests/tiff2psdSimple/reference/crop.psb,
tests/tiff2psdSimple/reference/crop.psd,
tests/tiff2psdSimple/reference/uncrop.psb,
tests/tiff2psdSimple/reference/uncrop.psd,
tests/tiff2psdSimple/uncrop.psb, tests/tiff2psdSimple/uncrop.psd:
moved test files for PSD
2011-03-03 00:15 -0800 dmg <[email protected]> (8fbc76a7f4b9 <PhotoshopPSB>)
* .hgignore, ChangeLog, PTcommon.c, PTcommon.h, ZComb.c, adjust.c,
correct.c, file.c, filter.c, filter.h, png.c, resample.c, tiff.c:
removed unnecessary and duplicated data types
2011-03-02 23:12 -0800 dmg <[email protected]> (0a87dbc64f24)
* .hgignore:
Added more files to ignore to .hgignore
2011-03-02 23:11 -0800 dmg <[email protected]> (02384dd66427)
* .hgignore:
Added more files to ignore to .hgignore
2011-03-02 23:05 -0800 dmg <[email protected]> (70b2afd42405)
* .hgignore:
Added some files to ignore to .hgignore
2011-03-02 22:59 -0800 dmg <[email protected]> (7d932f0d1221)
* panorama.h:
width and height should always be unsigned
2011-03-02 22:49 -0800 dmg <[email protected]> (0a526edf75cc)
* ChangeLog, PTcommon.c, adjust.c, file.c, filter.c, filter.h,
fourier.c, morpher.c, panorama.h, panotypes.h, parser.c, perspect.c,
resample.c, rgbe.c, rgbe.h, tests/CMakeLists.txt, tiff.c:
Removed the use of pt_int* data types, which are redundant and not
consistently used
2011-03-02 22:03 -0800 dmg <[email protected]> (4000b5187221)
* CMakeLists.txt, ChangeLog, PTcommon.c, filter.h, panorama.h,
panotypes.h, pt_stdint.h, rgbe.c, rgbe.h, sys_ansi.c, sys_common.c:
Fixed compiler warnings and cleanup some conditional compilation
code
2011-03-02 19:45 -0800 dmg <[email protected]> (a70ba2fe3c7f)
* Renamed libpano to default
2011-03-02 18:59 -0400 Jim Watters <Jim Watters> (daf735d8ec66 <PhotoshopPSB>)
* file.c:
correct some Linux errors and warnings.
2011-03-02 15:22 -0400 Jim Watters <Jim Watters> (7dea16af1053 <PhotoshopPSB>)
* file.c:
Clean up, untabulate, and beautify code
2011-03-02 00:17 -0400 Jim Watters <Jim Watters> (755c1fbd4838 <PhotoshopPSB>)
* PTcommon.h, file.c, tools/PTtiff2psd.c:
Add panoCreateLayeredPSD
Create a PSD file from a bunch of tiffs in one go without inserting
each layer one at a time.
2011-02-25 22:38 -0400 Jim Watters <Jim Watters> (19c2bd9d5040 <PhotoshopPSB>)
* file.c:
Simplify the calculation of layer length
2011-02-25 21:56 -0400 Jim Watters <Jim Watters> (15df50fc3f7a <PhotoshopPSB>)
* PTcommon.c:
O(n2)
2011-02-24 16:34 -0400 Jim Watters <Jim Watters> (28033bba0b8f <PhotoshopPSB>)
* PTcommon.c:
By default PANO_TEST_INVERSE should be commented out
2011-02-24 16:25 -0400 Jim Watters <Jim Watters> (6545685cd438 <PhotoshopPSB>)
* PTcommon.c:
untablify and beautify code
2011-02-24 14:41 -0400 Jim Watters <Jim Watters> (1c9ce5934fb1 <PhotoshopPSB>)
* tests/tiff2psdTest.bat: new file.
* tests/tiff2psdSimple/crop.psb, tests/tiff2psdSimple/crop.psd,
tests/tiff2psdSimple/uncrop.psb, tests/tiff2psdSimple/uncrop.psd,
tests/tiff2psdTest.bat:
Update test images with new PICT record for PTtiff2PSD
2011-02-23 22:45 -0400 Jim Watters <Jim Watters> (1a989de7c490 <PhotoshopPSB>)
* file.c:
Merge
2011-02-23 17:56 -0400 Jim Watters <Jim Watters> (00a141ab7ffb <PhotoshopPSB>)
* file.c:
Update PICT Resource
Added more info to the PICT resource
2011-02-23 14:25 -0400 Jim Watters <Jim Watters> (3d46baa67f1e <PhotoshopPSB>)
* file.c:
Fix PICT Resource
PICT now displays correctly with Photoshop and Exiftool
2011-02-19 23:41 -0400 Jim Watters <Jim Watters> (5d9db2abdb38 <PhotoshopPSB>)
* file.c, filter.c, filter.h:
Update panoWritexxx functions to return bool
use change in location of write to get length of section.
2011-02-20 13:25 -0800 dmg <[email protected]> (774168101e71 <libpano>)
* ChangeLog, sys_ansi.c, tools/panoinfo_unix.c:
removed compiler warnings. Patch submited by Guillaume Rousse.
2011-02-19 23:53 -0800 dmg <[email protected]> (61f66c836feb <PhotoshopPSB>)
* ChangeLog, file.c:
Fixed a small error that stopped compilation under Linux.
2011-02-19 16:05 -0400 Jim Watters <Jim Watters> (b1595e6c58fc <PhotoshopPSB>)
* tests/tiff2psdSimple/crop.psb, tests/tiff2psdSimple/uncrop.psb: new
file.
* tests/tiff2psdSimple/crop.psb, tests/tiff2psdSimple/uncrop.psb:
Add reference PSB files for testing PTtiff2PSD
2011-02-19 15:54 -0400 Jim Watters <Jim Watters> (bf73d5f0e9fa <PhotoshopPSB>)
* tests/tiff2psdSimple/crop.psd, tests/tiff2psdSimple/uncrop.psd: new
file.
* tests/tiff2psdSimple/crop.psd, tests/tiff2psdSimple/uncrop.psd:
Add reference PSD files for testing PTtiff2PSD
2011-02-19 15:40 -0400 Jim Watters <Jim Watters> (080786b030d4 <PhotoshopPSB>)
* file.c:
opps panoReadxxxx returns bool not length
2011-02-17 18:31 -0400 Jim Watters <Jim Watters> (6742691b9336 <PhotoshopPSB>)
* file.c, filter.c, filter.h:
switch from READ and WRITE macros to functions.
switch from READ and WRITE macros to functions. Simplified code by
adding functions panoReadINT32or64 and panoWriteINT32or64 for read
and write 4 or 8 byte varibles for the use of PSD or PSB.
2011-02-14 23:22 -0400 Jim Watters <Jim Watters> (cb926d40214e <PhotoshopPSB>)
* filter.c, filter.h:
Add functions panoWriteINT32or64 and panoReadINT32or64
2011-02-14 23:04 -0400 Jim Watters <Jim Watters> (9e9d800230f9 <PhotoshopPSB>)
* .hgignore:
Add .ipch to ignor list
2011-02-14 23:02 -0400 Jim Watters <Jim Watters> (a7bcbe2d5c2d <PhotoshopPSB>)
* filter.c, filter.h:
update panowrite functions to return count
2011-02-14 22:06 -0400 Jim Watters <Jim Watters> (46f909a2a815 <PhotoshopPSB>)
* file.c:
remove cast
2011-02-14 21:06 -0400 Jim Watters <Jim Watters> (704614dd55ae <PhotoshopPSB>)
* PTcommon.c, file.c, filter.c, filter.h, pano13vc.def,
tools/PTtiff2psd.c:
New versions of files that now should end with LF only
2011-02-14 20:43 -0400 Jim Watters <Jim Watters> (9c9ced6c091f <PhotoshopPSB>)
* .hgeol: new file.
* .hgeol:
Windows users should use the EOL extension
Windows users need EOL to control how End of Line characters are
translated to and from repository.
2011-02-14 20:43 -0400 Jim Watters <Jim Watters> (2a01f904d1c3 <PhotoshopPSB>)
* .hgignore: new file.
* .hgignore:
Add a list of files to ignor when doing commit
2011-02-14 20:01 -0400 Jim Watters <[email protected]> (364327cfaf40 <libpano>)
* .hgignore: new file.
* .hgignore:
Add a list of files to ignor when doing commit
2011-02-14 20:00 -0400 Jim Watters <[email protected]> (9fa455003f7d <libpano>)
* .hgeol: new file.
* .hgeol:
Windows users should use the EOL extension
Windows users need EOL to control how End of Line characters are
translated to and from repository.
2011-02-13 01:32 -0400 Jim Watters <Jim Watters> (9b9b3887cddf <PhotoshopPSB>)
* file.c:
Use 8byte sizes all the time.
2011-02-13 01:31 -0400 Jim Watters <Jim Watters> (879cca2dae52 <PhotoshopPSB>)
* tools/PTAInterpolate.vcxproj, tools/PTOptimizer.vcxproj,
tools/PTblender.vcxproj, tools/PTcrop.vcxproj, tools/PTinfo.vcxproj,
tools/PTmasker.vcxproj, tools/PTmender.vcxproj,
tools/PTroller.vcxproj, tools/PTtiff2psd.vcxproj,
tools/PTtiffdump.vcxproj, tools/PTuncrop.vcxproj:
Update Location of 64bit libs
2011-02-12 21:41 -0400 Jim Watters <Jim Watters> (127413a4755c <PhotoshopPSB>)
* tools/PTAInterpolate.vcxproj, tools/PTOptimizer.vcxproj,
tools/PTblender.vcxproj, tools/PTcrop.vcxproj, tools/PTinfo.vcxproj,
tools/PTmasker.vcxproj, tools/PTmender.vcxproj,
tools/PTroller.vcxproj, tools/PTtiff2psd.vcxproj,
tools/PTtiffdump.vcxproj, tools/PTuncrop.vcxproj:
Add Local definitions LocalDefs to 64bit projects
2011-02-12 21:23 -0400 Jim Watters <Jim Watters> (d9bf0412f5f1 <PhotoshopPSB>)
* PTcommon.c, file.c, file.h, filter.h, tiff.c:
update PSD functins to write PSB format too
2011-02-12 21:22 -0400 Jim Watters <Jim Watters> (b22ddb573e0b <PhotoshopPSB>)
* tools/PTAInterpolate.vcxproj, tools/PTOptimizer.vcxproj,
tools/PTblender.vcxproj, tools/PTcrop.vcxproj, tools/PTinfo.vcxproj,
tools/PTmasker.vcxproj, tools/PTmender.vcxproj,
tools/PTroller.vcxproj, tools/PTtiff2psd.c,
tools/PTtiff2psd.vcxproj, tools/PTtiffdump.vcxproj,
tools/PTuncrop.vcxproj:
Make projects multicore friendly by using differnt folders for temp
files that may conflict.
2011-02-10 16:49 -0400 Jim Watters <Jim Watters> (52cf096d848b <PhotoshopPSB>)
* LocalDefs.props: new file.
* LocalDefs.props:
Update to VS 2010
2011-02-10 16:49 -0400 Jim Watters <Jim Watters> (c2996d3c00aa <PhotoshopPSB>)
* libpano.vcxproj, tools/PTAInterpolate.vcxproj,
tools/PTOptimizer.vcxproj, tools/PTblender.vcxproj,
tools/PTcrop.vcxproj, tools/PTinfo.vcxproj, tools/PTmasker.vcxproj,
tools/PTmender.vcxproj, tools/PTroller.vcxproj,
tools/PTtiff2psd.vcxproj, tools/PTtiffdump.vcxproj,
tools/PTuncrop.vcxproj: new file.
* libpano.sln, libpano.vcxproj, tools/PTAInterpolate.vcxproj,
tools/PTOptimizer.vcxproj, tools/PTblender.vcxproj,
tools/PTcrop.vcxproj, tools/PTinfo.vcxproj, tools/PTmasker.vcxproj,
tools/PTmender.vcxproj, tools/PTroller.vcxproj,
tools/PTtiff2psd.vcxproj, tools/PTtiffdump.vcxproj,
tools/PTuncrop.vcxproj:
Update to VS 2010
2011-02-10 16:46 -0400 Jim Watters <Jim Watters> (611e65b1791f <PhotoshopPSB>)
* PTcommon.c, file.c, file.h, filter.c, filter.h, pano13vc.def,
tools/PTtiff2psd.c:
First sweep of the Photoshop PSD code at add PSB.
Enable PSD functions to be also capable of PSB read and write.
Builds with a couple resize warnings that need to be corrected.
Completely untested.
2011-02-09 22:59 +0000 Bruno Postle <[email protected]> (c9df9403f9b7 <libpano>)
* Makefile.am, doc/Makefile.am, man/Makefile.am:
Add some more files to the tarball
2011-01-20 20:24 +0000 dangelo <dangelo> (89e2ee12bfea <libpano>)
* ChangeLog, parser.c:
removed debug printf
2011-01-19 23:34 +0000 brunopostle <brunopostle> (236dcc1b4e42 <libpano>)
* ChangeLog.svn:
Update ChangeLog
2011-01-19 23:31 +0000 brunopostle <brunopostle> (4ff42dc33ebf <libpano>)
* man/PTAInterpolate.1, man/PTblender.1, man/PTcrop.1, man/PTinfo.1,
man/PTmasker.1, man/PTmender.1, man/PToptimizer.1, man/PTroller.1,
man/PTtiff2psd.1, man/PTtiffdump.1, man/PTuncrop.1, man/panoinfo.1:
Update version string
2011-01-19 23:16 +0000 brunopostle <brunopostle> (81996a5178a6 <libpano>)
* configure.ac:
Build on GNU hurd (Andreas Metzler)
2011-01-11 20:38 +0000 jim0watters <jim0watters> (ee8e1221d5c4 <libpano>)
* ChangeLog, pano13.rc:
Update version description to indicate if build is 32 or 64 bit
2011-01-11 20:08 +0000 jim0watters <jim0watters> (9e35fdbf73b6 <libpano>)
* ChangeLog, adjust.c:
Update SetStitchDefaults to include psdOpacity and psdBlendingMode
2011-01-11 19:56 +0000 jim0watters <jim0watters> (f2248674847c <libpano>)
* ChangeLog, version.h:
Update version description to indicate if build is 32 or 64 bit
2011-01-07 03:42 +0000 dmg <dmg> (06b9b3d28121 <libpano>)
* ChangeLog, PTcommon.c:
Thoby should crop as a ciruclar fisheye
2011-01-06 19:28 +0000 dmg <dmg> (e62120574872 <libpano>)
* ChangeLog, configure.ac, version.h:
upgraded version to 2.9.18
2011-01-05 21:54 +0000 dmg <dmg> (5b0b16916422 <libpano>)
* ChangeLog, dump.c, queryfeature.c:
patch by T. Modes to add thoby to queryfeatures
2011-01-05 20:12 +0000 dmg <dmg> (e9fbaf2dcb25 <libpano>)
* ChangeLog, parser.c:
removed code I shouldnnot have committed
2011-01-05 18:59 +0000 dmg <dmg> (eef10551f656 <libpano>)
* ChangeLog:
updated changelog
2011-01-05 18:57 +0000 dmg <dmg> (885f8a3f740b <libpano>)
* debian/README.source, debian/TODO, debian/changelog, debian/compat,
debian/control, debian/copyright, debian/libpano13-2.install,
debian/libpano13-bin.docs, debian/libpano13-bin.install,
debian/libpano13-dev.install,
debian/patches/10_workaround_libtool_link_as_needed_bug,
debian/patches/20_bumpsoname.diff, debian/patches/series,
debian/rules, debian/watch: deleted file.
* debian/README.source, debian/TODO, debian/changelog, debian/compat,
debian/control, debian/copyright, debian/libpano13-2.install,
debian/libpano13-bin.docs, debian/libpano13-bin.install,
debian/libpano13-dev.install,
debian/patches/10_workaround_libtool_link_as_needed_bug,
debian/patches/20_bumpsoname.diff, debian/patches/series,
debian/rules, debian/watch:
removed bogus code I added in my previous commit
2011-01-05 18:41 +0000 dmg <dmg> (6ae2704f7540 <libpano>)
* dump.h: new file.
* dump.h:
added thoby projection for Nikkor 10.5, part 2
2011-01-05 12:20 +0000 dmg <dmg> (47685987af4a <libpano>)
* debian/README.source, debian/TODO, debian/changelog, debian/compat,
debian/control, debian/copyright, debian/libpano13-2.install,
debian/libpano13-bin.docs, debian/libpano13-bin.install,
debian/libpano13-dev.install,
debian/patches/10_workaround_libtool_link_as_needed_bug,
debian/patches/20_bumpsoname.diff, debian/patches/series,
debian/rules, debian/watch, dump.c: new file.
* CMakeLists.txt, ChangeLog, PTcommon.c, adjust.c,
debian/README.source, debian/TODO, debian/changelog, debian/compat,
debian/control, debian/copyright, debian/libpano13-2.install,
debian/libpano13-bin.docs, debian/libpano13-bin.install,
debian/libpano13-dev.install,
debian/patches/10_workaround_libtool_link_as_needed_bug,