forked from bruderstein/npp-plugins-x64
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins64.xml
1223 lines (1223 loc) · 76.7 KB
/
plugins64.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
<?xml version="1.0" encoding="UTF-8"?>
<plugins>
<plugin name="3P - Progress Programmers Pal">
<x64Version>1.8.1</x64Version>
<aliases>
<alias name="3P"/>
</aliases>
<description>[Requires .net framework 4.6.2]\n\n3P is a notepad++ plug-in designed to help writing OpenEdge ABL (formerly known as Progress 4GL) code. It provides :\n\n- a powerful auto-completion\n- tool-tips on every words\n- a code explorer to quickly navigate through your code\n- a file explorer to easily access all your sources\n- the ability to run/compile and even PROLINT your source file with an in-line visualization of errors\n- more than 50 options to better suit your needs\n- and so much more!\n\nVisit http://jcaillon.github.io/3P/ for more details on the plugin</description>
<author>Julien Caillon</author>
<homepage>http://jcaillon.github.io/3P/</homepage>
<sourceUrl>https://github.com/jcaillon/3P</sourceUrl>
<latestUpdate>More infos here :\nhttps://github.com/jcaillon/3P/releases/tag/v1.8.1</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/jcaillon/3P/releases/download/v1.8.1/3P_x64.zip</download>
<copy from="3P.dll" to="$PLUGINDIR$\" validate="true" />
<run file="NetFrameworkChecker.exe" arguments="-ShowOnlyIfNotInstalled" outsideNpp="0" />
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\3P.dll"/>
</x64>
</remove>
</plugin>
<plugin name="AnalysePlugin">
<x64Version>1.11.37</x64Version>
<description>AnalysePlugin will help you to search for more than one search pattern at a time. Great for analysing log files.</description>
<author>Mattes H.</author>
<homepage>http://analyseplugin.sourceforge.net/</homepage>
<sourceUrl>https://sourceforge.net/p/analyseplugin/code/</sourceUrl>
<versions>
<version number="1.11.34" md5="56a19878b902d25d0c1b12b33d3ba44a"/>
<version number="1.11.37" md5="b8dfbf18248c53b9d7e368e013590b55"/>
</versions>
<latestUpdate>Changes since 1.11\n - bugfix positioning ColorPopup on left side multi screen (negative coordinates)\n - bugfix scrambling with "Toggle this" context menu option\n - bugfix small correction in xsd to reflect current status\n - bugfix assertion when Options dialog is opened before findDlg docking window\n - added version information in Windows properties dialog\n - synced with source from Notepad++ v7.4.1\n - added package for both systems 32/64 in one \nChanges since 1.11-preview\n - added 64bit support and package for both systems 32/64 in one \nFurther change log see changes.txt</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sourceforge.net/projects/analyseplugin/files/binaries/v01.11-R37.zip</download>
<copy from="AnalysePlugin\x64\AnalysePlugin.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="AnalysePlugin\*.txt" to="$PLUGINDIR$\doc\AnalysePlugin"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\doc\AnalysePlugin" isDirectory="true"/>
</x64>
</remove>
</plugin>
<plugin name="AutoCodepage">
<x64Version>1.2.2</x64Version>
<description>AutoCodepage: A plugin to automatically set a document's code page to your needs on loading or renaming a document, changing its language or activating its tab. Usefull especially when coding batch scripts.</description>
<author>Andreas Heim</author>
<homepage>https://sourceforge.net/projects/autocodepage/</homepage>
<sourceUrl>https://sourceforge.net/projects/autocodepage/files/v1.2.2/src/</sourceUrl>
<latestUpdate>Fixed: Entry of JavaScript in language combobox uses deprecated language id. This fix is mandatory after upgrading to Notepad++ v7.5.7 or higher.</latestUpdate>
<minVersion>7.5.7</minVersion>
<install>
<x64>
<download>https://sourceforge.net/projects/autocodepage/files/v1.2.2/plugin/x64/AutoCodepage_v1.2.2_x64.zip</download>
<copy from="Win64\AutoCodepage.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="AutoCodepage.txt" to="$PLUGINDIR$\doc" validate="false"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\doc\AutoCodepage.txt"/>
</x64>
</remove>
</plugin>
<plugin name="AutoSave">
<x64Version>1.6.0</x64Version>
<aliases>
<alias name="Auto Save"/>
</aliases>
<description>AutoSave allows to automatically save the currently open files based on a timer schedule (default is 1 min) and/or upon the application losing focus. The plugin offers a couple of options to save the current (or all the files), selecting only the named ones, accessible through a menu.</description>
<author>Franco Stellari</author>
<homepage>http://sites.google.com/site/fstellari/nppplugins</homepage>
<latestUpdate>2017-02-08 Added the capability of creating a time stamped copy of current file content.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sites.google.com/site/fstellari/nppplugins/AutoSave_dll_1v60.zip</download>
<copy from="64bit\AutoSave.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="BetterMultiSelection">
<x64Version>1.2</x64Version>
<description>Provide better cursor movements when using multiple selections.</description>
<author>Justin Dailey</author>
<sourceUrl>https://github.com/dail8859/BetterMultiSelection</sourceUrl>
<latestUpdate>2018-05-15 \n- Implement SCI_DELWORDLEFT and SCI_DELWORDRIGHT\n- Pressing Esc cancels multiple selections\n- Simplify detection of word characters</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/dail8859/BetterMultiSelection/releases/download/v1.2/BetterMultiSelection_v1.2_x64.zip</download>
<copy from="BetterMultiSelection_64.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\BetterMultiSelection_64.dll"/>
</x64>
</remove>
</plugin>
<plugin name="BinHex">
<x64Version>2.0.0.0</x64Version>
<description>Binhex plugin is a plugin for Notepad++ that can be use for bin/hex string manipulations such as bin hex conversion, bit shifting, grouping etc., can support very long string manipulation\n\n- FORMAT : MSB --> LSB\n- accepts prefix 0x/0b\n- select/highlight the target text then call the function through plugin menu/shortcut key assigned\n- target text will get manipulated in place</description>
<author>skycc86</author>
<homepage>https://github.com/skycc86/npp_binhex_plugin</homepage>
<sourceUrl>https://github.com/skycc86/npp_binhex_plugin</sourceUrl>
<latestUpdate>{2018-06-02] Version 2.0.0\n\n compile for win32 and x64\n added default shortcut key\n added incremental search and move to other view toolbar icon\n maintain 0x / 0b prefix</latestUpdate>
<install>
<x64>
<download>https://github.com/skycc86/npp_binhex_plugin/releases/download/v2.0.0.0/binhex_v2.0.0.0_x64.zip</download>
<copy from="binhex_v2.0.0.0_x64\binhex.dll" toFile="$PLUGINDIR$\" validate="true"/>
<copy from="binhex_v2.0.0.0_x64\license.txt" toFile="$PLUGINDIR$\doc\BinHex"/>
<copy from="binhex_v2.0.0.0_x64\readme.FIRST" toFile="$PLUGINDIR$\doc\BinHex"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\doc\BinHex"/>
</x64>
</remove>
</plugin>
<plugin name="Code alignment">
<x64Version>14.0</x64Version>
<description>Code alignment helps you present your code beautifully, enhancing clarity and readability.\n\nAlign your code by any character. Fast logical shortcuts to perform common alignments such as equals and period.\n\nRequires .NET Framework 4.0</description>
<author>Chris McGrath</author>
<homepage>http://codealignment.com</homepage>
<sourceUrl>https://github.com/cpmcgrath/codealignment</sourceUrl>
<latestUpdate>Version 14: 2018-01-13 #64 Add Support for Notepad++ x64\n#65 Setup AppVeyor Continuous Integration Server\nVersion 13: 6 Nov 2016 Upgrade all Projects from .NET 3.5 to .NET 4 enhancement Notepad++ Visual Studio\nVersion 12: Align by string screen lets align from caret position if SHIFT is down when clicking OK\nVersion 11: Add ability to specify where to add spaces (ability to right align). \nVersion 10: Alignment Chaining - When using the Code alignment shortcut, simply keep pressing control and you can immediately perform another alignment starting from where the last alignment occurred.\nVersion 9: Fixed Grabber offset\nVersion 8: Ability to Export/Import settings\nVersion 7: Fixed bug: Add space before only works if first instance at max column needs space.</latestUpdate>
<install>
<x64>
<download>https://github.com/cpmcgrath/codealignment/releases/download/v14/CodeAlignmentNpp_v14_x64.zip</download>
<copy from="CodeAlignmentNpp.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="CodeAlignment\CodeAlignment.Common.dll" to="$PLUGINDIR$\CodeAlignment" validate="true"/>
<copy from="CodeAlignment\CodeAlignment.Common.WinForms.dll" to="$PLUGINDIR$\CodeAlignment" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\CodeAlignment\CodeAlignment.Common.dll"/>
<delete file="$PLUGINDIR$\CodeAlignmentNpp.dll"/>
<delete file="$PLUGINDIR$\CodeAlignment\CodeAlignment.Common.WinForms.dll"/>
</x64>
</remove>
</plugin>
<plugin name="Code::Stats">
<x64Version>1.0.1</x64Version>
<aliases>
<alias name="CodeStats"/>
</aliases>
<description>Code::Stats - Write code, level up, show off! A free stats tracking service for programmers. This plugin enables XP tracking in Notepad++.</description>
<author>p0358</author>
<homepage>https://github.com/p0358/notepadpp-CodeStats</homepage>
<sourceUrl>https://github.com/p0358/notepadpp-CodeStats</sourceUrl>
<latestUpdate>2017-12-30\n- Added the ability to change API URL in GUI\n- Added user-agent for API pulses\n- Some bug fixes</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/p0358/notepadpp-CodeStats/releases/download/v1.0.1/notepadpp-CodeStats_x64.zip</download>
<copy from="CodeStats.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Compare">
<x64Version>2.0.0</x64Version>
<description>A very useful compare plugin to show the differences between 2 files (side by side).</description>
<author>Ty Landercasper, Jean-Sebastien Leroy, Pavel Nedev</author>
<homepage>https://github.com/jsleroy/compare-plugin</homepage>
<sourceUrl>https://github.com/jsleroy/compare-plugin</sourceUrl>
<latestUpdate>2016-12-19 Total plugin re-work. Fixed stability issues. Several new features and many improvements.</latestUpdate>
<install>
<x64>
<download>https://github.com/pnedev/compare-plugin/releases/download/v2.0.0/ComparePlugin_v2.0.0_X64.zip</download>
<copy from="ComparePlugin.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="ComparePlugin\*.*" to="$PLUGINDIR$\ComparePlugin\" validate="true" recursive="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\ComparePlugin\" isDirectory="true"/>
</x64>
</remove>
</plugin>
<plugin name="Converter">
<x64Version>4.2.1</x64Version>
<description>Converts selected text (hexadecimal string or ASCII string) to ASCII or hexadecimal string according your choice.</description>
<author>Don Ho</author>
<sourceUrl>https://github.com/npp-plugins/converter</sourceUrl>
<latestUpdate>Make it compatible with old os (XP)</latestUpdate>
<install>
<x64>
<download>https://github.com/npp-plugins/converter/releases/download/v4.2.1/nppConvert.v4.2.1.zip</download>
<copy from="bin64\NppConverter.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="bin64\*.txt" to="$PLUGINDIR$\doc\NppConverter"/>
</x64>
</install>
</plugin>
<plugin name="CS-Script (C# intellisense)">
<x64Version>1.7.15.1</x64Version>
<aliases>
<alias name="CS-Script"/>
</aliases>
<description>Notepad++ plugin for CS-Script integration. \nIt implements a real C# intellisense (similar to MS IntelliSense®) solution based on CS-Script and ICSharpCode.NRefactory/Mono.Cecil. \nIt also allows loading, executing, modifying and debugging C# scripts in a way very similar to the Visual Studio C# projects support.\nThis includes referencing assemblies and other scripts, code formatting, adding missing namespaces and intercepting Debug and Console output. It also includes integrated managed debugger\nRequires .NET 4.0</description>
<author>Oleg Shilo</author>
<homepage>https://github.com/oleg-shilo/cs-script.npp/blob/master/README.md</homepage>
<sourceUrl>https://github.com/oleg-shilo/cs-script.npp</sourceUrl>
<latestUpdate>2018-07-25 Release v1.7.15.1\n\n* Changed updater.exe to restore plugin directory on update failure v1.7.15.0\n* Disabled FormatOnSave (by default)\n* Debugger: fixed problem with re-evaluating watch values on dbg step advance\n* Fixed native CallTip background color being disrupted by new N++ version 7.5.7</latestUpdate>
<stability>Good</stability>
<minVersion>6.4.5</minVersion>
<install>
<x64>
<download>https://github.com/oleg-shilo/cs-script.npp/releases/download/v1.7.15.1/CSScriptNpp.1.7.15.1.x64.zip</download>
<copy from="plugins\CSScriptNpp\*.*" to="$PLUGINDIR$\CSScriptNpp" validate="true" recursive="true"/>
<copy from="plugins\CSScriptNpp.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\CSScriptNpp\CSScriptNpp.dll" />
<delete file="$PLUGINDIR$\CSScriptNpp" isDirectory="true" />
</x64>
</remove>
</plugin>
<plugin name="CsvQuery">
<x64Version>1.2.5</x64Version>
<description>Enables SQL queries against CSV files</description>
<author>jokedst</author>
<sourceUrl>https://github.com/jokedst/CsvQuery</sourceUrl>
<latestUpdate>Type system rewritten which should make header detection much better</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/jokedst/CsvQuery/releases/download/v1.2.5/CsvQuery-v1.2.5-x64.zip</download>
<copy from="CsvQuery.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Customize Toolbar">
<x64Version>4.1</x64Version>
<description>This plugin allows the Notepad++ toolbar to be fully customised by the user, and includes twenty-nine additional buttons for frequently used menu commands.</description>
<author>[email protected]</author>
<homepage>https://sourceforge.net/projects/npp-customize</homepage>
<latestUpdate>Version 4.1. First 64-bit version of Customize Toolbar. Functionality is the same as the 32-bit version.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sourceforge.net/projects/npp-customize/files/Customize%20Toolbar%20v4.1/CustomizeToolbar_4_1_x64.zip/download</download>
<copy from="CustomizeToolbar.dll" to="$PLUGINDIR$" validate="true" />
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\CustomizeToolbar.dll"/>
</x64>
</remove>
</plugin>
<plugin name="DoxyIt">
<x64Version>0.4.3</x64Version>
<description>Inspired by DocIt. Generates Doxygen style comment blocks based on function/method definitions. Also provides functionality for modifying comment blocks. Configurable for each language. Current supported languages:\n* C/C++\n* Python\n* Java\n* PHP\n* JavaScript\n* C#\n* UDLs</description>
<author>Justin Dailey</author>
<sourceUrl>https://github.com/dail8859/doxyit</sourceUrl>
<latestUpdate>22 May 2017 Fix $FUNCTION keyword</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/dail8859/DoxyIt/releases/download/v0.4.3/DoxyIt_64.zip</download>
<copy from="DoxyIt_64.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\DoxyIt_64.dll"/>
</x64>
</remove>
</plugin>
<plugin name="DSpellCheck">
<x64Version>1.4.6</x64Version>
<description>Spell-checking plugin, with following main features:\n-Underlining spelling mistakes\n-Iterating through all mistakes in document\n-Finding mistakes only in comments and strings (For files with standard programming language syntax e.g. C++)\n-Possible usage of multiple languages (dictionaries) simultaneously to do spell-checking.\n-Getting suggestions for words by either using default Notepad++ menu or separate context menu called by special button appearing under word.\n-Able to add words to user dictionary or ignore them for current session of Notepad++\n-Using either Hunspell library (included in plugin), either Aspell library (needs to be installed), .\n-A lot of customizing available from Plugin settings (Ignoring/Allowing only specific files, Choosing delimiters for words, Maximum number of suggestions etc)\n-Support for downloading and removing Hunspell dictionaries through user friendly GUI interface\n-Ability to quickly change current language through the nice menu.</description>
<author>Sergey Semushin</author>
<homepage>https://github.com/Predelnik/DSpellCheck/releases</homepage>
<sourceUrl>https://github.com/Predelnik/DSpellCheck</sourceUrl>
<latestUpdate>2018-08-01\n* Support downloading of dictionaries from GitHub repositories. (#143, #61)\n* Add LibreOffice repository as a default server for dictionaries.\n* Make user dictionary files updated immediatel on adding new word to them (#142)\n* Make more explicit message about aspell DLL targeting incorrect architecture.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/Predelnik/DSpellCheck/releases/download/v1.4.6/DSpellCheck_x64.zip</download>
<copy from="DSpellCheck.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Elastic Tabstops">
<x64Version>1.3</x64Version>
<description>Implementation of Elastic Tabstops. Stretch tabs to align with adjacent lines. Can also be used for TSV files.\n\nFor more information about elastic tabstops see: \nhttp://nickgravgaard.com/elastic-tabstops/</description>
<author>Justin Dailey</author>
<sourceUrl>https://github.com/dail8859/ElasticTabstops</sourceUrl>
<latestUpdate>- Limit updates to only the current view region. This can lead to a significant performance increase for large files such as TSV, or when doing Search/Replace. Note: that this may case columns to change sizes while scrolling.\n- Fix issue with specifying extensions\n- Fix tab widths for proportional fonts\n- Allow elastic tabstops to be calculated for files using spaces as indentation</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/dail8859/ElasticTabstops/releases/download/v1.3/ElasticTabstops_64.zip</download>
<copy from="ElasticTabstops_64.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\ElasticTabstops_64.dll"/>
</x64>
</remove>
</plugin>
<plugin name="HTML Tag">
<x64Version>1.1.0.0</x64Version>
<description>This plug-in provides three core functions to Notepad++:\n- HTML and XML tag jumping, like the built-in brace matching (Ctrl+B / Shift+Ctrl+B), and selection\n of tags and/or contents.\n- HTML entity encoding/decoding (example: é to &eacute;)\n- JS character encoding/decoding (example: é to \u00E9)</description>
<author>Martijn Coppoolse</author>
<homepage>https://fossil.2of4.net/npp_htmltag/</homepage>
<sourceUrl>https://sourceforge.net/projects/npp-plugins/files/HTMLTag/HTMLTag%20plugin%20v1.0.0/HTMLTag_plugin_v1.0.0_src.zip/download</sourceUrl>
<latestUpdate>[Version 1.1.0 - 2017-09-04 20:15]\n * Added: option to encode line break entities as well\n * Fixed: decoding a JS escape reduced the selection by one each time</latestUpdate>
<install>
<x64>
<download>https://fossil.2of4.net/npp_htmltag/doc/v1.1.0/publish/HTMLTag_plugin_latest_64.zip</download>
<copy from="HTMLTag.dll" to="$PLUGINDIR$\" validate="true" backup="true"/>
<copy from="HTMLTag-entities.ini" to="$PLUGINDIR$\" backup="true"/>
<copy from="Config/HTMLTag.ini" to="$CONFIGDIR$\" backup="true"/>
<copy from="Doc/HTMLTag-readme.txt" toFile="$CONFIGDIR$\Doc\HTMLTag-readme.txt"/>
</x64>
</install>
</plugin>
<plugin name="ImgTag">
<x64Version>2.0.1</x64Version>
<description>ImgTag allows to insert img tags, in your html document, using the Open File Dialog Box to select image files.</description>
<author>salvom</author>
<homepage>http://sourceforge.net/projects/imgtag/</homepage>
<sourceUrl>https://sourceforge.net/projects/imgtag/files/</sourceUrl>
<latestUpdate>2018-01-22 Unofficial port for x64 version\n2013-07-07\nversion 2.0.1 \n--Fixed a bug: now the images are shown entirely with the "Show Image" command. \n\nversion 2.0 \n---ImgTag was rewritten in C#. This version requires the .net framework 2.0 or above. Now it's possible: to resize the image, to update the image size to the actual size, to show the image, to rename the image.</latestUpdate>
<install>
<x64>
<download>https://github.com/chcg/ImgTag/releases/download/2.0.1.8/ImgTag_2.0.1.8_x64.zip</download>
<copy from="ImgTag.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="*.txt" to="$PLUGINDIR$\doc\ImgTag"/>
</x64>
</install>
</plugin>
<plugin name="JavaScript Map Parser">
<x64Version>4.2</x64Version>
<description>This is an extension for for better JavaScript support. It provides a panel with hierarchy structure of functions in your js file.</description>
<author>Oleksandr Boiko</author>
<homepage>https://github.com/megaboich/js-map-parser/</homepage>
<sourceUrl>https://github.com/megaboich/js-map-parser/</sourceUrl>
<latestUpdate>2017-12-19 Version 4.2\n- updated dllexport data for x64 builds\n- updated used nuget packages\n- updated ilmerge tool\n- updated to dotnet framework 4\n- appveyor.yml CI for VS2015 and VS2017\n\nVersion information:\nhttps://github.com/megaboich/js-map-parser/wiki/Version-History</latestUpdate>
<stability>Good</stability>
<minVersion>6.5</minVersion>
<install>
<x64>
<download>https://github.com/megaboich/js-map-parser/releases/download/4.2/JsMapParser_NppPlugin_4_2_x64.zip</download>
<copy from="JsMapParser.NppPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="jN Notepad++ Plugin">
<x64Version>2.2.185.4</x64Version>
<description>jN (JavaScript for Notepad++) allows you to extend Notepad++ by using JavaScript.\n- You can create new menu elements which execute JavaScript\n- You can use a lot of ActiveX components available on your PC\n- You can add shortcuts executing JavaScript\n- You can create Html based dialogs and docking windows\n- You can write JavaScript wrappers around Win32 API\n - Since version 2.0.116 you can debug your automating scripts\n - Selection highlighting and navigation bar\n - Integrated Zen Coding v0.7\n - You can catch context menu request and create your own</description>
<author>Eugen Kremer</author>
<homepage>https://github.com/sieukrem/jn-npp-plugin/wiki</homepage>
<sourceUrl>https://github.com/sieukrem/jn-npp-plugin</sourceUrl>
<latestUpdate>[2018-06-24] \nUpdate dll file properties.\nFix #68 About dialog displays no longer available domain\nFix #32 x64</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/sieukrem/jn-npp-plugin/releases/download/2.2.185.4/jN_2.2.185.4_x64.zip</download>
<copy from="[Notepad++ Directory]\plugins\jN.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="[Notepad++ Directory]\plugins\jN\*.*" to="$PLUGINDIR$\jN" recursive="true"/>
<copy from="readme.txt" to="$PLUGINDIR$\doc\jN"/>
</x64>
</install>
</plugin>
<plugin name="JSON Viewer">
<x64Version>1.24</x64Version>
<aliases>
<alias name="JSONViewer"/>
</aliases>
<description>A JSON viewer plugin for notepad++. Displays the selected JSON string in a tree view.</description>
<author>Kapil Ratnani</author>
<homepage>https://github.com/kapilratnani/JSON-Viewer</homepage>
<sourceUrl>https://github.com/kapilratnani/JSON-Viewer</sourceUrl>
<latestUpdate>2017-01-09, 1. 64 bit support. Thanks @chcg</latestUpdate>
<install>
<x64>
<download>https://github.com/kapilratnani/JSON-Viewer/releases/download/1.24/NPPJSONViewer-x64.dll.zip</download>
<copy from="NPPJSONViewer-x64.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NPPJSONViewer-x64.dll"/>
</x64>
</remove>
</plugin>
<plugin name="JSTool">
<x64Version>1.22.0</x64Version>
<aliases>
<alias name="JSMin"/>
</aliases>
<description>A javascript plugin for Notepad++.\n * Douglas Crockford's JSMin algorithm to minimize javascript code.\n * My own algorithm to format javascript code.\n * A JSON data viewer. This JSON data viewer can handle >10MB JSON file easily.\n * Support 64bit Notepad++ (from version 1.20.0).\nReally helpful to javascript coder on Notepad++ and really easy to use it.\nMade in China.</description>
<author>Sun Junwen</author>
<homepage>http://www.sunjw.us/jstoolnpp</homepage>
<sourceUrl>https://github.com/sunjw/jstoolnpp</sourceUrl>
<latestUpdate>[2018-04-15]\nAdd JSON Sort function.\nFix blocking Notepad++ startup in some environment.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sourceforge.net/projects/jsminnpp/files/Uni/JSToolNPP.1.22.0.uni.64.zip/download</download>
<copy from="JSMinNPP.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="LanguageHelp">
<x64Version>1.7.2</x64Version>
<aliases>
<alias name="Language Help"/>
</aliases>
<description>LanguageHelp allows to run a language specific help file (CHM, HLP, PDF) and search for the keyword under the cursor. The latest versions allow also to show the help file as menu entries for quick launch.</description>
<author>Franco Stellari</author>
<homepage>http://sites.google.com/site/fstellari/nppplugins</homepage>
<latestUpdate>2017-02-14 Improve detection of context menu.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sites.google.com/site/fstellari/nppplugins/LanguageHelp_dll_1v72.zip</download>
<copy from="64bit\LanguageHelp.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="LuaScript">
<x64Version>0.7.1</x64Version>
<description>Plugin for Lua scripting capabilities. Provides control over all of Scintilla's features and options with a light-weight, fully-functional programming language.</description>
<author>Justin Dailey</author>
<sourceUrl>https://github.com/dail8859/LuaScript</sourceUrl>
<latestUpdate>2018-01-04\n - Fixes editor.MarginLeft and editor.MarginRight\n - Add support for setting timers for scheduling custom events\n - Improve stability</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/dail8859/LuaScript/releases/download/v0.7.1/LuaScript_v0.7.1_x64.zip</download>
<copy from="LuaScript_64.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\LuaScript_64.dll"/>
</x64>
</remove>
</plugin>
<plugin name="MarkdownViewer++">
<x64Version>0.8.2</x64Version>
<aliases>
<alias name="MarkdownViewerPlusPlus"/>
<alias name="MarkdownViewer++"/>
</aliases>
<description>View a Markdown/CommonMark compliant text file rendered on-the-fly directly in Notepad++ in a docked panel.\nExport the rendered result as HTML or PDF and configure the file extensions to be rendered.</description>
<author>nea</author>
<homepage>https://nea.github.io/MarkdownViewerPlusPlus/</homepage>
<sourceUrl>https://github.com/nea/MarkdownViewerPlusPlus</sourceUrl>
<latestUpdate>* Merged a lot of bugfixes and improvements, thanks to monoblaine\n* Updated Markdig to v0.15.0, PDFSharp to v1.50.4845-RC2a and HTMLRenderer accordingly\n* Added a shortcut to Options and About to MarkdownViewerPanel</latestUpdate>
<stability>Good</stability>
<minVersion>7.5</minVersion>
<install>
<x64>
<download>https://github.com/nea/MarkdownViewerPlusPlus/releases/download/0.8.2/MarkdownViewerPlusPlus-0.8.2-x64.zip</download>
<copy from="MarkdownViewerPlusPlus.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="*.md" to="$PLUGINDIR$\MarkdownViewerPlusPlus"/>
<copy from="license\*.txt" to="$PLUGINDIR$\MarkdownViewerPlusPlus"/>
<copy from="license\*.md" to="$PLUGINDIR$\MarkdownViewerPlusPlus"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\MarkdownViewerPlusPlus.dll"/>
<delete file="$PLUGINDIR$\MarkdownViewerPlusPlus"/>
</x64>
</remove>
</plugin>
<plugin name="Menu Icons">
<x64Version>1.2.2</x64Version>
<aliases>
<alias name="MenuIcons"/>
</aliases>
<description>MenuIcons allows to add icons to both main and context menu. Several options are available to load the icons from a folder. More than provide a full set of icons, it's design to enable people to create their own set of icon themes.\nNote: the plugin does not work correctly on WinXP.\n\nAlternative icon sets: English by Yaron, Hebrew by Yaron.\nJust download them and replace the MenuIcon folder or save them somewhere else and set the new folder in the Menu Icons plugin options.</description>
<author>Franco Stellari</author>
<sourceUrl>https://sites.google.com/site/fstellari/nppplugins</sourceUrl>
<stability>Good</stability>
<install>
<x64>
<download>https://sites.google.com/site/fstellari/nppplugins/MenuIcons_dll_1v22.zip</download>
<copy from="64bit\MenuIcons.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="MenuIcons\*.*" to="$PLUGINDIR$\MenuIcons" recursive="true"/>
</x64>
</install>
</plugin>
<plugin name="MIME Tools">
<x64Version>2.1</x64Version>
<description>Converts to and from Base64 as well as Quoted Printable formats. This is suitable to process texts from emails or to be emailed.</description>
<author>Don HO</author>
<homepage>http://npp-plugins.tuxfamily.org/plugins</homepage>
<sourceUrl>https://github.com/npp-plugins/mimetools</sourceUrl>
<latestUpdate>6 Sep 2016 Remove the dependance of other dll</latestUpdate>
<install>
<x64>
<download>https://github.com/npp-plugins/mimetools/releases/download/v2.1/mimetools.v2.1.bin.zip</download>
<copy from="bin64\mimeTools.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="bin64\*.txt" to="$PLUGINDIR$\doc\mimeTools"/>
</x64>
</install>
</plugin>
<plugin name="MusicPlayer">
<x64Version>1.0.0.3</x64Version>
<description>It's a plug in to open and play music files.\nSupports:\n*.wav\n*.mp3\n*.aiff\n*.wma</description>
<author>Jon Galletero</author>
<homepage>https://sourceforge.net/projects/nppmusicplayer</homepage>
<sourceUrl>https://github.com/gallettube/MusicPlayer</sourceUrl>
<latestUpdate>03-02-2018\n- Updated version for x86 and x64\n\n01-06-2015 (v1.0.0.3)\n- Menu improved\n- Donate function\n- Replace library to test\n\n31-05-2015 (v1.0.0.2)\n- Open FileS\n\n31-05-2015 (v1.0.0.1)\n- Initial release\n- Open File\n- Song</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/gallettube/MusicPlayer/releases/download/1.0.11/MusicPlayer_1.0.11x64.dll.zip</download>
<copy from="MusicPlayer_1.0.11x64.dll" to="$PLUGINDIR$\"/>
</x64>
</install>
</plugin>
<plugin name="NavigateTo">
<x64Version>1.12.4</x64Version>
<description>Do you have more then 10 open tabs? than this plugin is for you.\n\nNavigate To is a new and efficient way to quickly navigate between tabs(files) in your Notepad++. It allows you to search for a symbol or filename, filepath by matching against a keyword you type in, and get a real time preview while going through the search results by Shift key.\nAnd YES indeed you can uncheck the Multi-line option, in the Preferences > General > Tab Bar zone because you don’t need the multi-lines tab feature anymore :)\n\nAuthor: Oleksii Maryshchenko\nEmail: [email protected]</description>
<author>Oleksii Maryshchenko</author>
<homepage>https://github.com/young-developer/nppNavigateTo</homepage>
<sourceUrl>https://github.com/young-developer/nppNavigateTo</sourceUrl>
<latestUpdate>13-03-2018 Version 1.12.4\n-Issues #8 , #9 were resolved.\n-Ctrl+A functionality was restored.\n\nVersion 1.12.3\n-Crash in x32bit version was fixed.\n--\n**New features and enhancements:**\n- Right-click context menu for files like in NPP was added.\n- File preview functionality was added.\n- Minimum window size was set to 400x200\n- New column 'View' was added.\n- Number of matching results was moved to form title.\n- File status functionality was implemented:\nBlack - SAVED\nRed - UNSAVED\nGrey - READONLY \n\n**Bugs:** \n- Unicode search, open and highlight bugs(filenames and paths with letters like é, à or else ) were fixed.\n- Filter editbox could not be unfocused now. \n\n**Other:**\n- Filter is case insensitive and highlight only first sub-string match. \n\n**Tips & Tricks** \n- Hold <kbd>ALT</kbd> and press <kbd>↑</kbd> or <kbd>↓</kbd> to open search history.\n- Open NavigateTo form and then hold <kbd>SHIFT</kbd> and press <kbd>↑</kbd> or <kbd>↓</kbd> to preview files.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/young-developer/nppNavigateTo/releases/download/1.12.4/NavigateTo_x64.zip</download>
<copy from="bin64\NavigateTo.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NavigateTo.dll"/>
</x64>
</remove>
</plugin>
<plugin name="Notepad#">
<x64Version>1.5.0</x64Version>
<description>General plugin (proper new line handling, comments, indenting etc)\n\n Implemented so far:\n\n- Proper new line inside CommentDoc/DocBlock for C, C++, Javascript, PHP\n- Proper new line for # comment in Ruby\n- Indent after opening curly brace for C-like languages, CSS\n and proper indenting for closing curly brace\n- Delete current line keeping the column\n- Undo closed tab\n- Switching tabs with ALT + LEFT/RIGHT\n- Wrap selection with Open/Close tag\n- Url encode/decode selection\n- Autoclose embeded script tags for ruby and php (<% | <?)\n- Column ruler\n- Indent after opened tag - XML, HTML and PHP\n- Close last open tag\n- Autonumbering inside CommentDoc/DocBlock and # comment\n- Indent after instruction for Ruby - module|class|def|do|if|else|elsif|private\n- Match "end" indentation for Ruby\n- Autocomplete CommentDoc/DocBlock keywords\n- Peek CSS hex colors\n- Scroll past end of file\n- Convert leading TABS to Spaces and reverse\n- Paste indented\n- Double click edit tag</description>
<author>jvdanilo</author>
<homepage>https://github.com/jvdanilo/NotepadSharp</homepage>
<sourceUrl>https://github.com/jvdanilo/NotepadSharp</sourceUrl>
<stability>No longer available</stability>
<install>
<x64>
<download>https://github.com/chcg/NotepadSharp/releases/download/1.5.0/NotepadSharp_1.5.0_x64.zip</download>
<copy from="bin64/NotepadSharp.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NotepadSharp.dll"/>
</x64>
</remove>
</plugin>
<plugin name="Notepad++ bplist plugin">
<x64Version>1.2.0.4</x64Version>
<description>This plugin supports viewing\editing binary plist files. As long as ordinary plist files comes in XML format, this plugin dont supports them. It loads only binary plist files ( bplist ).</description>
<author>azerg</author>
<homepage>http://blog.azerg.com/</homepage>
<sourceUrl>https://github.com/azerg/NppBplistPlugin</sourceUrl>
<latestUpdate>07.27.2017 (v1.2.0.4)\n- binary version fix\n01.27.2017 (v1.2.0.3)\n- Thanks @chcg , added x64 build.\n01.25.2017 (v1.2.0.0)\n- + ability to distinguish between bplist files and ordinary xmls via plugin menu.\n02.05.2015 (v1.0.1.4)\n- Initial release</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/azerg/NppBplistPlugin/releases/download/1.2.0.4/NppBplistPlugin_x64.zip</download>
<copy from="NppBplistPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NotepadStarterPlugin">
<x64Version>2.3.2.0</x64Version>
<description>This tool designed as a Notepad++ plugin by [Yonggang Luo](luoyonggang(at)gmail.com), when\nit installed as a Notepad++ plugin or running NotepadStarter.exe in the Notepad++ app\ndirectory, it's will automatically replace the system default notepad.exe application with\nNotepad++ (Without need for removing anything from the windows system.). It's tested\nunder Windows 7, but Windows XP should also works.</description>
<author>Yonggang Luo</author>
<homepage>https://github.com/lygstate/NotepadStarter/</homepage>
<sourceUrl>https://github.com/lygstate/NotepadStarter/archive/2.3.2.0.zip</sourceUrl>
<latestUpdate>2018-02-09\nRelease 2.3.2</latestUpdate>
<stability>Good</stability>
<minVersion>5.0</minVersion>
<install>
<x64>
<download>https://github.com/lygstate/NotepadStarter/releases/download/2.3.2.0/NotepadStarter_2.3.2.0_x64.zip</download>
<copy from="NotepadStarterPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="NotepadStarter\NotepadStarter.exe" to="$PLUGINDIR$\NotepadStarter\" validate="true"/>
<copy from="NotepadStarter\NotepadStarterInstall.bat" to="$PLUGINDIR$\NotepadStarter\"/>
<copy from="NotepadStarter\NotepadStarterReplacer.bat" to="$PLUGINDIR$\NotepadStarter\"/>
<copy from="NotepadStarter\NotepadStarterUninstall.bat" to="$PLUGINDIR$\NotepadStarter\"/>
<copy from="NotepadStarter\readme.md" to="$PLUGINDIR$\NotepadStarter\"/>
<copy from="NotepadStarter\request-admin.bat" to="$PLUGINDIR$\NotepadStarter\"/>
<run file="NotepadStarter\NotepadStarter.exe" arguments=":install-registry" outsideNpp="0"/>
</x64>
</install>
<remove>
<x64>
<run file="$PLUGINDIR$\NotepadStarter\NotepadStarter.exe" arguments=":uninstall" outsideNpp="1"/>
</x64>
</remove>
</plugin>
<plugin name="Npp Xml Treeview">
<x64Version>2.0.0</x64Version>
<aliases>
<alias name="Npp Xml Treview"/>
</aliases>
<description>A treeview visualization for xml files.</description>
<author>João Rosa</author>
<sourceUrl>https://github.com/joaoasrosa/nppxmltreeview</sourceUrl>
<latestUpdate>This release address the problems with version mismatches, reported by several users (#26, #27, #29, #30).\nWe also improve the plugin, removing some API contracts, adding behavioral tests and logging. Also, a consistent way of building the plugin was created, using Cake.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/joaoasrosa/nppxmltreeview/releases/download/v2.0.0/NppXMLTreeViewPlugin_x64.zip</download>
<copy from="NppXmlTreeviewPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="NppXmlTreeviewPlugin\NppXmlTreeviewPlugin.Parsers.dll" to="$PLUGINDIR$\NppXmlTreeviewPlugin" validate="true"/>
<copy from="NppXmlTreeviewPlugin\Serilog.dll" to="$PLUGINDIR$\NppXmlTreeviewPlugin" validate="true"/>
<copy from="NppXmlTreeviewPlugin\Serilog.Sinks.File.dll" to="$PLUGINDIR$\NppXmlTreeviewPlugin" validate="true"/>
<copy from="NppXmlTreeviewPlugin\Serilog.Sinks.RollingFile.dll" to="$PLUGINDIR$\NppXmlTreeviewPlugin" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NppXmlTreeviewPlugin.dll"/>
<delete file="$PLUGINDIR$\NppXmlTreeviewPlugin\NppXmlTreeviewPlugin.Parsers.dll"/>
<delete file="$PLUGINDIR$\NppXmlTreeviewPlugin\Serilog.dll"/>
<delete file="$PLUGINDIR$\NppXmlTreeviewPlugin\Serilog.Sinks.File.dll"/>
<delete file="$PLUGINDIR$\NppXmlTreeviewPlugin\Serilog.Sinks.RollingFile.dll"/>
</x64>
</remove>
</plugin>
<plugin name="npp.Connections">
<x64Version>1.0.1</x64Version>
<description>This plugin allows Notepad++ to connect to MS SQL or Sybase servers. ODBC data sources, like a MySql Driver, are also supported</description>
<author>Vladimir Korobenkov</author>
<homepage>https://github.com/vladk1973/npp.connections</homepage>
<sourceUrl>https://github.com/vladk1973/npp.connections</sourceUrl>
<latestUpdate>22.02.2018 (v1.0.1)\n- Minor bug in check button Menu fixed\n- 64-bit ready\n20.02.2018 (v1.0)\n- Initial release</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/vladk1973/npp.connections/releases/download/v1.0.1/npp.connections-1.0.1-x64.zip</download>
<copy from="npp.connections.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\npp.connections.dll"/>
</x64>
</remove>
</plugin>
<plugin name="NppCrypt">
<x64Version>1.0.1.5</x64Version>
<description>encryption/decryption with various block ciphers, hash-algorithms, random-characters, encoding with base-16/32/64</description>
<author>Jean Paul Richter</author>
<homepage>https://github.com/jeanpaulrichter/nppcrypt</homepage>
<sourceUrl>https://github.com/jeanpaulrichter/nppcrypt</sourceUrl>
<latestUpdate>20 Nov 2017 changlog v1.0.1.5:\nnew cipher (ChaCha), hash (BLAKE2), minor interface improvements, bugfixes</latestUpdate>
<install>
<x64>
<download>https://github.com/jeanpaulrichter/nppcrypt/releases/download/1.0.1.5/nppcrypt_1.0.1.5_x64.zip</download>
<copy from="nppcrypt.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NppEventExec">
<x64Version>0.9.0</x64Version>
<dependencies>
<plugin name="NppExec"/>
</dependencies>
<description>NppEventExec allows you to automatically execute NppExec scripts on Notepad++ events. You can use it for example to format and compile source code. Unleash the beast.</description>
<author>Mihail Ivanchev</author>
<homepage>https://github.com/MIvanchev/NppEventExec</homepage>
<sourceUrl>https://github.com/MIvanchev/NppEventExec</sourceUrl>
<latestUpdate>v0.9.0 (Aug 14, 2017)\n\n* Added a 64-bit version (thanks chcg).\n* Added a rule management dialog.\n* Added a rule edit dialog.\n* Rules can now be aborted before they're executed.\n* Restyled the about dialog.\n* Fixed numerous bugs throughout the plugin.\n* Added unit tests for the CSV parser.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/MIvanchev/NppEventExec/releases/download/v0.9.0/NppEventExec-plugin-x64-0.9.0.zip</download>
<copy from="NppEventExec.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="doc\NppEventExec_license.txt" to="$PLUGINDIR$\doc"/>
</x64>
</install>
</plugin>
<plugin name="NppExec">
<x64Version>0.6</x64Version>
<description>With this NppExec plugin you can execute your commands or saved scripts without leaving Notepad++. It makes you triple your productivity!</description>
<author>Vitaliy Dovgan</author>
<sourceUrl>http://downloads.sourceforge.net/project/npp-plugins/</sourceUrl>
<latestUpdate>2018-06-20 v0.6 RC 2\n ----------------------\n* new environment variables: $(CLIPBOARD_TEXT), $(NPP_HWND), $(SCI_HWND)\n* new commands: clip_settext, messagebox, exit, npe_sendmsgbuflen\n* set <var> ~ strlensci <string>\n* internal improvements\n* the NppExec Manual has been updated</latestUpdate>
<install>
<x64>
<download>https://sourceforge.net/projects/npp-plugins/files/NppExec/NppExec%20Plugin%20v0.6%20RC2/NppExec_06RC2_dll_x64.zip/download</download>
<copy from="doc\NppExec\*.*" to="$PLUGINDIR$\doc\NppExec"/>
<copy from="NppExec\*.h" to="$PLUGINDIR$\NppExec"/>
<copy from="NppExec.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NppExport">
<x64Version>0.2.8.0</x64Version>
<description>NppExport is a true WYSIWYG exporter. It allows you not only to save your source code as a html/rtf file, but also to copy your source code in the clipboard in RTF/HTML format, so you can paste it into your word processor (MS Word, Abiword, openoffice.org Writer) to get the same visual effect.</description>
<latestUpdate>2018-01-06 Unofficial port of https://sourceforge.net/projects/npp-plugins/files/NppExport/NppExport%20Plugin%20v0.2.8/NppExport_0_2_8_dll.zip/download for x64</latestUpdate>
<install>
<x64>
<download>https://github.com/chcg/NPP_ExportPlugin/releases/download/0.2.8.16/NppExport_0.2.8.16_x64.zip</download>
<copy from="NppExport.dll" toFile="$PLUGINDIR$\$PLUGINFILENAME$" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NppFTP">
<x64Version>0.27.4</x64Version>
<aliases>
<alias name="nppftp"/>
</aliases>
<description>NppFTP: a plugin that allows FTP, FTPS, FTPES and SFTP communications. Very useful for web development.</description>
<author>ashish_kulz</author>
<homepage>https://ashkulz.github.io/NppFTP/</homepage>
<sourceUrl>https://github.com/ashkulz/NppFTP/</sourceUrl>
<latestUpdate>2018-03-29\n- update to openssl-1.0.2o, with security related fixes\n- fixed #197 Profile Settings not changing\n- fixed part of #55 Non-ANSI characters in file name produce errors to display UTF-8 file\folder names</latestUpdate>
<install>
<x64>
<download>https://github.com/ashkulz/NppFTP/releases/download/v0.27.4/NppFTP-x64.zip</download>
<copy from="bin\NppFTP.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="doc\license_*.txt" to="$PLUGINDIR$\doc\NppFTP"/>
</x64>
</install>
</plugin>
<plugin name="NppGTags">
<x64Version>4.4.0</x64Version>
<description>NppGTags plugin is a front-end to GTags (GNU Global source code tagging system). It allows easy code navigation by indexing the project sources. Supports finding symbol definitions and references, finding project paths, string literals, regular expressions (GREP functionality) and adds symbol auto-completion. Supports unlimited simultaneous searches. GTags built-in code parser supports C, C++, Yacc, Java, PHP4 and Assembly. Other languages are supported through Pygments + CTags parser.</description>
<author>Pavel Nedev</author>
<homepage>https://github.com/pnedev/nppgtags</homepage>
<sourceUrl>https://github.com/pnedev/nppgtags</sourceUrl>
<latestUpdate>2017-06-29 Add results search functionality. Add per-database ignore sub-folders setting.</latestUpdate>
<install>
<x64>
<download>https://github.com/pnedev/nppgtags/releases/download/v4.4.0/NppGTags_v4.4.0_X64.zip</download>
<copy from="NppGTags.dll" toFile="$PLUGINDIR$\" validate="true"/>
<copy from="NppGTags\*.*" to="$PLUGINDIR$\NppGTags\" validate="true" recursive="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NppGTags\"/>
</x64>
</remove>
</plugin>
<plugin name="NppJumpList">
<x64Version>1.2.2</x64Version>
<description>Adds windows 7 jump list support.</description>
<author>ahvgeezer</author>
<homepage>http://sourceforge.net/projects/nppjumplist/</homepage>
<install>
<x64>
<download>https://github.com/chcg/JumpList/releases/download/1.2.2.7/NppJumpList_1.2.2.7_x64.zip</download>
<copy from="NppJumpList.dll" to="$PLUGINDIR$" validate="true"/>
<copy from="readme.txt" to="$PLUGINDIR$\doc\NppJumpList"/>
</x64>
</install>
</plugin>
<plugin name="NppNetNote">
<x64Version>0.1.0.0</x64Version>
<aliases>
<alias name="NppDocShare"/>
</aliases>
<description>Allows the same document to be edited in real time on two different computers. Only needs a network connection between the two.</description>
<author>Harrybharry</author>
<sourceUrl>http://downloads.sourceforge.net/sourceforge/npp-plugins/NppDocShare_0_1_src.zip</sourceUrl>
<latestUpdate>2018-01-20 Unofficial port of https://sourceforge.net/projects/npp-plugins/files/NppDocShare/NppDocShare%20plugin%20v0.1/ for x64</latestUpdate>
<install>
<x64>
<download>https://github.com/chcg/NppDocShare/releases/download/0.1.11/NppDocShare_0.1.11_x64.zip</download>
<copy from="NppDocShare.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="NppQrCode">
<x64Version>0.0.0.1</x64Version>
<description>This plugin allows to create QR-Code from selected text. Just select the text and push plugin button.</description>
<author>Vladimir Korobenkov</author>
<homepage>https://github.com/vladk1973/NppQrCode</homepage>
<latestUpdate>27.02.2018 (v0.0.0.1)\n- Initial release</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/vladk1973/NppQrCode/releases/download/v0.0.0.1/NppQrCode-0.0.0.1-x64.zip</download>
<copy from="NppQrCode64.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NppQrCode64.dll.dll"/>
</x64>
</remove>
</plugin>
<plugin name="NppRegExTractor">
<x64Version>2.0.0</x64Version>
<description>Search one or more regular expression in one ore more different files and get and xml search result.</description>
<author>Jan Graefe</author>
<homepage>https://github.com/viper3400/RegExTractor/wiki/de_userdocumentation</homepage>
<sourceUrl>https://github.com/viper3400/NppRegExTractor</sourceUrl>
<latestUpdate>2017-12-29 Release now contains x86 and x64 versions for either the x86 build of Notepad++ or the x64 build. There are no code changes in RegExTractor itself.</latestUpdate>
<install>
<x64>
<download>https://github.com/viper3400/NppRegExTractor/releases/download/2.0.0/NppRegExTractor_2.0.0_BUILD_2_x64.zip</download>
<copy from="NppRegExTractorPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="RegExTractor\*" to="$PLUGINDIR$\RegExTractor" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\NppRegExTractorPlugin.dll"/>
<delete file="$PLUGINDIR$\RegExTractor\*"/>
<delete file="$PLUGINDIR$\RegExTractor"/>
</x64>
</remove>
</plugin>
<plugin name="Open Selection">
<x64Version>1.1.2</x64Version>
<aliases>
<alias name="OpenSelection"/>
</aliases>
<description>OpenSelection is designed to help people to open files based on the selected text. A typical applications is "include" files of may types of programs. Another applications is to open Matlab functions. The plugin is can be customized for different languages based on the open file extension. Multiple search folders may be specified along with multiple extensions.</description>
<author>Franco Stellari</author>
<homepage>https://sites.google.com/site/fstellari/nppplugins</homepage>
<sourceUrl>https://sites.google.com/site/fstellari/nppplugins</sourceUrl>
<latestUpdate>2017-02-14 Improve detection of context menu.</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sites.google.com/site/fstellari/nppplugins/OpenSelection_dll_1v12.zip</download>
<copy from="64bit\OpenSelection.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Plugin Manager">
<x64Version>1.4.11</x64Version>
<description>The Plugin Manager is this plugin, that allows installation, update and removal of Notepad++ plugins. It will notify you of updates to plugins that you have installed, and automatically install dependencies and required files into the correct places.</description>
<author>Dave Brotherstone</author>
<homepage>https://bruderste.in/npp/pm/</homepage>
<sourceUrl>https://github.com/bruderstein/nppPluginManager</sourceUrl>
<latestUpdate>2018-03-14\n- Fixed issue #99 issue on user drawing of settings button during dialog window resizing</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/bruderstein/nppPluginManager/releases/download/v1.4.11/PluginManager_v1.4.11_x64.zip</download>
<copy from="plugins\PluginManager.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="updater\gpup.exe" to="$NPPDIR$\updater" validate="true" replace="true" isGpup="true"/>
</x64>
</install>
</plugin>
<plugin name="Poor Man's T-Sql Formatter">
<x64Version>1.6.10</x64Version>
<description>A simple SQL formatter performing full multi-batch T-SQL formatting (individual statements, stored procedures, any DML, any DDL) with numerous formatting options.</description>
<author>Tao Klerks</author>
<homepage>http://www.architectshack.com/PoorMansTSqlFormatter.ashx</homepage>
<sourceUrl>https://github.com/TaoK/PoorMansTSqlFormatter</sourceUrl>
<latestUpdate>2016-11-21 (v1.6.10): Misc fixes, esp. noformat region fixes</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>http://www.architectshack.com/GetFile.aspx?File=SqlFormatterNppPlugin.x64.1.6.10.zip&Page=PoorMansTSqlFormatter</download>
<copy from="PoorMansTSqlFormatterNppPlugin.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="PoorMansTSqlFormatterNppPlugin\LinqBridge.dll" to="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin\" validate="true"/>
<copy from="PoorMansTSqlFormatterNppPlugin\fr\PoorMansTSqlFormatterPluginShared.resources.dll" to="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin\fr\" validate="true"/>
<copy from="PoorMansTSqlFormatterNppPlugin\es\PoorMansTSqlFormatterPluginShared.resources.dll" to="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin\es\" validate="true"/>
<copy from="PoorMansTSqlFormatterNppPlugin\PoorMansTSqlFormatterLib.dll" to="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin\" validate="true"/>
<copy from="PoorMansTSqlFormatterNppPlugin\PoorMansTSqlFormatterPluginShared.dll" to="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin\" validate="true"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin\es\PoorMansTSqlFormatterPluginShared.resources.dll"/>
<delete file="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin\es"/>
<delete file="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin\fr\PoorMansTSqlFormatterPluginShared.resources.dll"/>
<delete file="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin\fr"/>
<delete file="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin\LinqBridge.dll"/>
<delete file="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin\PoorMansTSqlFormatterLib.dll"/>
<delete file="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin\PoorMansTSqlFormatterPluginShared.dll"/>
<delete file="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin"/>
<delete file="$PLUGINDIR$\PoorMansTSqlFormatterNppPlugin.dll"/>
<delete file="$CONFIGDIR$\Poor Man's T-Sql Formatter.ini.xml"/>
</x64>
</remove>
</plugin>
<plugin name="Pork2Sausage">
<x64Version>2.1</x64Version>
<description>Transforms selected text to through a transformer (a console program which takes inputs then generates output). Up to 20 transformers can be defined</description>
<author>Don Ho</author>
<sourceUrl>https://github.com/npp-plugins/pork2sausage</sourceUrl>
<latestUpdate>16 Sep 2016 Remove the dependecy issue</latestUpdate>
<install>
<x64>
<download>https://github.com/npp-plugins/pork2sausage/releases/download/v2.1/pork2sausage.2.1.bin.zip</download>
<copy from="bin64\Config/pork2Sausage.ini" to="$CONFIGDIR$\"/>
<copy from="bin64\readmetxt" to="$PLUGINDIR$\doc\Pork2Sausage"/>
<copy from="bin64\pork2sausage.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Python Script">
<x64Version>1.2.0</x64Version>
<description>Scripting plugin for Notepad++, documentation included\nAs easy as:\n notepad.open('filename.txt')\n editor.appendText("Hello World")\nFull programmatic access to Notepad++ features and menus\nFull programmatic access to all of Scintilla features\nCall other plugin menu items\nAssign menu items, shortcuts and toolbar icons to scripts\nProcess Notepad++ and Scintilla events, direct from a Python script\nPython console built-in\nFull regular expression support for search and replace - script Python regular expression replaces\nStart external programs and pipe the output direct to a Notepad++ document, or filter it, or simply to the console window\nFull documentation for all the objects and methods</description>
<author>Dave Brotherstone + Jocelyn Legault</author>
<homepage>http://npppythonscript.sourceforge.net</homepage>
<sourceUrl>http://github.com/davegb3/PythonScript</sourceUrl>
<latestUpdate>2018-06-27\n1.2 version with:\n- make menu command Show Console toggling #66\n- tcl\tk from python 2.7.15 #73\n- [Enhancement] "Run Previous Script" menu item -> hold Ctrl to EDIT script source file #77\n- [Question] Is "To Input" command useful? #80\n- Adding scripts/Samples/CTags Based Autocompletion.py #82 (thanks @Lucas-C)\n- [Suggestion] Display Console on Error #76\n- notepad.prompt() input control won't accept input #81\n- [Enhancement] Separate outputs with an empty line #68\n- Extend help with editor.flash #83\n- used plain python 2.7.15, without the modifications from fork https://github.com/bruderstein/python, reintroducing dependency to MSVCR90.dll</latestUpdate>
<install>
<x64>
<download>https://github.com/bruderstein/PythonScript/releases/download/v1.2.0/PythonScript_Full_1.2.0.0_x64.zip</download>
<download>https://github.com/bruderstein/PythonScript/releases/download/v1.2.0/PythonScript_ExtraLibs_1.2.0.0_x64.zip</download>
<copy from="python27.dll" to="$NPPDIR$\" validate="true"/>
<copy from="plugins\PythonScript.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="plugins\PythonScript\*.*" to="$PLUGINDIR$\PythonScript" recursive="true"/>
<copy from="plugins\doc\PythonScript\*.*" to="$PLUGINDIR$\doc\PythonScript"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\PythonScript"/>
</x64>
</remove>
</plugin>
<plugin name="RunMe">
<x64Version>1.4.0</x64Version>
<aliases>
<alias name="Run Me"/>
</aliases>
<description>RunMe allows to execute the currently open file, based on its shell association.\nThe plugin allows also to open an explorer or command shell at the file location.\nOptions are available to same the current file (or all the files) before execution.\nThe executed file can be run in foreground,background, or hidden mode.\nContext menu entries and tool bar icons are available.</description>
<author>Franco Stellari</author>
<homepage>http://sites.google.com/site/fstellari/nppplugins</homepage>
<latestUpdate>Added 64bit support\nAdded capability of running scripts with parameters</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://sites.google.com/site/fstellari/nppplugins/RunMe_dll_1v40.zip</download>
<copy from="64bit\RunMe.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Save as admin">
<x64Version>1.0.0.3</x64Version>
<description>This plugin allows you to save any file as administrator.\nJust press "Save" in Notepad++ and if you are not allowed to change this file as user, Notepad++ will save it as administrator.\nWindows XP, Windows 7 and Windows Vista are supported.</description>
<author>Khnykin Evgeniy</author>
<homepage>https://sourceforge.net/projects/nppsaveasadmin/</homepage>
<sourceUrl>https://sourceforge.net/p/nppsaveasadmin/code/</sourceUrl>
<latestUpdate>2018-01-26 Unofficial port for x64 version\nWindows XP is supported.</latestUpdate>
<install>
<x64>
<download>https://github.com/chcg/nppSaveAsAdmin/releases/download/1.0.0.3.9/NppSaveAsAdmin_1.0.0.3.9_x64.zip</download>
<copy from="NppSaveAsAdmin.dll" to="$PLUGINDIR$\" validate="true"/>
</x64>
</install>
</plugin>
<plugin name="Select 'N' Launch">
<x64Version>2.1</x64Version>
<description>This plugin gets your selected text, saves it as file with the extension you customize in the system temporary directory, then call system to open it with the extension associated program.</description>
<author>Don Ho</author>
<sourceUrl>https://github.com/npp-plugins/selectnlaunch</sourceUrl>
<latestUpdate>16 Sep 2016 Remove dependency of other dll</latestUpdate>
<install>
<x64>
<download>https://github.com/npp-plugins/selectnlaunch/releases/download/v2.1/selectNLaunch.v2.1.bin.zip</download>
<copy from="bin64\SelectNLaunch.dll" to="$PLUGINDIR$\" validate="true"/>
<copy from="bin64\*.txt" to="$PLUGINDIR$\doc\SelectNLaunch"/>
</x64>
</install>
</plugin>
<plugin name="SelectQuotedText">
<x64Version>1.0.0</x64Version>
<description>Select the text in quotes (aka a string) based on the Scintilla lexers in Notepad++. Just press Alt+' and select the entire string under the cursor. If no string is found, it select the current word.</description>
<author>Frank Fesevur</author>
<homepage>https://www.fesevur.com/selectquotedtext</homepage>
<sourceUrl>https://github.com/ffes/selectquotedtext/</sourceUrl>
<latestUpdate>First release</latestUpdate>
<stability>Good</stability>
<install>
<x64>
<download>https://github.com/ffes/selectquotedtext/releases/download/v1.0.0/SelectQuotedText-100-x64.zip</download>
<copy from="SelectQuotedText.dll" to="$PLUGINDIR$\"/>
</x64>
</install>
<remove>
<x64>
<delete file="$PLUGINDIR$\SelectQuotedText.dll"/>