aboutsummaryrefslogtreecommitdiffstats
path: root/installer/settings/files_opt_songs.nsh
blob: d8d4ef285644062c8d15a706a8a505c3a38c9c64 (plain) (blame)
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
; ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~
; UltraStar Deluxe Installer: Download optional songs
; ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~

SectionGroup $(name_section2) Section2

;-----------------------------------------------------------------------
; BODO WARTKE
;-----------------------------------------------------------------------
Section /o "Bodo Wartke - Liebeslied (Love Song)" g2Section1

   AddSize 10343
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_song1} $LOCALAPPDATA\Temp\Song-BodoWartke-LoveSong.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-BodoWartke-LoveSong.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-BodoWartke-LoveSong.zip"

  SetOutPath "$INSTDIR"

SectionEnd

;-----------------------------------------------------------------------
; Dead Smiling Pirates - I 18
;-----------------------------------------------------------------------

Section /o "Dead Smiling Pirates - I 18" g2Section2
   AddSize 2816
   SetOverwrite try
   SetOutPath "$INSTDIR"
   CreateDirectory "$INSTDIR\songs\Dead Smiling Pirates - I 18"
   SetOutPath "$INSTDIR\songs\Dead Smiling Pirates - I 18\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_song2} $LOCALAPPDATA\Temp\Song-I-18.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-I-18.zip" "$INSTDIR\songs\Dead Smiling Pirates - I 18\"

  Delete "$LOCALAPPDATA\Temp\Song-I-18.zip"

  SetOutPath "$INSTDIR"

SectionEnd

;-----------------------------------------------------------------------
; Jonathan Coulton Songs
;-----------------------------------------------------------------------

SectionGroup $(name_s2_sub1) s2_sub1

Section /o "A Talk With George" s2_sub1_Section15

   AddSize 4076
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song15} $LOCALAPPDATA\Temp\Song-JC-ATWG.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-ATWG.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-ATWG.zip"

  SetOutPath "$INSTDIR"
SectionEnd
;-----------------------------------------------------------------------
Section /o "Better" s2_sub1_Section19

   AddSize 4199
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song19} $LOCALAPPDATA\Temp\Song-JC-Better.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-Better.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-Better.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Monkey Shines" s2_sub1_Section1

   AddSize 1455
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song1} $LOCALAPPDATA\Temp\Song-JC-MS.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-MS.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-MS.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "I Crush Everything" s2_sub1_Section2

   AddSize 7127
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song2} $LOCALAPPDATA\Temp\Song-JC-ICE.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-ICE.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-ICE.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Not About You" s2_sub1_Section3

   AddSize 3492
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song3} $LOCALAPPDATA\Temp\Song-JC-NAY.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-NAY.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-NAY.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Mr. Fancy Pants" s2_sub1_Section4

   AddSize 2427
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song4} $LOCALAPPDATA\Temp\Song-JC-MFP.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-MFP.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-MFP.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Big Bad World One" s2_sub1_Section5

   AddSize 4424
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song5} $LOCALAPPDATA\Temp\Song-JC-BBWO.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-BBWO.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-BBWO.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Flickr" s2_sub1_Section6

   AddSize 21607
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song6} $LOCALAPPDATA\Temp\Song-JC-Flickr.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-Flickr.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-Flickr.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "My Beige Bear" s2_sub1_Section7

   AddSize 4926
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song7} $LOCALAPPDATA\Temp\Song-JC-MBB.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-MBB.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-MBB.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "The Future Soon" s2_sub1_Section8

   AddSize 5612
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song8} $LOCALAPPDATA\Temp\Song-JC-TFS.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-TFS.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-TFS.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Ikea" s2_sub1_Section9

   AddSize 4608
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song9} $LOCALAPPDATA\Temp\Song-JC-Ikea.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-Ikea.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-Ikea.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Furry Old Lobster" s2_sub1_Section10

   AddSize 3288
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song10} $LOCALAPPDATA\Temp\Song-JC-FOL.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-FOL.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-FOL.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Code Monkey" s2_sub1_Section11

   AddSize 21402
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song11} $LOCALAPPDATA\Temp\Song-JC-CM.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-CM.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-CM.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "I�m Your Moon" s2_sub1_Section12

   AddSize 4916
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song12} $LOCALAPPDATA\Temp\Song-JC-IYM.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-IYM.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-IYM.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "First Of May" s2_sub1_Section13

   AddSize 6257
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song13} $LOCALAPPDATA\Temp\Song-JC-FOM.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-FOM.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-FOM.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Dance, Soterious Johnson, Dance" s2_sub1_Section14

   AddSize 5929
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song14} $LOCALAPPDATA\Temp\Song-JC-DSJD.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-DSJD.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-DSJD.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Creepy Doll" s2_sub1_Section16

   AddSize 66560
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song16} $LOCALAPPDATA\Temp\Song-JC-CD.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-CD.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-CD.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "That Spells DNA" s2_sub1_Section17

   AddSize 4158
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song17} $LOCALAPPDATA\Temp\Song-JC-TSDNA.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-TSDNA.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-TSDNA.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "When You Go" s2_sub1_Section18

   AddSize 5755
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song18} $LOCALAPPDATA\Temp\Song-JC-WYG.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-WYG.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-WYG.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Shop Vac" s2_sub1_Section20

   AddSize 5448
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song20} $LOCALAPPDATA\Temp\Song-JC-SV.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-SV.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-SV.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "I Feel Fantastic" s2_sub1_Section21

   AddSize 3851
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song21} $LOCALAPPDATA\Temp\Song-JC-IFF.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-IFF.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-IFF.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Re: Your Brains" s2_sub1_Section22

   AddSize 7087
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song22} $LOCALAPPDATA\Temp\Song-JC-ReYB.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-ReYB.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-ReYB.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Skullcrusher Mountain" s2_sub1_Section23

   AddSize 6298
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song23} $LOCALAPPDATA\Temp\Song-JC-SCM.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-SCM.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-SCM.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Chiron Beta Prime" s2_sub1_Section24

   AddSize 38298
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub1_song24} $LOCALAPPDATA\Temp\Song-JC-CBP.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-JC-CBP.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-JC-CBP.zip"

  SetOutPath "$INSTDIR"

