This file is indexed.

/usr/share/doc/nsis/Docs/AppendixF.html is in nsis-doc 2.46-7.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns='http://www.w3.org/1999/xhtml'>

<head>
<title>Changelog and Release Notes</title>
<meta name="generator" content="Halibut version 1.0 (NSIS Custom Build) xhtml-backend" />
<link rel="stylesheet" href="style.css" type='text/css' />
</head>

<body>
<p><a href='AppendixE.html'>Previous</a> | <a href='Contents.html'>Contents</a> | <a href='AppendixG.html'>Next</a></p>
<ul>
<li><a class="btitle" href="AppendixF.html#F"><b>Appendix F: </b>Changelog and Release Notes</a></li>
<ul>
<li><a href="AppendixF.html#F.1">2.46</a></li>
<ul>
<li><a href="AppendixF.html#F.1.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.2">2.45</a></li>
<ul>
<li><a href="AppendixF.html#F.2.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.2.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.3">2.44</a></li>
<ul>
<li><a href="AppendixF.html#F.3.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.4">2.43</a></li>
<ul>
<li><a href="AppendixF.html#F.4.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.4.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.5">2.42</a></li>
<ul>
<li><a href="AppendixF.html#F.5.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.5.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.6">2.41</a></li>
<ul>
<li><a href="AppendixF.html#F.6.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.7">2.40</a></li>
<ul>
<li><a href="AppendixF.html#F.7.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.8">2.39</a></li>
<ul>
<li><a href="AppendixF.html#F.8.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.9">2.38</a></li>
<ul>
<li><a href="AppendixF.html#F.9.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.10">2.37</a></li>
<ul>
<li><a href="AppendixF.html#F.10.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.11">2.36</a></li>
<ul>
<li><a href="AppendixF.html#F.11.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.11.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.12">2.35</a></li>
<ul>
<li><a href="AppendixF.html#F.12.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.13">2.34</a></li>
<ul>
<li><a href="AppendixF.html#F.13.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.13.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.14">2.33</a></li>
<ul>
<li><a href="AppendixF.html#F.14.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.14.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.15">2.32</a></li>
<ul>
<li><a href="AppendixF.html#F.15.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.15.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.16">2.31</a></li>
<ul>
<li><a href="AppendixF.html#F.16.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.16.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.17">2.30</a></li>
<ul>
<li><a href="AppendixF.html#F.17.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.17.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.18">2.29</a></li>
<ul>
<li><a href="AppendixF.html#F.18.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.18.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.19">2.28</a></li>
<ul>
<li><a href="AppendixF.html#F.19.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.20">2.27</a></li>
<ul>
<li><a href="AppendixF.html#F.20.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.20.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.21">2.26</a></li>
<ul>
<li><a href="AppendixF.html#F.21.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.21.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.22">2.25</a></li>
<ul>
<li><a href="AppendixF.html#F.22.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.23">2.24</a></li>
<ul>
<li><a href="AppendixF.html#F.23.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.24">2.23</a></li>
<ul>
<li><a href="AppendixF.html#F.24.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.25">2.22</a></li>
<ul>
<li><a href="AppendixF.html#F.25.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.25.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.26">2.21</a></li>
<ul>
<li><a href="AppendixF.html#F.26.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.27">2.20</a></li>
<ul>
<li><a href="AppendixF.html#F.27.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.28">2.19</a></li>
<ul>
<li><a href="AppendixF.html#F.28.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.29">2.18</a></li>
<ul>
<li><a href="AppendixF.html#F.29.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.30">2.17</a></li>
<ul>
<li><a href="AppendixF.html#F.30.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.31">2.16</a></li>
<ul>
<li><a href="AppendixF.html#F.31.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.31.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.32">2.15</a></li>
<ul>
<li><a href="AppendixF.html#F.32.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.33">2.14</a></li>
<ul>
<li><a href="AppendixF.html#F.33.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.33.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.34">2.13</a></li>
<ul>
<li><a href="AppendixF.html#F.34.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.34.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.35">2.12</a></li>
<ul>
<li><a href="AppendixF.html#F.35.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.36">2.11</a></li>
<ul>
<li><a href="AppendixF.html#F.36.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.36.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.37">2.10</a></li>
<ul>
<li><a href="AppendixF.html#F.37.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.38">2.09</a></li>
<ul>
<li><a href="AppendixF.html#F.38.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.39">2.08</a></li>
<ul>
<li><a href="AppendixF.html#F.39.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.39.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.40">2.07</a></li>
<ul>
<li><a href="AppendixF.html#F.40.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.40.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.41">2.06</a></li>
<ul>
<li><a href="AppendixF.html#F.41.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.42">2.05</a></li>
<ul>
<li><a href="AppendixF.html#F.42.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.42.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.43">2.04</a></li>
<ul>
<li><a href="AppendixF.html#F.43.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.44">2.03</a></li>
<ul>
<li><a href="AppendixF.html#F.44.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.44.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.45">2.02</a></li>
<ul>
<li><a href="AppendixF.html#F.45.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.46">2.01</a></li>
<ul>
<li><a href="AppendixF.html#F.46.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.46.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.47">2.0</a></li>
<ul>
<li><a href="AppendixF.html#F.47.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.47.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.48">2.0 Release Candidate 4</a></li>
<ul>
<li><a href="AppendixF.html#F.48.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.49">2.0 Release Candidate 3</a></li>
<ul>
<li><a href="AppendixF.html#F.49.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.50">2.0 Release Candidate 2</a></li>
<ul>
<li><a href="AppendixF.html#F.50.1">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.51">2.0 Release Candidate 1</a></li>
<ul>
<li><a href="AppendixF.html#F.51.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.51.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.52">2.0 Beta 4</a></li>
<ul>
<li><a href="AppendixF.html#F.52.1">Release Notes</a></li>
<li><a href="AppendixF.html#F.52.2">Changelog</a></li>
</ul>
<li><a href="AppendixF.html#F.53">2.0 Beta 3</a></li>
<li><a href="AppendixF.html#F.54">2.0 Beta 2</a></li>
<li><a href="AppendixF.html#F.55">2.0 Beta 1</a></li>
<li><a href="AppendixF.html#F.56">2.0 Beta 0</a></li>
<li><a href="AppendixF.html#F.57">2.0 Alpha 7</a></li>
<li><a href="AppendixF.html#F.58">2.0 Alpha 6</a></li>
<li><a href="AppendixF.html#F.59">2.0 Alpha 5</a></li>
<li><a href="AppendixF.html#F.60">2.0 Alpha 4</a></li>
<li><a href="AppendixF.html#F.61">2.0 Alpha 3</a></li>
<li><a href="AppendixF.html#F.62">2.0 Alpha 2</a></li>
<li><a href="AppendixF.html#F.63">2.0 Alpha 1</a></li>
<li><a href="AppendixF.html#F.64">2.0 Alpha 0</a></li>
<li><a href="AppendixF.html#F.65">Older Versions</a></li>
</ul>
</ul>
<a name="F"></a><h1>Appendix F: Changelog and Release Notes</h1>
<a name="F.1"></a><h2>F.1 2.46</h2>

