-
Notifications
You must be signed in to change notification settings - Fork 35
/
Whatsnew.txt
1399 lines (1249 loc) · 69.9 KB
/
Whatsnew.txt
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
Test only Version 4.6.1 in Lazarus
4.6.1.305 Released: Build date 2020/03/01
Fixed couple of issues and memory bugs with using Valgrind debugger
New things:
- added caching of bitmap of background image for performance improving.
- new Tolerance dialog.
- delete control point after Point Collapse
New features and fixes:
4.6.1.266 Released: Build date 2020/02/17
Fixed couple of issues, such as fatal exception on save file, and others.
New things:
Native Windows installation MSI file. See "Windows installation notes" below.
For Linux that does not support .deb, use install-FreeShip.sh instead of previous install-system.sh install-user.sh
New files layout. See "Files layout notes" below.
GPLv3+ licensing. Splash window is adjusted.
Fixes and improvements in File Preview Dialog
Windows installation notes
In Windows 7 and later FreeShip can be installed per-Machine or per-User. Per-Machine is default and is more secure in general, because per-User files will be installed into user profile and are vulnerable to modifications thet can be done by malware. Per-User installation does not require escalation to "Run as Administrator".
The installation MSI file is currently capable for install/uninstall only, no updates/patches. You will have to uninstall current version to install new version.
Backup your projects, models, exports, imports ... etc, just in case.
Backup and remove FreeShip.ini files because file layout is changed. See below.
Files layout notes
Application files are located according their purpose:
Application files: binary files, manual files, language/localization files, themes and icons, example projects.
Global configuration files: FreeShip.ini not modifiable by user.
User configuration files: FreeShip.ini modifiable by user.
User projects, exports, imports.
Linux, per-Machine installation:
Application files:
-- executable/library file(s): /usr/bin/, /usr/lib/
-- manual files, language/localization files, themes and icons, example projects : /usr/share/FreeShip/
Global configuration files: /etc/FreeShip/FreeShip.ini
User configuration files: $HOME/.config/FreeShip/FreeShip.ini
User projects, exports, imports: $HOME/Documents/FreeShip/
Linux, per-User installation:
Application files:
-- executable/library file(s): $HOME/.local/bin/, $HOME/.local/lib/
-- manual files, language/localization files, themes and icons, example projects : $HOME/.local/share/FreeShip/
Global configuration files: $HOME/.local/share/FreeShip/
User configuration files: $HOME/.config/FreeShip/FreeShip.ini
User projects, exports, imports: $HOME/Documents/FreeShip/
Windows, per-Machine installation:
Application files:
-- executable/library file(s), manual files, language/localization files, themes and icons, example projects : C:\Program Files\FreeShip\
Global configuration files: C:\Program Files\FreeShip\FreeShip.ini
User configuration files: C:\users<USER>\AppData\FreeShip\FreeShip.ini
User projects, exports, imports: C:\users<USER>/[My ]Documents\FreeShip\
Linux, per-User installation:
Application files:
-- executable/library file(s), manual files, language/localization files, themes and icons, example projects : C:\users<USER>\AppData\Programs\FreeShip\
Global configuration files: C:\users<USER>\AppData\Programs\FreeShip\FreeShip.ini
User configuration files: C:\users<USER>\AppData\FreeShip\FreeShip.ini
User projects, exports, imports: C:\users<USER>/[My ]Documents\FreeShip\
Test only Version 3.5.5.21 in Lazarus
Released: Build date 2015/12/24 10:50:00
New features and fixes:
- fixed color sex issue noted in #19
- set default log mode to log-error
Test only Version 3.5.5.19 in Lazarus
Released: Build date 2015/12/23 16:16:00
New features and fixes:
- some performance tweaks with direct image memory access. Now it uses a particular procs assigned to SetPixe/GetPixel proc variable methods.
all row bitmap navigation (X,Y) logic moved to Helper SetPixel/GetPixel
Test only Version 3.5.5.14 in Lazarus
Released: Build date 2015/12/22 19:20:00
New features and fixes:
- fixed issue #19 Serious memory leak. Leak caused by QT SetPixel. Switched to direct image memory access
Test only Version 3.5.5.12 in Lazarus
Released: Build date 2015/12/17 21:20:00
New features and fixes:
- added deb package creation into release.sh
- fixed issue #18 .deb install gives non-valid. added Installed-Size field
- fixed icon on Deselect All tool button
- fixed autotomatic new model creation on very first startup.
Test only Version 3.5.5.7 in Lazarus
Released: Build date 2015/12/17 21:20:00
New features and fixes:
- fixed script installers/uninstallers for more standard install of MIME and menu, including icons
- added deb package creation in instpkg/deb as follow up on issue #16 Request
- added rpm package creation in instpkg/rpm
- added install-HOWTO.txt as follow up on issue #17 Installation Manual
Test only Version 3.5.5.3 in Lazarus
Released: Build date 2015/12/05 14:10:00
New features and fixes:
- fixed issues with Corner checkbox in Point Editor dialog
- added feature: added manual font size adjustment control in Develop Plates windows. Automatic font sizing is out of use.
Test only Version 3.5.4.14 in Lazarus
Released: Build date 2015/11/29 16:00:00
New features and fixes:
- fixed issues with item checkboxes in Layer Dialog and Intersection Dialog.
- fixed balnk icons in Layer Dialog. Added MoveUp/Down icons
- added feature: set DWL color to Red
Test only Version 3.5.4.9 in Lazarus
Released: Build date 2015/10/16 10:00:00
New features and fixes:
- fixed issue #10 Open last project on startup. Look next new fieature.
- added feature: Now dialog pops up with options: to open a file from file system, create new one or proceed with empty project; if a recent file is not found.
- For many dialogs, top Panel and Ok and Cancel buttons were made autosized and use Default theme icons.
- Added preview in separate window because standard onPreview does not work with Qt4pas
Test only Version 3.5.3.29 in Lazarus
Released: Build date 2015/10/02 14:10:00
New features and fixes:
- fixed issue #11 problem with layers name. Now FBM file is saved in encoding that is selected in preferences
- fixed issue #12 Creating a layer in empty project. No exception when save empty project.
- fixed issue #13 100% CPU in LinesPlan window
- fixed issue #14 Design Hydrostatics not working
- fixed issue #15 Access violation trying to use Lackenby transformation
- added feature: added manual font size adjustment controls in main and Linespan windows. Automatic font sizing is out of use.
- added feature: related to issue #11, added setting for single byte encoding that is used to save or load FBM files.
Test only Version 3.5.3.27 in Lazarus
Released: Build date 2015/09/25 17:40:00
New features and fixes:
- fixed animated splash screen. Now it works in compositing window managers like marco, compiz, KWin. also works in non-comositi$
- fixed load .ftm files from command line and when it is launched by file mmanagers using file association
Test only Version 3.5.3.24 in Lazarus
Released: Build date 2015/09/22 22:55:00
New features and fixes:
- fixed issue#8 : 100% CPU
Test only Version 3.5.3.21 in Lazarus
Released: Build date 2015/09/21 23:25:00
New features and fixes:
- removed saving of dev/test preview picture "saved_screenshot.jpg". Caused errors in some distros. Issue#6: Can't save files
- fixed issue#7 not work Develop Plates
Test only Version 3.5.3.1 in Lazarus
Released: Build date 2015/06/26 17:39:00
New features and fixes:
- Scalable toolbar icons in SVG and sets of PNG icons of various sizes were created (Thanks Tom https://github.com/tvld ).
- Toolbar resizes according to icon size.
- Original icons were captured into PNG files and resized to various sizes
- Themes support is added. Now colors and icons are saved in themes. Custom themes can inherit icons from ancestors.
- Tom's icons are placed into Default theme. Original icons placed into Original theme.
Test only Version 3.5.2.45 in Lazarus
Released: Build date 2015/04/06 14:41:00
New features and fixes:
- Application is retargeted to Qt
- Project is moved to git at GitHub
Test only Version 3.5.2.45 in Lazarus
Released: Build date 2015/04/06 14:41:00
New features and fixes:
- further fix of the bug with Insert Plane and Intersect Layers.
(Optimization added in Cycle of intersection detection, before checking point-in-face, it checks point-in-block of a panel first,
then it checks point-in-triangle for each trinagle of face.
Original point-in-triangle function produced wrong results when points were close to 0, like middlepoints.
Created and use new procedure based on barycentric method. It is more efficient and precise.)
- fix - Keel DIalog failed when number of rows/columns changed using keyboard. Fixed.
- improvement - added new keel is selected, this improves ergonomics, because it usually needs to be shifted forward.
Test only Version 3.5.2.36 in Lazarus
Released: Build date 2015/04/04 11:11:00
New features and fixes:
- further fix of the bug with Insert Plane and Intersect Layers.
(Cycle of intersection detection was optimized to exit as soon as first intersection found.
Looks like this optimization caused some intersection points and last intersection rib missed.
The optimization is disabled.)
- fix - Mouse wheel zoom worked incorrectly. Fixed.
- fix - "Select all leak points" menu item was lost in conversion. Added.
Test only Version 3.5.2.35 in Lazarus
Released: Build date 2015/04/01 16:48:00
New features and fixes:
- fixed bug with Insert Plane and Intersect Layers.
(FreeDestroyList object introduced for this to do delayed destroy.
Previously destroy of control surface was done during walking through the surface points.
Now the surface is destroyed out of this processing cycle.)
Test only Version 3.5.2.26 in Lazarus
Released: Build date 2015/03/26 17:38:00
New features and fixes:
- fixed "Out of Array" in FindWaterViscosity. Added viscosity for 0C temp.
- fixed bugs with ASCII functions Copy, Length, Delete. Replaced by UTF8Copy, UTF8Length, UTF8Delete where applicable.
- Added scrollbars to 3-D view in Keel Wizard Dialog
Test only Version 3.5.2.21 in Lazarus
Released: Build date 2015/03/18 14:18:00
New features and fixes:
- fixed call of KeelWizardDialog
Test only Version 3.5.2.20 in Lazarus
Released: Build date 2015/03/18 14:18:00
New features and fixes:
- Changed: Manual files naming is changed to be same as language files in Languages directory.
I.e. for Languages/Russian.ini manual file must be Manuals/Russian.pdf
Manuals added into distribution package.
Test only Version 3.5.2.19 in Lazarus
Released: Build date 2015/03/14 17:12:00
New features and fixes:
- New: Installation and uninstallation scripts for user's home and system-wide installations. Menu and MIME supported.
Test only Version 3.5.2.19 in Lazarus
Released: Build date 2015/03/14 17:12:00
New features and fixes:
- New: Major directories added to Properties dialog to support new file structure
- Bug fix: Tiling after closing of a window caused error.
- Bug fix: Preview picture is combined now from four view images. Previously main window was captured.
- New: random chart colors not that close to background color
- Other small bug fixes.
Test only Version 3.5.1.77 in Lazarus
Released: Build date 2015/03/09 17:20:00
New features and fixes:
- Bug fix: Parsing 16-bit bitmaps
- New: Config file is .ini with text .INI format: [Section], Name=Value
- New: Two level of config files: global config for all users, and user's config.
- New: executable, common application data, and user's data are separated according to OS standards.
- Bug fix: components are arranged in forms to be completely visible. some forms resized.
Test only Version 3.5.1.65 in Lazarus
Released: Build date 2015/03/03 00:26:52
New features and fixes:
- Bug fix: Index out of Anges array is fixed in CrosscurvesDlg.pas
- New: BorderFrame in FreeNumInput component.
- New: Set border red if required values are wrong/unset in CrosscurvesDlg.pas
- Bug fix: Set sorted X poins and round pointers in DSO chart of CrossCurvesDlg.
Test only Version 3.5.1.54 in Lazarus
Released: Build date 2015/03/03 00:26:52
New features and fixes:
- Bug fix: colors auto assigned in Crosscurves Dialog. Had to introduce my unit
ColorFactory because Lazarus does not autoassign different colors for added
series.
- Bug fix: left and right axises automatically range in Resistance Delft DIalog
- Fixed rendering of non-wireframe modes Shaded, Gauss, Zebra ...
- Fixed rendering of background image. Speedup with using FreeBitmapFormatHelper
- changed calculation of margins in FreeNumInput
- other little changes.
Test only Version 3.5.1.24 in Lazarus
Released: 20 Feb, 2015
New features and fixes:
- Fixed overlaped text in column and row headers
- Fixed Keel and Rudder dialog
- Added some diagnostics into "Crooss Curves and SSD" dialog calcuulations.
Test only Version 3.5.1.15 in Lazarus
Released: 20 Feb, 2015
New features:
- Added About dialog
- Added translucency support for splash screen
Test only Version 3.5.1.5 in Lazarus
Released: 18 Feb, 2015
New features:
- Added preview of FREE!ship .fbm and .ftm files in Open File dialog
- Added automatic change of FREE!Ship file extension in Save As dialog (for Windows and GTK only)
Test only Version 3.5 in Lazarus
Released: 18 Feb, 2015
New features:
* Writing and reading of .fbm is done in little endian format in any architecture.
* New FREE!ship file format .ftm is introduced for better portability.
It keeps values as text, not as binary. Now it is default format for save.
Test only Version 3.4 in Lazarus
Released: Thursday 12 Feb, 2015
New features:
* MDI design windows are replaced by non-MDI windows because MDI is supported in MS Windows only. For MS Windows build it is still MDI.
* Important values in Resistance dialogs are highlighted red when wrong values are entered.
* Some more diagnostic output is written into Results tab in case of calculation errors
* Small fixes of bugs caused by uninitalized vars
Release Version 3.4
Released March 31, 2013
New features:
* Specify the range of FPP series Zvezdkinoy per curves of the propeller in the free water
* Set rotative speed propeller default of 100 rev. in minutes
* The abscissa of the bow perpendicular was set equal to project length
* Added a series of five-blade surface piercing propeller KSRI SPP-5 (for x32)
* Added output engine power with a 10% premium (on the recommendation of the diesel firm MAN)
* Added 2 new multi-lingual messages
* Made more than 40 small changes and interface corrections
Test only version 3.39+
Released: February 14, 2013
New features:
* Added a series of FPP Zvezdkinoy ZV-3-50 ... 110 curves in the calculation of the propeller in open water (for x32)
* Added two series of ducted propellers (E-4-57 and VIT-4-35, 58, 75)
* Added two series of ducted propellers Kaplan
* Fixed value range P/D in the calculation of the propeller curves
* Added output parameters of propeller and power at rated conditions for FPP series T, M, Z, ZM, ZV, E, VIT, Ka
* Added 10 new multi-lingual messages
Test only version 3.38+
Released: February 4, 2013
New features:
* Added 5 series FPP in calculation of the propellers in free water (for x32 only)
* Fixed error in output Weights.txt at zero density of the material and thickness of the layers
* Changed format data in the file Weights.txt, added the type of the (three-or rectangular)
* Added 30 new multi-lingual messages
* Made more than 20 small changes and interface corrections
Test only Version 3.37+
Released: January 14, 2013
New features:
* Added 7 series propellers (ducted propellers, CPP and CRP)
* Increased the range of power of the main engine (<100 MW)
* Added a check on the calculation method of cavitation Schonherr
* Added 5 new multi-lingual messages
* Made more than 20 small changes and interface corrections
Test only Version 3.36+
Released: December 10, 2012
New features:
* Added a limited distance between the catamaran hulls in the calculation of the resistance
* Fixed calculation Kdt in method Holtrop-84/88
* Added import the results of calculation of resistance for propeller elements calculation with setted engine (without 3D model making)
* Added output of calculation results propeller and engine file Propres.dat
* Added import calculation results propeller and engine propulsion calculation chart
* Added import calculation results propeller and engine into account acceleration, braking and reversing
*Made more than 20 small changes and interface corrections
Test only Version 3.35+
Released: November 12, 2012
New features:
* Fixed an error in the calculation of the resistance for hard-chine catamarans
* Fixed calculation cross curves for keel boats, etc.
* Fixed calculation of the minimum freeboard for keel boats, etc.
* Allocated methods of calculating the resistance of high-speed round bilge ships in a separate group
* Allocated methods of calculating the resistance of catamarans and trimarans in a separate group
* Changed the format of the data in the file weight distribution (Weights.txt), added start and end x-coordinates of facets
* Added more than 100 new multi-lingual messages
* Made more than 20 small changes and fixes for GUI
Test only Version 3.33+
Released July 18, 2012
New features:
* Added a calculation of weight distribution (Weights.txt) to calculate the strength of
* Added a deadrise angle in the Clement-Poup method
* Added the output of the angle of trim in Bunkov and Radojcic methods
* Added calculation of resistance for a small displacement vessels method Ridgeley-Nevitt-1967 and UBC-1993
* Combined three methods of calculating the towing resistance of small displacement vessels in one group
* Added a graphical comparison of the resistances of three methods for small displacement vessels
* Added Chinese Language (Not tested)
* It's added 47 new multilanguage messages
* It's made more than 30 small changes and interface corrections
Test only Version 3.32 +
Released May 20, 2012
New features:
* Added to the calculation of the planing ships on the Savitsky output parameters for the design speed planing and draft
* Fixed a bug in output of distances between selected points
* Increased the maximum number of stations and waterlines in the calculation of the Bonjean scale and SACs to 100.
* Added speed limits for the calculation methods for the planing ships Radojcic, Robinson and Compton.
* Recompiled computational modules for compatibility with Windows 7 (x64) (Radojcic, Robinson and Compton methods)
Added on / off recording the results of the calculation of a family of SAC (SACs.txt) and Bonjean scale (Bonjean.txt) in files (off by default).
* Added output to a file of stern's coordinates (Sterns.txt)
* It's added 2 new multilanguage messages
* It's made more than 40 small changes and interface corrections
Release Version 3.3+
Released January 25, 2012
New features:
* Applied a new algorithm for model balance
* Added calculation of derivation moment and the increment of the trim angle
* Fixed calculation of coefficients of completeness for keel yachts in the calculation of hydrostatic curves
* Added a calculation method for round bilge highspeed ships Radojcic-1985 series (65 B)
* Added output limits the applicability of Compton, Robinson and Radojcic
* Added a round bilge shapes influence for highspeed ships by Compton, Robinson methods
* It's added 2 new multilanguage messages
* It's made more than 40 small changes and interface corrections
Test only Version 3.29 +
Released January 10, 2011
New features:
* Fixed calculation of the hydrostatics coefficients for yacht with a keel and hull with a dome
* Added calculation of initial stability in a moving coordinate system (with Zmin <> 0)
* Added calculation of planing ships by the method of Compton (Compton-1986) for the displacement and semiplaning regimes
* Added calculation hard chined planing ships by the method of Robinson (Wolfson-1999)
* Added a calculation for hard chined planing ships by Radojcic-1985's method (62 series TMB)
* It's added 20 new multilanguage messages
* It's made more than 10 small changes and interface corrections
Test only Version 3.28 +
Released December 25, 2011
New features:
* Added saving of data for calculating the aerodynamic characteristics and stability in the course (in FBM file)
* Added the output length of the broken line and the distance between its end points, if you select 5 or more control points.
* Added calculation of aerodynamic forces and yaw moment without drift
* It's added 10 new multilanguage messages
* It's made more than 10 small changes and interface corrections
Test only Version 3.27 +
Released December 15, 2011
New features:
* Added a record-bulb keel fairing below the line for warships in the calculations on how to Fung-Leibman 1995
and Hotrop-1984(88)
* Added a calculation of the aerodynamic characteristics without creating a model ship
* Fixed calculation of the aerodynamic characteristics of the module by Isherwood (now compatible with Win 7 (x64))
* It's added 2 new multilanguage messages
* It's made more than 10 small changes and interface corrections
Test only Version 3.26 +
Released November 20, 2011
New features:
* Inserted check for the minimum design speed in the calculation of the resistance by the method of Clement-Blount
* Significantly expanded the range of acceptable speed and power in the calculation of the propeller
* Added calculation Cwp and ie on statistical formulas to calculate the resistance by the method of Fung-Leibman (without a model)
* Fixed output window, insert a set of points
* Recompiled computational modules in \Exec directory for compatibility with Windows 7(x64)
* It's made more than 20 small changes and interface corrections
Test only Version 3.24 +
Released August 26, 2011
New features:
* Tunnel contours of hull in hydrostatics calculation Is added
* Import of calculated speed, resistance and diameter to calculation optimum propeller task Is added
* Fixed bug of calculation of a angle between lines on selected to three and four points
* Fixed bug at resistance calculation on Fung-Lejbman at the task of small speeds
* Calculation of optimum characteristics of hull according to Bunkov Is added for speedboats
* Added SAC and Bonjan scale calculation and output in SAC.txt and Bonjan.txt files
* It's added 7 new multilanguage messages
* It's made more than 10 small changes and interface corrections
Test only Version 3.23+
Released July 6, 2011
New features:
* Fixed bug of geometry output in format *.GF for imperial system units
* Added in stability calculation an accuracy range (to 1 % from set deposits) at check of equality Zmin=0
* The task of weight and coordinates of the center of weights manually (while it is reserved) Is disconnected in properties of layers
* The output of results of calculation of stability Is added at the press on the printer and in TXT a file
* Calculation and a output of optimum parameters of the planing ships for maximal speed (on M.Bunkov) Is added
* Added 6 new multilanguage messages
* It's made more than 10 little changes and corrections for interface
Test only Version 3.22+
Released May 24, 2011
New features:
* Fixed bug with display CoG ship
* Added check in the calculation of the stability equation Zmin = 0
* Added displaying the distance between two points and the angles between the received segment and the axes
* Added displaying the distance between the endpoints and the angle between the sides (1-2 and 2-3)
* Added a conclusion of the angle between two segments (1-2 and 3-4) and the distance between 1 and 4 selected points
* Fixed a bug in the calculation of the resistance by the method of Mercier-Savitsky
* Added input and accounting components of the propulsive efficiency in the preliminary calculation of propeller series B
* Added a choice of type of propulsor and the interaction coefficients in the calculation of planing ships
* Added 18 new multilanguage messages
* It's made more than 50 little changes and corrections for interface
Test only Version 3.21+
Released April 4, 2011
New features:
* Added the calculation of allowable wind speed and determination of level navigation on the GIMS (Russia)
* Fixed the output coordinates of the CG in the rudder and keel wizard.
* Added the calculation and display the distance between the two control points (Developed by Yatsenko D.V., Kremenchug, Ukraine) * Added a stability calculation for undecked vessels
* It is made more than 10 small changes and interface corrections
Release Version 3.2+
Released February 23, 2011
New features:
* The conclusion of the table of results for a series 19 by OST Is corrected
* Selection of all leakpoints Is added
* Immersion deck angle Is added in calculation of stability
* Navigation region influence in calculation of amplitude of rolling and the account of length of a vessel in stability calculation Is added
* Accuracy of weather criterion calculation under IMO A.749 Is raised
* It is made more than 20 small changes and interface corrections
Test only Version 3.19+
Released February 10, 2011
New features:
* Added calculation of weather criterion under the Register of Russia of 2010 and other parameters under requirements IMO A.749
* Display of a ship CoG position if weight loading is set is added
* More faster algorithm of automatic model moving with the set weight loading Is applied.
* Added 18 new multilanguage messages
* It's made more than 30 little changes and corrections for interface
Test only Version 3.18+
Released January 10, 2011
New features:
* Some criteries of stability on GIMS Is added
* It's added heeling and triming models (mirrored and to disconnect symmetry in properties of layers for this)
* It's added step-by-step automatic balance models with the set weight loading.
* Added 28 new multilanguage messages
* It's made more than 30 little changes and corrections for interface
Test only Version 3.17+
Released December 10, 2010
New features:
* The graphic output and text output of the area wind center is added.
* The text output of results of calculation of stability is added.
* Calculation of the minimum surface board is added.
* Inclusion of automatic vertical moving of model to baseline is added (by default disconnected)
* Speed of import of VRML files a minimum three times is increased
* At replacement of boundary edges in area of negative ordinates automatic zeroing of ordinates is made.
* Added 5 new multilanguage messages
* It's made more than 40 little changes and corrections for interface
Test only Version 3.16+
Released November 10, 2010
New features:
* Added automatic data input (number and diameter of propeller) in resistance calculation by Hollenbach,
van Oortmerssen and Fung-Leibman methods
* Added input data valid domain in acceleration, free and active brake of ships calcs
* Added vietnamese language .ini file (translated by Le Quoc Van)
* The number of speeds to 10 in calculation on a method of Holtrop-1984(88) is increased
* Syntactic errors in some *.ini files are rectified
* It's made more than 50 little changes and corrections for interface
Test only Version 3.15+
Released September 28, 2010
New features:
* Increase number of velocities (10) in OCT methods and other
* Added hard-chine catamarans resistance calculation (Nser=19) by regression method using
* Added some input parameters for Fung-Leibman method
* Added 10 new multilanguage messages
* It's made more than 20 little changes and corrections for interface
Test only Version 3.14+
Released July 24, 2010
New features:
* Accuracy made 0.1 mm for export geometry into Michlet
* Added calculation some parameters of propeller (series B) in open water
* Manuals (when click Help button) are started in any projects directory
* Added 7 new multilanguage messages
Test only Version 3.13+
Released April 20, 2010
New features:
* Added calculation power and resistance of naval and transom stern ships by Fung-Leibman 1995
* Added calculation power and resistance of planing ships by Clement-Poup 1961 and
Clement-Blount 1963. This is software made by Le Cuok Van (Vietnam).
* Added calculation power and resistance of pre-planing and planing ships by M.Bunkov method
* Added transom area influence in calculation by Mercier-Savitsky method
* Added 105 new multilanguage messages
* It's made more than 30 little changes and corrections for interface
Test only Version 3.12+
Released February 10, 2010
New features:
* Added data results valid domain for Hamilton WaterJet calcs
* Changed import data in stability calculation in any coordinate systems
* Added wake and thrust ratio formulaes in function of ship type, propellers number and KDE
* Changed input and import data for Ke calculation
* Fixed bug in metacentric height calculation for one layer model
* Added changings of hydrostatic parameters calculation for catamarans
* Added 5 new multilanguage messages
* It's made more than 10 little changes and corrections for interface
Test only Version 3.11+
Released December 30, 2009
New features:
* Added calculation of added masses riverships by NIEWT method
* Added power prediction waterjet for planing ships
* Accuracy of bulbous characteristics import from model is raised
* Check of results of calculations of resistance by OCT is added, etc.
* It's made more than 30 little changes and corrections for interface
Release Version 3.1+
Released December 1, 2009
New features:
* Added into Mercier-Savitsky method graphics output 15 points
* Added half entrance angle by Holtrop-84 formulae calculation in van Oortmerssen's method
* Added 13 new multilanguage messages
* It's made more than 20 little changes and corrections for interface
Test only Version 3.09+
Released November 2, 2009
New features:
* Added calculation power and resistance of semi-planing ships by Mercier-Savitsky method
* Added calculation power and resistance of small ships by van Oortmerssen's method (1971)
* Added influence shaft of propeller data for planing ships in Savitsky method calcs
* Added nonsymmetrical layers
* Added leak points under DWL model test in hydrostatics calcs
* Added 5 formulaes for wetted surface area calculation
* Added 142 new multilanguage messages
* It's made more than 40 little changes and corrections for interface
Test only Version 3.08+
Released September 30, 2009
New features:
* Added import interaction coefficients (Wt and t) in propeller tasks from resistance calcs
* Added 4 types of ships in aerodynamics characteristics calculation (by OIEMF data)
* Added graphics output results by Savitsky method calculation
* Changed output data results format in 8 tasks (for report's print)
* Fixed bug in stability calcs
* Added 5 new multilanguage messages
* It's made more than 40 little changes and corrections for interface
Test only Version 3.07+
Released April 28, 2009
New features:
* Added calculation of planing regime by D.Savitsky method
* Added calculation transverse wind area and distance from DWL to centroid
* Made import bulb area and hb into Holtrop method
* Made import wind area and distance from DWL to centroid into aerodynamics characteristics calculation
* Added 2 new multilanguage messages
Test only Version 3.06+
Released March 25, 2009
New features:
* Added calculation lateral wind area and distance from DWL to centroid
* Added calculation of Dinamic Stability Diagram (DSD)
* Made import lateral wind area and distance from DWL to centroid into DSD calculation
* Made import displacement and Z of CoG into DSD calculation
* Added calculation Weather Criteria K (by Russian Registry)
* Added calculation power prediction of planing ships by D.Savitsky method
* Added 20 new multilanguage messages
* It's made more than 30 little changes and corrections for interface
Test only Version 3.05+
Released February 01, 2009
New features:
* Made geometry of hull export with Part file into other programs (Freeship 2.6 and higher)
* Added bulb-keel mass calculation
* Added control input data for MPP-1.3 program
* Added 6 new multilanguage messages
* It's made more than 10 little changes and corrections for interface
Test only Version 3.04+
Released December 25, 2008
New features:
* Made multilanguage results output into program Holtrop-84 (Powerprd.exe)
* Made multilanguage results output into program Ishercof.exe
* Made multilanguage results output into program PPP (Propol.exe)
* Made multilanguage results output into program POP (PropPred.exe)
* Added formulaes for calculation added masses coefficients of ship hull
* Added more accuracy calculation of bulbous parameters
* Added 114 new multilanguage messages
* It's made more than 20 little changes and corrections for interface
Test only Version 3.03+
Released December 01, 2008
New features:
* Added program Ishercof.exe for wind coefficients of a merchant ship calculation
* Increased output points for propeller (B series) characteristics calculation
* Added 66 new multilanguage messages
* It's made more than 10 little changes and corrections for interface
Test only Version 3.02+
Released November 15, 2008
New features:
* Added program Propol.exe of B-Screw Series Propeller characteristics of open water calculation
* Increased input datas valid domain for big displacement ships
* Added 18 new multilanguage messages
* It's made more than 40 little changes and corrections for interface
Test only Version 3.01+
Released October 20, 2008
New features:
* Added waiting result time of added masses calculation for slowly computers
* Added added masses of equivalence ellipsoid calculation
* Fixed some bugs of added masses result output
* Added into calculation by Holtrop-88 import half angle Ie from model
* Added calculation resistance for displacement catamarans (Nser=15)
* All .EXE files are moved into subdirectory \Exec
* Fixed bug with started calculation by Delft method after save result in .fbm file
* Added 2 new multilanguage messages
* It's made more than 10 little changes and corrections for interface
Release Version 3.0+
Released September 10, 2008
New features:
* Changed data import for yachts with keel in Delft method
* Added diagnostics input data for Hollenbach method (w/o model)
* Added table of ship parameters for Hollenbach method into Help
* Changed format output results data in Hollenbh.exe (v1.03)
* Changed ETAh calculation by Holtrop formula for nearly value Ae/Ao of propeller's diagram
* Added 20 new multilanguage messages
* It's made more than 20 little changes and corrections for interface
Test only Version 2.98+
Released July 30, 2008
New features:
* Added control input data and calculation added masses
* Added translation on Russian and Ukrainian for MPP program help
* Changed residual resistance calculation by Kaper in different system units
* Changed density calculation in imperial system units for planing ships
* Added imperial system units into Delft, Kaper and Holtrop method calcs
* Fixed bug for optimal R_t_min by holtrop method
* Added more 90 new multilanguage messages
* Added bulb wizard (Developed by Yatsenko D.V., Kremenchug, Ukraine)
* It's made more than 60 little changes and corrections for interface
Test only Version 2.97+
Released July 10, 2008
New features:
* Added conrtol input data for bulb in Holtrop method calcs resistance
* Added program MPP-1.3 for calculation of maneuverability by linear theory
* Added program HydroNShIp_AddMass v1.0 for inertia characteristics a ship hull calculation
* Added 31 new multilanguage messages
* It's made more than 40 little changes and corrections
Test only Version 2.96+
Released June 10, 2008
New features:
* Added into method Hollenbach-1998 calculation of minimal residual resistance for good optimazed
ship hulls (HydroNShIp_Hollenbach версии v1.02)
* Added output resistance curve into input datas for maneuverability calculation
* Initial speed in brake moving is set estimated speed from resistance prediction calculation
* Added output computing time of maneuver
* Added program PPP-1.8 of resistance and power prediction by method Holtrop-1984
* Added program POP-1.5 of Wageningen B-Screw Series Propeller Preliminary Design
* Added 73 new multilanguage messages
* It's made more than 30 little changes and corrections
Test only Version 2.95+
Released May 19, 2008
New features:
* Added resistance and power prediction Hollenbach's-1998 method for cargo ships
* Added 4 formulaes of wetted area calcs for OCT and other methods
* Added 15 new multilanguage messages
* It's made more than 30 little changes and corrections
Test only Version 2.94+
Released May 5, 2008
New features:
* New version HydroNShIp_RVRS v1.04 is available
* The maneuver time is limited (not more 2 ours)
* Integration method for solving maneuver equation of moving ship is changed
* Added some help diesels data for maneuverability calcs
* Fixed 4 little bugs
* Added 50 new multilanguage messages
* It's made more than 20 little changes and corrections
Test only Version 2.93+
Released April 22, 2008
New features:
* Added calculation appendage and aerodynamics resistance for planning ships
* Added spray strips influence for planning ships
* Added input data control for maneuverability of ship calculation and fixed some bugs
* Added input data control for resistance calcs by OCT methods without hull model
* Added formulas for wake and thrust fraction calcs by Holtrop-1984 method
for bulkcarriers, tankers and ore-carriers
* Added 6 new multilanguage messages
* It's made more than 50 little changes and corrections
Test only Version 2.92+
Released April 10, 2008
New features:
* Added calculation and input some data for ship sinkage (see sample in FREE!ship demo 3+deck+gruz_man.fbm )
* Added import data from model into maneuverability of ship calculation and output some text and graphics results
* Added input data diagnostics for maneuverability of ship calculation
* Added autostart of program for maneuverability of ship calculation RvrsShip.exe now
* Added ended control of maneuver calcs
* Delete output some temporary files
* Added 22 new multilanguage messages
* It's made more than 10 little changes and corrections
Test only Version 2.91+
Released March 31, 2008
New features:
* Added GZ curve calcs for imported from hydrostatics calculation displacement D and CoG Z
* Added maneuverability of ship calculation: acceleration, free and active brake (reverse)
* Added 37 new multilanguage messages
* It's made more than 30 little changes and corrections
Release Version 2.9+
Released March 22, 2008
New features:
* Fixed bug in Holtrop method when Tf=1,5*hb
* Delete commercian code accoding with requirements of GPL 2
Test only Version 2.89+ rc1
Released March 15, 2008
New features:
* Added GZ curve calcs for estimated Z of CoG
* Added diagnostics for Holtrop method resistance calcs
* Added 27 new multilanguage messages
* It's made more than 10 little changes and corrections
Test only Version 2.88+
Released February 28, 2008
New features:
* Added input control Cp in OCT resistance calcs and w/o Linesplan
* Fixed bug for optimal P/D calculation in OCT resistance calcs
* Added input data control for Holtrop-Mennen method
* Added temperature influence on viscosity for imperial units system
* Added temperature and density influence in planing ship resistance calcs
* Fixed bug for water density calcs into imperial units system from metrical and back
* It's made more than 20 little changes and corrections
Test only Version 2.87+
Released February 11, 2008
New features:
* Added resistance and power prediction of planing ships
* Fixed bug is in hydrostatic calcs for ships w/o forward bulb
* Added Note N3 is in hydrostatic calcs
* It's made more than 30 changes and corrections
Test only Version 2.86+
Released January 30, 2008
New features:
* Changed and added a messages into "Project settings", Kaper and Delft methods
* Output now a informatuon window about damaged or absent configuration file Resist.cnf
* Added diagnostica for OCT and other methods resistance calcs
* Coefficient Ke calcs only for estimate speed in OCT methods now
* Added static stability diagram (SSD) calculation
* Added calcs some parameters of SSD (ho,Lmax,Tetao) and information window output, when this values
is outside valid domain by Russian Marine Registry for cargo sea ships
* It's made more than 20 changes and corrections
Test only Version 2.85+
Released December 25, 2007
New features:
* Added calculation of aero- hydrodynamics wing characteristics by Betz-Phedyaevsky theory
* Added calculation of influence type of appendage (rudder or keel) and thickness of profile on
hydrodynamic characteristics
* Set as default beginning data of three speeds for resistance prediction by OCT and other methods
* Information window about non correct using series or method for resistance and power prediction is now.
* The bulb area on FP is in "Design hydrostatics" to calc now with SAC curve using
* Made more better graphic results in calculation propeller for engine selection
* Added input control resistance data in calculation propeller for selected engine
* Renamed Power engine on Specified power into propeller tasks input data (Ps=0,85...0,9*Psn)
* Accuracy of construction of the passport diagram is increased
Test only Version 2.84+
Released December 10, 2007
New features:
* Added subroutines for linear and nonlinear interpolation-extrapolation
* The factor of scale for Ts in the passport diagram is added
* Input of the main engine power is added at calculation of the passport diagram
* Calculation of the of the external restrictive characteristic of main engine
Ps=f(Vs) is added (a diesel engine with a turbo-supercharging) in the passport
diagram task
* Calculation of the characteristic of total propeller's thrust Ts=f(Vs) is added
* Are renamed wing profiles HEЖ on Jouk
* 22 symmetric structures Eppler are added
* 49 symmetric structures GOE, NACA, RAF, WORTMANN and others (total 125) are added
* It's made more than 18 changes and corrections
Test only Version 2.83+
Released October 30, 2007
New features:
* Added a button for start engine selection in propeller task N1
* Added into strength propeller calculation some parameters e/D, dн/D and other as function
by number of diagram
* Added into strength propeller calculation 8 types of metal (brass, bronze, stainless steel and duralumin)
* Added more better diagnostics of input parameters for propellers calculation
* Added manuals FREE!ship v2.6 on french and spain (Castellano) languages with button Help click
* Added spanish ini file
* Synchronized *.ini files
* Made more 10 little changings and fixed some bugs
Test only Version 2.82+
Released October 14, 2007
New features:
* Fixed bug with command UNDO for projects with backgroud images
* Added saving data of resistance calculation by Holtrop in project's file *.fbm
* Added saving data of resistance calculation by OCT and other methods in project's file
* Added saving data of 3 propeller's tasks in *.fbm
* Added calcs Ae/Ao and optimal P/D for propellers series B into all methods
of resistance calcs for selection propeller diagram (w/o highspeed boats).
* Made more 12 little changings and fixed some bugs
Test only Version 2.81+
Released August 28, 2007
New features:
* Translated and added manual FREE!ship v2.6 on Ukrainian
* Included new freeware program for view and edit BDs *.dbf with engines
* Added into BD hydromotors (30) and electromotors (23+74) for submercibles
* Added into BD diesels MAN (Low speed engines - 165 and Medium speed - 66)
* Added calculation pitch ratio P/D for propellers of series B
* Changed calculation additional resistance Са and Сарр for catamarans and trimarans
* Added the resistance and power calcs for river cargo, passenger, cargopassenger ships and river
tugs by methods of NIIWT, GIIWT and LIWT ( 19 ship's prototypes )
* Added the resistance and power calcs for fishing ships by method Yeroshin
for small and medium fishing ships
* Made more 10 little changings
Release Version 2.8+
Released August 20, 2007
New features:
* Delete commercian code and calls from fortlib.dll accoding with requirements of GPL 2
Test only Version 2.78+
Released August 8, 2007
New features:
* Updated links on site FREE!ship Plus and e-mail
* Added 12 body plans of NACA0006...NACA0035
* Added 12 body plans of HEЖ-06...HEЖ-35 (Joukovsky)
* Added three type of ship by Neyman's diagram for resistance calcs
* Added data input in form for calculation of displacement catamaran and triple-hulled
vessel by method Doubrovsky (Nser=14,15)
* Added more better diagnostics of input parameters for resistance calculation
* Fixed some bugs in input data diagnostics for propeller tasks
* Updated Неlр for 16 methods of resistance and power calcs
* Synchronized *.ini files
* Made more 20 little changings
Test only Version 2.77+
Released July 30, 2007
New features:
* Fixed bug in export data for program Michlet (write Lwl into .mlt file)
* Translated and added manual of FREE!ship v2.6 on RUSSIAN
* Added the resistance and power calcs for highspeed round-bilge boats
by diagrams Volodin, Nordstrem, Groot, SSPA, NPL
* Added the resistance and power calcs for highspeed round-bilge boats for
big L/V**0.333 by diagrams of 64 series Teylor's basin
* Released calc of coefficient of exploitation condition Ке for ОСТ and for other methods
* Added more better diagnostics of input parameters for calculation resistance
by data of model's experiment
* Added diagnostics of input data for 7 methods (Nser=5,8,9,10,11,12,13)
* Added Неlр for 14 methods of resistance and power calcs
* Made more 25 little changings
Test only Version 2.76+
Released July 10, 2007
New features:
* Increased number of speed on graphics by OCT calculation (to 10)
* Changed output of Tb
* Added 50 ship's dizels in to BD (xUSSR, Shkoda, Braun-Volf)
* Changed data input form by OCT and added input fields for experimental data Cr=f(Fr)
* Added calculation of wetted area without linesplane by 8 formulas for different
ships and type of hulls
* Added resistance and power prediction by experimental data of model ships
* Added resistance and power prediction by diagrams of Braun (for highspeed vessels)
* Added resistance and power prediction by diagram of Neyman (for tags and trawlers)
* Added resistance and power prediction by method NIEWT(НИИВТ)for river cargo ships
and river-sea cargo vessels
* Made many the little changings
Test only Version 2.75+
Released June 30, 2007
New features:
* Changed approximation accuracy of B series propellers' diagrams
* Made more better diagnostics of input parameters for propeller tasks
* Added 6 propeller's diagrams (from 5 to 10)
* Added resistance and power prediction by method ОСТ 5.0181-75 (1-4 series)
* Added tramslation on English in Help for propeller calcs
* Made many the little changings
Test only Version 2.74+
Released June 11, 2007
New features:
* Released import FEF files from Delftship Pro (hull only)
* Added Help in PDF from Freeship2.6 (English)
* Appendage areas moving to added data panel
* Added sample of calculation resistance, power, propeller and engine for ship of project
"FREE!ship demo 6.fbm" (without graphics and on RUSSIAN now) in PDF format
* Released calc of coefficient of exploitation condition (influence of waves,
wind, depth of water and other)
* Made many the little changings
Test only Version 2.73+
Released May 28, 2007
New features:
* Аdded calculation wetted area S, ratio Ae/Ao and diametr of propeller Dp
by method Holtrop-Mennen
* Added input data form for calc of coefficient of exploitation condition
* Fixed bug in loading of project with background image
* Made many the little changings
Test only Version 2.72+
Released May 15, 2007
New features:
* Adapted resistance calc by Holtrop to propeller tasks
* When exit from program are deleted temporary *.dat files in current directory
* Changed input data diagram for propeller tasks
* Released data testing and import for propeller task with selected engine
* Added selection diesels from BD (MAN, Pilstic, Zultzer and other)
* Made many the little changings
Test only Version 2.71+
Released May 11, 2007
New features:
* Changed the formula for calc cross curves
* Added testing calc designed propeller on cavitation and on general strong
* Made many the little changings
Release Version 2.7+
Released April 6, 2007
New features:
* Added input data forms for 3 propeller's tasks
* Added calculation propeller for selection main engine
* Added "Help" for propeller calculation
* Made many the little changings
* Translated on Ukrainian language .ini file