SectionEnd

SectionGroupEnd
;-----------------------------------------------------------------------
; Joshua Morin - On The Run
;-----------------------------------------------------------------------
Section /o "Joshua Morin - On The Run" g2Section3
   AddSize 3881
   SetOverwrite try
   SetOutPath "$INSTDIR"
   CreateDirectory "$INSTDIR\songs\Joshua Morin - On The Run"
   SetOutPath "$INSTDIR\songs\Joshua Morin - On The Run\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_song3} $LOCALAPPDATA\Temp\Song-On-the-run.zip

  Pop $R0 ;Get the return value
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-On-the-run.zip" "$INSTDIR\songs\Joshua Morin - On The Run\"

  Delete "$LOCALAPPDATA\Temp\Song-On-the-run.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
; Pornophonique
;-----------------------------------------------------------------------
SectionGroup $(name_s2_sub4) s2_sub4

Section /o "Pornophonique - Space Invaders" g2Section4
   AddSize 3646
   SetOverwrite try
   SetOutPath "$INSTDIR"
   CreateDirectory "$INSTDIR\songs\Pornophonique - Space Invaders"
   SetOutPath "$INSTDIR\songs\Pornophonique - Space Invaders\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_song4} $LOCALAPPDATA\Temp\Song-Space-Invaders.zip

  Pop $R0 ;Get the return value
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-Space-Invaders.zip" "$INSTDIR\songs\Pornophonique - Space Invaders\"

  Delete "$LOCALAPPDATA\Temp\Song-Space-Invaders.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Pornophonique - Space Invaders (Karaoke)" g2Section6
   AddSize 3779
   SetOverwrite try
   SetOutPath "$INSTDIR\songs"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_song6} $LOCALAPPDATA\Temp\Song-SpaceInvadersKAR.zip

  Pop $R0 ;Get the return value
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-SpaceInvadersKAR.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-SpaceInvadersKAR.zip"

  SetOutPath "$INSTDIR"

SectionEnd

SectionGroupEnd
;-----------------------------------------------------------------------
; Shearer
;-----------------------------------------------------------------------
SectionGroup $(name_s2_sub2) s2_sub2