<p>Released on December 6th, 2009</p>
<a name="F.1.1"></a><h3>F.1.1 Changelog</h3>
<a name="F.1.1.1"></a><h4>F.1.1.1 Minor Changes</h4>
<ul>
<li>Fixed <a href="Chapter5.html#5.4.13">!searchparse</a> (<a href="http://sourceforge.net/support/tracker.php?aid=2803622">bug #2803622</a>)</li><li>Fixed Vista error message when canceling uninstaller (<a href="http://sourceforge.net/support/tracker.php?aid=2803097">bug #2803097</a>)</li><li>Resolve warning for LogicLib's endless Do..Loop (<a href="http://sourceforge.net/support/tracker.php?aid=2849872">bug #2849872</a>)</li><li><a href="../Docs/StartMenu/Readme.txt">StartMenu</a>: fixed random number prefixes when clicking on an empty spot (<a href="http://sourceforge.net/support/tracker.php?aid=2810188">bug #2810188</a>)</li><li>Updates to NSIS.pas for plug-in development (<a href="http://sourceforge.net/support/tracker.php?aid=2802794">patch #2802794</a>)</li></ul>
<a name="F.1.1.2"></a><h4>F.1.1.2 Translations</h4>
<ul>
<li>PortugueseBR typo (<a href="http://sourceforge.net/support/tracker.php?aid=2826598">patch #2826598</a>)</li><li>Removed double spaces in Italian (<a href="http://sourceforge.net/support/tracker.php?aid=2873598">bug #2873598</a>)</li></ul>
<a name="F.1.1.3"></a><h4>F.1.1.3 Build System</h4>
<ul>
<li>Fixed mingw builds of <a href="../Docs/Math/Math.txt.gz">Math</a> plug-in (<a href="http://sourceforge.net/support/tracker.php?aid=2835731">patch #2835731</a>)</li></ul>
<a name="F.2"></a><h2>F.2 2.45</h2>

<p>Released on June 6th, 2009</p>
<a name="F.2.1"></a><h3>F.2.1 Release Notes</h3>
<ul>
<li>Support for Microsoft's upcoming release of Windows 7 has been added based on RC1 testing and documentation. Please report any related issues and don't forget to use <a href="Chapter4.html#4.8.1.32">RequestExecutionLevel</a>.</li></ul>
<a name="F.2.2"></a><h3>F.2.2 Changelog</h3>
<a name="F.2.2.1"></a><h4>F.2.2.1 Major Changes</h4>
<ul>
<li>Added support for Windows 7 installers - use <a href="Chapter4.html#4.8.1.32">RequestExecutionLevel</a>, just like with Vista (<a href="http://sourceforge.net/support/tracker.php?aid=2725883">bug #2725883</a>)</li><li>Added WinVer.nsh Windows 7 and Windows 2008 R2 support</li><li>Installers now identify as Terminal Services aware (IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE) so $WINDIR will no longer be under the user's profile when installing on Terminal Services</li><li>Less UAC annoyance in Add/Remove control panel (<a href="http://sourceforge.net/support/tracker.php?aid=2697027">bug #2697027</a>)</li></ul>
<a name="F.2.2.2"></a><h4>F.2.2.2 Minor Changes</h4>
<ul>
<li>Added wildcard and /nonfatal suppport for <a href="Chapter5.html#5.1.6">!delfile</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1505425">RFE #1505425</a>)</li><li>Fixed <a href="Chapter5.html#5.4.13">!searchparse</a> (<a href="http://sourceforge.net/support/tracker.php?aid=2680110">bug #2680110</a>)</li><li>Fixed input validation for <a href="Chapter4.html#4.9.14.2">CreateFont</a> (<a href="http://sourceforge.net/support/tracker.php?aid=2801024">bug #2801024</a>)</li><li>Fixed NSIS Menu handling of working directory (<a href="http://sourceforge.net/support/tracker.php?aid=2781948">bug #2781948</a>)</li><li>Fixed Vista issues with shell folders ($DOCUMENTS, $PROFILE, etc.) on root directories (<a href="http://sourceforge.net/support/tracker.php?aid=2138075">bug #2138075</a>)</li><li>Minor documentation improvements (including <a href="http://sourceforge.net/support/tracker.php?aid=2705878">bug #2705878</a>, <a href="http://sourceforge.net/support/tracker.php?aid=2606525">bug #2606525</a>)</li><li>Use SW_SHOWDEFAULT for <a href="Chapter4.html#4.9.1.3">ExecShell</a> by default (<a href="http://sourceforge.net/support/tracker.php?aid=2796189">bug #2796189</a>)</li></ul>
<a name="F.2.2.3"></a><h4>F.2.2.3 Modern UI</h4>
<ul>
<li>Call finish page show function only after the page is fully initialized (<a href="http://sourceforge.net/support/tracker.php?aid=2720968">bug #2720968</a>)</li><li>Fixed translation of uninstaller directory page (<a href="http://sourceforge.net/support/tracker.php?aid=2690112">bug #2690112</a>)</li><li>Fixed installation type text position in components page (<a href="http://sourceforge.net/support/tracker.php?aid=2801317">patch #2801317</a>)</li><li>Fixed missing MUI_INNERTEXT_COMPONENTS_DESCRIPTION_TITLE (<a href="http://sourceforge.net/support/tracker.php?aid=2788620">bug #2788620</a>)</li></ul>
<a name="F.2.2.4"></a><h4>F.2.2.4 Translations</h4>
<ul>
<li>Updated Indonesian (<a href="http://sourceforge.net/support/tracker.php?aid=2790571">patch #2790571</a>)</li><li>Updated Portuguese BR (<a href="http://sourceforge.net/support/tracker.php?aid=2642542">patch #2642542</a>)</li></ul>
<a name="F.2.2.5"></a><h4>F.2.2.5 Build System</h4>
<ul>
<li>Fixed some GCC warnings</li></ul>
<a name="F.3"></a><h2>F.3 2.44</h2>

<p>Released on February 21st, 2009</p>
<a name="F.3.1"></a><h3>F.3.1 Changelog</h3>
<a name="F.3.1.1"></a><h4>F.3.1.1 Major Changes</h4>
<ul>
<li>Fixed a bug introduced in 2.43 causing script build issues with some icons (<a href="http://sourceforge.net/support/tracker.php?aid=2572035">bug #2572035</a>)</li></ul>
<a name="F.3.1.2"></a><h4>F.3.1.2 Minor Changes</h4>
<ul>
<li>Fixed nsDialogs CreateTimer documentation (<a href="http://sourceforge.net/support/tracker.php?aid=2595565">bug #2595565</a>)</li><li>Global labels didn't work when declared in unused functions (<a href="http://sourceforge.net/support/tracker.php?aid=2593369">bug #2593369</a>)</li></ul>
<a name="F.4"></a><h2>F.4 2.43</h2>

<p>Released on February 5th, 2009</p>
<a name="F.4.1"></a><h3>F.4.1 Release Notes</h3>
<ul>
<li>A few minor changes were made to the new plug-in API that break backward compatibility. Header and library paths were changed and RegisterPluginCallback has changed its return value.</li></ul>
<a name="F.4.2"></a><h3>F.4.2 Changelog</h3>
<a name="F.4.2.1"></a><h4>F.4.2.1 Minor Changes</h4>
<ul>
<li>Added WinCore.nsh, WinDef.nsh, WinError.nsh, WinNT.nsh and WinUser.nsh for more useful Windows definitions</li><li>Fixed a crash caused by <a href="Chapter5.html#5.1.10">!packhdr</a> compressing resources (<a href="http://sourceforge.net/support/tracker.php?aid=2533431">bug #2533431</a>)</li><li>Minor documentation improvements (including <a href="http://sourceforge.net/support/tracker.php?aid=2564005">bug #2564005</a>)</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2</a>: Fixed MUI_DIRECTORYPAGE_BGCOLOR (<a href="http://sourceforge.net/support/tracker.php?aid=2494528">bug #2494528</a>)</li></ul>
<a name="F.4.2.2"></a><h4>F.4.2.2 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/Banner/Readme.txt">Banner</a>: Fixed installer showing on the background when Banner was used in .onInit</li><li><a href="../Docs/makensisw/Readme.txt">MakeNSISW</a>: Added Ctrl+K hotkey for build cancelation (<a href="http://sourceforge.net/support/tracker.php?aid=2557392">RFE #2557392</a>)</li><li><a href="../Docs/nsDialogs/Readme.html">nsDialogs</a>: Added NSD_SetIcon (<a href="http://sourceforge.net/support/tracker.php?aid=2500960">patch #2500960</a>)</li></ul>
<a name="F.4.2.3"></a><h4>F.4.2.3 Translations</h4>
<ul>
<li>Added Esperanto</li><li>Bulgarian fixes</li></ul>
<a name="F.4.2.4"></a><h4>F.4.2.4 Plug-in API</h4>
<ul>
<li>Added VS2008 project files</li><li>Better installation of header and library files under POSIX - see INSTALL file for more information</li><li>Header and library files were moved to a subdirectory named <em>nsis</em> to prevent collisions</li><li><em>RegisterPluginCallback</em> now returns <em>int</em> instead of <em>BOOL</em> for a wider range of error reporting</li></ul>
<a name="F.4.2.5"></a><h4>F.4.2.5 Build System</h4>
<ul>
<li>Added fink's mingw prefixes (<a href="http://sourceforge.net/support/tracker.php?aid=2495138">bug #2495138</a>)</li><li>Fixed BOOL build issue on OS X (<a href="http://sourceforge.net/support/tracker.php?aid=2497290">bug #2497290</a>)</li><li>Fixed iconv dependency detection on OS X (<a href="http://sourceforge.net/support/tracker.php?aid=2494539">bug #2494539</a>)</li><li>Fixed Solaris builds (<a href="http://sourceforge.net/support/tracker.php?aid=2497172">patch #2497172</a>)</li></ul>
<a name="F.5"></a><h2>F.5 2.42</h2>

<p>Released on December 20th, 2008</p>
<a name="F.5.1"></a><h3>F.5.1 Release Notes</h3>
<ul>
<li>Merry Christmas and a happy Hanukkah!</li><li>Plug-in developers should check out the new plug-in API in Examples\Plugin and convert their plug-ins, especially in case they require staying loaded.</li></ul>
<a name="F.5.2"></a><h3>F.5.2 Changelog</h3>
<a name="F.5.2.1"></a><h4>F.5.2.1 Major Changes</h4>
<ul>
<li>Deprecated /NOUNLOAD and SetPluginsUnload to make scripts simpler and safer (<a href="http://sourceforge.net/support/tracker.php?aid=1912699">patch #1912699</a>)</li><li><a href="AppendixE.html#E">Useful header functions</a> no longer require usage declaration and different syntax for uninstaller functions</li><li>Revamped plug-in API now comes in the form of pluginapi.lib, API version information and more common functions (<a href="http://sourceforge.net/support/tracker.php?aid=2359978">patch #2359978</a>)</li></ul>
<a name="F.5.2.2"></a><h4>F.5.2.2 Minor Changes</h4>
<ul>
<li>Added <a href="Chapter5.html#5.4.14">!searchreplace</a> preprocessor command for compiletime text search/replaces</li><li>Added support for <a href="AppendixB.html#B">registration</a> of EXE COM servers (<a href="http://sourceforge.net/support/tracker.php?aid=2315740">RFE #2315740</a>)</li><li>Minor documentation improvements (including <a href="http://sourceforge.net/support/tracker.php?aid=2386821">bug #2386821</a>)</li><li><a href="../Docs/nsDialogs/Readme.html">nsDialogs</a>: Added timer support (<a href="http://sourceforge.net/support/tracker.php?aid=2135855">patch #2135855</a>)</li><li><a href="../Docs/nsDialogs/Readme.html">nsDialogs</a>: Added progress bar support</li><li><a href="/usr/share/nsis/Include/WinVer.nsh">WinVer.nsh</a>: Added IsServer, IsWin2003R2, IsStarterEdition, OSHasMediaCenter and OSHasTabletSupport (patch by Anders)</li><li><a href="/usr/share/nsis/Include/WinVer.nsh">WinVer.nsh</a>: Fixed 95/NT4 ambiguity (<a href="http://sourceforge.net/support/tracker.php?aid=2053642">bug #2053642</a>)</li><li><a href="/usr/share/nsis/Include/WinVer.nsh">WinVer.nsh</a>: Proper Windows XP x64 detection (<a href="http://sourceforge.net/support/tracker.php?aid=2053700">bug #2053700</a>)</li><li><a href="/usr/share/nsis/Include/WinVer.nsh">WinVer.nsh</a>: Windows 2008 detection support (<a href="http://sourceforge.net/support/tracker.php?aid=1949260">RFE #1949260</a>)</li></ul>
<a name="F.5.2.3"></a><h4>F.5.2.3 Translations</h4>
<ul>
<li>Minor English grammar improvements (<a href="http://sourceforge.net/support/tracker.php?aid=2323452">bug #2323452</a>)</li></ul>
<a name="F.5.2.4"></a><h4>F.5.2.4 Build System</h4>
<ul>
<li>Full <a href="../Docs/System/System.html">System</a> compatibility with GCC (<a href="http://sourceforge.net/support/tracker.php?aid=2193442">patch #2193442</a>)</li></ul>
<a name="F.6"></a><h2>F.6 2.41</h2>

<p>Released on November 20th, 2008</p>
<a name="F.6.1"></a><h3>F.6.1 Changelog</h3>
<a name="F.6.1.1"></a><h4>F.6.1.1 Minor Changes</h4>
<ul>
<li>Fixed LangDLL memory leaks for invalid input (<a href="http://sourceforge.net/support/tracker.php?aid=1939573">bug #1939573</a>)</li><li>Fixed uninstaller generation on big-endian systems (<a href="http://sourceforge.net/support/tracker.php?aid=2166401">bug #2166401</a>, <a href="http://sourceforge.net/support/tracker.php?aid=2167958">bug #2167958</a>)</li></ul>
<a name="F.6.1.2"></a><h4>F.6.1.2 Translations</h4>
<ul>
<li>Brazilian Portuguese corrections</li><li>Consistency fixes for Simple Chinese (<a href="http://sourceforge.net/support/tracker.php?aid=2189117">patch #2189117</a>)</li></ul>
<a name="F.6.1.3"></a><h4>F.6.1.3 Build System</h4>
<ul>
<li>Added support for SCons 1.1.0</li><li>Fixed directory and components page text issues on VC8 builds (<a href="http://sourceforge.net/support/tracker.php?aid=1982084">patch #1982084</a>)</li><li>System's Resource.dll now built from source</li></ul>
<a name="F.7"></a><h2>F.7 2.40</h2>

<p>Released on October 10th, 2008</p>
<a name="F.7.1"></a><h3>F.7.1 Changelog</h3>
<a name="F.7.1.1"></a><h4>F.7.1.1 Major Changes</h4>
<ul>
<li>Service pack macros added to WinVer in version 2.39 now work (<a href="http://sourceforge.net/support/tracker.php?aid=2070708">bug #2070708</a>, <a href="http://sourceforge.net/support/tracker.php?aid=2095363">patch #2095363</a>)</li></ul>
<a name="F.7.1.2"></a><h4>F.7.1.2 Minor Changes</h4>
<ul>
<li>Added initial folder selection option for <a href="../Docs/nsDialogs/Readme.html">nsDialogs</a>::SelectFileDialog (<a href="http://sourceforge.net/support/tracker.php?aid=2016003">patch #2016003</a>)</li><li>Fixed <a href="AppendixE.html#E.1.11">GetParameters</a> handling of MBCS characters (<a href="http://sourceforge.net/support/tracker.php?aid=2067946">bug #2067946</a>)</li><li>Fixed incorrect ${NSD_OnBack} documentation (<a href="http://sourceforge.net/support/tracker.php?aid=2059651">bug #2059651</a>)</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2</a>: Set focus to checkboxes on the finish page (<a href="http://sourceforge.net/support/tracker.php?aid=2110357">bug #2110357</a>)</li></ul>
<a name="F.7.1.3"></a><h4>F.7.1.3 Translations</h4>
<ul>
<li>Portuguese corrections (<a href="http://sourceforge.net/support/tracker.php?aid=2086988">bug #2086988</a>)</li><li>Simplified Chinese corrections (<a href="http://sourceforge.net/support/tracker.php?aid=2056906">patch #2056906</a>)</li></ul>
<a name="F.8"></a><h2>F.8 2.39</h2>

<p>Released on August 16th, 2008</p>
<a name="F.8.1"></a><h3>F.8.1 Changelog</h3>
<a name="F.8.1.1"></a><h4>F.8.1.1 Major Changes</h4>
<ul>
<li>Added <a href="Chapter5.html#5.4.1">!define</a> <em>/file</em> and <a href="Chapter5.html#5.4.13">!searchparse</a> (<a href="http://sourceforge.net/support/tracker.php?aid=2016254">patch #2016254</a>)</li><li>Added service pack macros (AtLeastServicePack, IsServicePack, AtMostServicePack) to WinVer.nsh (<a href="http://sourceforge.net/support/tracker.php?aid=2036802">patch #2036802</a>)</li></ul>
<a name="F.8.1.2"></a><h4>F.8.1.2 Minor Changes</h4>
<ul>
<li>Added more <a href="../Docs/nsDialogs/Readme.html">nsDialogs</a> list box handling macros (<a href="http://sourceforge.net/support/tracker.php?aid=2041919">patch #2041919</a>)</li><li>Added Unicode version compatible <a href="../Docs/System/System.html">System</a> string type (<a href="http://sourceforge.net/support/tracker.php?aid=2025721">patch #2025721</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1961307">RFE #1961307</a>)</li><li>Fixed <a href="../Docs/nsDialogs/Readme.html">nsDialogs</a> atom leak (<a href="http://sourceforge.net/support/tracker.php?aid=2053522">bug #2053522</a>)</li><li>Minor documentation improvements</li><li>Show hand cursor for <a href="../Docs/nsDialogs/Readme.html">nsDialogs</a> links (<a href="http://sourceforge.net/support/tracker.php?aid=2004129">patch #2004129</a>)</li></ul>
<a name="F.9"></a><h2>F.9 2.38</h2>

<p>Released on July 12th, 2008</p>
<a name="F.9.1"></a><h3>F.9.1 Changelog</h3>
<a name="F.9.1.1"></a><h4>F.9.1.1 Major Changes</h4>
<ul>
<li>Fixed a bug in nsDialogs that caused it to pollute the stack if callbacks are not set for each control (<a href="http://sourceforge.net/support/tracker.php?aid=2013317">bug #2013317</a>)</li></ul>
<a name="F.9.1.2"></a><h4>F.9.1.2 Minor Changes</h4>
<ul>
<li>Added IfNotThen support for LogicLib (<a href="http://sourceforge.net/support/tracker.php?aid=1990761">patch #1990761</a>)</li><li>Added support for NTFS mounts points on the directory page (<a href="http://sourceforge.net/support/tracker.php?aid=1946112">bug #1946112</a>)</li><li>Fixed branding image control detection on Debian, due to improper identification of static controls (<a href="http://sourceforge.net/support/tracker.php?aid=1951417">bug #1951417</a>)</li><li>Log actual creation of directories and not just failures and final directory (<a href="http://sourceforge.net/support/tracker.php?aid=1992325">patch #1992325</a>)</li><li>Made log close when <em>LogSet off</em> is used (<a href="http://sourceforge.net/support/tracker.php?aid=1986692">patch #1986692</a>)</li><li>Minor documentation improvements (including <a href="http://sourceforge.net/support/tracker.php?aid=1990955">bug #1990955</a>)</li><li><a href="../Docs/MultiUser/Readme.html">MultiUser</a>: Fixed MULTIUSER_INSTALLMODE_INSTDIR handling for the uninstaller</li></ul>
<a name="F.9.1.3"></a><h4>F.9.1.3 Modern UI</h4>
<ul>
<li>Document page leave callback function (<a href="http://sourceforge.net/support/tracker.php?aid=1964719">bug #1964719</a>)</li><li>Fixed MUI_FINISHPAGE_CANCEL_ENABLED</li><li>Fixed wasted variable warnings (<a href="http://sourceforge.net/support/tracker.php?aid=1995024">bug #1995024</a>)</li></ul>
<a name="F.9.1.4"></a><h4>F.9.1.4 Translations</h4>
<ul>
<li>Fixed French translation of MUI_UNTEXT_FINISH_INFO_REBOOT (<a href="http://sourceforge.net/support/tracker.php?aid=1967032">patch #1967032</a>)</li><li>Removed non-ANSI characters from French display name (<a href="http://sourceforge.net/support/tracker.php?aid=1979491">bug #1979491</a>)</li><li>Updated Slovenian (<a href="http://sourceforge.net/support/tracker.php?aid=2014106">patch #2014106</a>)</li></ul>
<a name="F.10"></a><h2>F.10 2.37</h2>

<p>Released on May 3rd, 2008</p>
<a name="F.10.1"></a><h3>F.10.1 Changelog</h3>
<a name="F.10.1.1"></a><h4>F.10.1.1 Major Changes</h4>
<ul>
<li>Fixed a bug introduced in 2.32 that caused blurry icons on Windows versions prior to XP (<a href="http://sourceforge.net/support/tracker.php?aid=1956350">bug #1956350</a>)</li><li>Use $PROGRAMFILES as a default for $PROGRAMFILES64 instead of &quot;C:\Program Files&quot; (<a href="http://sourceforge.net/support/tracker.php?aid=1947702">bug #1947702</a>)</li></ul>
<a name="F.10.1.2"></a><h4>F.10.1.2 Minor Changes</h4>
<ul>
<li>Automatically select language in case there is only one available choice (<a href="http://sourceforge.net/support/tracker.php?aid=1939571">bug #1939571</a>)</li><li><a href="../Docs/MultiUser/Readme.html">MultiUser</a>: Fixed build errors with manual inclusion of StrFunc.nsh</li><li>Support for compression of files up to 2GB (<a href="http://sourceforge.net/support/tracker.php?aid=1948700">patch #1948700</a>)</li></ul>
<a name="F.10.1.3"></a><h4>F.10.1.3 Utilities and Plug-ins</h4>
<ul>
<li>Fixed ${NSD_OnBack} (<a href="http://sourceforge.net/support/tracker.php?aid=1947388">bug #1947388</a>)</li><li>Fixed <a href="../Docs/nsDialogs/Readme.html">nsDialogs</a>::SelectFileDialog return value for user cancelation (<a href="http://sourceforge.net/support/tracker.php?aid=1955803">bug #1955803</a>)</li><li>Fixed possible <a href="../Docs/BgImage/BgImage.txt">BgImage</a> crash when calling BgImage::Destroy more than once (<a href="http://sourceforge.net/support/tracker.php?aid=1951248">patch #1951248</a>)</li><li>Minor documentation improvements</li></ul>
<a name="F.10.1.4"></a><h4>F.10.1.4 Translation</h4>
<ul>
<li>Brazilian Portuguese updates</li><li>Polish updates (<a href="http://sourceforge.net/support/tracker.php?aid=1927421">patch #1927421</a>)</li><li>Slovak updates (<a href="http://sourceforge.net/support/tracker.php?aid=1939669">patch #1939669</a>)</li><li>Spanish updates</li></ul>
<a name="F.10.1.5"></a><h4>F.10.1.5 Build System</h4>
<ul>
<li>SCons requirement upgraded to 0.98</li></ul>
<a name="F.11"></a><h2>F.11 2.36</h2>

<p>Released on March 29th, 2008</p>
<a name="F.11.1"></a><h3>F.11.1 Release Notes</h3>
<ul>
<li>nsDialogs is picking up its pace and offers lots of new macros in this release. Keep the patches and requests coming!</li></ul>
<a name="F.11.2"></a><h3>F.11.2 Changelog</h3>
<a name="F.11.2.1"></a><h4>F.11.2.1 Major Changes</h4>
<ul>
<li><a href="../Docs/nsExec/nsExec.txt">nsExec</a>: Support for x64 disabled redirection (<a href="http://sourceforge.net/support/tracker.php?aid=1778973">RFE #1778973</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1889317">bug #1889317</a>)</li></ul>
<a name="F.11.2.2"></a><h4>F.11.2.2 Modern UI</h4>
<ul>
<li>Added missing MUI_UNFUNCTION_DESCRIPTION_BEGIN and MUI_UNFUNCTION_DESCRIPTION_END</li><li>Fixed start menu page setting the error flag (<a href="http://sourceforge.net/support/tracker.php?aid=1891106">bug #1891106</a>)</li></ul>
<a name="F.11.2.3"></a><h4>F.11.2.3 nsDialogs</h4>
<ul>
<li>NSD_AddStyle and NSD_AddExStyle for easy customization (<a href="http://sourceforge.net/support/tracker.php?aid=1900588">patch #1900588</a>)</li><li>NSD_CB_AddString, NSD_CB_SelectString, NSD_LB_AddString and NSD_LB_SelectString for easier handling of combo and list boxes</li><li>NSD_CreateNumber and NSD_SetTextLimit for limited input fields</li><li>NSD_SetImage, NSD_SetStretchedImage, NSD_ClearImage and NSD_FreeImage for image handling</li><li>NSD_SetState, NSD_GetState, NSD_Check and NSD_Uncheck for handling of check boxes and radio buttons (<a href="http://sourceforge.net/support/tracker.php?aid=1900588">patch #1900588</a>)</li><li>NSD_SetText for easily setting control's text</li><li>OnClick support for labels (<a href="http://sourceforge.net/support/tracker.php?aid=1908732">bug #1908732</a>)</li><li>Support for edit box change notification in combo box</li></ul>
<a name="F.11.2.4"></a><h4>F.11.2.4 Minor Changes</h4>
<ul>
<li>Fixed exception handling of UPX compressed icons (<a href="http://sourceforge.net/support/tracker.php?aid=1896500">bug #1896500</a>)</li><li>Fixed InstallDirRegKey example in bigtest.nsi</li><li>Fixed Memento's documentation to include ${MementoSectionDone}</li><li>Fixed rare decompression error with 0x4001 bytes of compressed data (<a href="http://sourceforge.net/support/tracker.php?aid=1874297">bug #1874297</a>)</li><li>LangFile.nsh: Added LANGFILE_INCLUDE_WITHDEFAULT to load language file with defaults being obtained from a default file. This replaces the LANGFILE_DEFAULT setting and makes it easier to use LangFile.nsh for multiple sets of languages file without having to care about the different LANGFILE_DEFAULT settings.</li><li>Minor documentation improvements (including <a href="http://sourceforge.net/support/tracker.php?aid=1891266">bug #1891266</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1894033">bug #1894033</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1896803">bug #1896803</a>)</li><li><a href="../Docs/MultiUser/Readme.html">MultiUser</a>: Fixed error when a custom installation mode initialization function is used only for the installer</li><li><a href="../Docs/MultiUser/Readme.html">MultiUser</a>: Fixed default installation mode based on registry key (<a href="http://sourceforge.net/support/tracker.php?aid=1913029">bug #1913029</a>)</li><li><a href="../Docs/MultiUser/Readme.html">MultiUser</a>: Fixed no uninstaller handling (MULTIUSER_NOUNINSTALL)</li></ul>
<a name="F.11.2.5"></a><h4>F.11.2.5 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/makensisw/Readme.txt">MakeNSISW</a>: Avoid opening executables with identical folder names when opening script's folder (<a href="http://sourceforge.net/support/tracker.php?aid=1891066">bug #1891066</a>)</li><li><a href="../Docs/nsExec/nsExec.txt">nsExec</a>: Fixed return code handling so 259 won't cause an infinite loop (<a href="http://sourceforge.net/support/tracker.php?aid=1909458">bug #1909458</a>)</li><li><a href="../Docs/VPatch/Readme.html">VPatch</a>: Added MD5 functions (<a href="http://sourceforge.net/support/tracker.php?aid=1900226">RFE #1900226</a>)</li></ul>
<a name="F.11.2.6"></a><h4>F.11.2.6 Translation</h4>
<ul>
<li>Albanian updates (<a href="http://sourceforge.net/support/tracker.php?aid=1919360">patch #1919360</a>)</li><li>French fixes (<a href="http://sourceforge.net/support/tracker.php?aid=1916564">patch #1916564</a>)</li><li>Polish updates (<a href="http://sourceforge.net/support/tracker.php?aid=1894983">patch #1894983</a>)</li></ul>
<a name="F.11.2.7"></a><h4>F.11.2.7 Build System</h4>
<ul>
<li>Fixed build of NSIS Menu with wxGTK (<a href="http://sourceforge.net/support/tracker.php?aid=1900233">bug #1900233</a>)</li><li>Use CRLF for DSW and DSP files to avoid corruption messages</li><li>Various build fixes for GCC 4.3, amd64 and Linux in general</li></ul>
<a name="F.12"></a><h2>F.12 2.35</h2>

<p>Released on February 8th, 2008</p>
<a name="F.12.1"></a><h3>F.12.1 Changelog</h3>
<a name="F.12.1.1"></a><h4>F.12.1.1 Major Changes</h4>
<ul>
<li>Added <a href="../Docs/MultiUser/Readme.html">MultiUser</a> - installer configuration for multi-user Windows environments</li><li>More user friendly corrupted installer message (<a href="http://sourceforge.net/support/tracker.php?aid=1795426">RFE #1795426</a>)</li><li>Switched all examples to Modern UI 2</li></ul>
<a name="F.12.1.2"></a><h4>F.12.1.2 Minor Changes</h4>
<ul>
<li>Fixed uninitialized memory leaking into resources (<a href="http://sourceforge.net/support/tracker.php?aid=1874297">bug #1874297</a>)</li><li>Minor documentation improvements (including <a href="http://sourceforge.net/support/tracker.php?aid=1861941">bug #1861941</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1883917">bug #1883917</a>)</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2</a>: Fit images in welcome/finish page by default and fix support for MUI_(UN)WELCOMEFINISHPAGE_BITMAP_NOSTRETCH (<a href="http://sourceforge.net/support/tracker.php?aid=1875945">bug #1875945</a>)</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2</a>: Fixed default finish page reboot selection (<a href="http://sourceforge.net/support/tracker.php?aid=1864690">bug #1864690</a>)</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2</a>: Fixed MUI_STARTMENU_GETFOLDER (<a href="http://sourceforge.net/support/tracker.php?aid=1864507">bug #1864507</a>)</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2</a>: Fixed unreferenced mui.StartMenuPage.Create warning (<a href="http://sourceforge.net/support/tracker.php?aid=1861944">bug #1861944</a>)</li><li>New simplified code for <a href="AppendixB.html#B.4">installation of VisualBasic 6 runtime</a></li><li>Simplified NSIS Menu providing easier access to all documentation</li></ul>
<a name="F.12.1.3"></a><h4>F.12.1.3 Utilities and Plug-ins</h4>
<ul>
<li>Added keyboard cues support for LINK controls in <a href="../Docs/nsDialogs/Readme.html">nsDialogs</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1871856">patch #1871856</a>)</li><li>Fixed a rare nsDialogs crash on Windows 98 with non-standard builds of nsDialogs (<a href="http://sourceforge.net/support/tracker.php?aid=1889720">bug #1889720</a>)</li></ul>
<a name="F.13"></a><h2>F.13 2.34</h2>

<p>Released on December 24th, 2007</p>
<a name="F.13.1"></a><h3>F.13.1 Release Notes</h3>
<ul>
<li>Thanks to user input on <a href="../Docs/Modern UI 2/Readme.html">Modern UI 2</a>, it is now ready for mass consumption at no better time than the holiday season. The installer for NSIS itself now exploits the wonders of MUI2 and <a href="../Docs/nsDialogs/Readme.html">nsDialogs</a> and so should you.</li></ul>
<a name="F.13.2"></a><h3>F.13.2 Changelog</h3>
<a name="F.13.2.1"></a><h4>F.13.2.1 Major Changes</h4>
<ul>
<li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2</a>: Simpler code, easier to extend and makes use of the faster <a href="../Docs/nsDialogs/Readme.html">nsDialogs</a></li></ul>
<a name="F.13.2.2"></a><h4>F.13.2.2 Minor Changes</h4>
<ul>
<li>Added IfNot support for LogicLib (<a href="http://sourceforge.net/support/tracker.php?aid=1846785">patch #1846785</a>)</li><li>Added some deprecation messages in MUI2 (<a href="http://sourceforge.net/support/tracker.php?aid=1784470">bug #1784470</a>)</li><li>Allow overwrite of LANGFILE_*_NAME defines in new LangFile.nsh (<a href="http://sourceforge.net/support/tracker.php?aid=1848952">bug #1848952</a>)</li><li>Better RTL support in instfiles and components page (<a href="http://sourceforge.net/support/tracker.php?aid=1841573">bug #1841573</a>)</li><li>Don't warn of comments containing line-continuation character when it has no effect (<a href="http://sourceforge.net/support/tracker.php?aid=1701051">bug #1701051</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1686589">RFE #1686589</a>)</li><li>Fixed deletion of files with relative paths, a.k.a the EVE bug (<a href="http://sourceforge.net/support/tracker.php?aid=1851273">bug #1851273</a>)</li><li>Fixed input verification of <a href="Chapter4.html#4.9.13.10">GetCurInstType</a> and <a href="Chapter4.html#4.9.3.9">GetFullPathName</a></li><li>Fixed <a href="AppendixE.html#E.3.2">WordFind</a> handling of MBCS characters (<a href="http://sourceforge.net/support/tracker.php?aid=1852141">bug #1852141</a>)</li><li>Minor documentation improvements (including <a href="http://sourceforge.net/support/tracker.php?aid=1842326">bug #1842326</a>)</li><li>Use CRLF in examples (<a href="http://sourceforge.net/support/tracker.php?aid=1835866">bug #1835866</a>)</li></ul>
<a name="F.13.2.3"></a><h4>F.13.2.3 Utilities and Plug-ins</h4>
<ul>
<li>Added missing stack handling in <a href="../Docs/nsDialogs/Readme.html">nsDialogs</a> examples</li><li>Added NSD_GetState for checkboxes and radio buttons, NSD_SetFocus, NSD_CreatePassword and NSD_CreateDropList (<a href="http://sourceforge.net/support/tracker.php?aid=1848940">patch #1848940</a>)</li><li>Fixed documentation of <a href="../Docs/nsDialogs/Readme.html">nsDialogs</a>::SelectFolderDialog (<a href="http://sourceforge.net/support/tracker.php?aid=1841120">bug #1841120</a>)</li><li>Fixed NSD_CreateComboBox so it'd work like InstallOptions (<a href="http://sourceforge.net/support/tracker.php?aid=1851136">bug #1851136</a>)</li></ul>
<a name="F.13.2.4"></a><h4>F.13.2.4 Translations</h4>
<ul>
<li>Bulgarian updates</li><li>German fixes</li></ul>
<a name="F.13.2.5"></a><h4>F.13.2.5 Build System</h4>
<ul>
<li>Fixed build issues on Mac OS (<a href="http://sourceforge.net/support/tracker.php?aid=1851365">bug #1851365</a>)</li><li>Fixed endianity issues introduced in version 2.32 (<a href="http://sourceforge.net/support/tracker.php?aid=1851365">bug #1851365</a>)</li></ul>
<a name="F.14"></a><h2>F.14 2.33</h2>

<p>Released on November 17th, 2007</p>
<a name="F.14.1"></a><h3>F.14.1 Release Notes</h3>
<ul>
<li>This is a quick fix release for a bug, introduced in 2.32, that prevented the welcome page to display properly on Windows 9x. The problem was caused by the move from CVS to Subversion that messed with the line-breaks format of the INI files.</li></ul>
<a name="F.14.2"></a><h3>F.14.2 Changelog</h3>
<a name="F.14.2.1"></a><h4>F.14.2.1 Major Changes</h4>
<ul>
<li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: Fixed a bug, introduced in 2.32, that caused display problems for the welcome and finish pages on Windows 9x (<a href="http://sourceforge.net/support/tracker.php?aid=1831677">bug #1831677</a>)</li></ul>
<a name="F.14.2.2"></a><h4>F.14.2.2 Minor Changes</h4>
<ul>
<li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: Allow MUI_LANGDLL_ALLLANGUAGES to be defined after insertion of MUI_LANGUAGE macro</li></ul>
<a name="F.14.2.3"></a><h4>F.14.2.3 Utilities and Plug-ins</h4>
<ul>
<li>Made <a href="../Docs/nsExec/nsExec.txt">nsExec</a>'s internal process always exit cleanly to avoid false return values and delays (reported in the <a href="http://forums.winamp.com/showthread.php?threadid=279683">forum</a>)</li><li><a href="../Docs/nsDialogs/Readme.html">nsDialogs</a>: Added OnClick support for static controls</li><li><a href="../Docs/VPatch/Readme.html">VPatch</a>: Fixed VPatchFile macro path handling (<a href="http://sourceforge.net/support/tracker.php?aid=1829540">bug #1829540</a>)</li></ul>
<a name="F.14.2.4"></a><h4>F.14.2.4 Translations</h4>
<ul>
<li>Spanish updates</li></ul>
<a name="F.14.2.5"></a><h4>F.14.2.5 Build System</h4>
<ul>
<li>Separate strip options for win32 and cross-platform binaries</li></ul>
<a name="F.15"></a><h2>F.15 2.32</h2>

<p>Released on November 9th, 2007</p>
<a name="F.15.1"></a><h3>F.15.1 Release Notes</h3>
<ul>
<li>Vista PNG icons are now supported without the need for any special tricks.</li></ul>
<a name="F.15.2"></a><h3>F.15.2 Changelog</h3>
<a name="F.15.2.1"></a><h4>F.15.2.1 Major Changes</h4>
<ul>
<li>Added support for mismatching installer and uninstaller icons</li><li>NSIS source code is now hosted on Subversion instead of CVS</li></ul>
<a name="F.15.2.2"></a><h4>F.15.2.2 Minor Changes</h4>
<ul>
<li>Fixed synchronization that could allow the user to cause extraction errors in rare cases (reported in the <a href="http://forums.winamp.com/showthread.php?s=&threadid=274333">forum</a>)</li><li>Fixed syntax validation of <a href="Chapter4.html#4.2.1.1">Var</a></li><li>Minor documentation improvements (including <a href="http://sourceforge.net/support/tracker.php?aid=1811876">bug #1811876</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1819946">bug #1819946</a>)</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2 beta</a>: Fixed 3-line title on welcome/finish page</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2 beta</a>: Fixed components page description and lock</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2 beta</a>: Fixed default language selection from registry</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2 beta</a>: Fixed MUI_DIRECTORYPAGE_BGCOLOR</li></ul>
<a name="F.15.2.3"></a><h4>F.15.2.3 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/nsDialogs/Readme.html">nsDialogs</a>: Added link support</li></ul>
<a name="F.15.2.4"></a><h4>F.15.2.4 Translations</h4>
<ul>
<li>Bulgarian corrections</li><li>Fixed Japanese and Norwegian Nynorsk MUI line breaks (<a href="http://sourceforge.net/support/tracker.php?aid=1817289">bug #1817289</a>)</li></ul>
<a name="F.15.2.5"></a><h4>F.15.2.5 Build System</h4>
<ul>
<li>Check compiler's <em>-m32</em> flag before the linker's to avoid gcc segfault</li></ul>
<a name="F.16"></a><h2>F.16 2.31</h2>

<p>Released on September 29th, 2007</p>
<a name="F.16.1"></a><h3>F.16.1 Release Notes</h3>
<ul>
<li>Please continue to report any issues and suggestions regarding <a href="../Docs/Modern UI 2/Readme.html">Modern UI 2</a>. Input for the previous version was very helpful in improving MUI2.</li></ul>
<a name="F.16.2"></a><h3>F.16.2 Changelog</h3>
<a name="F.16.2.1"></a><h4>F.16.2.1 Minor Changes</h4>
<ul>
<li>Added BST_* definitions to WinMessages.nsh (<a href="http://sourceforge.net/support/tracker.php?aid=1792422">bug #1792422</a>)</li><li>Added <a href="Chapter4.html#4.9.7.6">SetRegView</a> <em>lastused</em></li><li>Minor documentation improvements</li><li><a href="AppendixB.html#B">Library</a> will now revert registry view settings (<a href="Chapter4.html#4.9.7.6">SetRegView</a>) after it's finished</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: Fixed empty welcome page with Chinese (<a href="http://sourceforge.net/support/tracker.php?aid=1786899">bug #1786899</a>)</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: Fixed finish button text (<a href="http://sourceforge.net/support/tracker.php?aid=1789492">bug #1789492</a>)</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: Fixed uninstaller comportments page text (<a href="http://sourceforge.net/support/tracker.php?aid=1793811">bug #1793811</a>)</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: Fixed unused function warnings</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2 beta</a>: Fixed header bitmap issues, including NOSTRETCH and compilation errors</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2 beta</a>: Fixed language selection dialog</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2 beta</a>: Fixed reboot finish page</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2 beta</a>: Fixed unloading of nsDialogs on finish page</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2 beta</a>: Fixed unused variable warnings</li></ul>
<a name="F.16.2.2"></a><h4>F.16.2.2 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/makensisw/Readme.txt">MakeNSISW</a>: Fixed command line parsing error (<a href="http://sourceforge.net/support/tracker.php?aid=1796053">bug #1796053</a>)</li></ul>
<a name="F.16.2.3"></a><h4>F.16.2.3 Translations</h4>
<ul>
<li>Korean corrections</li><li>Persian improvements (<a href="http://sourceforge.net/support/tracker.php?aid=1776386">patch #1776386</a>)</li><li>Romanian improvements (<a href="http://sourceforge.net/support/tracker.php?aid=1783853">patch #1783853</a>)</li></ul>
<a name="F.16.2.4"></a><h4>F.16.2.4 Build System</h4>
<ul>
<li>Fixed build failures with MinGW's GCC 4 (<a href="http://sourceforge.net/support/tracker.php?aid=1800834">bug #1800834</a>)</li></ul>
<a name="F.17"></a><h2>F.17 2.30</h2>

<p>Released on August 25th, 2007</p>
<a name="F.17.1"></a><h3>F.17.1 Release Notes</h3>
<ul>
<li>This release includes a beta of <a href="../Docs/Modern UI 2/Readme.html">Modern UI 2</a>. Please report any issues and suggestions.</li><li>The format of Modern UI language files has been modified to better support external strings. Private language files should be converted (and submitted as a <a href="http://sourceforge.net/tracker/?group_id=22049&atid=373087">patch</a> in the spirit of open source).</li></ul>
<a name="F.17.2"></a><h3>F.17.2 Changelog</h3>
<a name="F.17.2.1"></a><h4>F.17.2.1 Major Changes</h4>
<ul>
<li>Fixed a bug introduced in version 2.29 that caused invalid $SMPROGRAMS value on Windows 98 (<a href="http://sourceforge.net/support/tracker.php?aid=1766268">bug #1766268</a>)</li><li><a href="../Docs/Modern UI 2/Readme.html">Modern UI 2 beta</a>: Simpler code, easier to extend and makes use of nsDialogs</li></ul>
<a name="F.17.2.2"></a><h4>F.17.2.2 Minor Changes</h4>
<ul>
<li>Added InstallOptions.nsh with relevant usage macros, based on the old Modern UI macros</li><li>Added LangFile.nsh allowing creation of langauge files that can be included with a single command with defaults for missing strings (when LANGFILE_DEFAULT is set)</li><li>Added LB_ERR and CB_ERR to WinMessages.nsh (<a href="http://sourceforge.net/support/tracker.php?aid=1771644">bug #1771644</a>)</li><li>Fixed <a href="Chapter4.html#4.9.3.3">CreateDirectory</a> logging (<a href="http://sourceforge.net/support/tracker.php?aid=1768584">patch #1768584</a>)</li><li>Fixed escaping of quotes with $\ in macros (<a href="http://sourceforge.net/support/tracker.php?aid=1713708">bug #1713708</a>)</li><li>Minor documentation improvements</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.80</a>: New language files structure based on LangFile.nsh</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.80</a>: MUI_LANGDLL_DISPLAY now reads previous settings on silent installations as well</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.80</a>: Added MUI_CUSTOMFUNCTION_MOUSEOVERSECTION (<a href="http://sourceforge.net/support/tracker.php?aid=1762003">patch #1762003</a>)</li></ul>
<a name="F.17.2.3"></a><h4>F.17.2.3 Utilities and Plug-ins</h4>
<ul>
<li>Various nsDialogs improvements including RTL support, more macros in nsDialogs.nsh and <a href="../Docs/nsDialogs/Readme.html">initial documentation</a></li></ul>
<a name="F.17.2.4"></a><h4>F.17.2.4 Translations</h4>
<ul>
<li>Catalan returns</li><li>Danish corrections</li><li>Slovak corrections (<a href="http://sourceforge.net/support/tracker.php?aid=1762627">patch #1762627</a>)</li></ul>
<a name="F.17.2.5"></a><h4>F.17.2.5 Build System</h4>
<ul>
<li>More HPUX fixes (<a href="http://sourceforge.net/support/tracker.php?aid=1755148">bug #1755148</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1753063">bug #1753063</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1758873">bug #1758873</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1758863">patch #1758863</a>)</li><li>Ignore known failing tests by default on POSIX</li></ul>
<a name="F.18"></a><h2>F.18 2.29</h2>

<p>Released on July 14th, 2007</p>
<a name="F.18.1"></a><h3>F.18.1 Release Notes</h3>
<ul>
<li>The most notable addition in this release is nsDialogs - a faster and far more capable replacement for InstallOptions. It allows creating controls of any type directly from the script and removes the need to mess with slow INI files. It integrates directly into the script by calling functions for notification, including change notification for edit boxes. <a href="http://nsis.sourceforge.net/Community">Speak up</a> if you have any suggestions/comments/patches for it.</li></ul>
<a name="F.18.2"></a><h3>F.18.2 Changelog</h3>
<a name="F.18.2.1"></a><h4>F.18.2.1 Major Changes</h4>
<ul>
<li>Added <a href="../Examples/nsDialogs">nsDialogs</a> - a replacement for InstallOptions</li></ul>
<a name="F.18.2.2"></a><h4>F.18.2.2 Minor Changes</h4>
<ul>
<li>Disable Windows error messages for the entire installer and not just for an incomplete list of fail-points (<a href="http://sourceforge.net/support/tracker.php?aid=1741061">bug #1741061</a>)</li><li>Fixed incorrect large version handling of <a href="AppendixE.html#E.1.8">GetFileVersion</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1742255">bug #1742255</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1742562">patch #1742562</a>)</li><li>Fixed the ReverseSection macro in Sections.nsh (<a href="http://sourceforge.net/support/tracker.php?aid=1742793">bug #1742793</a>)</li><li>Minor documentation improvements</li><li>Simplified <a href="AppendixD.html#D.5">REG_MULTI_SZ reader</a></li><li>Use SHGetFolderPath where available to better support all users' folders</li></ul>
<a name="F.18.2.3"></a><h4>F.18.2.3 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/Banner/Readme.txt">Banner</a>: Avoid possible hangs when called from page callbacks (<a href="http://sourceforge.net/support/tracker.php?aid=1743801">bug #1743801</a>)</li><li><a href="../Docs/NSISdl/ReadMe.txt">NSISdl</a>: added /TRANSLATE2 for more &quot;translator-friendly&quot; strings (<a href="http://sourceforge.net/support/tracker.php?aid=1656076">patch #1656076</a>)</li><li><a href="../Docs/NSISdl/ReadMe.txt">NSISdl</a>: support downloads over 2gb (<a href="http://sourceforge.net/support/tracker.php?aid=1723131">patch #1723131</a>)</li></ul>
<a name="F.18.2.4"></a><h4>F.18.2.4 Translations</h4>
<ul>
<li>Added International Spanish</li></ul>
<a name="F.18.2.5"></a><h4>F.18.2.5 Build System</h4>
<ul>
<li>Added support for HPUX (<a href="http://sourceforge.net/support/tracker.php?aid=1714416">patch #1714416</a>)</li></ul>
<a name="F.19"></a><h2>F.19 2.28</h2>

<p>Released on June 8th, 2007</p>
<a name="F.19.1"></a><h3>F.19.1 Changelog</h3>
<a name="F.19.1.1"></a><h4>F.19.1.1 Major Changes</h4>
<ul>
<li>Added a workaround for a Windows 2000 bug that caused infinite loops when hitting a key in the instilfes page (<a href="http://sourceforge.net/support/tracker.php?aid=1733692">bug #1733692</a>)</li></ul>
<a name="F.19.1.2"></a><h4>F.19.1.2 Minor Changes</h4>
<ul>
<li>Improved compiler error strings (<a href="http://sourceforge.net/support/tracker.php?aid=1722147">patch #1722147</a>)</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: added MUI_STARTMENUPAGE_BGCOLOR and MUI_DIRECTORYPAGE_BGCOLOR (<a href="http://sourceforge.net/support/tracker.php?aid=1706187">patch #1706187</a>)</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: added MUI_LANGDLL_ALLLANGUAGES that forces the language selection dialog to display all languages (<a href="http://sourceforge.net/support/tracker.php?aid=1724876">patch #1724876</a>)</li></ul>
<a name="F.19.1.3"></a><h4>F.19.1.3 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/InstallOptions/Readme.html">InstallOptions</a>: corrected documentation of TxtColor (<a href="http://sourceforge.net/support/tracker.php?aid=1716614">bug #1716614</a>)</li><li><a href="../Docs/NSISdl/ReadMe.txt">NSISdl</a>: added compatibility with some buggy servers that don't close the connection (<a href="http://sourceforge.net/support/tracker.php?aid=1713562">bug #1713562</a>)</li><li><a href="../Docs/NSISdl/ReadMe.txt">NSISdl</a>: fixed 100% CPU usage during domain resolution (<a href="http://sourceforge.net/support/tracker.php?aid=1713560">bug #1713560</a>)</li></ul>
<a name="F.19.1.4"></a><h4>F.19.1.4 Translations</h4>
<ul>
<li>Valencian and Catalan are no longer installed (<a href="http://sourceforge.net/support/tracker.php?aid=1558822">patch #1558822</a>)</li></ul>
<a name="F.19.1.5"></a><h4>F.19.1.5 Build System</h4>
<ul>
<li>Added IGNORETESTS for ignoring certain test files</li><li>Added wxWidgets to the requirement list</li><li><a href="../Docs/System/System.html">System</a> now builds with GCC, but without System::Get and System::Call (<a href="http://sourceforge.net/support/tracker.php?aid=1711089">patch #1711089</a>)</li></ul>
<a name="F.20"></a><h2>F.20 2.27</h2>

<p>Released on May 5th, 2007</p>
<a name="F.20.1"></a><h3>F.20.1 Release Notes</h3>
<ul>
<li>This is a quick-fix release that addresses a bug introduced in the last version, 2.26, that caused $PROGRAMFILES and $COMMONFILES to translate into random strings in the uninstaller.</li></ul>
<a name="F.20.2"></a><h3>F.20.2 Changelog</h3>
<a name="F.20.2.1"></a><h4>F.20.2.1 Major Changes</h4>
<ul>
<li>Fixed a bug introduced in 2.26 that made $PROGRAMFILES and $COMMONFILES unavailable in the uninstaller</li></ul>
<a name="F.20.2.2"></a><h4>F.20.2.2 Minor Changes</h4>
<ul>
<li>Disable the X button on InstallOptions pages when CancelEnabled is 0</li><li>Fixed incomplete MessageBox usage line (<a href="http://sourceforge.net/support/tracker.php?aid=1709460">bug #1709460</a>)</li></ul>
<a name="F.20.2.3"></a><h4>F.20.2.3 Build System</h4>
<ul>
<li>Added <code>TOOLSET</code> option to allow selection of specific build tools (e.g. <code>scons TOOLSET=mingw</code>)</li></ul>
<a name="F.21"></a><h2>F.21 2.26</h2>

<p>Released on April 27th, 2007</p>
<a name="F.21.1"></a><h3>F.21.1 Release Notes</h3>
<ul>
<li>Installation on x64 systems is now fully supported with $PROGRAMFILES64, <a href="Chapter4.html#4.9.7.6">SetRegView</a> and <a href="AppendixB.html#B">Library</a>'s LIBRARY_X64 option.</li></ul>
<a name="F.21.2"></a><h3>F.21.2 Changelog</h3>
<a name="F.21.2.1"></a><h4>F.21.2.1 Major Changes</h4>
<ul>
<li>Added LIBRARY_X64 option for <a href="AppendixB.html#B.2">InstallLib</a> and <a href="AppendixB.html#B.3">UnInstallLib</a> for installing and uninstalling x64 libraries</li><li>Added <a href="Chapter4.html#4.2.3">$PROGRAMFILES32</a>, <a href="Chapter4.html#4.2.3">$PROGRAMFILES64</a>, <a href="Chapter4.html#4.2.3">$COMMONFILES32</a> and <a href="Chapter4.html#4.2.3">$COMMONFILES64</a></li></ul>
<a name="F.21.2.2"></a><h4>F.21.2.2 Minor Changes</h4>
<ul>
<li>Added <a href="Chapter4.html#4.2.3">$EXEPATH</a> and <a href="Chapter4.html#4.2.3">$EXEFILE</a></li><li>Added $(^Language) language string which holds the language name (<a href="http://sourceforge.net/support/tracker.php?aid=1235616">RFE #1235616</a>)</li><li>Added LIBRARY_IGNORE_VERSION option for <a href="AppendixB.html#B.2">InstallLib</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1699435">patch #1699435</a>)</li><li>Added VXD support for <a href="Chapter4.html#4.9.3.6">GetDLLVersionLocal</a> on Windows NT/2000/XP/Vista (<a href="http://sourceforge.net/support/tracker.php?aid=1706624">patch #1706624</a>)</li><li>Avoid <a href="AppendixB.html#B">Library</a> warning when UnInstallLib is unused (<a href="http://sourceforge.net/support/tracker.php?aid=1692761">bug #1692761</a>)</li><li>Fixed error handling of <a href="Chapter4.html#4.9.3.2">CopyFiles</a> on Windows NT4 (<a href="http://sourceforge.net/support/tracker.php?aid=774966">bug #774966</a>)</li><li>Fixed font name encoding broken since 2.24</li><li>Fixed <a href="../Examples/LogicLib.nsi">LogicLib</a> duplicate labels across included files</li><li>Fixed preservation of folder attributes with <a href="Chapter4.html#4.9.1.5"><code>File</code></a><code> /a</code> (<a href="http://sourceforge.net/support/tracker.php?aid=1699474">bug #1699474</a>)</li><li>Improved unused variable warning (<a href="http://sourceforge.net/support/tracker.php?aid=1701050">bug #1701050</a>)</li><li><a href="AppendixB.html#B">Library</a> macros no longer require version information for DLL files on POSIX</li><li>Minor documentation improvements (including <a href="http://sourceforge.net/support/tracker.php?aid=971467">RFE #971467</a>)</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: added MUI_FINISHPAGE_CANCEL_ENABLED</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: added MUI_FINISHPAGE_REBOOTLATER_DEFAULT (<a href="http://sourceforge.net/support/tracker.php?aid=1143843">RFE #1143843</a>)</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: block unsupported languages in the language selection dialog (<a href="http://sourceforge.net/support/tracker.php?aid=1564986">RFE #1564986</a>)</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: disable Cancel button on the finish page (<a href="http://sourceforge.net/support/tracker.php?aid=1267491">bug #1267491</a>)</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI</a>: reduce flicker caused by MUI_HEADER_TRANSPARENT_TEXT (<a href="http://sourceforge.net/support/tracker.php?aid=1696610">patch #1696610</a>)</li><li>Support <a href="Chapter4.html#4.9.4.17">Quit</a> in <a href="Chapter4.html#4.5.3">show page functions</a></li></ul>
<a name="F.21.2.3"></a><h4>F.21.2.3 New/Changed Commands</h4>
<ul>
<li>Added <a href="Chapter4.html#4.9.7.6">SetRegView</a> to allow access to the x64 registry view</li><li>Installer icon support for <a href="Chapter4.html#4.9.4.15">MessageBox</a> using MB_USERICON (<a href="http://sourceforge.net/support/tracker.php?aid=1682748">patch #1682748</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1530388">RFE #1530388</a>)</li></ul>
<a name="F.21.2.4"></a><h4>F.21.2.4 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/InstallOptions/Readme.html">InstallOptions 2.47</a>: line breaks support in Link controls (<a href="http://sourceforge.net/support/tracker.php?aid=1683186">patch #1683186</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1495949">RFE #1495949</a>), added HLine and VLine controls (<a href="http://sourceforge.net/support/tracker.php?aid=1683189">patch #1683189</a>)</li><li><a href="../Docs/makensisw/Readme.txt">MakeNSISW</a>: fixed broken command line parameter handling introduced in the last version (<a href="http://sourceforge.net/support/tracker.php?aid=1696534">bug #1696534</a>)</li><li><a href="../Examples/UserInfo/UserInfo.nsi">UserInfo</a>: return effective user group on Vista, added GetOriginalAccountType (<a href="http://sourceforge.net/support/tracker.php?aid=1687456">patch #1687456</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1684777">bug #1684777</a>)</li></ul>
<a name="F.21.2.5"></a><h4>F.21.2.5 Translations</h4>
<ul>
<li>Added Afrikaans translation (<a href="http://sourceforge.net/support/tracker.php?aid=1699558">patch #1699558</a>)</li><li>French corrections (<a href="http://sourceforge.net/support/tracker.php?aid=1676101">patch #1676101</a>)</li><li>German corrections</li></ul>
<a name="F.21.2.6"></a><h4>F.21.2.6 Build System</h4>
<ul>
<li>Added SKIPTESTS option</li><li>Avoid a lot of code warnings (<a href="http://sourceforge.net/support/tracker.php?aid=1676243">bug #1676243</a>)</li><li>Detect wxWidgets instead of assuming its existence on POSIX (<a href="http://sourceforge.net/support/tracker.php?aid=1672315">bug #1672315</a>)</li><li>Fixed big-endian platform support broken since 2.24</li></ul>
<a name="F.22"></a><h2>F.22 2.25</h2>

<p>Released on March 31st, 2007</p>
<a name="F.22.1"></a><h3>F.22.1 Changelog</h3>
<a name="F.22.1.1"></a><h4>F.22.1.1 Major Changes</h4>
<ul>
<li>Added <a href="/usr/share/nsis/Include/Memento.nsh">Memento.nsh</a> for easy persistency of user selections across different runs of the installer (<a href="http://sourceforge.net/support/tracker.php?aid=1677624">RFE #1677624</a>)</li><li>Fixed a bug introduced in 2.24 that allowed the license page to be skipped even with agreement check box or radio buttons (<a href="http://sourceforge.net/support/tracker.php?aid=1664428">bug #1664428</a>)</li></ul>
<a name="F.22.1.2"></a><h4>F.22.1.2 Minor Changes</h4>
<ul>
<li>Added Vista manifest to StartMenu.nsi example to avoid backward compatibility mode that moves shortcuts (<a href="http://sourceforge.net/support/tracker.php?aid=1664957">bug #1664957</a>)</li><li>Both dashes and slashes are supported as switch prefixes on makensis.exe (<a href="http://sourceforge.net/support/tracker.php?aid=1661503">bug #1661503</a>)</li><li>Delete uninstaller temporary directory on reboot (<a href="http://sourceforge.net/support/tracker.php?aid=1660626">patch #1660626</a>)</li><li>Distribute <a href="../Examples/Plugin">Plug-in example</a> with the NSIS package and not only with the source code</li><li>Fixed lossy Unicode conversion of dialog template strings (<a href="http://sourceforge.net/support/tracker.php?aid=1662190">bug #1662190</a>)</li><li>Fixed <a href="/usr/share/nsis/Include/Sections.nsh">Sections.nsh</a> macros support for $0 as input (<a href="http://sourceforge.net/support/tracker.php?aid=1664648">bug #1664648</a>)</li><li>Fixed uninstallers support for the /D= command line switch</li><li>Improved logging of WriteReg commands</li><li>Minor documentation updates and fixes (including <a href="http://sourceforge.net/support/tracker.php?aid=1662419">patch #1662419</a>)</li></ul>
<a name="F.22.1.3"></a><h4>F.22.1.3 New/Changed Commands</h4>
<ul>
<li>Added bitwise operators support for <a href="Chapter5.html#5.4.1">!define</a> /math (<a href="http://sourceforge.net/support/tracker.php?aid=1669513">RFE #1669513</a>)</li><li><a href="Chapter5.html#5.2.7">__PAGEEX__</a> contains the page type (<a href="http://sourceforge.net/support/tracker.php?aid=1644712">patch #1644712</a>)</li></ul>
<a name="F.22.1.4"></a><h4>F.22.1.4 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/InstallOptions/Readme.html">InstallOptions 2.46</a>: Use installer's name for message boxes (<a href="http://sourceforge.net/support/tracker.php?aid=1661677">bug #1661677</a>)</li><li><a href="../Docs/makensisw/Readme.txt">MakeNSISW</a>: Use Escape button to close (<a href="http://sourceforge.net/support/tracker.php?aid=1666501">RFE #1666501</a>)</li><li><a href="../Docs/Math/Math.txt.gz">Math</a>: Removed mathcrt.lib</li><li><a href="../Docs/StartMenu/Readme.txt">StartMenu</a>: Refuse empty paths (<a href="http://sourceforge.net/support/tracker.php?aid=1684751">bug #1684751</a>)</li></ul>
<a name="F.22.1.5"></a><h4>F.22.1.5 Translations</h4>
<ul>
<li>Fixed Galician language files (<a href="http://sourceforge.net/support/tracker.php?aid=1663795">bug #1663795</a>)</li></ul>
<a name="F.22.1.6"></a><h4>F.22.1.6 Build System</h4>
<ul>
<li>Added APPEND_LIBPATH and APPEND_CPPATH instead of the malfunctioning CPPPATH and LIBPATH</li><li>Added ChangeLog to source code package (<a href="http://sourceforge.net/support/tracker.php?aid=1680508">patch #1680508</a>)</li><li>Avoid some warnings on VS2005 (<a href="http://sourceforge.net/support/tracker.php?aid=1667950">patch #1667950</a>)</li><li>Fixed lzma test segfault on POSIX (<a href="http://sourceforge.net/support/tracker.php?aid=1666873">bug #1666873</a>)</li><li>More strict-aliasing compatibility (<a href="http://sourceforge.net/support/tracker.php?aid=1635841">bug #1635841</a>)</li><li>NSIS Menu finally built from source</li></ul>
<a name="F.23"></a><h2>F.23 2.24</h2>

<p>Released on February 17th, 2007</p>
<a name="F.23.1"></a><h3>F.23.1 Changelog</h3>
<a name="F.23.1.1"></a><h4>F.23.1.1 Major Changes</h4>
<ul>
<li><a href="AppendixB.html#B">Library</a> uninstall-reinstall-reboot problems workaround (<a href="http://sourceforge.net/support/tracker.php?aid=1097642">bug #1097642</a>)</li><li>Minimized number of cases where an error message appears in silent mode</li><li>New compiler predefines for <a href="Chapter5.html#5.2.7">code scope</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1644712">patch #1644712</a>)</li></ul>
<a name="F.23.1.2"></a><h4>F.23.1.2 Minor Changes</h4>
<ul>
<li>Added <a href="Chapter3.html#3.1.1">/P command line option</a> for setting process priority of makensis (<a href="http://sourceforge.net/support/tracker.php?aid=1638974">patch #1638974</a>)</li><li>Added support for 64-bit PE on POSIX to <a href="Chapter4.html#4.9.3.6">GetDLLVersionLocal</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1643633">patch #1643633</a>)</li><li>Append last part of <a href="Chapter4.html#4.8.1.21">InstallDir</a> only to $INSTDIR on directory pages (<a href="http://sourceforge.net/support/tracker.php?aid=1174184">bug #1174184</a>)</li><li>Avoid permissions change of output files for <a href="AppendixE.html#E.2.2">LineFind</a> and <a href="AppendixE.html#E.2.6">FileJoin</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1631773">bug #1631773</a>)</li><li>Fixed erroneous warnings on uninstall sections (<a href="http://sourceforge.net/support/tracker.php?aid=1631889">bug #1631889</a>)</li><li>Fixed lossy Unicode conversion in resource editor (<a href="http://sourceforge.net/support/tracker.php?aid=1083492">bug #1083492</a>)</li><li>Ignore invalid preprocessor commands in ignored block or comments</li><li>Made <a href="Chapter4.html#4.8.3.1">VIAddVersionKey</a> only query language tables instead of creating them and generating warnings (<a href="http://sourceforge.net/support/tracker.php?aid=1626504">bug #1626504</a>)</li><li>Minor documentation updates and fixes (including <a href="http://sourceforge.net/support/tracker.php?aid=1642107">bug #1642107</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1649187">patch #1649187</a>)</li><li>Warn when continuing a comment line using backslash (<a href="http://sourceforge.net/support/tracker.php?aid=1554178">bug #1554178</a>)</li></ul>
<a name="F.23.1.3"></a><h4>F.23.1.3 New/Changed Commands</h4>
<ul>
<li><a href="Chapter4.html#4.9.3.13">RegDLL</a> and <a href="Chapter4.html#4.9.3.14">UnregDLL</a> now use LOAD_WITH_ALTERED_SEARCH_PATH, so there's no need to use <a href="Chapter4.html#4.9.1.9">SetOutPath</a> to set the working directory (<a href="http://sourceforge.net/support/tracker.php?aid=1638191">bug #1638191</a>)</li></ul>
<a name="F.23.1.4"></a><h4>F.23.1.4 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/InstallOptions/Readme.html">InstallOptions 2.45</a>: Added FOCUS flag (<a href="http://sourceforge.net/support/tracker.php?aid=1634704">patch #1634704</a>) and fixed paste with ONLY_NUMBERS flag (<a href="http://sourceforge.net/support/tracker.php?aid=1652075">bug #1652075</a>)</li><li><a href="../Docs/makensisw/Readme.txt">MakeNSISW</a>: settings in HKCU instead of HKLM (<a href="http://sourceforge.net/support/tracker.php?aid=1411970">bug #1411970</a>) and MRU menu accelerators</li></ul>
<a name="F.23.1.5"></a><h4>F.23.1.5 Translations</h4>
<ul>
<li>Added Galician translation (<a href="http://sourceforge.net/support/tracker.php?aid=1631765">patch #1631765</a>)</li></ul>
<a name="F.23.1.6"></a><h4>F.23.1.6 Build System</h4>
<ul>
<li>Added a workaround for building on x64 POSIX platforms (<a href="http://sourceforge.net/support/tracker.php?aid=1646170">bug #1646170</a>)</li><li>Added a workaround for strict-aliasing compatibility (<a href="http://sourceforge.net/support/tracker.php?aid=1635841">bug #1635841</a>)</li><li>Added compression tests</li><li>Added STRIP, APPEND_CCFLAGS and APPEND_LINKFLAGS build options</li><li>Fixed SCons 0.96.94 compatibility</li></ul>
<a name="F.24"></a><h2>F.24 2.23</h2>

<p>Released on January 13th, 2007</p>
<a name="F.24.1"></a><h3>F.24.1 Changelog</h3>
<a name="F.24.1.1"></a><h4>F.24.1.1 Minor Changes</h4>
<ul>
<li>Fixed compiler crash on Mac OS X (<a href="http://sourceforge.net/support/tracker.php?aid=1611866">patch #1611866</a>)</li><li>Fixed deletion of start menu icons in NSIS installer on Vista (<a href="http://sourceforge.net/support/tracker.php?aid=1611251">bug #1611251</a>)</li></ul>
<a name="F.24.1.2"></a><h4>F.24.1.2 Utilities and Plug-ins</h4>
<ul>
<li>Fixed incorrect <a href="../Docs/nsExec/nsExec.txt">nsExec</a> message handling in silent mode (<a href="http://sourceforge.net/support/tracker.php?aid=1605581">bug #1605581</a>)</li><li>Fixed <a href="../Docs/System/System.html">System</a> crash when System::Store is called on an empty private stack (<a href="http://sourceforge.net/support/tracker.php?aid=1620178">bug #1620178</a>)</li><li>Fixed <a href="../Docs/System/System.html">System</a> crash with parenthesis in filename (<a href="http://sourceforge.net/support/tracker.php?aid=1616267">bug #1616267</a>)</li><li>Minor VPatch documentation enhancements (<a href="http://sourceforge.net/support/tracker.php?aid=1624292">patch #1624292</a>)</li></ul>
<a name="F.24.1.3"></a><h4>F.24.1.3 Build System</h4>
<ul>
<li>Fixed build failures on mingw32 (<a href="http://sourceforge.net/support/tracker.php?aid=1610773">bug #1610773</a>)</li><li>Fixed build problems with MSTOOLKIT=yes</li></ul>
<a name="F.25"></a><h2>F.25 2.22</h2>

<p>Released on November 27th, 2006</p>
<a name="F.25.1"></a><h3>F.25.1 Release Notes</h3>
<ul>
<li>Some changes have been made to the credit and license files in order to avoid copyrights and license related confusions. This does not change in any way how NSIS should or could be used. NSIS itself is still licensed with the permissive BSD-like <a href="http://nsis.sourceforge.net/License">zlib license</a>.</li><li>Upgrade is recommended for early adopters of WinVer.nsh, due to a bug in Windows 98 and ME detection.</li></ul>
<a name="F.25.2"></a><h3>F.25.2 Changelog</h3>
<a name="F.25.2.1"></a><h4>F.25.2.1 Minor Changes</h4>
<ul>
<li>Fixed context menu not disappearing when moving from instfiles page (<a href="http://sourceforge.net/support/tracker.php?aid=1115825">bug #1115825</a>)</li><li>Fixed <a href="/usr/share/nsis/Include/WinVer.nsh">WinVer.nsh</a>'s detection of Windows 98 and ME (reported on the <a href="http://forums.winamp.com/showthread.php?s=&threadid=257994&highlight=winver.nsh">forum</a>)</li><li>Fixed WriteUninstaller failure to overwrite read-only uninstallers (<a href="http://sourceforge.net/support/tracker.php?aid=1542530">bug #1542530</a>)</li><li>Licensed lzma under <a href="AppendixI.html#I.5">CPL</a> with a <a href="AppendixI.html#I.6">special exception</a>, instead of LGPL</li><li>Minor documentation updates and fixes (including <a href="http://sourceforge.net/support/tracker.php?aid=1584618">bug #1584618</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1589877">bug #1589877</a>)</li><li>Updated comments in MUI examples (<a href="http://sourceforge.net/support/tracker.php?aid=1595500">bug #1595500</a>)</li></ul>
<a name="F.25.2.2"></a><h4>F.25.2.2 New/Changed Commands</h4>
<ul>
<li>Added `highest` option for <a href="Chapter4.html#4.8.1.32">RequestExecutionLevel</a></li></ul>
<a name="F.25.2.3"></a><h4>F.25.2.3 Translations</h4>
<ul>
<li>Added Uzbek translation</li><li>Fixed corruption in Lithuanian (<a href="http://sourceforge.net/support/tracker.php?aid=1602673">bug #1602673</a>)</li><li>Minor Breton fixes</li><li>Slovenian corrections (<a href="http://sourceforge.net/support/tracker.php?aid=1590108">patch #1590108</a>)</li></ul>
<a name="F.25.2.4"></a><h4>F.25.2.4 Build System</h4>
<ul>
<li>Added <a href="http://msdn.microsoft.com/vstudio/express/visualc/">Microsoft Visual C++ 2005 Express</a> support</li><li>SCons requirement upgraded to 0.96.93</li></ul>
<a name="F.26"></a><h2>F.26 2.21</h2>

<p>Released on October 20th, 2006</p>
<a name="F.26.1"></a><h3>F.26.1 Changelog</h3>
<a name="F.26.1.1"></a><h4>F.26.1.1 Major Changes</h4>
<ul>
<li>Added <a href="/usr/share/nsis/Include/WinVer.nsh">WinVer.nsh</a> for easy Windows version comparisons</li><li>Upgraded to lzma sdk 4.43 for faster compression</li></ul>
<a name="F.26.1.2"></a><h4>F.26.1.2 Minor Changes</h4>
<ul>
<li>Added Vista support to GetWindowsVersion</li><li>Added <a href="/usr/share/nsis/Include/x64.nsh">x64.nsh</a> including a few simple macros for handling x64 installations</li><li>Fixed a handle leak in <a href="AppendixE.html#E.1.2">Locate</a></li><li>Minor documentation updates and fixes</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.76</a>: Added MUI_ABORTWARNING_CANCEL_DEFAULT (<a href="http://sourceforge.net/support/tracker.php?aid=1547844">RFE #1547844</a>)</li></ul>
<a name="F.26.1.3"></a><h4>F.26.1.3 New/Changed Commands</h4>
<ul>
<li>Added <a href="Chapter4.html#4.8.1.32">RequestExecutionLevel</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1524709">RFE #1524709</a>)</li></ul>
<a name="F.26.1.4"></a><h4>F.26.1.4 Translations</h4>
<ul>
<li>Added Valencian translation (<a href="http://sourceforge.net/support/tracker.php?aid=1558822">patch #1558822</a>)</li><li>Bulgarian corrections</li><li>Slovenian corrections</li></ul>
<a name="F.26.1.5"></a><h4>F.26.1.5 Build System</h4>
<ul>
<li>SCons requirement upgraded to 0.96.92</li></ul>
<a name="F.27"></a><h2>F.27 2.20</h2>

<p>Released on September 9th, 2006</p>
<a name="F.27.1"></a><h3>F.27.1 Changelog</h3>
<a name="F.27.1.1"></a><h4>F.27.1.1 Minor Changes</h4>
<ul>
<li>Better LogicLib errors (<a href="http://sourceforge.net/support/tracker.php?aid=1537976">bug #1537976</a>)</li><li>Fixed incomplete plug-in call error messages (<a href="http://sourceforge.net/support/tracker.php?aid=1535995">bug #1535995</a>)</li><li>Fixed incorrect file timestamp querying on big-endian platforms (<a href="http://sourceforge.net/support/tracker.php?aid=1536377">bug #1536377</a>)</li><li>Minor documentation updates and fixes</li></ul>
<a name="F.27.1.2"></a><h4>F.27.1.2 Translations</h4>
<ul>
<li>Danish corrections (<a href="http://sourceforge.net/support/tracker.php?aid=1548190">bug #1548190</a>)</li><li>Fixed incorrectly encoded Turkish translation (<a href="http://sourceforge.net/support/tracker.php?aid=1542765">bug #1542765</a>)</li><li>French corrections</li><li>Italian corrections (<a href="http://sourceforge.net/support/tracker.php?aid=1546183">bug #1546183</a>)</li><li>Spanish corrections</li><li>Swedish corrections (<a href="http://sourceforge.net/support/tracker.php?aid=1542680">bug #1542680</a>)</li><li>Ukrainian corrections</li></ul>
<a name="F.27.1.3"></a><h4>F.27.1.3 Build System</h4>
<ul>
<li>Fixed NSIS_CONFIG_CONST_DATA_PATH being ignored on POSIX platforms (<a href="http://sourceforge.net/support/tracker.php?aid=1515592">bug #1515592</a>)</li></ul>
<a name="F.28"></a><h2>F.28 2.19</h2>

<p>Released on August 6th, 2006</p>
<a name="F.28.1"></a><h3>F.28.1 Changelog</h3>
<a name="F.28.1.1"></a><h4>F.28.1.1 Minor Changes</h4>
<ul>
<li>Fixed <a href="Chapter5.html#5.1.11">!system</a> and <a href="Chapter5.html#5.1.10">!packhdr</a> failure with quoted long file names (<a href="http://sourceforge.net/support/tracker.php?aid=1509909">bug #1509909</a>)</li><li>Fixed build problems on 64bit platforms (<a href="http://sourceforge.net/support/tracker.php?aid=1504772">bug #1504772</a>)</li><li>Fixed negative total size for data larger than 2GB in script compilation summary (<a href="http://sourceforge.net/support/tracker.php?aid=1468852">bug #1468852</a>)</li><li>Minor documentation updates and fixes</li><li>Replaced <a href="AppendixC.html#C.2">IsDotNETInstalled</a> with a simpler and better version</li></ul>
<a name="F.28.1.2"></a><h4>F.28.1.2 New/Changed Commands</h4>
<ul>
<li>Made <a href="Chapter5.html#5.4.5">!if</a> compare strings case insensitively, like <a href="Chapter4.html#4.9.4.19">StrCmp</a> and <a href="Chapter5.html#5.4.3">!ifdef</a></li></ul>
<a name="F.28.1.3"></a><h4>F.28.1.3 Plug-ins</h4>
<ul>
<li><a href="../Docs/NSISdl/ReadMe.txt">NSISdl</a>: fixed random DNS errors (<a href="http://forums.winamp.com/showthread.php?s=&threadid=247723">reported in the forums</a>)</li><li><a href="../Docs/System/System.html">System</a>: fixed a bug that caused stack corruption and stopped the installer from deleting System.dll when a function with no arguments was called (<a href="http://sourceforge.net/support/tracker.php?aid=1535005">bug #1535005</a>)</li><li><a href="../Docs/System/System.html">System</a>: fixed wrong return values for functions that return <code>short</code> or <code>char</code> (<a href="http://sourceforge.net/support/tracker.php?aid=1535007">bug #1535007</a>)</li></ul>
<a name="F.28.1.4"></a><h4>F.28.1.4 Translations</h4>
<ul>
<li>Added Norwegian Nynorsk translation (<a href="http://sourceforge.net/support/tracker.php?aid=1503208">patch #1503208</a>)</li><li>Fixed typos in the French translation (<a href="http://sourceforge.net/support/tracker.php?aid=1531874">bug #1531874</a>)</li></ul>
<a name="F.29"></a><h2>F.29 2.18</h2>

<p>Released on July 1st, 2006</p>
<a name="F.29.1"></a><h3>F.29.1 Changelog</h3>
<a name="F.29.1.1"></a><h4>F.29.1.1 Minor Changes</h4>
<ul>
<li>CRC32 implementation used potentially non-32bit types (<a href="http://sourceforge.net/support/tracker.php?aid=1504758">bug #1504758</a>)</li><li>Fixed errors on multiple inclusion of <a href="AppendixE.html#E">useful headers</a></li><li>Fixed <a href="AppendixE.html#E.1.7">GetFileAttributes</a></li><li>Fixed incorrect text on browse dialog with <a href="Chapter4.html#4.7.2.1.10">.onVerifyInstDir</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1504297">bug #1504297</a>)</li><li>Fixed <a href="AppendixB.html#B">Library</a>'s implementation on POSIX</li><li>Minor documentation updates and fixes</li></ul>
<a name="F.29.1.2"></a><h4>F.29.1.2 Translations</h4>
<ul>
<li>Added Irish translation (<a href="http://sourceforge.net/support/tracker.php?aid=1503639">patch #1503639</a>)</li><li>Catalan corrections (<a href="http://sourceforge.net/support/tracker.php?aid=1504104">bug #1504104</a>)</li><li>Dutch corrections</li><li>Finnish corrections (Mozilla bug #341643)</li><li>Fixed Serbian grammar and typos</li><li>Italian corrections (Mozilla bug #340450)</li><li>Polish corrections (Mozilla bug #224532)</li><li>Portuguese (Brazil) corrections (Mozilla bug #340885)</li><li>Romanian corrections (Mozilla bug #340645)</li><li>Thai corrections</li><li>Turkish corrections (Mozilla bug #340511)</li></ul>
<a name="F.30"></a><h2>F.30 2.17</h2>

<p>Released on May 19th, 2006</p>
<a name="F.30.1"></a><h3>F.30.1 Changelog</h3>
<a name="F.30.1.1"></a><h4>F.30.1.1 Minor Changes</h4>
<ul>
<li>Fixed build failures and segfaults on PowerPC Mac OS X (<a href="http://sourceforge.net/support/tracker.php?aid=1474597">bug #1474597</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1481044">bug #1481044</a>)</li><li>Fixed <a href="AppendixB.html#B">Library</a>'s TLB version interpretation (<a href="http://sourceforge.net/support/tracker.php?aid=1471341">bug #1471341</a>)</li><li>Fixed possible stack corruption when using TypeLib.dll on an invalid TLB</li><li>Fixed RMDir deletion failure of read-only folders (<a href="http://sourceforge.net/support/tracker.php?aid=1481664">bug #1481664</a>)</li><li><a href="../Docs/makensisw/Readme.txt">MakeNSISW</a>: Fixed toolbar compressor selection menu, broken in the previous version (<a href="http://sourceforge.net/support/tracker.php?aid=1466486">bug #1466486</a>)</li><li>Minor documentation improvements and fixes (including <a href="http://sourceforge.net/support/tracker.php?aid=1469306">bug #1469306</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1491616">bug #1491616</a>)</li></ul>
<a name="F.30.1.2"></a><h4>F.30.1.2 Translations</h4>
<ul>
<li>Added missing Basque and Welsh files (<a href="http://sourceforge.net/support/tracker.php?aid=1469471">bug #1469471</a>)</li><li>Brazilian Portuguese updates</li><li>Bulgarian fixes</li><li>Fixed a typo in Hebrew translation (<a href="http://sourceforge.net/support/tracker.php?aid=1474587 ">bug #1474587</a>)</li><li>Icelandic fixes and improvements</li></ul>
<a name="F.31"></a><h2>F.31 2.16</h2>

<p>Released on April 7th, 2006</p>
<a name="F.31.1"></a><h3>F.31.1 Release Notes</h3>
<ul>
<li>The script compiler, makensis, builds and works on big-endian platforms. This change enlarges the portability range of NSIS to theoretically every POSIX platform. Please <a href="http://sourceforge.net/tracker/?group_id=22049&atid=373085">report</a> any incompatibility with specific platforms or build-tools.</li><li>The internal changes made to support big-endian platforms also pave the road to x64 installers. There is now a central function which writes data to disk. This function currently only converts the endianity of integers, but it can be changed to selectively write 64-bit integers. Hopefully, there'll soon be a simple method of compiling a script to both x86 and x64 installers.</li><li>Changing Source/exehead/fileform.h to alter the internal structure of installers is no longer enough. The compiler has its own definitions of the structures which must also be changed in Source/fileform.cpp. In the future, fileform.cpp should be automatically generated from fileform.h, but for now, the synchronization must be done manually.</li></ul>
<a name="F.31.2"></a><h3>F.31.2 Changelog</h3>
<a name="F.31.2.1"></a><h4>F.31.2.1 Major Changes</h4>
<ul>
<li>Big-endian platforms are now fully supported by makensis</li><li><a href="AppendixB.html#B">Library</a> now available on non-Windows platforms as well, although it requires the installed DLL to have version information</li><li><a href="../Docs/makensisw/Readme.txt">MakeNSISW 2.1</a>: added &quot;Cancel compilation&quot; menu item</li></ul>
<a name="F.31.2.2"></a><h4>F.31.2.2 New/Changed Commands</h4>
<ul>
<li>Added /utcdate switch to <a href="Chapter5.html#5.4.1">!define</a> for UTC dates (<a href="http://sourceforge.net/support/tracker.php?aid=1459210">RFE #1459210</a>)</li></ul>
<a name="F.31.2.3"></a><h4>F.31.2.3 Minor Changes</h4>
<ul>
<li>Added an optional timestamp in the log - NSIS_CONFIG_LOG_TIMESTAMP build setting (<a href="http://sourceforge.net/support/tracker.php?aid=1460586">RFE #1460586</a>)</li><li>Added NSIS_WIN32_MAKENSIS define, defined only when compiling on Windows</li><li>Exported validate_filename to plug-ins</li><li>Fixed a crash in CResourceEditor when adding resources to a PE that already contains named resources</li><li>Fixed a small resource leak in the TypeLib::GetLibVersion plug-in function</li><li>Fixed CResourceEditor input sanity checks</li><li>Fixed incorrect <a href="Chapter4.html#4.9.5.2">FileOpen</a> input validation (<a href="http://sourceforge.net/support/tracker.php?aid=1459789">bug #1459789</a>)</li><li>Fixed <a href="AppendixB.html#B">Library</a> failure with DLLs marked as read-only</li><li>Fixed lzma's POSIX implemention thread synchronization issues and resource leaks</li><li>Fixed makensis self-path detection on non-Windows platforms (NSIS_CONFIG_CONST_DATA_PATH=no)</li><li>Fixed replace_icon and and generate_uninstall_icon_data icon validation</li><li>Made external CHM links safer to script exceptions (<a href="http://sourceforge.net/support/tracker.php?aid=1449879">bug #1449879</a>)</li><li>Minor documentation improvements and fixes (including <a href="http://sourceforge.net/support/tracker.php?aid=1077439">bug #1077439</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1448374">bug #1448374</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1464446">RFE #1464446</a>)</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.75</a>: added show function for the start menu page (<a href="http://sourceforge.net/support/tracker.php?aid=1448176">RFE #1448176</a>), added MUI_HEADER_TRANSPARENT_TEXT for transparent header texts (<a href="http://sourceforge.net/support/tracker.php?aid=1447766">RFE #1447766</a>)</li><li><a href="../Docs/NSISdl/ReadMe.txt">NSISdl</a>: better header detection for better compatibility with proxies like WinProxy (<a href="http://sourceforge.net/support/tracker.php?aid=1445735">bug #1445735</a>), fail if no headers are sent, faster downloads (<a href="http://sourceforge.net/support/tracker.php?aid=1465378">patch #1465378</a>)</li><li><a href="../Docs/StartMenu/Readme.txt">StartMenu</a>: validate user input (<a href="http://sourceforge.net/support/tracker.php?aid=1440636">bug #1440636</a>)</li></ul>
<a name="F.31.2.4"></a><h4>F.31.2.4 Translations</h4>
<ul>
<li>Added Basque translation</li><li>Minor Slovenian fixes</li></ul>
<a name="F.31.2.5"></a><h4>F.31.2.5 Build System</h4>
<ul>
<li>Added code tests for CResourceEditor and CDialogTemplate</li><li>Automatically pass build settings to script, eliminating the need to edit build.cpp for new settings</li><li>Fixed $PREFIX expansion during installation on POSIX platforms (<a href="http://sourceforge.net/support/tracker.php?aid=1456943">bug #1456943</a>)</li><li>Fixed CHM dependencies</li><li>Fixed compatibility issue with EclipseNSIS (version wasn't prefixed with 'v')</li><li>Fixed GCC 4.1 compatibility (<a href="http://sourceforge.net/support/tracker.php?aid=1456861">patch #1456861</a>)</li><li>Test for -Wl,-Map availability</li></ul>
<a name="F.32"></a><h2>F.32 2.15</h2>

<p>Released on March 4th, 2006</p>
<a name="F.32.1"></a><h3>F.32.1 Changelog</h3>
<a name="F.32.1.1"></a><h4>F.32.1.1 New/Changed Commands</h4>
<ul>
<li>Added <a href="Chapter5.html#5.4.5">!if</a> for more complex compile-time flow control (<a href="http://sourceforge.net/support/tracker.php?aid=1412982">patch #1412982</a>)</li><li>Added /math switch to <a href="Chapter5.html#5.4.1">!define</a> for simple compile-time mathematical operations (<a href="http://sourceforge.net/support/tracker.php?aid=1372561">patch #1372561</a>)</li></ul>
<a name="F.32.1.2"></a><h4>F.32.1.2 Minor Changes</h4>
<ul>
<li>Added more replacement options to <a href="AppendixE.html#E.3.8">WordReplace</a></li><li>Added NSIS_CONFIG_LOG_STDOUT configuration option for logging to stdout</li><li>Added path translation for <a href="Chapter5.html#5.1.2">!addincludedir</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1431958">bug #1431958</a>)</li><li><a href="AppendixE.html#E.2.9">ConfigRead</a> now sets the error flag, if the entry wasn't found</li><li>Documented <a href="Chapter4.html#4.9.7.4">Nop</a></li><li>Edit box in the installation directory selection page is now always LTR, even for RTL languages</li><li>Fixed improper iterator usage in dir_reader (<a href="http://sourceforge.net/support/tracker.php?aid=1431593">bug #1431593</a>)</li><li>Fixed <a href="Chapter4.html#4.9.4.15"><code>MessageBox</code></a><code> MB_TOPMOST</code> not showing up, if used as the first sections' instruction (<a href="http://sourceforge.net/support/tracker.php?aid=1400995">bug #1400995</a>)</li><li>Fixed <a href="Chapter4.html#4.9.1.8">RMDir</a> skipping files with names starting with two dots (<a href="http://sourceforge.net/support/tracker.php?aid=1420657">bug #1420657</a>)</li><li><a href="AppendixE.html#E.1.12">GetOptions</a> now sets the error flag, if the option wasn't found</li><li>Made <a href="Chapter5.html#5.1.1">!include</a> stop searching the include directories after a match is found (<a href="http://sourceforge.net/support/tracker.php?aid=1441877">bug #1441877</a>)</li><li>Made <a href="AppendixE.html#E">header functions</a> use /NOUNLOAD for faster plug-in calls</li><li>Minor documentation improvements and fixes (including <a href="http://sourceforge.net/support/tracker.php?aid=1420352">bug #1420352</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1432423">bug #1432423</a>)</li><li>More informative <a href="Chapter4.html#4.8.1.18">Icon</a> error messages (<a href="http://sourceforge.net/support/tracker.php?aid=1174742">bug #1174742</a>)</li><li>New case sesnsitive functions in headers: <a href="AppendixE.html#E.3.3">WordFindS</a>, <a href="AppendixE.html#E.3.5">WordFind2XS</a>, <a href="AppendixE.html#E.3.7">WordFind3XS</a>, <a href="AppendixE.html#E.3.9">WordReplaceS</a>, <a href="AppendixE.html#E.3.11">WordAddS</a>, <a href="AppendixE.html#E.3.13">WordInsertS</a>, <a href="AppendixE.html#E.3.15">StrFilterS</a>, <a href="AppendixE.html#E.2.8">TextCompareS</a>, <a href="AppendixE.html#E.2.10">ConfigReadS</a>, <a href="AppendixE.html#E.2.12">ConfigWriteS</a>, <a href="AppendixE.html#E.1.13">GetOptionsS</a></li></ul>
<a name="F.32.1.3"></a><h4>F.32.1.3 Translations</h4>
<ul>
<li>Added proper language identifier for Breton</li><li>Breton translation improvements</li><li>Bulgarian translation improvements</li><li>Fixed Czech grammer mistakes (<a href="http://sourceforge.net/support/tracker.php?aid=1427189">patch #1427189</a>)</li><li>Fixed Italian typo (<a href="http://sourceforge.net/support/tracker.php?aid=1416988">patch #1416988</a>)</li><li>Updated Mongolian</li></ul>
<a name="F.32.1.4"></a><h4>F.32.1.4 Build System</h4>
<ul>
<li>Fixed __BIG_ENDIAN__ definition</li><li>Fixed improper handling of paths passed to the compiler (<a href="http://sourceforge.net/support/tracker.php?aid=1434215">bug #1434215</a>)</li><li>Improved GCC 4.2 compatibility (<a href="http://sourceforge.net/support/tracker.php?aid=1434174">patch #1434174</a>)</li><li>Moved NSIS_VARS_SECTION from config.h to scons</li><li>Write all configuration to sconf.h instead of passing it on the command line</li></ul>
<a name="F.33"></a><h2>F.33 2.14</h2>

<p>Released on January 24th, 2006</p>
<a name="F.33.1"></a><h3>F.33.1 Release Notes</h3>
<ul>
<li>This release fixes a critical bug that caused installers using plug-ins to fail loading on Windows 9x and NT. Upgrading from 2.13 is highly recommended.</li></ul>
<a name="F.33.2"></a><h3>F.33.2 Changelog</h3>
<a name="F.33.2.1"></a><h4>F.33.2.1 Major Changes</h4>
<ul>
<li>Fixed a bug that corrupted $TEMP under Windows 9x and NT and caused InitPluginsDir to fail (<a href="http://sourceforge.net/support/tracker.php?aid=1412159">bug #1412159</a>)</li></ul>
<a name="F.33.2.2"></a><h4>F.33.2.2 Minor Changes</h4>
<ul>
<li>Fixed a possible buffer overflow caused by long values of $0, when using large NSIS_MAX_STRLEN builds (above 4096)</li></ul>
<a name="F.34"></a><h2>F.34 2.13</h2>

<p>Released on January 21st, 2006</p>
<a name="F.34.1"></a><h3>F.34.1 Release Notes</h3>
<ul>
<li>Language detection has changed. The default language is now set to the user's user-interface language instead of the locale language, as suggested by <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/intl/nls_0xrn.asp">MSDN</a>. To restore the old behavior, use <code>System::Call &quot;kernel32::GetUserDefaultLangID()i.a&quot;</code> in <a href="Chapter4.html#4.7.2.1.2">.onInit</a>.</li></ul>
<a name="F.34.2"></a><h3>F.34.2 Changelog</h3>
<a name="F.34.2.1"></a><h4>F.34.2.1 Major Changes</h4>
<ul>
<li>Default $LANGUAGE value is now based on user's UI language instead of locale (<a href="http://sourceforge.net/support/tracker.php?aid=1324734">bug #1324734</a>)</li></ul>
<a name="F.34.2.2"></a><h4>F.34.2.2 New/Changed Commands</h4>
<ul>
<li>Added <a href="Chapter4.html#4.9.4.20">StrCmpS</a> for case sensitive string comparison (<a href="http://sourceforge.net/support/tracker.php?aid=1381929">patch #1381929</a>)</li></ul>
<a name="F.34.2.3"></a><h4>F.34.2.3 Minor Changes</h4>
<ul>
<li>Added system time support to <a href="AppendixE.html#E.1">GetTime</a></li><li>Fixed components page checkbox redraw problem under Windows 95 (<a href="http://sourceforge.net/support/tracker.php?aid=1397031">bug #1397031</a>)</li><li>Fixed constant maximum string length in <a href="Chapter4.html#4.9.5.3">FileRead</a> (changed from 1024 to NSIS_MAX_STRLEN)</li><li>Fixed empty $INSTDIR value in directory page show callback function (<a href="http://sourceforge.net/support/tracker.php?aid=1209843">bug #1209843</a>)</li><li>Fixed relative jumps ignoring <a href="Chapter4.html#4.9.1.5"><code>File</code></a><code> /nonfatal</code> (<a href="http://sourceforge.net/support/tracker.php?aid=1299100">bug #1299100</a>)</li><li>Fixed typo in NSIS Menu (<a href="http://sourceforge.net/support/tracker.php?aid=1387748">bug #1387748</a>)</li><li>Issue a warning when <a href="Chapter4.html#4.8.1.6"><code>BrandingText</code></a><code> /TRIM*</code> actually expands the label (<a href="http://sourceforge.net/support/tracker.php?aid=1362443">bug #1362443</a>)</li><li>Made <a href="Chapter4.html#4.9.1.8"><code>RMDir</code></a><code> /r</code> remove Unicode paths as well using short names (<a href="http://sourceforge.net/support/tracker.php?aid=1378785">bug #1378785</a>)</li><li>Minor documentation improvements and fixes</li></ul>
<a name="F.34.2.4"></a><h4>F.34.2.4 Utilities and Plug-ins</h4>
<ul>
<li>Fixed System plug-in <a href="../Docs/System/System.html">documentation</a> of callback functions (<a href="http://sourceforge.net/support/tracker.php?aid=1403608">bug #1403608</a>)</li><li>Fixed System plug-in heap corruption (<a href="http://sourceforge.net/support/tracker.php?aid=1403601">bug #1403601</a>)</li></ul>
<a name="F.34.2.5"></a><h4>F.34.2.5 Translations</h4>
<ul>
<li>Mongolian translation improvements</li></ul>
<a name="F.34.2.6"></a><h4>F.34.2.6 Build System</h4>
<ul>
<li>Better installation under POSIX with proper ${NSISDIR} detection and appropriate directory paths (/usr/bin, /usr/share/doc, etc.)</li></ul>
<a name="F.35"></a><h2>F.35 2.12</h2>

<p>Released on December 17th, 2005</p>
<a name="F.35.1"></a><h3>F.35.1 Changelog</h3>
<a name="F.35.1.1"></a><h4>F.35.1.1 Major Changes</h4>
<ul>
<li>Fixed compile-time assertion failure for big uninstallers (<a href="http://sourceforge.net/support/tracker.php?aid=1380447">bug #1380447</a>)</li><li><a href="Chapter2.html#2">Tutorial</a> enhancements (including <a href="http://sourceforge.net/support/tracker.php?aid=1366431">bug #1366431</a>)</li></ul>
<a name="F.35.1.2"></a><h4>F.35.1.2 New/Changed Commands</h4>
<ul>
<li>Added /NONFATAL switch to <a href="Chapter5.html#5.1.1">!include</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1372048">patch #1372048</a>)</li></ul>
<a name="F.35.1.3"></a><h4>F.35.1.3 Minor Changes</h4>
<ul>
<li>Clearer error message for double label definition (<a href="http://sourceforge.net/support/tracker.php?aid=1374675">patch #1374675</a>)</li><li>Fixed browsed network root directory not being accepted (<a href="http://sourceforge.net/support/tracker.php?aid=1331292">bug #1331292</a>)</li><li>Fixed incorrect <a href="Chapter4.html#4.8.1.10">CompletedText</a> parsing (<a href="http://sourceforge.net/support/tracker.php?aid=1349810">bug #1349810</a>)</li><li>Fixed sdbarker_tiny.exe's compatibility with NSIS_CONFIG_LOG (<a href="http://sourceforge.net/support/tracker.php?aid=1365869">bug #1365869</a>)</li><li>Implemented nicer registry commands log (<a href="http://sourceforge.net/support/tracker.php?aid=1340255">patch #1340255</a>)</li><li>Minor documentation improvements and fixes (including <a href="http://sourceforge.net/support/tracker.php?aid=1355653">patch #1355653</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1349810">bug #1349810</a>)</li><li>Multi-line comments are no longer ignored inside !ifdef'd block</li></ul>
<a name="F.35.1.4"></a><h4>F.35.1.4 Utilities and Plug-ins</h4>
<ul>
<li>Added drag &amp; drop support for zip2exe</li><li>Better drag &amp; drop error handling in MakeNSISw</li><li>Fixed Math plug-in array issues (<a href="http://sourceforge.net/support/tracker.php?aid=1235875">bug #1235875</a>)</li></ul>
<a name="F.35.1.5"></a><h4>F.35.1.5 Translations</h4>
<ul>
<li>Added browse button Danish translation</li><li>Breton translation fixes and improvements</li><li>Fixed finish button Swedish translation</li></ul>
<a name="F.35.1.6"></a><h4>F.35.1.6 Build System</h4>
<ul>
<li>Fixed endianess detection problem on POSIX platforms (<a href="http://sourceforge.net/support/tracker.php?aid=1370179">bug #1370179</a>)</li><li>Generated installers use nsis-VERSION-setup.exe template</li></ul>
<a name="F.36"></a><h2>F.36 2.11</h2>

<p>Released on November 12th, 2005</p>
<a name="F.36.1"></a><h3>F.36.1 Release Notes</h3>
<ul>
<li>Rebuilding existing installers that use <a href="Chapter4.html#4.8.2.8"><code>SetOverwrite</code></a><code> ifdiff</code>, might falsely overwrite files once</li></ul>
<a name="F.36.2"></a><h3>F.36.2 Changelog</h3>
<a name="F.36.2.1"></a><h4>F.36.2.1 Major Changes</h4>
<ul>
<li>Added a workaround for a bug that prevented detection of some special folders (e.g. <a href="Chapter4.html#4.2.2">$DESKTOP</a> for all users) on Windows 9x (<a href="http://sourceforge.net/support/tracker.php?aid=1008632">bug #1008632</a>)</li><li>Fixed a crash caused by copying very long details to clipboard in the installation log page (<a href="http://sourceforge.net/support/tracker.php?aid=1314004">bug #1314004</a>)</li></ul>
<a name="F.36.2.2"></a><h4>F.36.2.2 New/Changed Commands</h4>
<ul>
<li>Added <a href="Chapter5.html#5.1.12">!tempfile</a>, <a href="Chapter5.html#5.1.6">!delfile</a> and <a href="Chapter5.html#5.1.4">!appendfile</a> for cross-platform handling of text files during compilation</li><li>Fixed <a href="Chapter4.html#4.8.1.8">ChangeUI</a> input handling (<a href="http://sourceforge.net/support/tracker.php?aid=1348473">patch #1348473</a>)</li><li><a href="Chapter4.html#4.6.1.4">SectionIn</a> RO is no longer case sensitive</li></ul>
<a name="F.36.2.3"></a><h4>F.36.2.3 Minor Changes</h4>
<ul>
<li>Added support URL to the NSIS package entry in the Add/Remove control panel (<a href="http://sourceforge.net/support/tracker.php?aid=1349867">RFE #1349867</a>)</li><li>Fixed comment handling (<a href="http://sourceforge.net/support/tracker.php?aid=1324898">patch #1324898</a>)</li><li>Fixed duplicate RegTool test in <a href="AppendixB.html#B">Library</a></li><li>Fixed invalid language selection according to <a href="Chapter4.html#4.2.2">$LANGUAGE</a> in <a href="Chapter4.html#4.7.2.1.2">.onInit</a> when only primary language match is found (<a href="http://sourceforge.net/support/tracker.php?aid=1328629">bug #1328629</a>)</li><li>Fixed missing RegTool error after install-reboot-install-reboot sequence with <a href="AppendixB.html#B">Library</a></li><li>Fixed portability issues with <a href="../Examples/LogicLib.nsi">LogicLib</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1320297">bug #1320297</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1248336">patch #1248336</a>)</li><li>Fixed <a href="Chapter4.html#4.8.2.8"><code>SetOverwrite</code></a><code> ifdiff</code> always overwriting on FAT file system (<a href="http://sourceforge.net/support/tracker.php?aid=1338423">bug #1338423</a>)</li><li>Fixed wrong size of red.bmp check box image</li><li>Larger browse button for localized texts (<a href="http://sourceforge.net/support/tracker.php?aid=1314682">bug #1314682</a>)</li><li>Minor documentation improvements and fixes (including <a href="http://sourceforge.net/support/tracker.php?aid=1349810">bug #1349810</a>)</li><li>Sort language names in language selection dialog</li><li>Use the temporary directory for <a href="AppendixB.html#B">Library</a> temporary files, instead of the possibly write-protected installation directory</li></ul>
<a name="F.36.2.4"></a><h4>F.36.2.4 Utilities and Plug-ins</h4>
<ul>
<li>Added /OEM switch for OEM to ANSI conversion in <a href="../Docs/nsExec/nsExec.txt">nsExec</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1346737">patch #1346737</a>)</li><li>Added /PROXY switch for manual proxy configuration in <a href="../Docs/NSISdl/ReadMe.txt">NSISdl</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1334166">patch #1334166</a>)</li><li>Added solid compression check box to zip2exe (<a href="http://sourceforge.net/support/tracker.php?aid=1334155">patch #1334155</a>)</li><li>Added stdin in MakeNSISw to allow xcopy to run</li><li>Added timestamp handling to zip2exe (<a href="http://sourceforge.net/support/tracker.php?aid=1349853">bug #1349853</a>)</li><li>Fixed input validation of <a href="../Docs/nsExec/nsExec.txt">nsExec</a></li><li><a href="../Docs/InstallOptions/Readme.html">InstallOptions 2.44</a>: Added HWND and HWND2 entries to the INI file to avoid messy calculations of the correct control id</li></ul>
<a name="F.36.2.5"></a><h4>F.36.2.5 Translations</h4>
<ul>
<li>Slovenian translation fixes and improvements</li></ul>
<a name="F.36.2.6"></a><h4>F.36.2.6 Build System</h4>
<ul>
<li>Added a workaround for linking errors caused by a bad library included in recent Platform SDK versions</li><li>Check for and use -pthread linker flag</li><li>Improved FreeBSD portability</li><li>Nicer error message for SCons version older than 0.96.90</li></ul>
<a name="F.37"></a><h2>F.37 2.10</h2>

<p>Released on October 4th, 2005</p>
<a name="F.37.1"></a><h3>F.37.1 Changelog</h3>
<a name="F.37.1.1"></a><h4>F.37.1.1 Major Changes</h4>
<ul>
<li>Added auto completion to the directory page</li><li>Fixed a bug, introduced in 2.09, that caused <a href="Chapter4.html#4.8.1.2">AllowRootDirInstall</a> to fail</li><li>Fixed a thread leak in the POSIX implementation of LZMA</li><li><a href="../Docs/VPatch/Readme.html">VPatch 3.1</a>: MD5 checksums, better performance, and some bug fixes (including <a href="http://sourceforge.net/support/tracker.php?aid=1219806">bug #1219806</a>)</li></ul>
<a name="F.37.1.2"></a><h4>F.37.1.2 Minor Changes</h4>
<ul>
<li>Added rounding of required and available size on the directory page (1.59 =&gt; 1.6 instead of 1.5)</li><li>Added WS_EX_LEFTSCROLLBAR style in RTL mode (<a href="http://sourceforge.net/support/tracker.php?aid=1283528">bug #1283528</a>)</li><li>Fixed alteration of the working directory by FileRequest in InstallOptions (<a href="http://sourceforge.net/support/tracker.php?aid=1287731">bug #1287731</a>)</li><li>Fixed bad mnemonic key in MakeNSISw menu (<a href="http://sourceforge.net/support/tracker.php?aid=1288159">bug #1288159</a>)</li><li>Fixed negative size values showing up after the decimal point in the directory page for very big sizes</li><li>Minor documentation improvements and fixes</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.74</a>: Fixed compile error when checkboxes are used on multiple finish pages</li></ul>
<a name="F.37.1.3"></a><h4>F.37.1.3 Translations</h4>
<ul>
<li>Fixed a bug in Slovenian translation that caused lots of missing language string warnings</li><li>Fixed typos in Serbian translation</li><li>Fixed typos in Thai translation</li><li>Updated Simple Chinese translation</li></ul>
<a name="F.37.1.4"></a><h4>F.37.1.4 Build System</h4>
<ul>
<li>Automatic fix for <a href="http://forums.winamp.com/showthread.php?s=&threadid=179848">VC6 SP6 compile error</a></li><li>Moved most of the configuration from config.h to the build system</li><li>Removed all optimizations and symbol stripping in debug mode</li><li>SCons requirement updated to 0.96.91</li><li>VPatch can be built on POSIX as well</li></ul>
<a name="F.38"></a><h2>F.38 2.09</h2>

<p>Released on August 26th, 2005</p>
<a name="F.38.1"></a><h3>F.38.1 Changelog</h3>
<a name="F.38.1.1"></a><h4>F.38.1.1 Major Changes</h4>
<ul>
<li>Fixed a bug introduced in 2.08, that prevented uninstallers from deleting $INSTDIR</li><li>Fixed a bug that caused &quot;C:\ &quot; to be considered a valid installation directory, even without <a href="Chapter4.html#4.8.1.2">AllowRootDirInstall</a></li></ul>
<a name="F.38.1.2"></a><h4>F.38.1.2 New/Changed Commands</h4>
<ul>
<li><a href="Chapter4.html#4.2.1.1">Var</a> can now be used in sections and functions, but only with the /GLOBAL flag</li></ul>
<a name="F.38.1.3"></a><h4>F.38.1.3 Minor Changes</h4>
<ul>
<li>Applied <a href="http://sourceforge.net/support/tracker.php?aid=1248335">patch #1248335</a> for greater portability of examples</li><li><a href="AppendixE.html#E.1">FileFunc</a>: workaround for GetLongPathName which is not available on Windows 95 (Instructor)</li><li>Fixed an unused label warning in <a href="AppendixB.html#B">Library</a></li><li>Fixed duplicate label errors in <a href="../Examples/LogicLib.nsi">LogicLib</a> and <a href="AppendixB.html#B">Library</a> when used in different files (<a href="http://sourceforge.net/support/tracker.php?aid=1243865">bug #1243865</a>)</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.73</a>: fixed checkboxes on uninstaller finish page or multiple finish pages</li><li><a href="AppendixE.html#E.3">WordFunc</a>: fixed incorrect replacement of first word in WordReplace, under some conditions (Instructor)</li></ul>
<a name="F.38.1.4"></a><h4>F.38.1.4 Translations</h4>
<ul>
<li>Renamed Malaysian to Malay</li><li>Update Thai translation to the latest version</li><li>Updated Kurdish MUI translation to the latest version</li></ul>
<a name="F.38.1.5"></a><h4>F.38.1.5 Build System</h4>
<ul>
<li>Fixed a number of build problems on POSIX platforms which caused plug-ins to malfunction and installers to crash</li></ul>
<a name="F.39"></a><h2>F.39 2.08</h2>

<p>Released on July 23rd, 2005</p>
<a name="F.39.1"></a><h3>F.39.1 Release Notes</h3>
<ul>
<li>The Archive has been replaced with a <a href="http://nsis.sourceforge.net/wiki/">Wiki</a>. The new Wiki allows everyone to edit all pages so there's no longer need to hunt for the original author. It also allows everyone to upload plug-ins and not just administrators. And as if that's not enough, it looks better and provides easier and more feature-rich syntax.</li></ul>
<a name="F.39.2"></a><h3>F.39.2 Changelog</h3>
<a name="F.39.2.1"></a><h4>F.39.2.1 Major Changes</h4>
<ul>
<li>Added Instructor's <a href="AppendixE.html#E">header files of useful functions</a></li><li><a href="AppendixB.html#B">Library</a> improvements: ordered registration after reboot, smaller RegTool and separate process for each registration to avoid conflicts (thanks stb)</li></ul>
<a name="F.39.2.2"></a><h4>F.39.2.2 Minor Changes</h4>
<ul>
<li>Added Bosnian and Kurdish translations</li><li>Added per-user nsisconf.nsh file in %APPDATA% or $HOME, depending on the platform (<a href="http://sourceforge.net/support/tracker.php?aid=1223041">patch #1223041</a>)</li><li>Documentation improvements and fixes (including <a href="http://sourceforge.net/support/tracker.php?aid=1202495">bug #1202495</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1227610">bug #1227610</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1238686">bug #1238686</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1225167">patch #1225167</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1240601">RFE #1240601</a>)</li><li>Fixed _?= being ignored, if the uninstaller path is not quoted and is separated with only space from _?=</li><li>Fixed <a href="AppendixB.html#B">Library</a> failing on paths with spaces (<a href="http://sourceforge.net/support/tracker.php?aid=1234283">bug #1234283</a>)</li><li>Fixed UpgradeDLL compilation error (<a href="http://sourceforge.net/support/tracker.php?aid=1230336">bug #1230336</a>)</li><li>Improved French, Ukrainian and Luxembourgish translation</li><li>Made <a href="Chapter4.html#4.9.1.8">RMDir</a> set the error flag, if passed an invalid directory path (<a href="http://sourceforge.net/support/tracker.php?aid=1227553">bug #1227553</a>)</li><li>Made uninstallers copy themselves into a subdirectory of the temporary directory to avoid DLLs left in the temporary directory from being loaded by the uninstaller (<a href="http://sourceforge.net/support/tracker.php?aid=1214319">patch #1214319</a>)</li><li>Missing <a href="Chapter4.html#4.9.15.2">LangString</a> warning now uses the language name, if possible</li><li>zip2exe: fixed restriction of extraction path length and updated to <a href="http://www.zlib.net/">zlib</a> 1.2.3 (<a href="http://sourceforge.net/support/tracker.php?aid=1226381">bug #1226381</a>)</li></ul>
<a name="F.39.2.3"></a><h4>F.39.2.3 Build System</h4>
<ul>
<li>Added linker script to assure correct order of sections when building using GNU tools</li><li>Added <code>test</code> target</li><li>UIs are now built from source</li></ul>
<a name="F.40"></a><h2>F.40 2.07</h2>

<p>Released on June 20th, 2005</p>
<a name="F.40.1"></a><h3>F.40.1 Release Notes</h3>
<ul>
<li>NSIS Update was removed and the update check was moved back to MakeNSISw (Help -&gt; NSIS Update). Use the <a href="AppendixG.html#G.4">nightly builds</a> to get the latest compiled binaries from CVS.</li><li>Solid compression is no longer the default for bzip2 and lzma, use <code>SetCompressor /SOLID bzip2</code> or <code>SetCompressor /SOLID lzma</code> for solid compression.</li><li>Source code is no longer supplied with the installer package. Source code can be downloaded from CVS or from the <a href="http://nsis.sourceforge.net/download/">download page</a>.</li><li>The directory structure of the installation has been changed. All documentation is now in the Docs folder and all examples are in the Examples folder.</li></ul>
<a name="F.40.2"></a><h3>F.40.2 Changelog</h3>
<a name="F.40.2.1"></a><h4>F.40.2.1 Major Changes</h4>
<ul>
<li>Added /SOLID switch for <a href="Chapter4.html#4.8.2.4">SetCompressor</a></li><li>New build system (see <a href="AppendixG.html#G">appendix G</a>)</li><li>Stubs (exeheads) are no longer compiled into makensis.exe, but kept in the Stubs folder</li></ul>
<a name="F.40.2.2"></a><h4>F.40.2.2 New/Changed Commands</h4>
<ul>
<li><a href="Chapter4.html#4.9.2.6">EnumRegValue</a> sets the error flag, if the enumeration index is out of range (<a href="http://sourceforge.net/support/tracker.php?aid=1178756">bug #1178756</a>)</li><li><a href="Chapter4.html#4.9.2.7">ExpandEnvStrings</a> now sets the error flag as the documentation states</li><li>Made <a href="Chapter4.html#4.9.1.5">File</a> /oname throw an error if the first character is a quote</li></ul>
<a name="F.40.2.3"></a><h4>F.40.2.3 Minor Changes</h4>
<ul>
<li>Added <a href="Chapter4.html#4.2.3">$LOCALAPPDATA</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1172123">RFE #1172123</a>)</li><li>Changed MUI dialogs charset from ANSI_CHARSET to DEFAULT_CHARSET (<a href="http://sourceforge.net/support/tracker.php?aid=1193736">bug #1193736</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1201712">bug #1201712</a>)</li><li>Fixed <a href="Chapter4.html#4.2.2">$INSTDIR</a> changing, even if user clicked Cancel in browse dialog</li><li>Fixed a crash in makensis when using <a href="Chapter4.html#4.8.1.45">WindowIcon</a> off (<a href="http://sourceforge.net/support/tracker.php?aid=1123353">bug #1123353</a>)</li><li>Fixed <a href="Chapter4.html#4.9.4.2">Call</a> :label in uninstall code</li><li>Fixed compilation error without NSIS_CONFIG_COMPONENTPAGE</li><li>Fixed compilation errors on various platforms (including <a href="http://sourceforge.net/support/tracker.php?aid=1179116">patch #1179116</a>, <a href="http://sourceforge.net/support/tracker.php?aid=1193692">patch #1193692</a>)</li><li>Fixed <a href="Chapter4.html#4.9.3.3">CreateDirectory</a> setting the error flag for directories with two consecutive backslashes (<a href="http://sourceforge.net/support/tracker.php?aid=1119442">bug #1119442</a>)</li><li>Fixed <a href="AppendixB.html#B">InstallLib</a> setting the error flag for new shared libraries (<a href="http://sourceforge.net/support/tracker.php?aid=1181951">bug #1181951</a>)</li><li>Fixed letters case in examples (<a href="http://sourceforge.net/support/tracker.php?aid=1184571">patch #1184571</a>)</li><li>Fixed logging state being reset after the directory page (<a href="http://sourceforge.net/support/tracker.php?aid=1168711">bug #1168711</a>)</li><li>Fixed overlapping icon in welcome page (<a href="http://sourceforge.net/support/tracker.php?aid=1221772">bug #1221772</a>)</li><li>Fixed <a href="Chapter4.html#4.9.1.8">RMDir</a> /REBOOTOK setting the reboot flag when trying to delete non-existent directory (<a href="http://sourceforge.net/support/tracker.php?aid=1073792">bug #1073792</a>)</li><li>Minor documentation fixes and improvements (including <a href="http://sourceforge.net/support/tracker.php?aid=1220940">bug #1220940</a>)</li><li>Removed NSIS Update, MakeNSISw checks for new versions again</li></ul>
<a name="F.40.2.4"></a><h4>F.40.2.4 Include Files</h4>
<ul>
<li>More messages in <a href="/usr/share/nsis/Include/WinMessages.nsh">WinMessages.nsh</a> (Shengalts Aleksander)</li><li>Some more useful macros in <a href="/usr/share/nsis/Include/Colors.nsh">Colors.nsh</a> (Joel)</li></ul>
<a name="F.40.2.5"></a><h4>F.40.2.5 Utilities and Plug-ins</h4>
<ul>
<li>Fixed halibut segfaults on PowerPC (<a href="http://sourceforge.net/support/tracker.php?aid=1180886">patch #1180886</a>)</li><li><a href="../Docs/Math/Math.txt.gz">Math</a>: Fixed memory leak (brainsucker)</li><li>zip2exe: upgraded to zlib 1.2.2</li></ul>
<a name="F.40.2.6"></a><h4>F.40.2.6 Translations</h4>
<ul>
<li>Added Malaysian translation (Azwa)</li><li>Added Welsh translation (Rhoslyn Prys)</li><li>Fixed Breton NLF file (credits weren't commented)</li><li>Fixed duplicate accelerator in French translation (<a href="http://sourceforge.net/support/tracker.php?aid=1168652">bug #1168652</a>)</li><li>Improved French translation (<a href="http://sourceforge.net/support/tracker.php?aid=1220277">bug #1220277</a>)</li><li>Updated Russian translation (Dmitry)</li><li>Updated translation credits (<a href="http://sourceforge.net/support/tracker.php?aid=1223362">patch #1223362</a>)</li></ul>
<a name="F.41"></a><h2>F.41 2.06</h2>

<p>Released on March 19th, 2005</p>
<a name="F.41.1"></a><h3>F.41.1 Changelog</h3>
<a name="F.41.1.1"></a><h4>F.41.1.1 Major Changes</h4>
<ul>
<li>Fixed a bug, introduced in 2.05, that made components selection not function properly if the first section in the script was a section group</li><li>Fixed a bug, introduced in 2.05, that corrupted the state of section groups inside section groups (<a href="http://sourceforge.net/support/tracker.php?aid=1155836">bug #1155836</a>)</li></ul>
<a name="F.41.1.2"></a><h4>F.41.1.2 New/Changed Commands</h4>
<ul>
<li>Added MB_RTLREADING style to <a href="Chapter4.html#4.9.4.15">MessageBox</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1159701">RFE #1159701</a>)</li><li>All registry instructions now accept SHCTX which is replaced with HKLM or HKCU on runtime according to <a href="Chapter4.html#4.9.7.7">SetShellVarContext</a> (<a href="http://sourceforge.net/support/tracker.php?aid=1124901">RFE #1124901</a>)</li></ul>
<a name="F.41.1.3"></a><h4>F.41.1.3 Minor Changes</h4>
<ul>
<li>Added Belarusian and Icelandic language files</li><li>Added components.c to the Makefile (<a href="http://sourceforge.net/support/tracker.php?aid=1123154">patch #1123154</a>)</li><li>Added missing <a href="Chapter4.html#4.9.4.3">ClearErrors</a> in GetWindowsVersion (<a href="http://sourceforge.net/support/tracker.php?aid=1155588">bug #1155588</a>)</li><li>Fixed a bug in install.sh that made it try to install a non existing directory</li><li>Fixed a bug in the Russian language file distributed with 2.05</li><li>Fixed a bug that caused SetFont to not function properly with RTL languages on Windows 9x (<a href="http://sourceforge.net/support/tracker.php?aid=1159700">bug #1159700</a>)</li><li>Fixed a bug, introduced in 2.05, that caused problems with <a href="Chapter4.html#4.8.1.24">InstType</a> /COMPONENTSONLYONCUSTOM (<a href="http://sourceforge.net/support/tracker.php?aid=1155060">bug #1155060</a>)</li><li>Fixed a crash caused by compiling large uninstallers (<a href="http://sourceforge.net/support/tracker.php?aid=1144763">bug #1144763</a>)</li><li>Fixed compile error without NSIS_CONFIG_CRC_SUPPORT</li><li>Fixed compile errors of MinGW on POSIX for source code under Contrib (<a href="http://sourceforge.net/support/tracker.php?aid=1164307">patch #1164307</a>)</li><li>Fixed plug-ins directory initialization for extremely restricted guest users with no directory listing access to the temporary directory</li><li>Made install.sh not use $(tempfile) and install files under /usr/share instead of /lib (<a href="http://sourceforge.net/support/tracker.php?aid=1120399">patch #1120399</a>)</li><li>Minor documentation updates and fixes</li><li>Updated Slovenian, Serbian and Serbian Latin language files</li></ul>
<a name="F.41.1.4"></a><h4>F.41.1.4 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/AdvSplash/advsplash.txt">AdvSplash</a>: Fixed a small memory leak (Thanks Takhir)</li><li><a href="../Docs/StartMenu/Readme.txt">StartMenu</a>: Added support for <a href="Chapter4.html#4.9.14.15">SetCtlColors</a> (<a href="http://sourceforge.net/support/tracker.php?aid=711900">RFE #711900</a>)</li></ul>
<a name="F.42"></a><h2>F.42 2.05</h2>

<p>Released on February 4th, 2005</p>
<a name="F.42.1"></a><h3>F.42.1 Release Notes</h3>
<ul>
<li>A lot of changes were made to the behavior of sections/components and related instructions. The changes were thoroughly tested, but may still cause minor incompatibilities with old scripts. Please let us know if your script no longer functions as expected with these changes.</li></ul>
<a name="F.42.2"></a><h3>F.42.2 Changelog</h3>
<a name="F.42.2.1"></a><h4>F.42.2.1 New/Changed Commands</h4>
<ul>
<li>Renamed SubSection and SubSectionEnd to <a href="Chapter4.html#4.6.1.5">SectionGroup</a> and <a href="Chapter4.html#4.6.1.6">SectionGroupEnd</a></li><li><a href="Chapter4.html#4.9.13.1">SectionSetFlags</a>, when used on a section group, toggles its children too</li><li><a href="Chapter4.html#4.9.13.3">SectionSetText</a> works better with variables (parses immediately and treats an empty variable as an empty string)</li><li><a href="Chapter4.html#4.9.13.9">SetCurInstType</a> works without the components page</li></ul>
<a name="F.42.2.2"></a><h4>F.42.2.2 Minor Changes</h4>
<ul>
<li>Added Breton translation</li><li><a href="../Docs/AdvSplash/advsplash.txt">AdvSplash</a>: Fixed double delay time in some cases</li><li>Documentation fixes and enhancements (including <a href="http://sourceforge.net/support/tracker.php?aid=1098454">patch #1098454</a>)</li><li>Fixed case sensitive name comparison with <a href="Chapter4.html#4.9.1.5">File</a> /x, when not using wildcards</li><li>Fixed extraction status ending prior to 100%</li><li>Fixed negative values of available space in the directory page (<a href="http://sourceforge.net/support/tracker.php?aid=1114876">bug #1114876</a>)</li><li>Fixed system.nsi example crash (<a href="http://sourceforge.net/support/tracker.php?aid=1102255">bug #1102255</a>)</li><li>Fixed unused label warnings with <a href="AppendixB.html#B">Library macros</a></li><li>Improved some error messages</li><li><a href="../Docs/InstallOptions/Readme.html">InstallOptions 2.42</a>: Added an image displaying example, added TRANSPARENT flag for BITMAP fields (<a href="http://sourceforge.net/support/tracker.php?aid=1079715">RFE #1079715</a> - funded by Chris Morgan)</li><li>Invisible sections weren't always affected by a change of the installation type (<a href="http://sourceforge.net/support/tracker.php?aid=1045722">bug #1045722</a>)</li><li>Language file fixes</li><li>Made pages refresh after an aborted leave function</li><li>Partially selected section groups can now be toggled</li></ul>
<a name="F.43"></a><h2>F.43 2.04</h2>

<p>Released on January 7th, 2005</p>
<a name="F.43.1"></a><h3>F.43.1 Changelog</h3>
<a name="F.43.1.1"></a><h4>F.43.1.1 Major Changes</h4>
<ul>
<li>Fixed $0 changed by <a href="Chapter4.html#4.9.1.5">File</a> /r</li><li>Fixed empty directory not included by <a href="Chapter4.html#4.9.1.5">File</a> /r</li><li>Fixed invalid directory creation by <a href="Chapter4.html#4.9.1.5">File</a> /r on POSIX</li><li>Fixed Unicode conversion problems on POSIX</li></ul>
<a name="F.43.1.2"></a><h4>F.43.1.2 Minor Changes</h4>
<ul>
<li>Added new test for dir_reader::matches</li><li>Fixed LibraryLocal failure with UNC paths</li><li>Fixed VC 7.1 and GCC 3.4 compile errors</li><li>Language file fixes</li></ul>
<a name="F.44"></a><h2>F.44 2.03</h2>

<p>Released on December 3rd, 2004</p>
<a name="F.44.1"></a><h3>F.44.1 Release Notes</h3>
<ul>
<li>If you're using <code>File /r folder</code> in your script, it's recommended you replace it with <code>File /r folder\*</code> for faster compilation and so no other folders named <em>folder</em> will be included</li><li>Command line switches prefix on POSIX has changed to a dash</li><li>The plug-in API change is backward compatible</li></ul>
<a name="F.44.2"></a><h3>F.44.2 Changelog</h3>
<a name="F.44.2.1"></a><h4>F.44.2.1 Major Changes</h4>
<ul>
<li>Added another parameter to plug-in functions with a pointer to exec_flags and ExecuteCodeSegment</li><li>Fixed handling of absolute paths on POSIX</li><li>Made RegDLL load and unload a DLL exactly once to fix crashes with COM DLLs registration</li></ul>
<a name="F.44.2.2"></a><h4>F.44.2.2 New/Changed Commands</h4>
<ul>
<li>Added /date switch to !define for definition of date and time constants</li><li>Added /x switch for <a href="Chapter4.html#4.9.1.5">File</a> and <a href="Chapter4.html#4.9.1.7">ReserveFile</a> to exclude files and directories</li><li>Made <a href="Chapter4.html#4.9.1.5">File</a>'s /r switch always search in subdirectories, even if the given path points to an existing directory</li></ul>
<a name="F.44.2.3"></a><h4>F.44.2.3 Minor Changes</h4>
<ul>
<li>Added LIBRARY_SHELL_EXTENSION and LIBRARY_COM to <a href="AppendixB.html#B">Library</a></li><li>Added missing #include</li><li>Added NSIS_LZMA_COMPRESS_WHOLE to the script define list</li><li>Documentation fixes and improvements</li><li>Fixed an access violation in case of a script jump beyond the last entry</li><li>Fixed keyboard navigation in the instfiles page while installing</li><li>Fixed unpacking window not showing when <a href="Chapter4.html#4.8.1.5">BGGradient</a> is used</li><li>Fixed unused label warning in <a href="AppendixB.html#B">Library.nsh</a></li><li>Language file fixes</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.72</a>: Fixed state of Cancel button on Finish page when used in installer and uninstaller, added a string for NSIS_CONFIG_COMPONENTPAGE_ALTERNATIVE</li><li>nsisconf.nsh was not always parsed when compiling using MakeNSISw</li></ul>
<a name="F.45"></a><h2>F.45 2.02</h2>

<p>Released on October 23rd, 2004</p>
<a name="F.45.1"></a><h3>F.45.1 Changelog</h3>
<a name="F.45.1.1"></a><h4>F.45.1.1 Major Changes</h4>
<ul>
<li>Added lots of small usage examples to the documentation</li><li>Made <a href="Chapter4.html#4.4">relative jumps</a> work with instructions that add multiple entries</li><li>Made the datablock optimizer much faster</li><li>Made the installer deny reboots while running (<a href="http://msdn.microsoft.com/library/en-us/sysinfo/base/wm_queryendsession.asp">WM_QUERYENDSESSION</a>)</li><li>Made the <a href="Chapter4.html#4.9.11.1">Reboot</a> command first quit and then reboot so everything is always cleaned-up</li></ul>
<a name="F.45.1.2"></a><h4>F.45.1.2 New/Changed Commands</h4>
<ul>
<li>Added &lt;&lt; and &gt;&gt; to <a href="Chapter4.html#4.9.10.2">IntOp</a></li><li>Added <a href="Chapter4.html#4.9.7.1">GetErrorLevel</a> and <a href="Chapter4.html#4.9.7.5">SetErrorLevel</a></li><li>Fixed <a href="Chapter4.html#4.9.3.2">CopyFiles</a> usage checking problem</li><li>Made <a href="Chapter4.html#4.9.11.1">Reboot</a> call <a href="Chapter4.html#4.7.2.1.7">.onRebootFailed</a> and quit on failure instead of setting the error flag</li></ul>
<a name="F.45.1.3"></a><h4>F.45.1.3 Minor Changes</h4>
<ul>
<li>Added Albanian language files</li><li>Added NSIS_CONFIG_COMPONENTPAGE_ALTERNATIVE configuration option which makes components only be toggled when the user clicks on the checkbox and makes .onMouseOverSection only be called when the user selects a component</li><li>Added some CppUnit tests</li><li>Both _=? and /D= now require a space before them so they can safely remove the space from $CMDLINE</li><li>Fixed a bug that caused the uninstaller CRC-check to fail if <a href="Chapter5.html#5.1.10">!packhdr</a> created a non-512-bytes-aligned exehead</li><li>Fixed a compiler crash caused by using <a href="Chapter4.html#4.9.4.4">GetCurrentAddress</a></li><li>Fixed errors when using '<a href="Chapter4.html#4.9.1.5">File</a> /r .' on Windows</li><li>Fixed gcc 3.4 compile errors</li><li>Fixed inconsistencies between error levels and the <a href="AppendixD.html#D.1">documentation</a></li><li>Fixed some minor memory leaks</li><li>Language file fixes</li><li>Makefile improvements</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.71</a>: Made the selected language only be saved if the installation was successful</li><li>Some code refactoring</li><li><a href="../Docs/StrFunc/StrFunc.txt.gz">StrFunc</a>: Rewrote StrSort and fixed StrStrAdv. See the <a href="../Docs/StrFunc/StrFunc.txt.gz">readme</a> for a complete changelog</li></ul>
<a name="F.45.1.4"></a><h4>F.45.1.4 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/Banner/Readme.txt">Banner</a>: Fixed some cases where the banner would not show on the foreground</li></ul>
<a name="F.46"></a><h2>F.46 2.01</h2>

<p>Released on September 24th, 2004</p>
<a name="F.46.1"></a><h3>F.46.1 Release Notes</h3>
<ul>
<li>See <a href="AppendixG.html#G.3">Compiling NSIS Sources</a> for information about compiling makensis on POSIX platforms</li><li>NSIS doesn't create installers for Linux/Mac OS X etc., but you can compile Windows installers on these platforms</li><li>UpgradeDLL is still provided in UpgradeDLL.nsh for backwards compatibility</li></ul>
<a name="F.46.2"></a><h3>F.46.2 Changelog</h3>
<a name="F.46.2.1"></a><h4>F.46.2.1 Major Changes</h4>
<ul>
<li>Compiler (makensis) supports POSIX platforms (Linux, *BSD, Mac OS X, etc.)</li><li><a href="AppendixB.html#B">New system</a> for DLL/TLB library setup</li></ul>
<a name="F.46.2.2"></a><h4>F.46.2.2 New/Changed Commands</h4>
<ul>
<li>Added <a href="Chapter4.html#4.8.1.4">BGFont</a> that allows setting the background text font</li><li>Added SW_HIDE to <a href="Chapter4.html#4.9.1.3">ExecShell</a>'s accepted show modes</li><li><a href="Chapter4.html#4.9.1.8">RMDir</a> can now be used with both /r and /REBOOTOK at the same time</li><li>Extended maximum binary data for <a href="Chapter4.html#4.9.2.14">WriteRegBin</a> to 3 * NSIS_MAX_STRLEN</li><li>Added <a href="Chapter5.html#5.1.9">!execute</a></li></ul>
<a name="F.46.2.3"></a><h4>F.46.2.3 Minor Changes</h4>
<ul>
<li>LZMA exehead is now 34KB and should also decompress faster</li><li>Windows 95 (OSR2)/98/ME no longer see drive free space capped to 2GB</li><li><a href="../Docs/Modern UI/Readme.html">Modern User Interface</a>: New orange theme by MoNKi</li><li>Speedup background gradient painting</li><li><a href="../Examples/LogicLib.nsi">LogicLib</a> 2.5: Added AndIf, AndUnless, OrIf, OrUnless. Avoids unused variable warnings by requiring !defines before using certain features.</li><li><a href="../Docs/StrFunc/StrFunc.txt.gz">StrFunc</a>: Added support for uninstaller, some fixes and improvements. See the <a href="../Docs/StrFunc/StrFunc.txt.gz">readme</a> for a complete changelog</li><li>The plug-ins folder is properly removed when the system is rebooted</li><li><a href="Chapter4.html#4.9.1.9">SetOutPath</a> &quot;-&quot; works again</li><li>Fixed a bug which made plug-ins that didn't have lower case extension not be found</li><li>Fixed a bug that caused directories with drives that had their current directory set to an invalid directory to not be accepted in the directory selection page</li><li>Fixed a crash in makensis caused by defining a macro in a file included by another macro</li><li>makensis shows meaningful errors for compression errors instead of just magic numbers</li><li>Fixed a bug with <a href="Chapter4.html#4.8.1.2">AllowRootDirInstall</a> used along with <a href="Chapter4.html#4.8.1.22">InstallDirRegKey</a> that caused the directory in the registry to be ignored</li><li>Fixed <a href="Chapter4.html#4.9.5.3">FileRead</a> setting the error flag when a null character is the first character it reads</li><li>Fixed a bug which caused the background gradient to paint slowly</li><li><a href="Chapter4.html#4.9.1.5">File</a> paths relative to the root folder work again</li><li>Added <a href="/usr/share/nsis/Include/Colors.nsh">Colors.nsh</a></li><li>Made Times New Roman default font for the background text because it should always have support for the locale's language</li><li>Fixed compilation of NSISdl under VS.NET</li><li>SetCtlColors /BRANDING wasn't working right, if just one of the background or text color were specified</li><li>Language file fixes and improvements</li></ul>
<a name="F.46.2.4"></a><h4>F.46.2.4 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/System/System.html">System</a>: New, hopefully more informative, documentation; fixed some bugs</li><li><a href="../Docs/Banner/Readme.txt">Banner</a>: Added getWindow to allow greater control over the banner window</li><li><a href="../Docs/InstallOptions/Readme.html">InstallOptions 2.41</a>: Bitmaps are now automatically centered, fixed a bug which prevented enabling the next button from the leave function of InstallOptions pages, fixed a rare freeze</li><li>Zip2Exe 0.32: Fixed codepage problems</li><li><a href="../Docs/nsExec/nsExec.txt">nsExec</a>: Always create a valid input handle, fixed a problem when called from a path with spaces</li><li><a href="../Docs/VPatch/Readme.html">VPatch</a>: Close all open file handles when one of them fail to open</li><li><a href="../Docs/NSISdl/ReadMe.txt">NSISdl</a>: Added /NOIEPROXY (based on memph's code)</li></ul>
<a name="F.47"></a><h2>F.47 2.0</h2>

<p>Released on February 7th, 2004</p>
<a name="F.47.1"></a><h3>F.47.1 Release Notes</h3>
<ul>
<li>Finnish, Bulgarian and Thai language files are outdated and do not contain all needed translations</li></ul>
<a name="F.47.2"></a><h3>F.47.2 Changelog</h3>
<a name="F.47.2.1"></a><h4>F.47.2.1 Changes from 1.98</h4>
<ul>
<li><a href="Chapter4.html#4.10">Multiple languages in one installer support</a> (with RTL support)</li><li><a href="Chapter4.html#4.11">Easier plug-in system</a></li><li><a href="../Docs/Modern UI/Readme.html">Modern User Interface</a> (optional)</li><li><a href="http://www.7-zip.org/">LZMA</a> compression which provides installers 20% smaller than bzip2</li><li><a href="Chapter4.html#4.5">Easier paging system</a> (no more .onNextPage, .onPrevPage)</li><li>Components are presented as a tree which allows sub components</li><li><a href="Chapter4.html#4.2.1">User variables</a> ($VARNAME)</li><li><a href="Chapter4.html#4.8.1.18">Icon</a> and <a href="Chapter4.html#4.8.1.42">UninstallIcon</a> support any color depth and sizes, not just 32x32x16</li><li><a href="Chapter4.html#4.8.1.9">CheckBitmap</a> supports any color depth</li><li>Improved large files handling</li><li><a href="Chapter4.html#4.8.1.26">License data</a> can be RTF</li><li>CHM documentation for easy browsing</li><li><a href="Chapter4.html#4.12">Better silent support</a></li><li>New include files for easier scripting: <a href="../Examples/LogicLib.nsi">LogicLib</a>, <a href="../Docs/StrFunc/StrFunc.txt.gz">StrFunc</a> and <a href="/usr/share/nsis/Include/Sections.nsh">Sections</a></li><li>Improved plug-ins: <a href="../Docs/InstallOptions/Readme.html">InstallOptions</a>, <a href="../Docs/NSISdl/ReadMe.txt">NSISdl</a> and <a href="../Docs/Splash/splash.txt">Splash</a></li><li>New plug-ins: <a href="../Docs/AdvSplash/advsplash.txt">AdvSplash</a>, <a href="../Docs/Banner/Readme.txt">Banner</a>, <a href="../Docs/BgImage/BgImage.txt">BgImage</a>, <a href="../Docs/Dialer/Dialer.txt">Dialer</a>, <a href="../Examples/languages.nsi">LangDLL</a>, <a href="../Docs/Math/Math.txt.gz">Math</a>, <a href="../Docs/nsExec/nsExec.txt">nsExec</a>, <a href="../Docs/StartMenu/Readme.txt">StartMenu</a>, <a href="../Docs/System/System.html">System</a>, <a href="../Examples/UserInfo/UserInfo.nsi">UserInfo</a> and <a href="../Docs/VPatch/Readme.html">VPatch</a></li><li>New and improved utilities: <a href="../Docs/makensisw/Readme.txt">MakeNSISw</a>, NSIS Menu (NSIS.exe), NSIS Update (Bin\NSIS Update.exe) and zip2exe (Bin\zip2exe.exe)</li><li>New commands: <a href="Chapter5.html#5.1.3">!addplugindir</a>, <a href="Chapter5.html#5.1.7">!echo</a>, <a href="Chapter5.html#5.4.6">!ifmacrodef</a>, <a href="Chapter5.html#5.4.7">!ifmacrondef</a>, <a href="Chapter5.html#5.1.14">!verbose</a>, <a href="Chapter4.html#4.8.1.1">AddBrandingImage</a>, <a href="Chapter4.html#4.8.2.1">AllowSkipFiles</a>, <a href="Chapter4.html#4.8.1.8">ChangeUI</a>, <a href="Chapter4.html#4.8.1.9">CheckBitmap</a>, <a href="Chapter4.html#4.9.14.2">CreateFont</a>, <a href="Chapter4.html#4.8.1.15">DirVar</a>, <a href="Chapter4.html#4.8.1.16">DirVerify</a>, <a href="Chapter4.html#4.9.14.4">EnableWindow</a>, <a href="Chapter4.html#4.8.2.2">FileBufSize</a>, <a href="Chapter4.html#4.9.2.8">FlushINI</a>, <a href="Chapter4.html#4.9.13.10">GetCurInstType</a>, <a href="Chapter4.html#4.9.14.6">GetDlgItem</a>, <a href="Chapter4.html#4.9.7.2">GetInstDirError</a>, <a href="Chapter4.html#4.9.4.8">IfAbort</a>, <a href="Chapter4.html#4.9.4.12">IfSilent</a>, <a href="Chapter4.html#4.9.7.3">InitPluginsDir</a>, <a href="Chapter4.html#4.9.13.12">InstTypeGetText</a>, <a href="Chapter4.html#4.9.13.11">InstTypeSetText</a>, <a href="Chapter4.html#4.9.15.2">LangString</a>, <a href="Chapter4.html#4.8.1.25">LicenseBkColor</a>, <a href="Chapter4.html#4.8.1.27">LicenseForceSelection</a>, <a href="Chapter4.html#4.9.15.3">LicenseLangString</a>, <a href="Chapter4.html#4.9.15.1">LoadLanguageFile</a>, LockWindow, <a href="Chapter4.html#4.5.4">Page</a>, <a href="Chapter4.html#4.5.6">PageEx</a>, <a href="Chapter4.html#4.9.1.7">ReserveFile</a>, <a href="Chapter4.html#4.9.13.6">SectionGetInstTypes</a>, <a href="Chapter4.html#4.9.13.8">SectionGetSize</a>, <a href="Chapter4.html#4.9.13.5">SectionSetInstTypes</a>, <a href="Chapter4.html#4.9.13.7">SectionSetSize</a>, <a href="Chapter4.html#4.9.14.12">SetBrandingImage</a>, SetCompressionLevel, <a href="Chapter4.html#4.8.2.4">SetCompressor</a>, <a href="Chapter4.html#4.8.2.5">SetCompressorDictSize</a>, <a href="Chapter4.html#4.9.14.15">SetCtlColors</a>, <a href="Chapter4.html#4.9.13.9">SetCurInstType</a>, SetPluginUnload, <a href="Chapter4.html#4.9.14.16">SetSilent</a>, <a href="Chapter4.html#4.9.14.17">ShowWindow</a>, SubSection (replaced by <a href="Chapter4.html#4.6.1.5">SectionGroup</a>), SubSectionEnd (replaced by <a href="Chapter4.html#4.6.1.6">SectionGroupEnd</a>), <a href="Chapter4.html#4.2.1.1">Var</a>, <a href="Chapter4.html#4.8.3.1">VIAddVersionKey</a>, <a href="Chapter4.html#4.8.3.2">VIProductVersion</a> and <a href="Chapter4.html#4.8.1.46">XPStyle</a></li><li>Removed commands: DirShow, DisabledBitmap, EnabledBitmap and SectionDivider</li><li>All this and a smaller overhead! =)</li><li>A lot more... See below for more information</li></ul>
<a name="F.47.2.2"></a><h4>F.47.2.2 Changes from RC4</h4>
<ul>
<li>Command line parser ignored any switches after tokens that are not switches</li><li>Last part of the path specified in <a href="Chapter4.html#4.8.1.21">InstallDir</a> was appended even if selected folder name was the same</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.70</a>: Improved documentation, new Init custom function for Welcome and Finish page</li><li>Added <a href="../Docs/StrFunc/StrFunc.txt.gz">StrFunc</a> by deguix</li><li>Updated and fixed language files</li><li>Updated, fixed and improved documentation</li></ul>
<a name="F.48"></a><h2>F.48 2.0 Release Candidate 4</h2>

<p>Released on February 2nd, 2004</p>
<a name="F.48.1"></a><h3>F.48.1 Changelog</h3>
<a name="F.48.1.1"></a><h4>F.48.1.1 Major Changes</h4>
<ul>
<li>Fixed MBCS mishandling in exehead, InstallOptions and nsExec</li></ul>
<a name="F.48.1.2"></a><h4>F.48.1.2 Minor Changes</h4>
<ul>
<li>Language files updates and fixes</li><li>Fixed logging (NSIS_CONFIG_LOG)</li><li>Fixed compile errors caused by removing some config.h options</li><li>NSIS compiles without PSDK again</li><li>Documentation fixes</li></ul>
<a name="F.48.1.3"></a><h4>F.48.1.3 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/NSISdl/ReadMe.txt">NSISdl</a>: All potential and rare crashes should be completely fixed now</li><li><a href="../Docs/InstallOptions/Readme.html">InstallOptions</a>: Fixed a rare crash related to ListItems and a small memory leak when using ValidateText</li></ul>
<a name="F.49"></a><h2>F.49 2.0 Release Candidate 3</h2>

<p>Released on January 26th, 2004</p>
<a name="F.49.1"></a><h3>F.49.1 Changelog</h3>
<a name="F.49.1.1"></a><h4>F.49.1.1 Minor Changes</h4>
<ul>
<li>Fixed some bugs with LZMA/bzip2 and non-solid compression</li><li>Fixed a bug that caused escaping not to be ignored on extended !define lines</li><li>Language files updates and fixes</li><li>Fixed installer crash when certain language strings were not referenced in all languages</li><li>Some new and improved graphics</li><li>Made CreateShortcut case insensitive when parsing hot key</li><li>Some documentation improvements and fix-ups</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.69</a>: Made all uninstaller pages work without installer pages and fixed top text on uninstaller license page</li></ul>
<a name="F.49.1.2"></a><h4>F.49.1.2 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/makensisw/Readme.txt">MakeNSISW</a>: Fixed resize bug, fixed some UI issues in the settings dialog</li><li>NSIS Update: Improved UI</li><li><a href="../Docs/InstallOptions/Readme.html">InstallOptions</a>: Fixed minor problems with the new NOTIFY flag</li></ul>
<a name="F.50"></a><h2>F.50 2.0 Release Candidate 2</h2>

<p>Released on January 5th, 2004</p>
<a name="F.50.1"></a><h3>F.50.1 Changelog</h3>
<a name="F.50.1.1"></a><h4>F.50.1.1 Minor Changes</h4>
<ul>
<li>Set focus to the main control in each page to ease keyboard control (plug-ins too)</li><li>LangStrings and user variables limit is now 16383 and is enforced</li><li>Fixed control colors set using SetCtlColors not changing when the system colors were changed</li><li>Log window now responds to the context menu key</li><li>Fixed a bug which caused beeping when the space key is hit on the components tree</li><li>Added code to prevent weird usage of WM_COMMAND which can cause weird behavior</li><li>Fixed compile errors when NSIS_CONFIG_COMPONENTPAGE, NSIS_CONFIG_PLUGIN_SUPPORT or NSIS_SUPPORT_HWNDS are not defined</li><li>More language files updated to the latest version</li><li>Fixed CHM's script errors</li><li>Documentation improvements</li></ul>
<a name="F.50.1.2"></a><h4>F.50.1.2 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/InstallOptions/Readme.html">InstallOptions 2.4</a>: NOTIFY for link, drop list and list box; UI fixes and improvements. See IO's <a href="../Docs/InstallOptions/Changelog.txt.gz">change log</a> for a complete list</li><li><a href="../Docs/makensisw/Readme.txt">MakeNSISW</a>: Improved user interface, added support for named symbol sets and fixed best compressor selector</li></ul>
<a name="F.51"></a><h2>F.51 2.0 Release Candidate 1</h2>

<p>Released on Decemeber 27th, 2003</p>
<a name="F.51.1"></a><h3>F.51.1 Release Notes</h3>
<ul>
<li>Trying the LZMA compression method for your installer is recommended. It often gives a 20% better compression ratio.</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.68</a>: The setting to change the title size on the Welcome page and Finish page has been changed</li></ul>
<a name="F.51.2"></a><h3>F.51.2 Changelog</h3>
<a name="F.51.2.1"></a><h4>F.51.2.1 Major Changes</h4>
<ul>
<li>LZMA compression support. Added <a href="Chapter4.html#4.8.2.5">SetCompresssorDictSize</a>.</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.68</a>: New settings for extra space for title and text on Welcome page and Finish page, improved handling of verbose settings, language file string for uninstaller reboot information, more</li><li>Shell folders are now detected using shell API functions and not the registry. This is the recommended method by Microsoft. New constants have been added in the process ($FONTS, $SENDTO and more...). See <a href="Chapter4.html#4.2.3">section 4.2.3</a> for more details.</li><li>Added <a href="../Examples/LogicLib.nsi">LogicLib</a> to distribution (easier conditional execution etc.)</li><li>Added <a href="Chapter4.html#4.8.1.16">DirVerify</a> and <a href="Chapter4.html#4.9.7.2">GetInstDirError</a> to allow custom error checking when the installation directory is invalid or the drive does not have enough space</li><li>Support for reading environmental variables on compile time: <a href="Chapter5.html#5.3.1">$%envVarName%</a></li><li>Added /SD parameter for <a href="Chapter4.html#4.9.4.15">MessageBox</a>. Allows to set default for silent installers.</li><li>New conditional compilation options: <a href="Chapter5.html#5.4.6">!ifmacrodef</a> and <a href="Chapter5.html#5.4.7">!ifmacrondef</a>.</li><li>New sections macros for mutually exclusive section selection</li><li>Improved RTL support by adding WS_EX_RTLREADING wherever possible</li></ul>
<a name="F.51.2.2"></a><h4>F.51.2.2 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/InstallOptions/Readme.html">InstallOptions 2.3</a>: Added new control type &quot;Button&quot;, added new flag &quot;NOTIFY&quot;, added new flag &quot;NOWORDWRAP&quot; for multi-line text boxes, reduced size down to 12K</li><li><a href="../Docs/makensisw/Readme.txt">MakeNSISW</a>: More options to set the compression method</li><li>Zip2Exe 0.31: Fixed compression setting, LZMA compression support</li><li><a href="../Docs/VPatch/Readme.html">VPatch 2.1</a>: Better error handling and exit code for GenPat</li></ul>
<a name="F.52"></a><h2>F.52 2.0 Beta 4</h2>

<p>Released on November 19th, 2003</p>
<a name="F.52.1"></a><h3>F.52.1 Release Notes</h3>
<ul>
<li>The /LANG parameter is no longer available for any text setting instructions. You must use a <a href="Chapter4.html#4.9.15.2">LangString</a> if you want to make a certain text multilingual. This means you can also set one text for all languages. To make the license data multilingual you should use <a href="Chapter4.html#4.9.15.3">LicenseLangString</a>.</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.67</a>: Because of the new syntax for pages, renaming of settings and variable names etc., you have to make some changes to your scripts, see the <a href="../Docs/Modern UI/Readme.html">Modern UI Readme</a> for details.</li><li><a href="Chapter4.html#4.5.4">Custom Pages</a> now have a leave function. As this parameter is placed before the caption you have to add another &quot;&quot; empty string for the title to work.</li><li><a href="Chapter4.html#4.7.2.1.8">.onSelChange</a> is no longer called when the components page is created.</li><li>The icons folder has been renamed to Graphics and was reorganized. If you were using any files from Contrib\Icons in your script, you should update it to point to the new image or icon path.</li><li>UpgradeDLL has been changed, it's <em>highly recommend</em> that you include the new version in your script using <code>!include &quot;UpgradeDLL.nsh&quot;</code> instead of the old one.</li></ul>
<a name="F.52.2"></a><h3>F.52.2 Changelog</h3>
<a name="F.52.2.1"></a><h4>F.52.2.1 Major Changes</h4>
<ul>
<li>CHM documentation - searchable and comes with an index</li><li>User variables ($VARNAME) that can be declared with the <a href="Chapter4.html#4.2.1.1">Var</a> command</li><li>Support for all pages in both installer and uninstaller. Components, directory and license pages can be used for the uninstaller</li><li>Improved large files handling (way lower requirements to compile a 2GB installer now)</li><li>Full support for RTL languages, including support for LTR and RTL languages in one installer</li><li><a href="../Docs/Modern UI/Readme.html">Modern UI 1.67</a>: New system &amp; syntax for pages, settings (support for multiple pages of the same type, page specific settings, more customization options etc.), Welcome/Finish pages for uninstaller, <a href="Chapter4.html#4.8.1.27">LicenseForceSelection</a> support, new options for Finish page / language selection dialog, fixes, more</li><li>Extraction progress</li><li>No more unprocessed strings, variables can be used everywhere</li><li>Leave function for custom <a href="Chapter4.html#4.5">pages</a>: Input on InstallOptions pages can be validated using script code</li><li>Interface improvements: Better ClearType support, no more flickering</li><li><a href="Chapter4.html#4.7.2.1.6">OnMouseOver text</a> is only displayed when mouse over section</li><li>NLF language files (v6): language specific fonts, RTL and more strings</li><li>Inner LangStrings can be used in the script</li><li>No more /LANG, only LangStrings - easier to set one string to all languages</li><li>LangStrings are no longer installer/uninstaller specific (no un.)</li></ul>
<a name="F.52.2.2"></a><h4>F.52.2.2 New/Changed Commands</h4>
<ul>
<li>Added <a href="Chapter4.html#4.5.6">PageEx</a>, <a href="Chapter4.html#4.5.8">PageCallbacks</a> and <a href="Chapter4.html#4.8.1.15">DirVar</a> - it's now a lot easier to add the same page type twice</li><li>Added <a href="Chapter4.html#4.8.2.2">FileBufSize</a></li><li>Added <a href="Chapter4.html#4.8.3.1">VIAddVersionKey</a>: add version information resource to the installer</li><li>Added <a href="Chapter4.html#4.8.2.1">AllowSkipFiles</a>: set whether the user should be able to skip a file when overwriting failed</li><li>Added <a href="Chapter4.html#4.8.1.27">LicenseForceSelection</a>: checkbox or radio buttons on license page to let user agree with license or not</li><li>Added <a href="Chapter4.html#4.9.13.7">SectionSetSize</a>, <a href="Chapter4.html#4.9.13.8">SectionGetSize</a>, <a href="Chapter4.html#4.9.13.9">SetCurInstType</a> and <a href="Chapter4.html#4.9.13.10">GetCurInstType</a></li><li>Replaced SetBkColor with <a href="Chapter4.html#4.9.14.15">SetCtlColors</a> which can set text color too</li><li>Added <a href="Chapter4.html#4.9.4.12">IfSilent</a> and <a href="Chapter4.html#4.9.14.16">SetSilent</a> to allow better /S interaction</li><li>Added support for standard predefines: ${__DATE__}, ${__TIME__}, ${__TIMESTAMP__}, ${__FILE__}, ${__LINE__}</li><li>Added ifdiff and lastusd for <a href="Chapter4.html#4.8.2.8">SetOverwrite</a></li><li>/o Switch for <a href="Chapter4.html#4.6.1.2">Section</a> provides ability to unselect the section by default</li><li>New parameter for DirText to set the browse dialog text</li><li>Added <a href="Chapter4.html#4.9.1.8">RMDir /REBOOTOK</a>: remove folders on reboot</li><li><a href="Chapter4.html#4.8.1.24">InstType</a> /NOCUSTOM and /COMPONENTSONLYONCUSTOM work together</li><li>Added base_dir for <a href="Chapter4.html#4.9.3.10">GetTempFileName</a></li></ul>
<a name="F.52.2.3"></a><h4>F.52.2.3 Minor Changes</h4>
<ul>
<li>RO sections can now be in <a href="Chapter4.html#4.8.1.24">InstTypes</a> too (defaults to old behavior)</li><li>Increased limit of InstTypes to 32</li><li>Improved macros &amp; functions: UpgradeDLL, GetParent, GetParameters. Using the new versions is recommended.</li><li>Fixed SetOutPath not setting current directory if the directory didn't exist before</li><li>Components tree: fixed problems with sub-sections with RO sections as children, SF_EXPAND now refreshes the components tree and added SF_PSELECTED for partially selected sub-sections</li><li>Improved <a href="Chapter4.html#4.8.1.1">AddBrandingImage</a>: doesn't depend on the UI, can set image on the bottom and on the right, support for custom padding value</li><li>Better installation directory verification</li><li>Fixed all known problems with temporary files and directories</li><li>Documentation fixes</li><li>Minor bug fixes</li><li>Code clean-ups and some more comments</li><li>More...</li></ul>
<a name="F.52.2.4"></a><h4>F.52.2.4 Utilities and Plug-ins</h4>
<ul>
<li><a href="../Docs/makensisw/Readme.txt">MakeNSISW 2.0</a>: UI to define symbols, easy access to recent scripts, toolbar and more</li><li>Zip2Exe 0.3: based on header files, improved interface, Modern UI support, new script code, improved folder detection</li><li><a href="../Docs/InstallOptions/Readme.html">InstallOptions 2.2</a>: added LINK control, added EXTENDEDSELECT flag for list boxes which replaces MULTISELECT that now acts exactly as the real style flag ([double] click turns on or off selection), fixes</li><li>BgImage plug-in stability fixes</li><li>Added vPatch: patch generator and plug-in that applies the patches</li><li>Banner plug-in improvements: responds to messages and some new /set tricks by brainsucker</li><li>AdvSpalsh plug-in improvements: smaller, better transparency support and a possible bug fix</li><li>System plug-in improvements: Unicode, GUID and COM support</li><li>nsExec plug-in improvments: ability to run 16 bit code and tabs to spaces conversion</li><li>Math plug-in</li><li>Delphi unit for NSIS plug-ins</li></ul>
<a name="F.53"></a><h2>F.53 2.0 Beta 3</h2>

<p>Released on March 16th, 2003</p>
<ul>
<li>Modern UI 1.63: Header bitmap support, new defines to change the description area, single macro for language selection dialog, more!</li><li>New tutorial in the documentation</li><li>define_if_last in Page command also works when a define has not been specified for all Page commands.<br>This fixes the problem with the Modern UI &quot;Click Next&quot; / &quot;Click Install&quot; texts.</li><li>Added SectionSetInstTypes and SectionGetInstTypes</li><li>Reboot command does not force a reboot anymore (allows the user to save work)</li><li>!if[n]def/!else fixes</li><li>LogSet on now really starts logging</li><li>Cancel button available on all pages after the instfiles page but the last page unless /ENABLECANCEL was used in its Page command</li><li>License page: No more limit on RTF size</li><li>LangDLL: Option to auto-count number of languages, shell font support</li><li>Page and UninstPage can not be used inside sections/functions</li><li>CreateDirectory now uses the error flag</li><li>EnumRegKey/Value output_var check fixed</li><li>Updated translations</li><li>Dreaded BSOD after plug-ins enumeration finally banished</li><li>Minimize button and BGGradient and BGImage compatibility fixes</li><li>WriteINIStr with empty value works again</li><li>Added FlushINI</li></ul>
<a name="F.54"></a><h2>F.54 2.0 Beta 2</h2>

<p>Released on February 26th, 2003</p>
<ul>
<li>NSIS Menu: links to all NSIS utilities, documentation and websites</li><li>NSIS Update: check for new releases, download latest development files</li><li>Dialer plugin to connect to the internet</li><li>Improved filename validation</li><li>VC7 compiler compatibility issues fixed</li><li>CreateDirectory sets error flag</li><li>InstallOptions: INI File State value fixed</li><li>Updated translations</li><li>Minor fixes</li></ul>
<a name="F.55"></a><h2>F.55 2.0 Beta 1</h2>

<p>Released on February 9th, 2003</p>
<ul>
<li>User interface improvements: better order/grouping of controls, button selection problems fixed, added minimize box, transparent BrandingText</li><li>LangString improvements: can be used before they have been defined, warning if not present in all language tables</li><li>New version of the Modern User Interface with UI improvements, bugfixes and some small new features</li><li>InstallOptions 2.0 with support for custom font and DPI settings, groupboxes, grouped controls, lots of bugfixes etc.</li><li>No more random compression ratios</li><li>SetOutPath now sets the working directory</li><li>File names are validated, directory given by the user will now always work</li><li>$QUICKLAUNCH now works with SetShellVarContext all</li><li>Automatically appended directory name in the directory selection dialog will no longer contain squares if not all characters are ASCII.</li><li>Fixed a bug with remote drives and available space (\\remote\drive)</li><li>Plug-in function's names are now case insensitive</li><li>Fixed a bug with specifying Icon twice</li><li>Include dirs (!addincludedir)</li><li>On leave function for pages</li><li>Installers can now really contain more than one branding image</li><li>All !if/!else/!endif problems should be solved now</li><li>SetFont &quot;MS Shell Dlg&quot; adds the DS_SHELLFONT style</li><li>Win9x rename on reboot now also works when the destination file does not exist</li><li>DeleteRegKey works on default value</li><li>nsExec can be called from an installer executed by CreateProcess</li><li>WriteUninstaller sets error code</li><li>Banner.dll compatible with Modern UI</li><li>Fixed focus problems in MakeNSISw</li><li>Updated and new translations</li><li>Some new bitmaps for the MUI by Virtlink</li><li>Faster and better MakeNSISw integration</li><li><a href="AppendixC.html#C.2">New .NET Framework detection function</a></li><li>Minor bugfixes</li><li>Code clean-ups (compiles on VC7)</li></ul>
<a name="F.56"></a><h2>F.56 2.0 Beta 0</h2>

<p>Released on December 6th, 2002</p>
<ul>
<li>New paging system</li><li>Added Page and UninstPage</li><li>Removed .onNextPage, .onPrevPage, .onInitDialog</li><li>New easier version of the Modern User Interface with better multilanguage support, InstallOptions integration, welcome and finish page etc.</li><li>Custom pages no longer flicker when created</li><li>Added accelerator keys</li><li>Added LangString and LangStringUP for user defined multilingual strings</li><li>Added support for transparent check marks</li><li>Added InitPluginsDir</li><li>Renamed nsisconf.nsi to nsisconf.nsh</li><li>Added CreateShortcut comment/description parameter</li><li>Splash.exe is now a plugin (splash.dll)</li><li>Added new plugins: System, AdvSplash, nsExec, UserInfo, BgImage, Banner and StartMenu</li><li>!ifdef and friends can now be used in macros</li><li>SendMessage can send strings (put STR: before a param) and supports timeouts</li><li>Right mouse button &quot;Copy to clipboard&quot; context menu for the Details window</li><li>Plugin syntax now requires dll name, e.g. dll::func not just func</li><li>Licence text receives initial focus (page up &amp; down work immediately, return key still works)</li><li>Made win9x move/delete on reboot support proper and function like on win2k</li><li>Now always loads RichEdit v2 if present (links work on Win9x)</li><li>DeleteRegKey now complains if given a third parameter (other than /ifempty)</li><li>RegDLL now works with DLLs dependent on DLLs from the same directory</li><li>${LANG_langName} defined as the language id when loading a NLF</li><li>Fixed a few bugs that caused the installer to load slower than before</li><li>Uninstall can now get command line parameters too</li><li>Added ReserveFile</li><li>Added ExDLL.h</li><li>Included makensisw 1.9 (lots of changes)</li><li>Updated InstallOptions</li><li>Updated ZIP2EXE</li><li>Updated HTTP download plugin, NSIS-dl (timeout added, better proxy detection)</li><li>A lot of new language files</li><li>A lot of new icons and check marks</li><li>Changed section flags values</li><li>SectionSetFlags can now set bold too</li><li>SectionSetFlags now works in silent installers too</li><li>SectionSetName for sub sections doesn't need '-' in front of the name</li><li>Added SetPluginUnload</li><li>Hidden section can now use SectionIn too</li><li>File /nonfatal switch added</li><li>Plugins no longer add size to their containing section</li><li>Defines can now be used inside define names (${bla${blo}})</li><li>New docs format (WOOHA!)</li><li>EXE header size a lot smaller, 33.5KB for bzip2 and 34KB for zlib</li><li>Lots of other bugs fixed...</li></ul>
<a name="F.57"></a><h2>F.57 2.0 Alpha 7</h2>

<p>Released on August 29th, 2002</p>
<ul>
<li>Can now select the language from .onInit ($LANGUAGE is a variable)</li><li>Added CreateFont</li><li>Added .onMouseOverSection</li><li>Added .onInitDialog and un.onInitDialog</li><li>Added SetStaticBkColor</li><li>Disabled UseOuterUIItem</li><li>SendMessage WM_SETTEXT treats lParam as a string and not a number</li><li>CopyFiles script message no longer always prints (silent)</li><li>Custom install type text can now be changed</li><li>ChangeUI can now change IDD_VERIFY</li><li>Default license color now fits the user system</li><li>Summary reports the right number of required sections</li><li>Checkbox is only required in IDD_DIR if logging is enabled</li><li>Not using /LANG now really causes the script compiler to use the last used language</li><li>Fixed a bug with MBCS and the uninstaller text</li><li>MBCS to Unicode and Unicode to MBCS conversion bugs fixed</li><li>Fixed a bug that caused RTF not to show on Windows 9x</li><li>Added a dialog that shows up if compress whole is used and initial decompressing lasts longer than a second</li><li>Updated to InstallOptions 1.3</li><li>MakeNSISw 1.7 included</li><li>Added modern UI by Joost Verburg (Examples\Modern UI)</li><li>Added new full color icons by adni18</li><li>Added Dutch, Korean, Russian, Swedish and Traditional Chinese language files</li><li>Updated Spanish language file version (thanks to LsMoNKi)</li><li>Added /TRIM(LEFT|RIGHT|CENTER) for BrandingText</li><li>EXE header size down to 36.5KB</li><li>Added yi-pixel.ico and yi-pixel-uninstall.ico by Jan T. Sott</li><li>Fixed a bug with macros at the end of the file</li><li>Sub-sections can now have defined names too</li><li>Added LangDLL.dll plugin</li><li>CallInstDLL /NOUNLOAD added (works on plugin calls too)</li></ul>
<a name="F.58"></a><h2>F.58 2.0 Alpha 6</h2>

<p>Released on August 10th, 2002</p>
<ul>
<li>Fixed two bugs with the plug-in mechanism</li><li>Fixed infinite loop bug</li></ul>
<a name="F.59"></a><h2>F.59 2.0 Alpha 5</h2>

<p>Released on August 9th, 2002</p>
<ul>
<li>Added UseOuterUIItem</li><li>Enhanced ChangeUI</li><li>Enhanced SetDlgItemText</li><li>Added one-section.nsi example file</li><li>Optimized Ximon's code for plug-in DLLs (back to 37KB)</li><li>If default user language doesn't fit exactly, will try to find primary language match</li><li>Fixed some strings that got replaced (space available and required etc.)</li><li>Compiles without MS Platform SDK</li><li>Included Spanish.nlf</li><li>Included MagicLime.exe by snowchyld</li></ul>
<a name="F.60"></a><h2>F.60 2.0 Alpha 4</h2>

<p>Released on August 5th, 2002</p>
<ul>
<li>Added automatic detection, packing, unpacking and deletion of plugin dlls</li><li>Added simplified calling syntax for plugin dlls</li><li>Added PluginDir</li></ul>
<a name="F.61"></a><h2>F.61 2.0 Alpha 3</h2>

<p>Released on August 4th, 2002</p>
<ul>
<li>Added LoadLanguageFile</li><li>Added $LANGUAGE</li><li>Added /LANG option to string setters (Name, Caption, etc.)</li><li>'LogSet on' now builds a log file if not already created</li></ul>
<a name="F.62"></a><h2>F.62 2.0 Alpha 2</h2>

<p>Released on July 31st, 2002</p>
<ul>
<li>Added ${NSISDIR}</li><li>Added XPStyle</li><li>Added SetFont</li><li>Added ChangeUI</li><li>Added AddBrandingImage, and SetBrandingImage</li><li>Added SetCompressor (no more makensis-bz2.exe)</li><li>Added LicenseBkColor</li><li>'SpaceTexts none' now causes no space texts to appear</li><li>Icon and UninstallIcon now support icons of any type</li><li>CheckBitmap now support bitmaps with any color table/depth</li><li>Unused resources are removed before writing out the installer</li><li>Documented !error and !warning</li><li>Added !echo and !verbose</li><li>Added force option for CRCCheck</li><li>Updated to Makensisw 1.6</li><li>Updated to InstallOptions 1.2</li><li>Installer can now be compressed using UPX</li><li>A hint is shown if a line is longer than the detail window</li><li>Modern style folder select dialog</li><li>License data can now be RTF</li><li>WindowIcon is now handled in the compiler</li><li>Removed debug version (it never worked anyway)</li><li>Faster compile time (WIN32_LEAN_AND_MEAN)</li></ul>
<a name="F.63"></a><h2>F.63 2.0 Alpha 1</h2>

<p>Released on July 9th, 2002</p>
<ul>
<li>Added expand node option to Section and SubSection</li><li>Added preserve file attribute option to File command</li><li>Copy-All bug fix in Makensisw</li><li>Added NSISDIR to the define list</li><li>Reorganized NSIS directory structure</li></ul>
<a name="F.64"></a><h2>F.64 2.0 Alpha 0</h2>

<p>Released on May 22nd, 2002</p>
<ul>
<li>TreeView component list (care of Jeff Doozan)</li><li>No more SectionDivider, but SubSection and SubSectionEnd.</li><li>No more EnabledBitmap/DisabledBitmap, just CheckBitmap. (with tons of button states)</li><li>Bugfixes of brokenness.</li><li>Added ! for Section/SubSection to make bold.</li><li>Made config.h have hacks for easier building for me. :)</li></ul>
<a name="F.65"></a><h2>F.65 Older Versions</h2>

<p><a href="http://nsis.sourceforge.net/download/nsis1/">NSIS 1.x version history</a></p>
<p><a href='AppendixE.html'>Previous</a> | <a href='Contents.html'>Contents</a> | <a href='AppendixG.html'>Next</a></p>

<hr />

<address>
</address>
</body>

</html>