-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupdate_info.xml
7971 lines (7971 loc) · 1.06 MB
/
update_info.xml
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
<Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04">
<Obj RefId="0">
<TN RefId="0">
<T>AUInfo</T>
<T>System.Management.Automation.PSCustomObject</T>
<T>System.Object</T>
</TN>
<MS>
<Obj N="result" RefId="1">
<TN RefId="1">
<T>System.Management.Automation.PSCustomObject</T>
<T>System.Object</T>
</TN>
<MS>
<Obj N="all" RefId="2">
<TN RefId="2">
<T>System.Object[]</T>
<T>System.Array</T>
<T>System.Object</T>
</TN>
<LST>
<Obj RefId="3">
<TN RefId="3">
<T>AUPackage</T>
<T>System.Object</T>
</TN>
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\camtasia</S>
<S N="Name">camtasia</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">2024.1.5</S>
<S N="NuspecVersion">2024.1.5</S>
<Obj N="Result" RefId="4">
<TN RefId="4">
<T>System.String[]</T>
<T>System.Array</T>
<T>System.Object</T>
</TN>
<LST>
<S>camtasia - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://download.techsmith.com/camtasiastudio/releases/2415/camtasia.msi</S>
<S>nuspec version: 2024.1.5</S>
<S>remote version: 2024.1.5</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\camtasia\camtasia.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>camtasia</id>_x000A_ <version>2024.1.5</version>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/edit/master/automatic/camtasia</packageSourceUrl>_x000A_ <owners>ITS-Unibas</owners>_x000A_ <title>Camtasia (Install)</title>_x000A_ <authors>Techsmith</authors>_x000A_ <projectUrl>https://www.techsmith.com/camtasia.html</projectUrl>_x000A_ <iconUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/blob/master/icons/camtasia.png</iconUrl>_x000A_ <copyright>Copyright Techsmith</copyright>_x000A_ <requireLicenseAcceptance>true</requireLicenseAcceptance>--&gt;_x000A_ <docsUrl>https://www.techsmith.com/help.html</docsUrl>_x000A_ <tags>camtasia admin video screen recording</tags>_x000A_ <summary>Camtasia makes video editing surprisingly easy. The drag-and-drop editor and video assets help you complete your videos faster. No video experience needed.</summary>_x000A_ <description><![CDATA[Make Amazing Videos with the Camtasia Video Editor._x000A_Camtasia makes video editing surprisingly easy. The drag-and-drop editor and video assets help you complete your videos faster. No video experience needed._x000A_If you need a previous version, [download it](https://www.techsmith.com/download/oldversions)._x000A_* SCREEN RECORDER_x000A_ Record any part of your screen, down to the pixel._x000A_* WEBCAM_x000A_ Webcam lets you add a personal touch to your video._x000A_* MEDIA_x000A_ Import images, audio, and video up to 4K resolution._x000A_* MULTI-TRACK TIMELINE_x000A_ Build your videos quickly with multiple tracks for images, video, text, and audio._x000A_* ANNOTATIONS_x000A_ Arrows, callouts, shapes, and more help you get your point across._x000A_* TRANSITIONS_x000A_ Add an intro/outro to the beginning or end of a clip, image, shape, or text._x000A_* ANIMATIONS_x000A_ Zoom, pan, or create your own custom motion effects._x000A_* VOICE NARRATION_x000A_ A great way to add context to what you’re showing._x000A_* AUDIO EFFECTS_x000A_ Add audio effects to recordings, music, or narration to enhance your video._x000A_* VISUAL EFFECTS_x000A_ Adjust colors, add a drop shadow, change the clip speed, and more._x000A_* INTERACTIVITY_x000A_ Add quizzes to see who is watching your videos, and how much they've viewed._x000A_* GREEN SCREEN_x000A_ Put yourself in your video making it appear like you're right in the action._x000A_# Parameters:_x000A_* /licensekey:ABCD-EFGH-IJKL_x000A_ Registered license key. If this is missing a 30 day trial is installed._x000A_* /licensename:""Joe Bloggs""_x000A_ Registered name for the license. Can only be used if a /licensekey is specified_x000A_* /nodesktopshortcut_x000A_ Does not install an application shortcut on the desktop._x000A_Example: **-params='"/licensekey:ABCD-EFGH-IJKL /licensename:""Joe Bloggs"" /nodesktopshortcut"'**_x000A_**NOTE**: TechSmith seem to be okay with releasing a new version of the same version. This throws out the checksum of the package. If you find this happening, please raise an issue at https://github.com/pauby/chocopackages/issues. Thanks._x000A_**NOTE**: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly._x000A_]]></description>_x000A_ <releaseNotes>[Release Notes](https://support.techsmith.com/hc/en-us/articles/115006443267%C2%A0)</releaseNotes>_x000A_ <dependencies>_x000A_ </dependencies>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\camtasia\camtasia.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="5">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\firefoxesr</S>
<S N="Name">firefoxesr</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">128.7.0</S>
<S N="NuspecVersion">128.7.0</S>
<Obj N="Result" RefId="6">
<TNRef RefId="4" />
<LST>
<S>firefoxesr - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://ftp.mozilla.org/pub/firefox/releases/128.7.0esr/win64/en-US/Firefox%20Setup%20128.7.0esr.msi</S>
<S>nuspec version: 128.7.0</S>
<S>remote version: 128.7.0</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\firefoxesr\firefoxesr.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">_x000A_ <metadata>_x000A_ <version>128.7.0</version>_x000A_ <id>firefoxesr</id>_x000A_ <authors>Mozilla</authors>_x000A_ <projectUrl>https://www.mozilla.org/en-US/firefox/new/</projectUrl>_x000A_ <projectSourceUrl>https://hg.mozilla.org/mozilla-central/</projectSourceUrl>_x000A_ <docsUrl>https://developer.mozilla.org/en-US/Firefox</docsUrl>_x000A_ <bugTrackerUrl>https://bugzilla.mozilla.org/</bugTrackerUrl>_x000A_ <iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@8a7376cf4e5b7cde0eb1c6a608529601bfcd9546/icons/firefox.svg</iconUrl>_x000A_ <licenseUrl>https://www.mozilla.org/en-US/MPL/2.0/</licenseUrl>_x000A_ <title>Mozilla Firefox</title>_x000A_ <owners>chocolatey</owners>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <description><![CDATA[Bringing together all kinds of awesomeness to make browsing better for you._x000A_## Features_x000A_- A powerful, new engine that’s built for rapidfire performance._x000A_- Better, faster page loading that uses less computer memory._x000A_- Gorgeous design and smart features for intelligent browsing._x000A_- Instantly import your online info and favorites from any other browser._x000A_- The most powerful private browsing mode with added tracking protection._x000A_- Firefox Quantum features: screenshots, pocket, gaming & VR, library._x000A_- Customization Features - addons & extensions, themes, toolbar._x000A_- Synced across devices - passwords, bookmarks, tabs and more._x000A_- Ad tracker blocking._x000A_- Password manager._x000A_## Package Parameters_x000A_- `/l:<locale>` - Install given Firefox locale. See the [official page](https://releases.mozilla.org/pub/firefox/releases/latest/README.txt) for a complete list of available locales._x000A_Command-line options for installer configuration. See the [official page](https://firefox-source-docs.mozilla.org/browser/installer/windows/installer/FullConfig.html) for details and defaults._x000A_- `/InstallDir:<path>`_x000A_- `/NoTaskbarShortcut` Do not create Taskbar Shortcut_x000A_- `/NoDesktopShortcut` Do not create Desktop Shortcut_x000A_- `/NoStartMenuShortcut` Do not create Start Menu Shortcut_x000A_- `/NoMaintenanceService` Do not install Maintenance Service_x000A_- `/RemoveDistributionDir` Remove Distribution directory on installation/update. (This is the default behavior of the Firefox Installer, but not for this Chocolatey Package)_x000A_- `/NoAutoUpdate` Sets a policies.json file to not update Firefox and does not install the Maintenance Service_x000A_### Examples_x000A_`choco install Firefox --params "/l:en-GB"`\_x000A_`choco install Firefox --params "/NoTaskbarShortcut /NoDesktopShortcut /NoAutoUpdate"`\_x000A_`choco install Firefox --params "/l:en-GB /RemoveDistributionDir"`_x000A_]]></description>_x000A_ <summary>Bringing together all kinds of awesomeness to make browsing better for you</summary>_x000A_ <tags>browser mozilla firefox admin foss cross-platform</tags>_x000A_ <packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/firefox</packageSourceUrl>_x000A_ <dependencies>_x000A_ <dependency id="chocolatey-core.extension" version="1.3.3" />_x000A_ </dependencies>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\firefoxesr\firefoxesr.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="7">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\gpower</S>
<S N="Name">gpower</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<Nil N="RemoteVersion" />
<S N="NuspecVersion">3.1.9.7</S>
<Nil N="Result" />
<S N="Error">au_GetLatest failed_x000A__x000A__x000A_404 Not Found_x000A__x000A_Not Found_x000A_The requested URL was not found on this server._x000A__x000A_Apache/2.4.62 (Debian) Server at www.psychologie.hhu.de Port 443_x000A__x000A_</S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\gpower\gpower.nuspec</S>
<Obj N="NuspecXml" RefId="8">
<XD><?xml version="1.0" encoding="utf-8"?>_x000D__x000A_<!-- Do not remove this test for UTF-8: if “Ωâ€_x009D_ doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000D__x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000D__x000A_ <metadata>_x000D__x000A_ <id>gpower</id>_x000D__x000A_ <version>3.1.9.7</version>_x000D__x000A_ <packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/gpower</packageSourceUrl>_x000D__x000A_ <owners>ITS-Unibas</owners>_x000D__x000A_ <!-- ============================== -->_x000D__x000A_ <title>GPower</title>_x000D__x000A_ <authors>The G*Power Team, Axel Buchner, Edgar Erdfelder, Franz Faul, Albert-Georg Lang</authors>_x000D__x000A_ <projectUrl>https://www.psychologie.hhu.de/arbeitsgruppen/allgemeine-psychologie-und-arbeitspsychologie/gpower.html</projectUrl>_x000D__x000A_ <iconUrl>https://www.psychologie.hhu.de/fileadmin/_processed_/f/d/csm_GPowerIcon_b6bfb17f0c.png</iconUrl>_x000D__x000A_ <licenseUrl>https://www.psychologie.hhu.de/arbeitsgruppen/allgemeine-psychologie-und-arbeitspsychologie/gpower.htm</licenseUrl>_x000D__x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000D__x000A_ <docsUrl>https://www.psychologie.hhu.de/arbeitsgruppen/allgemeine-psychologie-und-arbeitspsychologie/gpower.html</docsUrl>_x000D__x000A_ <mailingListUrl>https://www.psychologie.hhu.de/arbeitsgruppen/allgemeine-psychologie-und-arbeitspsychologie/gpower.html</mailingListUrl>_x000D__x000A_ <bugTrackerUrl>https://www.psychologie.hhu.de/arbeitsgruppen/allgemeine-psychologie-und-arbeitspsychologie/gpower.htm</bugTrackerUrl>_x000D__x000A_ <summary>G*Power is a tool to compute statistical power analyses for many different t tests, F tests, χ2 tests, z tests and some exact tests. G*Power can also be used to compute effect sizes and to display graphically the results of power analyses.</summary>_x000D__x000A_ <tags>gpower admin statistics</tags>_x000D__x000A_ <description>G*Power is a tool to compute statistical power analyses for many different t tests, F tests, χ2 tests, z tests and some exact tests. G*Power can also be used to compute effect sizes and to display graphically the results of power analyses.</description>_x000D__x000A_ <releaseNotes>https://www.psychologie.hhu.de/arbeitsgruppen/allgemeine-psychologie-und-arbeitspsychologie/gpower.html</releaseNotes>_x000D__x000A_ </metadata>_x000D__x000A_ <files>_x000D__x000A_ <file src="tools\**" target="tools" />_x000D__x000A_ </files>_x000D__x000A_</package>_x000D__x000A_</XD>
</Obj>
<B N="Ignored">false</B>
<Nil N="IgnoreMessage" />
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\gpower\gpower.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="9">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\keepass.install</S>
<S N="Name">keepass.install</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<Nil N="RemoteVersion" />
<S N="NuspecVersion">2.56</S>
<Nil N="Result" />
<S N="Error">au_GetLatest failed_x000A_Exception calling "GetResponse" with "0" argument(s): "The remote server returned an error: (403) Forbidden."</S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\keepass.install\keepass.install.nuspec</S>
<Obj N="NuspecXml" RefId="10">
<XD><?xml version="1.0" encoding="utf-8"?>_x000D__x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000D__x000A_ <metadata>_x000D__x000A_ <id>keepass.install</id>_x000D__x000A_ <version>2.56</version>_x000D__x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/tree/master/automatic/keepass.install</packageSourceUrl>_x000D__x000A_ <owners>ITS-Unibas</owners>_x000D__x000A_ <title>Keepass 2.x (Install)</title>_x000D__x000A_ <authors>Dominik Reichl</authors>_x000D__x000A_ <projectUrl>http://keepass.info/</projectUrl>_x000D__x000A_ <iconUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/blob/master/icons/keepass.png</iconUrl>_x000D__x000A_ <copyright>Dominik Reichl</copyright>_x000D__x000A_ <licenseUrl>http://keepass.info/help/v2/license.html</licenseUrl>_x000D__x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000D__x000A_ <projectSourceUrl>http://sourceforge.net/projects/keepass/files/KeePass%202.x/</projectSourceUrl>_x000D__x000A_ <docsUrl>http://keepass.info/help/base/index.html</docsUrl>_x000D__x000A_ <mailingListUrl>https://sourceforge.net/p/keepass/discussion/</mailingListUrl>_x000D__x000A_ <bugTrackerUrl>https://sourceforge.net/p/keepass/bugs/</bugTrackerUrl>_x000D__x000A_ <tags>password safe admin</tags>_x000D__x000A_ <summary>Lightweight and easy-to-use password manager.</summary>_x000D__x000A_ <description><![CDATA[>KeePass is a free open source password manager, which helps you to manage your passwords in a secure way. You can put all your passwords in one database, which is locked with one master key or a key file. So you only have to remember one single master password or select the key file to unlock the whole database. The databases are encrypted using the best and most secure encryption algorithms currently known (AES and Twofish)._x000D__x000A__x000D__x000A_### 1.x and 2.x_x000D__x000A__x000D__x000A_KeePass currently is available in [two different editions](http://keepass.info/compare.html): 1.x and 2.x. They are fundamentally different (2.x is not based on 1.x). They mainly differ in portability and functionality._x000D__x000A__x000D__x000A_KeePass 1.x may be obtained via chocolatey package [keepass-classic](https://chocolatey.org/packages/keepass-classic)._x000D__x000A_KeePass 2.x may be obtained via this package._x000D__x000A__x000D__x000A_### Additional resources_x000D__x000A__x000D__x000A_[Features](http://keepass.info/features.html)_x000D__x000A_[Screenshots](http://keepass.info/screenshots.html#scr2x)_x000D__x000A_FAQs: [General](http://keepass.info/help/kb/faq.html), [Technical](http://keepass.info/help/base/faq_tech.html), [Development](http://keepass.info/devstatus.html), [Administrative](http://keepass.info/help/base/faq.html)_x000D__x000A_[Forum](https://sourceforge.net/p/keepass/discussion/)_x000D__x000A_[Manual](http://keepass.info/help/base/index.html)_x000D__x000A_[Command line options](http://keepass.info/help/base/cmdline.html)_x000D__x000A__x000D__x000A_**NOTE**: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly._x000D__x000A_]]></description>_x000D__x000A_ <releaseNotes>http://keepass.info/news/news_all.html</releaseNotes>_x000D__x000A_ </metadata>_x000D__x000A_ <files>_x000D__x000A_ <file src="tools\**" target="tools" />_x000D__x000A_ </files>_x000D__x000A_</package>_x000D__x000A_</XD>
</Obj>
<B N="Ignored">false</B>
<Nil N="IgnoreMessage" />
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\keepass.install\keepass.install.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="11">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\micro-manager</S>
<S N="Name">micro-manager</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">2.0.0</S>
<S N="NuspecVersion">2.0.0</S>
<Obj N="Result" RefId="12">
<TNRef RefId="4" />
<LST>
<S>micro-manager - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>nuspec version: 2.0.0</S>
<S>remote version: 2.0.0</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\micro-manager\micro-manager.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0"?>_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>micro-manager</id>_x000A_ <version>2.0.0</version>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/tree/master/automatic/micro-manager</packageSourceUrl>_x000A_ <owners>University of Basel,AdmiringWorm,zippy1981,yoshimov,jeffmoser</owners>_x000A_ <title>Open Source Software for Control and Automation of Microscope Hardware</title>_x000A_ <authors>Micro Manager</authors>_x000A_ <projectUrl>https://micro-manager.org/</projectUrl>_x000A_ <iconUrl>https://micro-manager.org/media/logo/logo-web.png</iconUrl>_x000A_ <copyright>µManager</copyright>_x000A_ <licenseUrl>https://micro-manager.org/Credits</licenseUrl>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <projectSourceUrl>https://micro-manager.org/</projectSourceUrl>_x000A_ <docsUrl>https://micro-manager.org/Micro-Manager_Project_Overview</docsUrl>_x000A_ <mailingListUrl>https://micro-manager.org/</mailingListUrl>_x000A_ <bugTrackerUrl>https://micro-manager.org/</bugTrackerUrl>_x000A_ <tags>admin mirco-manager micro manager</tags>_x000A_ <summary>Open Source Software for Control and Automation of Microscope Hardware</summary>_x000A_ <description>Open Source Software for Control and Automation of Microscope Hardware</description>_x000A_ <releaseNotes>_x000A_ </releaseNotes>_x000A_ <dependencies>_x000A_ </dependencies>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\micro-manager\micro-manager.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="13">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\mnova</S>
<S N="Name">mnova</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">15.1.0</S>
<S N="NuspecVersion">15.1.0</S>
<Obj N="Result" RefId="14">
<TNRef RefId="4" />
<LST>
<S>mnova - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://mestrelab.com/downloads/mnova/win/msi/MestReNova-15.1.0-38027_x005F_x64.msi</S>
<S>nuspec version: 15.1.0</S>
<S>remote version: 15.1.0</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\mnova\mnova.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ωâ€_x009D_ doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>mnova</id>_x000A_ <version>15.1.0</version>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/tree/master/automatic/mnova</packageSourceUrl>_x000A_ <owners>ITS-Unibas</owners>_x000A_ <!-- ============================== -->_x000A_ <title>MNova</title>_x000A_ <authors>MestReLab Research</authors>_x000A_ <projectUrl>https://mestrelab.com/download/mnova/</projectUrl>_x000A_ <iconUrl>https://mestrelab.com/wp-content/uploads/2016/06/mnova_plugin_nmr.png</iconUrl>_x000A_ <licenseUrl>https://mestrelab.com/terms-and-conditions/#1517223132033-1d0f3506-7fe3</licenseUrl>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <docsUrl>https://mestrelab.com/downloads/mnova/manuals/MestReNova-14.2-0_Manual.pdf</docsUrl>_x000A_ <summary>Mnova is a multivendor software suite designed for combined NMR, LC/GC/MS and Electronic and Vibrational Spectroscopic techniques.</summary>_x000A_ <tags>mnova admin mestrelab</tags>_x000A_ <description>Mnova is a multivendor software suite designed for combined NMR, LC/GC/MS and Electronic and Vibrational Spectroscopic techniques.</description>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package></XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\mnova\mnova.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="15">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\msedge</S>
<S N="Name">msedge</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">133.0.3065.51</S>
<S N="NuspecVersion">133.0.3065.51</S>
<Obj N="Result" RefId="16">
<TNRef RefId="4" />
<LST>
<S>msedge - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/4fcf0712-41db-4227-8ab7-9ad98e0c8c71/MicrosoftEdgeEnterpriseX64.msi</S>
<S>nuspec version: 133.0.3065.51</S>
<S>remote version: 133.0.3065.51</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\msedge\msedge.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">_x000A_ <metadata>_x000A_ <id>msedge</id>_x000A_ <version>133.0.3065.51</version>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-automatic-packages</packageSourceUrl>_x000A_ <owners>Microsoft</owners>_x000A_ <title>Microsoft Edge</title>_x000A_ <authors>Microsoft</authors>_x000A_ <projectUrl>https://www.microsoft.com/en-us/edge/business</projectUrl>_x000A_ <copyright>© Microsoft 2020</copyright>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <tags>edge microsoft browser web chromium</tags>_x000A_ <description>_x000A_ Microsoft Edge is a web browser developed by Microsoft._x000A_ </description>_x000A_ <summary>Microsoft Edge is a web browser developed by Microsoft.</summary>_x000A_ <iconUrl>https://cdn.jsdelivr.net/gh/ITS-Unibas/chocolatey-automatic-packages/icons/msedge.png</iconUrl>_x000A_ <docsUrl>https://docs.microsoft.com/en-us/deployedge/</docsUrl>_x000A_ <licenseUrl>https://docs.microsoft.com/en-us/legal/termsofuse</licenseUrl>_x000A_ <bugTrackerUrl>https://support.microsoft.com/en-us/</bugTrackerUrl>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\msedge\msedge.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="17">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\nis-elements-viewer</S>
<S N="Name">nis-elements-viewer</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">5.22.00</S>
<S N="NuspecVersion">5.22.00</S>
<Obj N="Result" RefId="18">
<TNRef RefId="4" />
<LST>
<S>nis-elements-viewer - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://www.software-dl.microscope.healthcare.nikon.com/en/imgsfw/data/NIS_Viewer_Ver52200_E.zip</S>
<S>nuspec version: 5.22.00</S>
<S>remote version: 5.22.00</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\nis-elements-viewer\nis-elements-viewer.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ωâ€_x009D_ doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>nis-elements-viewer</id>_x000A_ <version>5.22.00</version>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/tree/master/automatic/nis-elements-viewer</packageSourceUrl>_x000A_ <owners>University of Basel</owners>_x000A_ <title>NIS-Elements Viewer</title>_x000A_ <authors>Nikon Europe BV</authors>_x000A_ <projectUrl>https://www.microscope.healthcare.nikon.com/de_EU/products/software/nis-elements/viewer</projectUrl>_x000A_ <iconUrl>https://raw.githubusercontent.com/ITS-Unibas/chocolatey-internal-packages/master/icons/nis-elements-viewer.png</iconUrl>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <projectSourceUrl>https://www.microscope.healthcare.nikon.com/de_EU/products/software/nis-elements/viewer</projectSourceUrl>_x000A_ <docsUrl>https://d33b8x22mym97j.cloudfront.net/phase4/literature/Manuals/NIS-Elements_Viewer-en-5.21.00.pdf</docsUrl>_x000A_ <summary>Der NIS-Elements Viewer ist ein kostenloses standalone-Programm für das Darstellen von Bild- und Daten-Files.</summary>_x000A_ <tags>nis-elements-viewer</tags>_x000A_ <description>_x000A_ Der NIS-Elements Viewer ist ein kostenloses standalone-Programm für das Darstellen von Bild- und Daten-Files. _x000A_ Der Viewer enthält dieselben, mächtigen Betrachtungs- und Auswahl-Modi für Bilder wie die NIS-Elements Kern-Modulpakete:_x000A_ Die Volumen-Darstellung mit 3D Rendering, die "Kachel"-Ansicht ("Tile View") für Datensätze über die Zeit, über Z-Serien und von Multipoints (XY), _x000A_ sowie die Schnittansicht ("Slice View") für Z-Ebenen- und Zeit-Datensätze. Der NIS-Elements Viewer hat dasselbe "Look and Feel" wie die NIS-Elements Kern-Modulpakete._x000A_ Zum Beispiel werden Kalibrierungen und Binärbildmasken (durch Schwellenwertsetzen erkannte Objekte), die in den NIS-Elements Kern-Modulpaketen kreiert wurden in den _x000A_ NIS-Elements Viewer übertragen. Zusätzlich sind die Informationen der Image Header Daten und die experimentellen Informationen, wie beispielsweise Zeitintervalle,_x000A_ Z-Schritte und Geräteparameter zugänglich (nur in der Windows Version). Das Speichern von ND-Datensätzen (multidimensionale Bildaufnahmen) als TIFF-Daten ist auch als_x000A_ Feature im NIS-Elements Viewer integriert._x000A_ </description>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\nis-elements-viewer\nis-elements-viewer.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="19">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\omero.insight</S>
<S N="Name">omero.insight</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">5.8.6</S>
<S N="NuspecVersion">5.8.6</S>
<Obj N="Result" RefId="20">
<TNRef RefId="4" />
<LST>
<S>omero.insight - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://github.com/ome/omero-insight/releases/download/v5.8.6/OMERO.insight-5.8.6.msi</S>
<S>nuspec version: 5.8.6</S>
<S>remote version: 5.8.6</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\omero.insight\omero.insight.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>omero.insight</id>_x000A_ <version>5.8.6</version>_x000A_ <packageSourceUrl>https://git.its.unibas.ch/projects/CSSWCS/repos/package-gallery/browse/omero.insight</packageSourceUrl>_x000A_ <owners>University of Basel</owners>_x000A_ <!-- ============================== -->_x000A_ <title>OMERO.insight</title>_x000A_ <authors>OME</authors>_x000A_ <copyright>� 2005-2020 University of Dundee &amp; Open Microscopy Environment</copyright>_x000A_ <projectUrl>https://www.openmicroscopy.org/omero/</projectUrl>_x000A_ <licenseUrl>https://github.com/ome/omero-insight/blob/master/LICENSE.txt</licenseUrl>_x000A_ <requireLicenseAcceptance>true</requireLicenseAcceptance>_x000A_ <projectSourceUrl>https://github.com/ome/omero-insight</projectSourceUrl>_x000A_ <docsUrl>https://docs.openmicroscopy.org/omero/5.6.3/</docsUrl>_x000A_ <bugTrackerUrl>https://github.com/ome/omero-insight/issues</bugTrackerUrl>_x000A_ <summary>From the microscope to publication, OMERO handles all your images_x000A_ in a secure central repository. You can view, organize, analyze and share_x000A_ your data from anywhere you have internet access. Work with your images from_x000A_ a desktop app (Windows, Mac or Linux), from the web or from 3rd party_x000A_ software. Over 140 image file formats supported, including all major_x000A_ microscope formats.</summary>_x000A_ <tags>omero.insight microscope scientific</tags>_x000A_ <description>From the microscope to publication, OMERO handles all your_x000A_ images in a secure central repository. You can view, organize, analyze and_x000A_ share your data from anywhere you have internet access. Work with your_x000A_ images from a desktop app (Windows, Mac or Linux), from the web or from 3rd_x000A_ party software. Over 140 image file formats supported, including all major_x000A_ microscope formats.</description>_x000A_ <!-- =============================== -->_x000A__x000A_ <!-- Specifying dependencies and version ranges? https://docs.nuget.org/create/versioning#specifying-version-ranges-in-.nuspec-files -->_x000A_ <!--<dependencies>_x000A_ <dependency id="" version="__MINIMUM_VERSION__" />_x000A_ <dependency id="" version="[__EXACT_VERSION__]" />_x000A_ <dependency id="" version="[_MIN_VERSION_INCLUSIVE, MAX_VERSION_INCLUSIVE]" />_x000A_ <dependency id="" version="[_MIN_VERSION_INCLUSIVE, MAX_VERSION_EXCLUSIVE)" />_x000A_ <dependency id="" />_x000A_ </dependencies>-->_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\omero.insight\omero.insight.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="21">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\paraview</S>
<S N="Name">paraview</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">5.13</S>
<S N="NuspecVersion">5.13</S>
<Obj N="Result" RefId="22">
<TNRef RefId="4" />
<LST>
<S>paraview - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://www.paraview.org/paraview-downloads/download.php?submit=Download&version=v5.13/&type=binary&os=Windows&downloadFile=ParaView-5.13.2-Windows-Python3.10-msvc2017-AMD64.msi</S>
<S>nuspec version: 5.13</S>
<S>remote version: 5.13</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\paraview\paraview.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ωâ€_x009D_ doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>paraview</id>_x000A_ <version>5.13</version>_x000A_ <owners>University of Basel</owners>_x000A_ <title>paraview</title>_x000A_ <authors>Kitware, Inc.</authors>_x000A_ <projectUrl>https://www.kitware.com/platforms/#paraview</projectUrl>_x000A_ <iconUrl>https://raw.githubusercontent.com/hirtanak/scripts/master/paraviewloggo.gif</iconUrl>_x000A_ <licenseUrl>https://www.paraview.org/paraview-license/</licenseUrl>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <projectSourceUrl>https://www.paraview.org/download/</projectSourceUrl>_x000A_ <summary>OpenSource post viewer for CAE</summary>_x000A_ <tags>Kitware paraview postviewer opencae</tags>_x000A_ <description>OpenSource post viewer for CAE paraview</description>_x000A_ <releaseNotes>https://www.paraview.org/Wiki/ParaView_Release_Notes</releaseNotes>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\paraview\paraview.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="23">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\rforwindows</S>
<S N="Name">rforwindows</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">4.4.2</S>
<S N="NuspecVersion">4.4.2</S>
<Obj N="Result" RefId="24">
<TNRef RefId="4" />
<LST>
<S>rforwindows - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://cloud.r-project.org/bin/windows/base/R-4.4.2-win.exe</S>
<S>nuspec version: 4.4.2</S>
<S>remote version: 4.4.2</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\rforwindows\rforwindows.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0"?>_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>rforwindows</id>_x000A_ <version>4.4.2</version>_x000A_ <packageSourceUrl>https://github.com/AdmiringWorm/chocolatey-packages/tree/master/automatic/r.project</packageSourceUrl>_x000A_ <owners>University of Basel,AdmiringWorm,zippy1981,yoshimov,jeffmoser</owners>_x000A_ <title>The R Project for Statistical Computing</title>_x000A_ <authors>R Core Team</authors>_x000A_ <projectUrl>http://www.r-project.org</projectUrl>_x000A_ <iconUrl>https://cdn.jsdelivr.net/gh/AdmiringWorm/chocolatey-packages@8ab22ac35365e0e5cdcac1707299643d7fb3e759/icons/r.project.svg</iconUrl>_x000A_ <copyright>Copyright (C) 2016 The R Foundation for Statistical Computing</copyright>_x000A_ <licenseUrl>http://www.r-project.org/Licenses/</licenseUrl>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <projectSourceUrl>https://svn.r-project.org/R/</projectSourceUrl>_x000A_ <docsUrl>https://cloud.r-project.org/manuals.html</docsUrl>_x000A_ <mailingListUrl>https://www.r-project.org/mail.html</mailingListUrl>_x000A_ <bugTrackerUrl>https://bugs.r-project.org/bugzilla3/</bugTrackerUrl>_x000A_ <tags>r r-project r-base admin statistics programming data-analysis programming-language mathematics data-mining_x000A_ statistical-analysis statistical data-acquisition statistical-graphics data-automation</tags>_x000A_ <summary>R is a language and environment for statistical computing and graphics</summary>_x000A_ <description><![CDATA[##_x000A_Package is based on AdmiringWorm's [work](https://github.com/AdmiringWorm/chocolatey-packages/tree/master/automatic/r.project)_x000A__x000A_## Introduction to R_x000A__x000A_R is a language and environment for statistical computing and graphics. It is a [GNU project](http://www.gnu.org/) which is similar to the S language and environment which was developed at Bell Laboratories (formerly AT&T, now Lucent Technologies) by John Chambers and colleagues. R can be considered as a different implementation of S. There are some important differences, but much code written for S runs unaltered under R._x000A__x000A_R provides a wide variety of statistical (linear and nonlinear modelling, classical statistical tests, time-series analysis, classification, clustering, …) and graphical techniques, and is highly extensible. The S language is often the vehicle of choice for research in statistical methodology, and R provides an Open Source route to participation in that activity._x000A__x000A_One of R’s strengths is the ease with which well-designed publication-quality plots can be produced, including mathematical symbols and formulae where needed. Great care has been taken over the defaults for the minor design choices in graphics, but the user retains full control._x000A__x000A_R is available as Free Software under the terms of the [Free Software Foundation](http://www.gnu.org/)’s [GNU General Public License](https://www.r-project.org/COPYING) in source code form. It compiles and runs on a wide variety of UNIX platforms and similar systems (including FreeBSD and Linux), Windows and MacOS._x000A__x000A_## The R environment_x000A__x000A_R is an integrated suite of software facilities for data manipulation, calculation and graphical display. It includes_x000A__x000A_- an effective data handling and storage facility,_x000A_- a suite of operators for calculations on arrays, in particular matrices,_x000A_- a large, coherent, integrated collection of intermediate tools for data analysis,_x000A_- graphical facilities for data analysis and display either on-screen or on hardcopy, and_x000A_- a well-developed, simple and effective programming language which includes conditionals, loops, user-defined recursive functions and input and output facilities._x000A_- The term “environment” is intended to characterize it as a fully planned and coherent system, rather than an incremental accretion of very specific and inflexible tools, as is frequently the case with other data analysis software._x000A__x000A_R, like S, is designed around a true computer language, and it allows users to add additional functionality by defining new functions. Much of the system is itself written in the R dialect of S, which makes it easy for users to follow the algorithmic choices made. For computationally-intensive tasks, C, C++ and Fortran code can be linked and called at run time. Advanced users can write C code to manipulate R objects directly._x000A__x000A_Many users think of R as a statistics system. We prefer to think of it of an environment within which statistical techniques are implemented._x000A_R can be extended (easily) via packages. There are about eight packages supplied with the R distribution and many more are available through the CRAN family of Internet sites covering a very wide range of modern statistics._x000A__x000A_R has its own LaTeX-like documentation format, which is used to supply comprehensive documentation, both on-line in a number of formats and in hardcopy._x000A_]]></description>_x000A_ <releaseNotes>_x000A_[Software Changelog](https://cloud.r-project.org/doc/manuals/r-release/NEWS.html)_x000A_[Package Changelog](https://github.com/AdmiringWorm/chocolatey-packages/blob/master/automatic/r.project/Changelog.md)_x000A_ </releaseNotes>_x000A_ <dependencies>_x000A_ <dependency id="chocolatey-core.extension" version="1.3.3" />_x000A_ </dependencies>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="legal\**" target="legal" />_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\rforwindows\rforwindows.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="25">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\rstudio-automatic</S>
<S N="Name">rstudio-automatic</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">2024.12.0</S>
<S N="NuspecVersion">2024.12.0</S>
<Obj N="Result" RefId="26">
<TNRef RefId="4" />
<LST>
<S>rstudio-automatic - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://download1.rstudio.org/electron/windows/RStudio-2024.12.0-467.exe</S>
<S>nuspec version: 2024.12.0</S>
<S>remote version: 2024.12.0</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\rstudio-automatic\rstudio-automatic.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A__x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>rstudio-automatic</id>_x000A_ <version>2024.12.0</version>_x000A_ <owners>ITS Unibasel</owners>_x000A_ <title>rstudio</title>_x000A_ <authors>RStudio</authors>_x000A_ <projectUrl>https://github.com/rstudio/rstudio</projectUrl>_x000A_ <summary>RStudio is an integrated development environment (IDE) for R. It includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management. </summary>_x000A_ <description><![CDATA[RStudio is an integrated development environment (IDE) for the R programming language._x000A__x000A_## Features_x000A__x000A_- Customizable workbench with all of the tools required to work with R in one place (console, source, plots, workspace, help, history, etc.)._x000A_- Syntax highlighting editor with code completion._x000A_- Execute code directly from the source editor (line, selection, or file)._x000A_- Full support for authoring Sweave and TeX documents._x000A_- Runs on all major platforms (Windows, Mac, and Linux) and can also be run as a server, enabling multiple users to access the RStudio IDE using a web browser._x000A_]]></description>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-automatic-packages/tree/master/automatic</packageSourceUrl>_x000A_ <licenseUrl>http://www.gnu.org/licenses/agpl-3.0-standalone.html</licenseUrl>_x000A_ <releaseNotes>https://www.rstudio.com/products/rstudio/release-notes/</releaseNotes>_x000A_ <iconUrl>https://cdn.jsdelivr.net/gh/ITS-Unibas/chocolatey-automatic-packages/icons/rstudio.png</iconUrl>_x000A_ <tags>rstudio r r.studio statistics</tags>_x000A_ <docsUrl>https://support.rstudio.com/hc/en-us/categories/200035113-Documentation</docsUrl>_x000A_ <projectSourceUrl>https://github.com/rstudio/rstudio</projectSourceUrl>_x000A_ <bugTrackerUrl>https://github.com/rstudio/rstudio/issues</bugTrackerUrl>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <mailingListUrl>https://community.rstudio.com/c/rstudio-ide</mailingListUrl>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\rstudio-automatic\rstudio-automatic.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="27">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\snagit</S>
<S N="Name">snagit</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">2024.3.2</S>
<S N="NuspecVersion">2024.3.2</S>
<Obj N="Result" RefId="28">
<TNRef RefId="4" />
<LST>
<S>snagit - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://download.techsmith.com/snagit/releases/2432/snagit.msi</S>
<S>nuspec version: 2024.3.2</S>
<S>remote version: 2024.3.2</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\snagit\snagit.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ωâ€ÂÂÂÂÂÂ_x009D_ doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>snagit</id>_x000A_ <version>2024.3.2</version>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/tree/master/automatic/snagit</packageSourceUrl>_x000A_ <owners>ITS-Unibas</owners>_x000A_ <title>Snagit (Install)</title>_x000A_ <authors>TechSmith</authors>_x000A_ <projectUrl>https://www.techsmith.com/screen-capture.html</projectUrl>_x000A_ <iconUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/blob/master/icons/snagit.png</iconUrl>_x000A_ <copyright>TechSmith</copyright>_x000A_ <licenseUrl>http://www.techsmith.com/snagit-eula.html</licenseUrl>_x000A_ <requireLicenseAcceptance>true</requireLicenseAcceptance>_x000A_ <docsUrl>https://support.techsmith.com/hc/en-us/categories/200174548-Snagit-Windows-Technical-Issues</docsUrl>_x000A_ <tags>screenshot screen capture techsmith admin</tags>_x000A_ <summary>Snagit is a image capture program from TechSmith.</summary>_x000A_ <description>TechSmith seem to be okay with releasing a new version of the same version. This throws out the checksum of the package. If you find this happening, please raise an issue at https://github.com/pauby/chocopackages/issues. Thanks.</description>_x000A_<dependencies>_x000A_ <dependency id="unibas-msedge-webview2" />_x000A_ </dependencies>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\snagit\snagit.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="29">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\snapgene</S>
<S N="Name">snapgene</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">8.0.2</S>
<S N="NuspecVersion">8.0.2</S>
<Obj N="Result" RefId="30">
<TNRef RefId="4" />
<LST>
<S>snapgene - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>nuspec version: 8.0.2</S>
<S>remote version: 8.0.2</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\snapgene\snapgene.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ωâ€_x009D_ doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>snapgene</id>_x000A_ <version>8.0.2</version>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas-Choco/packages-manual/tree/main/snapgene</packageSourceUrl>_x000A_ <owners>University of Basel</owners>_x000A_ <title>Snapgene</title>_x000A_ <authors>GSL Biotech LLC</authors>_x000A_ <projectUrl>https://www.snapgene.com/</projectUrl>_x000A_ <iconUrl>https://cdn.jsdelivr.net/gh/AdmiringWorm/chocolatey-packages@c41ccac1ed8c0477487dff021853b519eab9e855/icons/snapgene-viewer.png</iconUrl>_x000A_ <licenseUrl>https://www.snapgene.com/legal-disclaimers/</licenseUrl>_x000A_ <requireLicenseAcceptance>true</requireLicenseAcceptance>_x000A_ <summary>_x000A_ SnapGene provides the easiest and most secure way to plan,_x000A_ visualize, and document your everyday molecular biology procedures. That’s_x000A_ why scientists at leading institutions and companies around the globe depend_x000A_ on SnapGene every day._x000A_ </summary>_x000A_ <tags>snapgene dna visualization</tags>_x000A_ <description>_x000A_ SnapGene provides the easiest and most secure way to plan,_x000A_ visualize, and document your everyday molecular biology procedures. That’s_x000A_ why scientists at leading institutions and companies around the globe depend_x000A_ on SnapGene every day._x000A_ </description>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A__x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\snapgene\snapgene.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="31">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\switchdrive</S>
<S N="Name">switchdrive</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">5.3.1.14127</S>
<S N="NuspecVersion">5.3.1.14127</S>
<Obj N="Result" RefId="32">
<TNRef RefId="4" />
<LST>
<S>switchdrive - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://drive.switch.ch/index.php/s/pdo2r7tbdwRHWq6/download</S>
<S>nuspec version: 5.3.1.14127</S>
<S>remote version: 5.3.1.14127</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\switchdrive\switchdrive.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>switchdrive</id>_x000A_ <version>5.3.1.14127</version>_x000A_ <owners>ITS-Unibas</owners>_x000A_ <title>SWITCHdrive</title>_x000A_ <authors>SWITCH</authors>_x000A_ <projectUrl>https://www.switch.ch/drive/</projectUrl>_x000A_ <summary>Store, synchronise, share and edit files quickly and reliably - all in the secure SWITCH cloud.</summary>_x000A_ <description><![CDATA[SWITCHdrive offers a secure alternative to commercial cloud storage services. You can find a list or participating Institutions here._x000A__x000A_If your institution has subscribed to SWITCHdrive, you can register on https://cloud-id.switch.ch for SWITCHdrive and then login to SWITCHdrive on https://drive.switch.ch_x000A__x000A_![screenshot](https://cdn.jsdelivr.net/gh/ITS-Unibas/chocolatey-community-packages@master/automatic/switchdrive/screenshot.jpeg)_x000A_]]></description>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/tree/master/automatic/switchdrive</packageSourceUrl>_x000A_ <licenseUrl>http://www.gnu.org/licenses/agpl-3.0-standalone.html</licenseUrl>_x000A_ <releaseNotes>https://help.switch.ch/drive/what-is-new-in-switchdrive/</releaseNotes>_x000A_ <iconUrl>https://cdn.jsdelivr.net/gh/ITS-Unibas/chocolatey-community-packages/icons/switchdrive.png</iconUrl>_x000A_ <tags>SWTICHdrive switch drive cloud storage admin trial</tags>_x000A_ <docsUrl>https://help.switch.ch/drive/faq/</docsUrl>_x000A_ <bugTrackerUrl>https://help.switch.ch/drive/contact/</bugTrackerUrl>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <!-- <projectSourceUrl></projectSourceUrl> -->_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\switchdrive\switchdrive.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="33">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-advanced-renamer</S>
<S N="Name">unibas-advanced-renamer</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">4.08</S>
<S N="NuspecVersion">4.08</S>
<Obj N="Result" RefId="34">
<TNRef RefId="4" />
<LST>
<S>unibas-advanced-renamer - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://www.advancedrenamer.com/down/win/advanced_renamer_setup_4_08.exe</S>
<S>nuspec version: 4.08</S>
<S>remote version: 4.08</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-advanced-renamer\unibas-advanced-renamer.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>unibas-advanced-renamer</id>_x000A_ <version>4.08</version>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages</packageSourceUrl>_x000A_ <projectSourceUrl>https://www.advancedrenamer.com/</projectSourceUrl>_x000A_ <owners>IT-Services | University of Basel</owners>_x000A_ <title>unibas-advanced-renamer</title>_x000A_ <authors>Kim Jensen</authors>_x000A_ <docsUrl>https://www.advancedrenamer.com/versionlog</docsUrl>_x000A_ <bugTrackerUrl>https://www.advancedrenamer.com/versionlog</bugTrackerUrl>_x000A_ <iconUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/blob/master/icons/unibas-advanced-renamer.png</iconUrl>_x000A_ <licenseUrl>https://www.advancedrenamer.com/user_guide/license</licenseUrl>_x000A_ <tags>unibas-advanced-renamer admin</tags>_x000A_ <description>Chocolatey package unibas-advanced-renamer</description>_x000A_ <releaseNotes>https://www.advancedrenamer.com/versionlog</releaseNotes>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-advanced-renamer\unibas-advanced-renamer.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="35">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-anaconda3</S>
<S N="Name">unibas-anaconda3</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">2024.10.1</S>
<S N="NuspecVersion">2024.10.1</S>
<Obj N="Result" RefId="36">
<TNRef RefId="4" />
<LST>
<S>unibas-anaconda3 - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://repo.continuum.io/archive/Anaconda3-2024.10-1-Windows-x86_64.exe</S>
<S>nuspec version: 2024.10.1</S>
<S>remote version: 2024.10.1</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-anaconda3\unibas-anaconda3.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ωâ€_x009D_ doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>unibas-anaconda3</id>_x000A_ <version>2024.10.1</version>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-automatic-packages/tree/master/automatic/unibas-anaconda3</packageSourceUrl>_x000A_ <owners>ITS-Unibas</owners>_x000A_ <!-- == SOFTWARE SPECIFIC SECTION == -->_x000A_ <title>Anaconda Distribution (Python 3.x)</title>_x000A_ <authors>Anaconda, Inc.</authors>_x000A_ <projectUrl>https://www.anaconda.com/distribution/</projectUrl>_x000A_ <iconUrl>https://cdn.jsdelivr.net/gh/teknowledgist/Chocolatey-packages@c908a814128b78210e1acd0db1e0e263b80f033f/Icons/anaconda_icon.png</iconUrl>_x000A_ <copyright>© Copyright 2015, Anaconda, Inc.</copyright>_x000A_ <licenseUrl>https://docs.anaconda.com/anaconda/eula/</licenseUrl>_x000A_ <requireLicenseAcceptance>true</requireLicenseAcceptance>_x000A_ <projectSourceUrl>https://github.com/ContinuumIO</projectSourceUrl>_x000A_ <docsUrl>https://docs.anaconda.com/anaconda/</docsUrl>_x000A_ <mailingListUrl>https://groups.google.com/a/anaconda.com/forum/#!forum/anaconda</mailingListUrl>_x000A_ <bugTrackerUrl>https://github.com/ContinuumIO/anaconda-issues/issues</bugTrackerUrl>_x000A_ <tags>anaconda3 anaconda conda python</tags>_x000A_ <summary>The most trusted Python distribution for data science</summary>_x000A_ <description>Anaconda® is a package manager, an environment manager, a Python distribution, and a collection of [over 1,000+ open source packages](https://docs.anaconda.com/anaconda/packages/pkg-docs/). It is free and easy to install, and it offers free community support._x000A__x000A_Anaconda Distribution contains conda and Anaconda Navigator. You can try both conda and Navigator to see which is right for you to manage your packages and environments. You can even switch between them, and the work you do with one can be viewed in the other._x000A__x000A_Download the [Anaconda Cheat Sheet](https://docs.anaconda.com/_downloads/Anaconda-Starter-Guide-Cheat-Sheet.pdf) (48 KB PDF) for a quick guide to using Anaconda._x000A__x000A_##### Package Defaults_x000A_Anaconda Python:_x000A__x000A_ * will install for **all users**_x000A_ * **will not** be added to the path_x000A_ * **will** be registered as the default Python_x000A_ * will install to `$ChocolateyToolsLocation\Anaconda3` (i.e. `C:\Tools\Anaconda3` by default)_x000A__x000A_You can change any of the defaults with package parameters:_x000A__x000A_ * `/JustMe` - Install for only the current user._x000A_ * `/AddToPath` - Add Anaconda Python to the path._x000A_ * `/DoNotRegister` - Do not register Anaconda Python as the default Python._x000A_ * `/D:(path)` - Choose another, *existing*, parent directory to place the 'Anaconda3' directory._x000A__x000A_###### Example :_x000A_ `choco install anaconda3 --params '"/AddToPath /D:c:\MyTools"'`_x000A__x000A_ </description>_x000A_ <releaseNotes>http://docs.anaconda.com/anaconda/reference/release-notes/</releaseNotes>_x000A_ <dependencies>_x000A_ <dependency id="chocolatey-core.extension" version="1.1.0" />_x000A_ </dependencies>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package></XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-anaconda3\unibas-anaconda3.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="37">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-autohotkey</S>
<S N="Name">unibas-autohotkey</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">1.1.37.02</S>
<S N="NuspecVersion">1.1.37.02</S>
<Obj N="Result" RefId="38">
<TNRef RefId="4" />
<LST>
<S>unibas-autohotkey - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://github.com/Lexikos/AutoHotkey_L/releases/download/v1.1.37.02/AutoHotkey_1.1.37.02_setup.exe</S>
<S>nuspec version: 1.1.37.02</S>
<S>remote version: 1.1.37.02</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-autohotkey\unibas-autohotkey.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>unibas-autohotkey</id>_x000A_ <version>1.1.37.02</version>_x000A_ <title>AutoHotkey</title>_x000A_ <owners>chocolatey-community, ITS-Unibas</owners>_x000A_ <authors>Lexikos</authors>_x000A_ <licenseUrl>http://ahkscript.org/docs/license.htm</licenseUrl>_x000A_ <projectUrl>http://ahkscript.org/</projectUrl>_x000A_ <iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@edba4a5849ff756e767cba86641bea97ff5721fe/icons/autohotkey.png</iconUrl>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <description><![CDATA[AutoHotkey is a free, open source macro-creation and automation software utility that allows users to automate repetitive tasks. It is driven by a custom scripting language that is aimed specifically at providing keyboard shortcuts, otherwise known as hotkeys._x000A_## Features_x000A_- Automate almost anything by sending keystrokes and mouse clicks_x000A_- Write a mouse or keyboard macro by hand or a macro recorder_x000A_- Remap keys and buttons on your keyboard, joystick, and mouse_x000A_- Create hotkeys for keyboard, joystick, and mouse_x000A_- Essentially any key, button or combination can become a hotkey_x000A_- Expand abbreviations as you type them_x000A_- Retrieve and change the clipboard's contents_x000A_- Convert any AHK script into an executable file that can be run on computers where AutoHotkey is not installed_x000A_- Create custom data-entry forms, user interfaces and menu bars_x000A_- Automate data entry jobs by reading data from text files, XML, CSV, Excel and various database formats_x000A_- Read signals from hand-held remote controls via the WinLIRC client script_x000A_- Supports Component Object Model (COM)_x000A_- Supports advanced programming constructs such as arrays, objects, hashtables, variadic functions etc._x000A_- DLL calls and Windows Messages_x000A_- Perl Compatible Regular Expressions (PCRE)_x000A_- Interactive debugging features_x000A_- Much more ..._x000A_## Package Parameters_x000A_- `/DefaultVer` - Can be `U64` (UNICODE 64-bit),`U32` (UNICODE 32-bit) or `A32` (ANSI 32-bit). By default UNICODE version will be installed of adequate architecture depending on your machine and/or OS._x000A_Example: `choco install autohotkey.install --params='/DefaultVer:A32'`_x000A_]]></description>_x000A_ <summary>AutoHotkey is a free, open source macro-creation and automation software utility that allows users to automate repetitive tasks. It is driven by a custom scripting language that is aimed specifically at providing keyboard shortcuts, otherwise known as hotkeys.</summary>_x000A_ <releaseNotes>https://autohotkey.com/docs/AHKL_ChangeLog.htm</releaseNotes>_x000A_ <tags>automation hotkeys scripting windows foss admin</tags>_x000A_ <packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/autohotkey.install</packageSourceUrl>_x000A_ <projectSourceUrl>https://github.com/Lexikos/AutoHotkey_L</projectSourceUrl>_x000A_ <dependencies>_x000A_ <dependency id="chocolatey-core.extension" version="1.3.3" />_x000A_ </dependencies>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package></XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-autohotkey\unibas-autohotkey.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="39">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-brightauthor-connected</S>
<S N="Name">unibas-brightauthor-connected</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<Nil N="RemoteVersion" />
<S N="NuspecVersion">1.49.1</S>
<Nil N="Result" />
<S N="Error">au_GetLatest failed_x000A_Cannot index into a null array.</S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-brightauthor-connected\unibas-brightauthor-connected.nuspec</S>
<Obj N="NuspecXml" RefId="40">
<XD><?xml version="1.0" encoding="utf-8"?>_x000D__x000A_<!-- Do not remove this test for UTF-8: if “Ωâ€_x009D_ doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000D__x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000D__x000A_ <metadata>_x000D__x000A_ <id>unibas-brightauthor-connected</id>_x000D__x000A_ <version>1.49.1</version>_x000D__x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/tree/master/automatic/unibas-brightauthor-connected</packageSourceUrl>_x000D__x000A_ <owners>IT-Services | University of Basel</owners>_x000D__x000A_ <title>unibas-brightauthor-connected</title>_x000D__x000A_ <authors>BrightSign</authors>_x000D__x000A_ <projectUrl>https://www.brightsign.biz/digital-signage-products/software/brightauthorconnected</projectUrl>_x000D__x000A_ <iconUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/blob/master/automatic/unibas-brightauthor-connected/icon.png</iconUrl>_x000D__x000A_ <licenseUrl>https://www.brightsign.biz/legal/acceptable-use-policy</licenseUrl>_x000D__x000A_ <docsUrl>https://docs.brightsign.biz/display/DOC/BrightAuthor%3Aconnected</docsUrl>_x000D__x000A_ <summary>BrightAuthor:connected</summary>_x000D__x000A_ <description>BrightSign’s free authoring software allows you to easily create, publish and manage digital signage presentations that run flawlessly on BrightSign players. It offers an enhanced and unified BrightSign experience with a common user interface, workflow and feature set available for PC, Mac and a Chrome web browser._x000D__x000A_Securely connect to BSN.cloud enabled players to take advantage of new real time player controls as well as robust network and content management tools. With BrightAuthor:connected you can experience a fully connected interface to BSN.cloud and BrightSign players at all levels.</description>_x000D__x000A_ </metadata>_x000D__x000A_ <files>_x000D__x000A_ <file src="tools\**" target="tools" />_x000D__x000A_ </files>_x000D__x000A_</package></XD>
</Obj>
<B N="Ignored">false</B>
<Nil N="IgnoreMessage" />
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-brightauthor-connected\unibas-brightauthor-connected.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="41">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-cryptomator</S>
<S N="Name">unibas-cryptomator</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">1.15.1</S>
<S N="NuspecVersion">1.15.1</S>
<Obj N="Result" RefId="42">
<TNRef RefId="4" />
<LST>
<S>unibas-cryptomator - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://github.com/cryptomator/cryptomator/releases/download/1.15.1/Cryptomator-1.15.1-x64.msi</S>
<S>nuspec version: 1.15.1</S>
<S>remote version: 1.15.1</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-cryptomator\unibas-cryptomator.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>unibas-cryptomator</id>_x000A_ <version>1.15.1</version>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/tree/master/automatic/unibas-cryptomator</packageSourceUrl>_x000A_ <owners>ITS-Unibas</owners>_x000A_ <title>Cryptomator</title>_x000A_ <authors>Skymatic GmbH</authors>_x000A_ <projectUrl>http://cryptomator.org</projectUrl>_x000A_ <iconUrl>https://cdn.jsdelivr.net/npm/cryptomator@0.1.0/src/assets/logo.png</iconUrl>_x000A_ <licenseUrl>http://cryptomator.org</licenseUrl>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <projectSourceUrl>https://github.com/cryptomator/cryptomator</projectSourceUrl>_x000A_ <tags>cryptomator</tags>_x000A_ <summary>An implementation of Cryptomator</summary>_x000A_ <description>_x000A_ With Cryptomator, the key to your data is in your hands. Cryptomator encrypts your data quickly and easily. Afterwards you upload them protected to your favorite cloud service._x000A_ </description>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-cryptomator\unibas-cryptomator.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="43">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-cyberduck</S>
<S N="Name">unibas-cyberduck</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">9.1.2.42722</S>
<S N="NuspecVersion">9.1.2.42722</S>
<Obj N="Result" RefId="44">
<TNRef RefId="4" />
<LST>
<S>unibas-cyberduck - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://update.cyberduck.io/windows/Cyberduck-Installer-9.1.2.42722.exe</S>
<S>nuspec version: 9.1.2.42722</S>
<S>remote version: 9.1.2.42722</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-cyberduck\unibas-cyberduck.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ωâ€_x009D_ doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>unibas-cyberduck</id>_x000A_ <version>9.1.2.42722</version>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-automatic-packages/tree/master/automatic/unibas-cyberduck</packageSourceUrl>_x000A_ <owners>University of Basel</owners>_x000A_ <!-- ============================== -->_x000A_ <title>Cyberduck</title>_x000A_ <authors> iterate GmbH</authors>_x000A_ <projectUrl>https://cyberduck.io/download/</projectUrl>_x000A_ <iconUrl>https://cdn.jsdelivr.net/gh/ITS-Unibas/chocolatey-automatic-packages/icons/cyberduck.png</iconUrl>_x000A_ <licenseUrl>https://cyberduck.io/license/</licenseUrl>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <docsUrl>https://trac.cyberduck.io/wiki/help/en</docsUrl>_x000A_ <summary>Cyberduck is a libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure and OneDrive, Google Drive and Dropbox.</summary>_x000A_ <tags>unibas-cyberduck admin cyberduck</tags>_x000A_ <description>Cyberduck is a libre server and cloud storage browser for Mac and Windows with support for FTP, SFTP, WebDAV, Amazon S3, OpenStack Swift, Backblaze B2, Microsoft Azure and OneDrive, Google Drive and Dropbox.</description>_x000A_ <releaseNotes>https://cyberduck.io/changelog/</releaseNotes>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package></XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-cyberduck\unibas-cyberduck.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="45">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-dotnetdesktopruntime</S>
<S N="Name">unibas-dotnetdesktopruntime</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">8.0.8</S>
<S N="NuspecVersion">8.0.8</S>
<Obj N="Result" RefId="46">
<TNRef RefId="4" />
<LST>
<S>unibas-dotnetdesktopruntime - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://download.visualstudio.microsoft.com/download/pr/907765b0-2bf8-494e-93aa-5ef9553c5d68/a9308dc010617e6716c0e6abd53b05ce/windowsdesktop-runtime-8.0.8-win-x64.exe</S>
<S>nuspec version: 8.0.8</S>
<S>remote version: 8.0.8</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-dotnetdesktopruntime\unibas-dotnetdesktopruntime.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ωâ€_x009D_ doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>unibas-dotnetdesktopruntime</id>_x000A_ <version>8.0.8</version>_x000A_ <packageSourceUrl>https://github.com/ITS-Unibas/chocolatey-internal-packages/tree/master/automatic/unibas-dotnetdesktopruntime</packageSourceUrl>_x000A_ <owners>University of Basel</owners>_x000A_ <title>unibas-dotnetdesktopruntime (Install)</title>_x000A_ <authors>Microsoft</authors>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <projectSourceUrl>https://dotnet.microsoft.com/en-us/download/dotnet</projectSourceUrl>_x000A_ <docsUrl>https://dotnet.microsoft.com/en-us/download/dotnet</docsUrl>_x000A_ <summary>.NET Desktop Runtime</summary>_x000A_ <tags>unibas-dotnetdesktopruntime admin</tags>_x000A_ <description>.NET Desktop Runtime</description>_x000A_ <releaseNotes>https://dotnet.microsoft.com/en-us/download/dotnet</releaseNotes>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-dotnetdesktopruntime\unibas-dotnetdesktopruntime.json</S>
<Nil N="Streams" />
</Props>
</Obj>
<Obj RefId="47">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-eclipse</S>
<S N="Name">unibas-eclipse</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">4.33</S>
<S N="NuspecVersion">4.33</S>
<Obj N="Result" RefId="48">
<TNRef RefId="4" />
<LST>
<S>unibas-eclipse - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>URL check</S>
<S> https://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/2024-12/R/eclipse-jee-2024-12-R-win32-x86_64.zip&r=1</S>
<S>nuspec version: 4.33</S>
<S>remote version: 4.33</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-eclipse\unibas-eclipse.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>unibas-eclipse</id>_x000A_ <version>4.33</version>_x000A_ <title>Eclipse</title>_x000A_ <authors>Eclipse Foundation</authors>_x000A_ <owners>Utrecht,Almere,Thilas</owners>_x000A_ <licenseUrl>https://www.eclipse.org/org/documents/epl-v10.php</licenseUrl>_x000A_ <projectUrl>https://www.eclipse.org/</projectUrl>_x000A_ <iconUrl>https://cdn.jsdelivr.net/gh/Thilas/chocolatey-packages@8e49b572ba0d78626a9cff9c09d932d76274795b/eclipse/icon.png</iconUrl>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ <description><![CDATA[Eclipse is famous for our Java Integrated Development Environment (IDE), but our C/C++ IDE and PHP IDE are pretty cool too. You can easily combine language support and other features into any of our default packages, and the Eclipse Marketplace allows for virtually unlimited customization and extension._x000A_### Eclipse IDE for Java EE Developers_x000A_Tools for Java developers creating Java EE and Web applications, including a Java IDE, tools for Java EE, JPA, JSF, Mylyn, EGit and others._x000A_**This package includes:**_x000A_* Data Tools Platform_x000A_* Git integration for Eclipse_x000A_* Eclipse Java Development Tools_x000A_* Eclipse Java EE Developer Tools_x000A_* JavaScript Development Tools_x000A_* Maven Integration for Eclipse_x000A_* Mylyn Task List_x000A_* Eclipse Plug-in Development Environment_x000A_* Remote System Explorer_x000A_* Code Recommenders Tools for Java Developers_x000A_* Eclipse XML Editors and Tools_x000A_### Package Parameters_x000A_The following package parameters can be set:_x000A_* `/InstallationPath` or `/InstallLocation` - Where to install the binaries to - defaults to "`$Env:ProgramFiles\Eclipse Foundation\$packageVersion`"_x000A_* `/Multi-User` - Configure Eclipse as a multi-user install_x000A_These parameters can be passed to the installer with the use of `--params`._x000A_For example: `--params "'/InstallationPath=C:\path\to\installation /Multi-User'"`._x000A_]]></description>_x000A_ <summary>Eclipse IDE for Java EE Developers. Windows 32 and 64 bit. Default install location: `C:\Program Files\Eclipse Foundation`. This IDE can be made suitable for developers of other languages than Java as well by installing additional software.</summary>_x000A_ <releaseNotes>[Announcements](https://www.eclipse.org/community/news/eclipsenews.php)</releaseNotes>_x000A_ <copyright>Copyright © Eclipse Foundation</copyright>_x000A_ <tags>eclipse foss cross-platform ide jdk8 jee java scala birt python ruby groovy clojure haskell go</tags>_x000A_ <projectSourceUrl>https://git.eclipse.org/c/</projectSourceUrl>_x000A_ <packageSourceUrl>https://github.com/Thilas/chocolatey-packages/tree/master/eclipse</packageSourceUrl>_x000A_ <docsUrl>https://wiki.eclipse.org/</docsUrl>_x000A_ <mailingListUrl>https://dev.eclipse.org/mailman/listinfo</mailingListUrl>_x000A_ <bugTrackerUrl>https://bugs.eclipse.org/bugs/</bugTrackerUrl>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" exclude="**\*.Tests.ps1" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-eclipse\unibas-eclipse.json</S>
<Obj N="Streams" RefId="49">
<TN RefId="5">
<T>System.Collections.Specialized.OrderedDictionary</T>
<T>System.Object</T>
</TN>
<DCT>
<En>
<S N="Key">4.9</S>
<Obj N="Value" RefId="50">
<TN RefId="6">
<T>System.Collections.Hashtable</T>
<T>System.Object</T>
</TN>
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.9.0.20181212</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.10</S>
<Obj N="Value" RefId="51">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.10</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.11</S>
<Obj N="Value" RefId="52">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.11</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.12</S>
<Obj N="Value" RefId="53">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.12</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.13</S>
<Obj N="Value" RefId="54">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.13</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.14</S>
<Obj N="Value" RefId="55">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.14</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.15</S>
<Obj N="Value" RefId="56">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.15</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.16</S>
<Obj N="Value" RefId="57">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.16</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.17</S>
<Obj N="Value" RefId="58">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.17</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.18</S>
<Obj N="Value" RefId="59">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.18</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.19</S>
<Obj N="Value" RefId="60">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.19</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.20</S>
<Obj N="Value" RefId="61">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.20</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.21</S>
<Obj N="Value" RefId="62">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.21</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.22</S>
<Obj N="Value" RefId="63">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.22</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.23</S>
<Obj N="Value" RefId="64">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.23</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.24</S>
<Obj N="Value" RefId="65">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.24</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.25</S>
<Obj N="Value" RefId="66">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.25</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.26</S>
<Obj N="Value" RefId="67">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.26</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.27</S>
<Obj N="Value" RefId="68">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.27</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.28</S>
<Obj N="Value" RefId="69">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.28</S>
</En>
</DCT>
</Obj>
</En>
<En>
<S N="Key">4.29</S>
<Obj N="Value" RefId="70">
<TNRef RefId="6" />
<DCT>
<En>
<S N="Key">NuspecVersion</S>
<S N="Value">4.29</S>
</En>
</DCT>
</Obj>
</En>
</DCT>
</Obj>
</Props>
</Obj>
<Obj RefId="71">
<TNRef RefId="3" />
<ToString>AUPackage</ToString>
<Props>
<S N="Path">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-filezilla</S>
<S N="Name">unibas-filezilla</S>
<B N="Updated">false</B>
<B N="Pushed">false</B>
<S N="RemoteVersion">3.68.1</S>
<S N="NuspecVersion">3.68.1</S>
<Obj N="Result" RefId="72">
<TNRef RefId="4" />
<LST>
<S>unibas-filezilla - checking updates using chocolatey-au version 1.0.0</S>
<S></S>
<S>nuspec version: 3.68.1</S>
<S>remote version: 3.68.1</S>
<S>No new version found</S>
</LST>
</Obj>
<S N="Error"></S>
<S N="NuspecPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-filezilla\unibas-filezilla.nuspec</S>
<XD N="NuspecXml"><?xml version="1.0" encoding="utf-8"?>_x000A_<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">_x000A_ <metadata>_x000A_ <id>unibas-filezilla</id>_x000A_ <version>3.68.1</version>_x000A_ <owners>IT-Services | University of Basel</owners>_x000A_ <title>unibas-filezilla</title>_x000A_ <authors>IT-Services | University of Basel</authors>_x000A_ <projectUrl> https://filezilla-project.org</projectUrl>_x000A_ <summary>This software is a ftp client </summary> _x000A_ <description>Chocolatey package unibas-filezilla</description>_x000A_ <releaseNotes>https://filezilla-project.org</releaseNotes>_x000A_ <iconUrl>https://logodownload.org/wp-content/uploads/2017/10/filezilla-logo-2.png</iconUrl>_x000A_ <tags>filezilla ftp client website developer tool</tags>_x000A_ <docsUrl>https://filezilla-project.org</docsUrl>_x000A_ <projectSourceUrl>https://filezilla-project.org</projectSourceUrl>_x000A_ <requireLicenseAcceptance>false</requireLicenseAcceptance>_x000A_ </metadata>_x000A_ <files>_x000A_ <file src="tools\**" target="tools" />_x000A_ </files>_x000A_</package>_x000A_</XD>
<B N="Ignored">false</B>
<S N="IgnoreMessage"></S>
<S N="StreamsPath">D:\a\chocolatey-internal-packages\chocolatey-internal-packages\automatic\unibas-filezilla\unibas-filezilla.json</S>
<Nil N="Streams" />
</Props>