Section /o "Shearer - 69" s2_sub2_Section1

   AddSize 4557
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub2_song1} $LOCALAPPDATA\Temp\Song-Shearer-69.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-Shearer-69.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-Shearer-69.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Shearer - 69 (Karaoke)" s2_sub2_Section2

   AddSize 4772
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub2_song2} $LOCALAPPDATA\Temp\Song-Shearer-69-Kar.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-Shearer-69-Kar.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-Shearer-69-Kar.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Shearer - Can't stop it" s2_sub2_Section3

   AddSize 5510
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub2_song3} $LOCALAPPDATA\Temp\Song-Shearer-CSI.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-Shearer-CSI.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-Shearer-CSI.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Shearer - Can't stop it (Karaoke)" s2_sub2_Section4

   AddSize 4178
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub2_song4} $LOCALAPPDATA\Temp\Song-Shearer-CSI-Kar.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-Shearer-CSI-Kar.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-Shearer-CSI-Kar.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Shearer - In My Hand" s2_sub2_Section5

   AddSize 5960
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub2_song5} $LOCALAPPDATA\Temp\Song-Shearer-IMH.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-Shearer-IMH.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-Shearer-IMH.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Shearer - Man Song" s2_sub2_Section6

   AddSize 7270
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub2_song6} $LOCALAPPDATA\Temp\Song-Shearer-MS.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-Shearer-MS.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-Shearer-MS.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Shearer - Man Song (Karaoke)" s2_sub2_Section7

   AddSize 5807
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub2_song7} $LOCALAPPDATA\Temp\Song-Shearer-MS-Kar.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-Shearer-MS-Kar.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-Shearer-MS-Kar.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Shearer - Stay With Me" s2_sub2_Section8

   AddSize 6400
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub2_song8} $LOCALAPPDATA\Temp\Song-Shearer-SWM.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:
  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-Shearer-SWM.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-Shearer-SWM.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Shearer - Stay With Me (Karaoke)" s2_sub2_Section9

   AddSize 5417
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub2_song9} $LOCALAPPDATA\Temp\Song-Shearer-SWM-Kar.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:

  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-Shearer-SWM-Kar.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-Shearer-SWM-Kar.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
SectionGroupEnd

Section /o "Steven Dunston - Northern Star" g2Section5
   AddSize 2427
   SetOverwrite try
   SetOutPath "$INSTDIR"
   CreateDirectory "$INSTDIR\songs\Steven Dunston - Northern Star"
   SetOutPath "$INSTDIR\songs\Steven Dunston - Northern Star\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_song5} $LOCALAPPDATA\Temp\Song-Northern-Star.zip

  Pop $R0 ;Get the return value
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:

  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-Northern-Star.zip" "$INSTDIR\songs\Steven Dunston - Northern Star\"

  Delete "$LOCALAPPDATA\Temp\Song-Northern-Star.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
; Wise Guys
;-----------------------------------------------------------------------
SectionGroup $(name_s2_sub3) s2_sub3

Section /o "Wise Guys - Lebendig und kr�ftig und sch�rfer" s2_sub3_Section1

   AddSize 4015
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub3_song1} $LOCALAPPDATA\Temp\Song-WiseGuys-LUKUS.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:

  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-WiseGuys-LUKUS.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-WiseGuys-LUKUS.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Wise Guys - Mensch, wo bist du?" s2_sub3_Section2

   AddSize 5335
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub3_song2} $LOCALAPPDATA\Temp\Song-WiseGuys-MWBD.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:

  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-WiseGuys-MWBD.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-WiseGuys-MWBD.zip"

  SetOutPath "$INSTDIR"

SectionEnd
;-----------------------------------------------------------------------
Section /o "Wise Guys - Mensch, wo bist du? (Karaoke)" s2_sub3_Section3

   AddSize 5335
   SetOverwrite try
   SetOutPath "$INSTDIR\songs\"

; Download song:
  NSISdl::download /TIMEOUT=50000 ${download_sub3_song3} $LOCALAPPDATA\Temp\Song-WiseGuys-MWBDKar.zip
 
  Pop $R0
    StrCmp $R0 "success" dlok
      MessageBox MB_OK|MB_ICONEXCLAMATION "Download Error, click OK to Continue" /SD IDOK
  dlok:

  ZipDLL::extractall "$LOCALAPPDATA\Temp\Song-WiseGuys-MWBDKar.zip" "$INSTDIR\songs\"

  Delete "$LOCALAPPDATA\Temp\Song-WiseGuys-MWBDKar.zip"

  SetOutPath "$INSTDIR"

SectionEnd

SectionGroupEnd

SectionGroupEnd