-
Notifications
You must be signed in to change notification settings - Fork 40
/
plugins.xml
2388 lines (2388 loc) · 113 KB
/
plugins.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 xmlns="http://pkp.sfu.ca" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pkp.sfu.ca plugins.xsd">
<plugin category="generic" product="hypothesis">
<name locale="en_US">Hypothes.is</name>
<homepage>https://github.com/asmecher/hypothesis</homepage>
<summary locale="en_US">This plugin integrates the Hypothes.is annotation tool into articles.</summary>
<description locale="en_US"><![CDATA[This plugin integrates Hypothes.is (<a href="http://hypothes.is" target="_blank">http://hypothes.is</a>) in OJS articles, permitting annotation and commenting. (See <a href="https://github.com/asmecher/hypothesis/blob/ojs-3_0_2-0/README" target="_blank">the README document</a> for notes on PDF support.)]]></description>
<maintainer>
<name>Alec Smecher</name>
<institution>Public Knowledge Project</institution>
<email>[email protected]</email>
</maintainer>
<release date="2017-02-20" version="1.0.0.0" md5="09c6cff1b9bd544e41cd22a3ebe41088">
<package>https://github.com/asmecher/hypothesis/releases/download/ojs-3_0_2-0/hypothesis-ojs-3_0_2-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.0.2.0</version>
</compatibility>
<certification type="official"/>
<description>Release of the Hypothes.is plugin for OJS 3.0.2.</description>
</release>
<release date="2017-10-23" version="1.0.0.0" md5="c812e14336807a5704af34c39b9b5518">
<package>https://github.com/asmecher/hypothesis/releases/download/ojs-3_1_0-0/hypothesis-ojs-3_1_0-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
</compatibility>
<certification type="official"/>
<description>Release of the Hypothes.is plugin for OJS 3.1.0.</description>
</release>
<release date="2018-04-04" version="1.0.1.0" md5="31171a9a889104e41fac5136ec41050b">
<package>https://github.com/asmecher/hypothesis/releases/download/ojs-3_1_1-0/hypothesis-ojs-3_1_1-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>Release of the Hypothes.is plugin for OJS 3.1.1/3.1.2.</description>
</release>
<release date="2020-02-27" version="1.0.2.0" md5="5bf045d0490284044125d398e2cea41b">
<package>https://github.com/asmecher/hypothesis/releases/download/v1.0.2-0/hypothesis-v1.0.2-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="ops">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="official"/>
<description>Release of the Hypothes.is plugin for OJS/OPS 3.2.</description>
</release>
</plugin>
<plugin category="generic" product="shibboleth">
<name locale="en_US">Shibboleth</name>
<homepage>https://github.com/pkp/shibboleth</homepage>
<summary locale="en_US">This plugin adds Shibboleth support.</summary>
<description locale="en_US">This plugin allows third-party authentication via a Shibboleth service.</description>
<maintainer>
<name>Chris Maden</name>
<institution>University of Illinois</institution>
<email>[email protected]</email>
</maintainer>
<release date="2017-11-06" version="1.0.0.0" md5="19eacf80af7762b9d4af071cb6e20ec7">
<package>https://github.com/pkp/shibboleth/releases/download/ojs-3_1_0-0-1/shibboleth-ojs-3_1_0-0-1.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="official"/>
<description>Release of the Shibboleth plugin for OJS 3.1.0/3.1.1.</description>
</release>
<release date="2019-02-28" version="1.0.0.0" md5="fb653b21371b2dbfa3e30987afa3c9bf">
<package>https://github.com/pkp/shibboleth/releases/download/3_1_2-0/shibboleth-3_1_2-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>Release of the Shibboleth plugin for OJS 3.1.2.</description>
</release>
</plugin>
<plugin category="generic" product="translator">
<name locale="en_US">Translator</name>
<homepage>https://github.com/pkp/translator</homepage>
<summary locale="en_US">This plugin permits translations to be updated and edited.</summary>
<description locale="en_US"><![CDATA[This plugin allows site administrators to edit the translation files that ship with the software. See <a href="https://pkp.sfu.ca/wiki/index.php/Translating_OxS" target="_blank">https://pkp.sfu.ca/wiki/index.php/Translating_OxS</a> for information on translation management and contributing back.]]></description>
<maintainer>
<name>Alec Smecher</name>
<institution>Public Knowledge Project</institution>
<email>[email protected]</email>
</maintainer>
<release date="2018-09-11" version="2.0.2.0" md5="83c417e1e6ebfe36e46808a59a23f1bc">
<package>https://github.com/pkp/translator/releases/download/v2.0.2-0/translator-v2.0.2-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
</compatibility>
<compatibility application="omp">
<version>3.1.0.0</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.3</version>
</compatibility>
<certification type="official"/>
<description>Release of the Translator plugin for OJS/OMP 3.1.x.</description>
</release>
<release date="2018-09-25" version="2.0.3.0" md5="53255f015f44a58d9cf096bb6677764d">
<package>https://github.com/pkp/translator/releases/download/v2.0.3-0/translator-v2.0.3-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.0.0</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.3</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="official"/>
<description>Release of the Translator plugin for OJS/OMP 3.1.1.x.</description>
</release>
<release date="2019-03-04" version="2.0.3.1" md5="5cb6d2e26f113bfb3e632f3995b19568">
<package>https://github.com/pkp/translator/releases/download/v2.0.3-1/translator-v2.0.3-1.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>Release of the Translator plugin for OJS/OMP 3.1.2.</description>
</release>
</plugin>
<plugin category="generic" product="backup">
<name locale="en_US">Backup</name>
<homepage>https://github.com/asmecher/backup</homepage>
<summary locale="en_US">This plugin permits backups to be downloaded from within OJS.</summary>
<description locale="en_US">This plugin allows site administrators to download backups of the system.</description>
<maintainer>
<name>Alec Smecher</name>
<institution>Public Knowledge Project</institution>
<email>[email protected]</email>
</maintainer>
<release date="2018-07-03" version="2.0.0.0" md5="77dca726d9c71e7b00665b90c6307c5f">
<package>https://github.com/asmecher/backup/releases/download/v2_0_0-0/backup-v2_0_0-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.3</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="official"/>
<description>Initial release of the backup plugin.</description>
</release>
<release date="2019-03-04" version="2.0.1.0" md5="54e5f2551affd8501c4407296fc5652b">
<package>https://github.com/asmecher/backup/releases/download/v2.0.1-0/backup-v2.0.1-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>Compatibility release of the backup plugin for OJS/OMP 3.1.2.</description>
</release>
<release date="2020-02-27" version="2.0.2.0" md5="f8ab52547291086c449df8ce572cb0cc">
<package>https://github.com/asmecher/backup/releases/download/v2.0.2-0/backup-v2.0.2-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="omp">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="ops">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="official"/>
<description>Compatibility release of the backup plugin for OJS/OMP/OPS 3.2.</description>
</release>
<release date="2020-04-08" version="2.0.2.1" md5="1989c382059e9ba9225b8760027faee3">
<package>https://github.com/asmecher/backup/releases/download/v2.0.2-1/backup-v2.0.2-1.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="omp">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="ops">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="official"/>
<description>Adds new translations to the 2.0.2 release.</description>
</release>
</plugin>
<plugin category="generic" product="plagiarism">
<name locale="en_US">iThenticate</name>
<homepage>https://github.com/asmecher/plagiarism</homepage>
<summary locale="en_US">This plugin permits automatic submission of uploaded content to the iThenticate service for plagiarism checking.</summary>
<description locale="en_US"><![CDATA[<p>This plugin permits automatic submission of uploaded content to the <a href="http://www.ithenticate.com/" target="_new">iThenticate service</a> for plagiarism checking.</p><p>See the README document included in this plugin for installation instructions.</p>]]></description>
<maintainer>
<name>Alec Smecher</name>
<institution>Public Knowledge Project</institution>
<email>[email protected]</email>
</maintainer>
<release date="2018-06-21" version="1.0.1.0" md5="bea113ea0d9fe4096e7f3ecf25d691b3">
<package>https://github.com/asmecher/plagiarism/releases/download/v1.0.1/plagiarism-v1.0.1.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.3</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="official"/>
<description>Release of the iThenticate plugin for OJS/OMP 3.1.x.</description>
</release>
<release date="2019-03-04" version="1.0.2.0" md5="0549917599628769f912c8f190997781">
<package>https://github.com/asmecher/plagiarism/releases/download/v1.0.2/plagiarism-v1.0.2.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>Release of the iThenticate plugin for OJS/OMP 3.1.2.</description>
</release>
<release date="2019-03-04" version="1.0.3.0" md5="8594ef65da0d3220e5ad107348c4feda">
<package>https://github.com/asmecher/plagiarism/releases/download/v1.0.3-0/plagiarism-v1.0.3-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="omp">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="official"/>
<description>Release of the iThenticate plugin for OJS/OMP 3.2.0.</description>
</release>
</plugin>
<plugin category="generic" product="coins">
<name locale="en_US">COinS</name>
<homepage>https://github.com/pkp/coins</homepage>
<summary locale="en_US">This plugin embeds OpenURL COinS in OJS articles.</summary>
<description locale="en_US"><![CDATA[This plugin embeds OpenURL COinS (<a href="http://ocoins.info/" target="_blank">http://ocoins.info/</a>) in OJS articles, permitting tools like Zotero (<a href="http://www.zotero.org" target="_blank">http://www.zotero.org</a>) to grab citations.]]></description>
<maintainer>
<name>Dimitris Efstathiou</name>
<institution>Public Knowledge Project</institution>
<email>[email protected]</email>
</maintainer>
<release date="2018-03-14" version="1.0.1.0" md5="95d7140b05ac97c89dc14e2e76dff967">
<package>https://github.com/pkp/coins/releases/download/coins-1_0_1-0/coins-1_0_1-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.0.2.0</version>
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="official"/>
<description>Release 1.0.1 of the COinS plugin for OJS between 3.0.2-0 and 3.1.1-x.</description>
</release>
<release date="2019-03-04" version="1.0.2.1" md5="1093dc59a8cfe975f86db524e8840083">
<package>https://github.com/pkp/coins/releases/download/v1.0.2-1/coins-v1.0.2-1.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>Release 1.0.2-1 of the COinS plugin for OJS 3.1.2.</description>
</release>
<release date="2020-02-27" version="1.0.3.0" md5="fe9cfb9c30ea14060f1b1c3aea8181f5">
<package>https://github.com/pkp/coins/releases/download/v1.0.3-0/coins-v1.0.3-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="official"/>
<description>Release 1.0.3-0 of the COinS plugin for OJS 3.2.</description>
</release>
</plugin>
<plugin category="importexport" product="quickSubmit">
<name locale="en_US">QuickSubmit</name>
<homepage>https://github.com/pkp/quickSubmit</homepage>
<summary locale="en_US">The QuickSubmit plugin permits Journal Managers to quickly enter submissions through the OJS website, bypassing the editorial workflow.</summary>
<description locale="en_US"><![CDATA[<p>The QuickSubmit plugin permits Journal Managers to quickly enter submissions through the OJS website, bypassing the editorial workflow.</p>]]></description>
<maintainer>
<name>Alec Smecher</name>
<institution>Public Knowledge Project</institution>
<email>[email protected]</email>
</maintainer>
<release date="2017-02-01" version="1.0.1.0" md5="3047c425524b86fe035d0ff19e380926">
<package>https://github.com/pkp/quickSubmit/releases/download/ojs-3_0_2-0/quickSubmit-ojs-3_0_2-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.0.2.0</version>
</compatibility>
<certification type="official"/>
<description>Release of the QuickSubmit plugin for OJS 3.0.2.</description>
</release>
<release date="2017-10-21" version="1.0.1.0" md5="6a083c20c06d8bc1867e02f83561836b">
<package>https://github.com/pkp/quickSubmit/releases/download/ojs-3_1_0-0/quickSubmit-ojs-3_1_0-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
</compatibility>
<certification type="official"/>
<description>Release of the QuickSubmit plugin for OJS 3.1.0.</description>
</release>
<release date="2018-04-04" version="1.0.2.0" md5="d5346903712fe0f73e62ccdc256db9eb">
<package>https://github.com/pkp/quickSubmit/releases/download/ojs-3_1_1-0/quickSubmit-ojs-3_1_1-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="official"/>
<description>Release of the QuickSubmit plugin for OJS 3.1.1.</description>
</release>
<release date="2018-04-04" version="1.0.3.0" md5="05dfaaa334d65a498dda2a076ba4242b">
<package>https://github.com/pkp/quickSubmit/releases/download/v1.0.3-0/quickSubmit-v1.0.3-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="official"/>
<description>v1.0.3-0 release of the QuickSubmit plugin for OJS 3.1.1.</description>
</release>
<release date="2019-03-04" version="1.0.4.0" md5="775cfc6648e1b646a678895f19f71fa5">
<package>https://github.com/pkp/quickSubmit/releases/download/v1.0.4-0/quickSubmit-v1.0.4-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>v1.0.4-0 release of the QuickSubmit plugin for OJS 3.1.2.</description>
</release>
<release date="2019-04-03" version="1.0.4.1" md5="80eb29c3ea700aa6498674f8dac6b229">
<package>https://github.com/pkp/quickSubmit/releases/download/v1.0.4-1/quickSubmit-v1.0.4-1.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>Bugfix release of the QuickSubmit plugin for OJS 3.1.2.</description>
</release>
<release date="2020-02-27" version="1.0.5.0" md5="d36826c87d8de74c380c9536a922b83a">
<package>https://github.com/pkp/quickSubmit/releases/download/v1.0.5-0/quickSubmit-v1.0.5-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="official"/>
<description>Release of the QuickSubmit plugin for OJS 3.2.</description>
</release>
<release date="2020-03-19" version="1.0.5.1" md5="c73a7198df995805463573ce1c9fef30">
<package>https://github.com/pkp/quickSubmit/releases/download/v1.0.5-1/quickSubmit-v1.0.5-1.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="official"/>
<description>Bugfix release of the QuickSubmit plugin for OJS 3.2.</description>
</release>
<release date="2020-04-09" version="1.0.5.2" md5="f28b95494565ce4b202a169b03263f01">
<package>https://github.com/pkp/quickSubmit/releases/download/v1.0.5-2/quickSubmit-v1.0.5-2.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="official"/>
<description>Bugfix release of the QuickSubmit plugin for OJS 3.2.</description>
</release>
</plugin>
<plugin category="generic" product="allowedUploads">
<name locale="en_US">Allowed Uploads</name>
<name locale="fi_FI">Sallitut tiedostomuodot</name>
<homepage>https://github.com/ajnyga/allowedUploads</homepage>
<summary locale="en_US">Allowed Uploads plugin enables to choose the filetypes that are allowed when submitting a manuscript.</summary>
<summary locale="fi_FI">Tämän lisäosan avulla voit rajoittaa niitä tiedostomuotoja, joita voi lähettää käsikirjoituksen yhteyteen.</summary>
<description locale="en_US"><![CDATA[<p>Allowed Uploads plugin enables to choose the filetypes that are allowed when submitting a manuscript.</p><p><strong>NOTE!</strong> This is not a security plugin! Please make sure that the files directory is outside the web root.</p>]]></description>
<description locale="fi_FI"><![CDATA[<p>Tämän lisäosan avulla voit rajoittaa niitä tiedostomuotoja, joita voi lähettää käsikirjoituksen yhteyteen.</p><p><strong>HUOM!</strong> Tätä lisäosaa ei ole tarkoitettu parantamaan järjestelmän tietoturvaa! Huolehdi, että järjestelmän tiedostot-hakemisto on sijoitettu tai suojattu oikein.</p>]]></description>
<maintainer>
<name>Antti-Jussi Nygård</name>
<institution/>
<email>[email protected]</email>
</maintainer>
<release date="2018-03-15" version="1.0.0.1" md5="2379aae7ef7685186b19c015d7c84ecc">
<package>https://github.com/ajnyga/allowedUploads/releases/download/v.1.0/allowedUploads.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.3</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="reviewed"/>
<description>Initial release of the Allowed Uploads plugin.</description>
</release>
<release date="2018-07-27" version="1.0.0.2" md5="f5e922bb0b76929bad544f9801efab68">
<package>https://github.com/ajnyga/allowedUploads/releases/download/v.1.0.0.2/allowedUploads.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.1.2</version>
<version>3.1.1.3</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="reviewed"/>
<description>Updated release of the Allowed Uploads plugin.</description>
</release>
<release date="2020-02-25" version="1.0.0.5" md5="f518e21a670df0ae612b3d15a1c49f59">
<package>https://github.com/ajnyga/allowedUploads/releases/download/1.0.0.5/allowedUploads.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="omp">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="ops">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="reviewed"/>
<description>Update for compatibility with v3.2.</description>
</release>
</plugin>
<plugin category="generic" product="piwik">
<name locale="en_US">Piwik</name>
<homepage>https://github.com/pkp/piwik</homepage>
<summary locale="en_US">Permits usage statistics tracking using Piwik.</summary>
<description locale="en_US"><![CDATA[<p>The Piwik plugin allows managers to track website usage statistics.</p>]]></description>
<maintainer>
<name>Kassim Machioudi</name>
<institution>Public Knowledge Project</institution>
<email>[email protected]</email>
</maintainer>
<release date="2017-02-03" version="1.0.0.0" md5="575420845fd2639f2b60d21a08d5cfe1">
<package>https://github.com/pkp/piwik/releases/download/piwik-1_0_0/piwik-1.0.0.tar.gz</package>
<compatibility application="ojs2">
<version>3.0.2.0</version>
</compatibility>
<compatibility application="omp">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
</compatibility>
<certification type="official"/>
<description>Initial release of the Piwik plugin.</description>
</release>
<release date="2017-10-21" version="1.0.0.0" md5="cc5c4235d82e70a4a854147fee58ebbe">
<package>https://github.com/pkp/piwik/releases/download/ojs-3_1_0-0/piwik-ojs-3_1_0-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
</compatibility>
<certification type="official"/>
<description>Initial release of the Piwik plugin.</description>
</release>
<release date="2017-10-21" version="1.0.1.0" md5="054c65ea07a2a4a8b805db0575adca28">
<package>https://github.com/pkp/piwik/releases/download/ojs-3_1_1-0/piwik-ojs-3_1_1-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.3</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="official"/>
<description>Piwik release for OJS/OMP 3.1.1</description>
</release>
<release date="2019-03-04" version="1.0.2.0" md5="a5f116e1b19f5064f72fa4fc78df97d1">
<package>https://github.com/pkp/piwik/releases/download/v1.0.2-0/piwik-v1.0.2-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>Piwik release for OJS/OMP 3.1.2</description>
</release>
<release date="2019-05-14" version="1.0.2.1" md5="a195e3ac91d0b3a20d02bf10d883d147">
<package>https://github.com/pkp/piwik/releases/download/v1.0.2-1/piwik-v1.0.2-1.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>Piwik release for OJS/OMP 3.1.2</description>
</release>
<release date="2020-02-27" version="1.0.3.0" md5="ec4692f8af11800ee3771525be3d2bb2">
<package>https://github.com/pkp/piwik/releases/download/v1.0.3-0/piwik-v1.0.3-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="omp">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="official"/>
<description>Piwik release for OJS/OMP 3.2.0</description>
</release>
</plugin>
<plugin category="generic" product="shariff">
<name locale="en_US">Shariff Plugin</name>
<homepage>https://github.com/ojsde/shariff</homepage>
<summary locale="en_US">This plugin integrates the shariff solution for social media buttons in OJS and OMP.</summary>
<description locale="en_US"><![CDATA[This plugin integrates the shariff solution(<a href="https://github.com/heiseonline/shariff" target="_blank">https://github.com/heiseonline/shariff</a>) to your website, allowing you to add social media buttons to your journal without compromising the privacy of website users.]]></description>
<maintainer>
<name>Svantje Lilienthal</name>
<institution>Freie Universität Berlin</institution>
<email>[email protected]</email>
</maintainer>
<release date="2017-12-04" version="1.0.0.0" md5="e9f2bc26611a4d5632c91257c2edc73f">
<package>https://github.com/ojsde/shariff/archive/v2_4_6.tar.gz</package>
<compatibility application="ojs2">
<version>2.4.6.0</version>
</compatibility>
<certification type="partner"/>
<description>Release of the Shariff plugin for OJS 2.4.6.</description>
</release>
<release date="2017-12-04" version="2.0.0.0" md5="3ef89ae22808efc5ead47e8b636ec324">
<package>https://github.com/ojsde/shariff/releases/download/v2_4_8/shariff-2_4_8.tar.gz</package>
<compatibility application="ojs2">
<version>2.4.6.0</version>
</compatibility>
<certification type="partner"/>
<description>Release of the Shariff plugin for OJS 2.4.8.</description>
</release>
<release date="2018-04-03" version="3.0.0.0" md5="24988859a0d44b36b3ef8d06ae3a80a0">
<package>https://github.com/ojsde/shariff/releases/download/v3_0_0/shariff-3_0_0.tar.gz</package>
<compatibility application="ojs2">
<version>3.0.0.0</version>
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="partner"/><description>Release of the Shariff plugin for OJS 3.0.0.</description>
</release>
</plugin>
<plugin category="generic" product="addThis">
<name locale="en_US">AddThis</name>
<homepage>https://github.com/pkp/addThis</homepage>
<summary locale="en_US">Permits social media sharing of published content using AddThis.</summary>
<description locale="en_US"><![CDATA[<p><a href="http://www.addthis.com">AddThis</a> permits easy social media sharing by integrating tools for several platforms into a compact set of configurable buttons. This plugin integrates AddThis into OJS/OMP for quick sharing of published content.</p>]]></description>
<maintainer>
<name>Alec Smecher</name>
<institution>Public Knowledge Project</institution>
<email>[email protected]</email>
</maintainer>
<release date="2017-04-21" version="1.0.0.0" md5="1b6a84b416f5ccc914a5169db2f75881">
<package>https://github.com/pkp/addThis/releases/download/1_0_0-0/addThis-3.1.tar.gz</package>
<compatibility application="ojs2">
<version>3.0.2.0</version>
</compatibility>
<certification type="official"/>
<description>Initial release of the AddThis plugin.</description>
</release>
<release date="2017-10-21" version="1.0.0.0" md5="b7d5bc3476588e067d8e4beccfb34b31">
<package>https://github.com/pkp/addThis/releases/download/ojs-3_1_0-0/addThis-ojs-3_1_0-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
</compatibility>
<certification type="official"/>
<description>Initial release of the AddThis plugin.</description>
</release>
<release date="2018-04-04" version="1.0.1.0" md5="d735d48687ec298c271d29737f4e53d4">
<package>https://github.com/pkp/addThis/releases/download/ojs-3_1_1-0/addThis-ojs-3_1_1-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.3</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="official"/>
<description>AddThis for OJS/OMP 3.1.1.</description>
</release>
<release date="2019-03-04" version="1.0.2.0" md5="f26660a3ad4a5dec7f1c78c366472b14">
<package>https://github.com/pkp/addThis/releases/download/v1.0.2-0/addThis-v1.0.2-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>AddThis for OJS/OMP 3.1.2.</description>
</release>
<release date="2020-02-27" version="1.0.3.0" md5="afcb49344e6413bf7f9133dd0b828954">
<package>https://github.com/pkp/addThis/releases/download/v1.0.3-0/addThis-v1.0.3-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="omp">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="official"/>
<description>AddThis for OJS/OMP 3.2.0.</description>
</release>
</plugin>
<plugin category="importexport" product="copernicus">
<name locale="en_US">OJS to Copernicus Citation Index xml export plugin</name>
<homepage>https://github.com/a-vodka/ojs_copernicus_export_plugin/</homepage>
<summary locale="en_US">Allows to export article metadata in Copernicus Index in xml format</summary>
<description locale="en_US"><![CDATA[<p>This release support all necessary items to export issues to Copernicus Citation Index using xml]]></description>
<maintainer>
<name>Oleksii Vodka</name>
<institution>National Technical University Kharkiv Polytechnic Institute</institution>
<email>[email protected]</email>
</maintainer>
<release date="2019-01-09" version="0.0.3" md5="0a522fdd05358aceee508ca1070da776">
<package>https://github.com/a-vodka/ojs_copernicus_export_plugin/releases/download/0.0.3/copernicus-ojs3-0.0.3.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="partner"/>
<description>This release support all necessary items to export issues to Copernicus Citation Index using xml</description>
</release>
<release date="2019-05-23" version="0.0.4.0" md5="46e9ec82eaaced97fbdc0337674ca651">
<package>https://github.com/a-vodka/ojs_copernicus_export_plugin/releases/download/0.0.4/copernicus-ojs3-0.0.4.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>This release support all necessary items to export issues to Copernicus Citation Index using xml</description>
</release>
</plugin>
<plugin category="generic" product="subscriptionSSO">
<name locale="en_US">Subscription SSO</name>
<homepage>https://github.com/asmecher/subscriptionSSO</homepage>
<summary locale="en_US">This plugin permits delegation of OJS subscription checks to a third-party web service.</summary>
<description locale="en_US"><![CDATA[<p>This plugin permits delegation of OJS subscription checks to a third-party web service.</p><p>See <a href="https://github.com/asmecher/subscriptionSSO" target="_blank">https://github.com/asmecher/subscriptionSSO</a> for details.</p>]]></description>
<maintainer>
<name>Alec Smecher</name>
<institution>Public Knowledge Project</institution>
<email>[email protected]</email>
</maintainer>
<release date="2017-12-12" version="1.0.1.0" md5="5ba2efb9e8ca18937258e89011fbfe25">
<package>https://github.com/asmecher/subscriptionSSO/releases/download/1_0_1-0/subscriptionSSO-1_0_1-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.0.2.0</version>
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="official"/>
<description>Initial release of the SubscriptionSSO plugin for OJS between 3.0.2 and 3.1.1-x.</description>
</release>
<release date="2019-03-04" version="1.0.2.0" md5="3f117d48ecf9e558ff61bd7dafece333">
<package>https://github.com/asmecher/subscriptionSSO/releases/download/v1.0.2-0/subscriptionSSO-v1.0.2-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>Initial release of the SubscriptionSSO plugin for OJS 3.1.2.</description>
</release>
<release date="2020-03-19" version="1.0.3.1" md5="5e501808ce39dd1f27270f40491125c6">
<package>https://github.com/asmecher/subscriptionSSO/releases/download/v1.0.3-1/subscriptionSSO-v1.0.3-1.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="official"/>
<description>Initial release of the SubscriptionSSO plugin for OJS 3.2.0.</description>
</release>
</plugin>
<plugin category="generic" product="funding">
<name locale="en_US">Funding</name>
<homepage>https://github.com/ajnyga/funding/</homepage>
<summary locale="en_US">Adds submission funding data using the Crossref funders registry.</summary>
<description locale="en_US"><![CDATA[<p>This plugin adds submission funding data using the Crossref funders registry, considers the data in the Crossref and DataCite XML export and displays them on the submission view page.</p>]]></description>
<maintainer>
<name>Antti-Jussi Nygård</name>
<institution/>
<email>[email protected]</email>
</maintainer>
<!-- These releases appear to have gone away (404)
<release date="2017-10-26" version="2.1.1.0" md5="10534cafdbf1cc920bd42147588d4ce9">
<package>https://github.com/ajnyga/funding/releases/download/ojs-3_1_0-0/funding-ojs-3_1_0-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
</compatibility>
<certification type="partner" />
<description>Release of the Funding data plugin for OJS 3.1.1.x.</description>
</release>
<release date="2019-03-19" version="2.1.1.4" md5="c9f3f09708005c45cf78d84bb3e57f4e">
<package>https://github.com/ajnyga/funding/releases/download/2.1.1.4/funding.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="partner" />
<description>Release of the Funding data plugin for OJS 3.1.2.x.</description>
</release-->
<release date="2019-05-21" version="2.1.1.5" md5="d73dbcc9090c23479dfe885171603041">
<package>https://github.com/ajnyga/funding/releases/download/2.1.1.5/funding.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
</compatibility>
<certification type="partner"/>
<description>Release of the Funding data plugin for OJS 3.1.1.x.</description>
</release>
<release date="2019-05-21" version="2.1.2.4" md5="ba994ac810d5d1d22e2fbda5a7f5c4af">
<package>https://github.com/ajnyga/funding/releases/download/2.1.2.4/funding.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="partner"/>
<description>Release of the Funding data plugin for OJS 3.1.2.x.</description>
</release>
<release date="2020-02-27" version="2.1.3.1" md5="a6bda6d071894aa276116507e1d01345">
<package>https://github.com/ajnyga/funding/releases/download/2.1.3.1/funding.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="omp">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="reviewed"/>
<description>Update for compatibility with v3.2.</description>
</release>
</plugin>
<plugin category="generic" product="customHeader">
<name locale="en_US">Custom Header Plugin</name>
<homepage>https://github.com/asmecher/customHeader/</homepage>
<summary locale="en_US">Permits the addition of custom headers to the website.</summary>
<description locale="en_US"><![CDATA[<p>This plugin permits the addition of custom headers to the website. This can be used e.g. to add arbitrary Javascript to the front-end.</p>]]></description>
<maintainer>
<name>Alec Smecher</name>
<institution>Public Knowledge Project</institution>
<email>[email protected]</email>
</maintainer>
<release date="2018-02-19" version="1.0.0.0" md5="84d55e711ee08c948d69dc37d6075ef1">
<package>https://github.com/asmecher/customHeader/releases/download/ojs-3_1_0-0/customHeader-ojs-3_1_0-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.0.0</version>
<version>3.1.0.1</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.0.0</version>
<version>3.1.1.0</version>
<version>3.1.1.1</version>
<version>3.1.1.2</version>
<version>3.1.1.3</version>
<version>3.1.1.4</version>
</compatibility>
<certification type="official"/>
<description>Initial release of the custom headers plugin.</description>
</release>
<release date="2019-03-04" version="1.0.1.0" md5="e577a0ace206ae3fe9a4351806dee69a">
<package>https://github.com/asmecher/customHeader/releases/download/v1.0.1-0/customHeader-v1.0.1-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<compatibility application="omp">
<version>3.1.2.0</version>
<version>3.1.2.1</version>
<version>3.1.2.2</version>
<version>3.1.2.3</version>
<version>3.1.2.4</version>
</compatibility>
<certification type="official"/>
<description>Release of the custom headers plugin for OJS/OMP 3.1.2.</description>
</release>
<release date="2020-02-27" version="1.0.2.0" md5="73df409a9ad1757fdeaf4486a0dcf80d">
<package>https://github.com/asmecher/customHeader/releases/download/v1.0.2-0/customHeader-v1.0.2-0.tar.gz</package>
<compatibility application="ojs2">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="omp">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<compatibility application="ops">
<version>3.2.0.0</version>
<version>3.2.0.1</version>
<version>3.2.0.2</version>
</compatibility>
<certification type="official"/>
<description>Release of the custom headers plugin for OJS/OMP/OPS 3.2.0.</description>
</release>
</plugin>
<plugin category="generic" product="jatsTemplate">
<name locale="en_US">JATS Template Plugin</name>
<homepage>https://github.com/pkp/jatsTemplate/</homepage>
<summary locale="en_US">Permits the automatic generation of a simple (incomplete) JATS XML document.</summary>
<description locale="en_US"><![CDATA[<p>This plugin permits the automatic generation of a simple JATS XML document where a better file is not otherwise available. This can be used e.g. in connection with the <a href="https://github.com/pkp/oaiJats">OAI JATS plugin</a> to deliver metadata in a JATS format.</p>]]></description>