wonko_the_sane 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +7 -0
  2. data/bin/wonko_the_sane +91 -0
  3. data/data/minecraft.json +668 -0
  4. data/data/mods.json +2475 -0
  5. data/data/sources.json +427 -0
  6. data/data/timestamps.json +13 -0
  7. data/lib/wonko_the_sane.rb +66 -0
  8. data/lib/wonko_the_sane/input/base_input.rb +55 -0
  9. data/lib/wonko_the_sane/input/forge_installer_profile_input.rb +134 -0
  10. data/lib/wonko_the_sane/input/forgefiles_mods_input.rb +30 -0
  11. data/lib/wonko_the_sane/input/jenkins_input.rb +46 -0
  12. data/lib/wonko_the_sane/input/mojang_input.rb +214 -0
  13. data/lib/wonko_the_sane/reader_writer.rb +163 -0
  14. data/lib/wonko_the_sane/registry.rb +61 -0
  15. data/lib/wonko_the_sane/rules.rb +69 -0
  16. data/lib/wonko_the_sane/timestamps.rb +30 -0
  17. data/lib/wonko_the_sane/tools/update_nem.rb +85 -0
  18. data/lib/wonko_the_sane/util/configuration.rb +35 -0
  19. data/lib/wonko_the_sane/util/deep_storage_cache.rb +65 -0
  20. data/lib/wonko_the_sane/util/extraction_cache.rb +30 -0
  21. data/lib/wonko_the_sane/util/file_hash_cache.rb +42 -0
  22. data/lib/wonko_the_sane/util/http_cache.rb +143 -0
  23. data/lib/wonko_the_sane/util/maven_identifier.rb +39 -0
  24. data/lib/wonko_the_sane/util/task_stack.rb +21 -0
  25. data/lib/wonko_the_sane/version.rb +3 -0
  26. data/lib/wonko_the_sane/version_index.rb +33 -0
  27. data/lib/wonko_the_sane/version_parser.rb +115 -0
  28. data/lib/wonko_the_sane/versionlists/base_version_list.rb +103 -0
  29. data/lib/wonko_the_sane/versionlists/curse_version_list.rb +52 -0
  30. data/lib/wonko_the_sane/versionlists/forge_version_list.rb +142 -0
  31. data/lib/wonko_the_sane/versionlists/forgefiles_mods_list.rb +24 -0
  32. data/lib/wonko_the_sane/versionlists/jenkins_version_list.rb +29 -0
  33. data/lib/wonko_the_sane/versionlists/liteloader_version_list.rb +66 -0
  34. data/lib/wonko_the_sane/versionlists/vanilla_legacy_version_list.rb +39 -0
  35. data/lib/wonko_the_sane/versionlists/vanilla_version_list.rb +35 -0
  36. data/lib/wonko_the_sane/wonko_version.rb +184 -0
  37. metadata +324 -0
data/data/mods.json ADDED
@@ -0,0 +1,2475 @@
1
+ {
2
+ "MinecraftForge-1.7.10" : {
3
+ "name" : "MinecraftForge",
4
+ "function" : "CheckMCForge2",
5
+ "category" : "forge",
6
+ "active" : true,
7
+ "mcforge" : {
8
+ "url" : "http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions.json",
9
+ "promo" : "latest-1.7.10",
10
+ "promoType" : "dev"
11
+ }
12
+ },
13
+ "MinecraftForge-1.7.10-Release" : {
14
+ "name" : "MinecraftForge",
15
+ "function" : "CheckMCForge2",
16
+ "category" : "forge",
17
+ "active" : true,
18
+ "mcforge" : {
19
+ "url" : "http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions.json",
20
+ "promo" : "1.7.10-recommended",
21
+ "promoType" : "version"
22
+ }
23
+ },
24
+ "IronChests" : {
25
+ "function" : "CheckMCForge2",
26
+ "category" : "forge",
27
+ "active" : true,
28
+ "mcforge" : {
29
+ "url" : "http://files.minecraftforge.net/maven/cpw/mods/ironchest/promotions.json",
30
+ "promo" : "latest",
31
+ "promoType" : "dev"
32
+ }
33
+ },
34
+ "IronChests-Release" : {
35
+ "name" : "IronChests",
36
+ "function" : "CheckMCForge2",
37
+ "category" : "forge",
38
+ "active" : true,
39
+ "mcforge" : {
40
+ "url" : "http://files.minecraftforge.net/maven/cpw/mods/ironchest/promotions.json",
41
+ "promo" : "recommended",
42
+ "promoType" : "version"
43
+ }
44
+ },
45
+ "ForgeMultipart" : {
46
+ "function" : "CheckMCForge2",
47
+ "category" : "forge",
48
+ "active" : true,
49
+ "mcforge" : {
50
+ "url" : "http://files.minecraftforge.net/maven/codechicken/ForgeMultipart/promotions.json",
51
+ "promo" : "latest",
52
+ "promoType" : "dev"
53
+ }
54
+ },
55
+ "CodeChickenLib" : {
56
+ "function" : "CheckMCForge2",
57
+ "category" : "forge",
58
+ "active" : true,
59
+ "mcforge" : {
60
+ "url" : "http://files.minecraftforge.net/maven/codechicken/CodeChickenLib/promotions.json",
61
+ "promo" : "latest",
62
+ "promoType" : "dev"
63
+ }
64
+ },
65
+ "CompactMachines" : {
66
+ "function" : "CheckCurse",
67
+ "active" : true,
68
+ "curse" : {
69
+ "name" : "compact-machines",
70
+ "id" : "224218",
71
+ "regex" : "compactmachines-(?P<mc>.+?)-(?P<version>.+?).jar$"
72
+ }
73
+ },
74
+ "CompactSolars" : {
75
+ "function" : "CheckMCForge2",
76
+ "category" : "forge",
77
+ "active" : true,
78
+ "mcforge" : {
79
+ "url" : "http://files.minecraftforge.net/maven/cpw/mods/CompactSolars/promotions.json",
80
+ "promo" : "latest",
81
+ "promoType" : "dev"
82
+ }
83
+ },
84
+ "CompactSolars-Release" : {
85
+ "name" : "CompactSolars",
86
+ "function" : "CheckMCForge2",
87
+ "category" : "forge",
88
+ "active" : true,
89
+ "mcforge" : {
90
+ "url" : "http://files.minecraftforge.net/maven/cpw/mods/CompactSolars/promotions.json",
91
+ "promo" : "recommended",
92
+ "promoType" : "version"
93
+ }
94
+ },
95
+ "BiomesOPlenty" : {
96
+ "function" : "CheckMCForge2",
97
+ "category" : "forge",
98
+ "active" : true,
99
+ "mcforge" : {
100
+ "url" : "http://files.minecraftforge.net/maven/com/github/glitchfiend/biomesoplenty/BiomesOPlenty/promotions.json",
101
+ "promo" : "latest",
102
+ "promoType" : "dev"
103
+ }
104
+ },
105
+ "BiomesOPlenty-Release" : {
106
+ "name" : "BiomesOPlenty",
107
+ "function" : "CheckMCForge2",
108
+ "category" : "forge",
109
+ "active" : true,
110
+ "mcforge" : {
111
+ "url" : "http://files.minecraftforge.net/maven/com/github/glitchfiend/biomesoplenty/BiomesOPlenty/promotions.json",
112
+ "promo" : "recommended",
113
+ "promoType" : "version"
114
+ }
115
+ },
116
+ "Cauldron" : {
117
+ "function" : "CheckMCForge2",
118
+ "category" : "forge",
119
+ "active" : false,
120
+ "changelog" : false,
121
+ "mcforge" : {
122
+ "url" : "http://files.minecraftforge.net/maven/net/minecraftforge/cauldron/promotions.json",
123
+ "promo" : "latest",
124
+ "promoType" : "dev"
125
+ }
126
+ },
127
+ "Cauldron-Release" : {
128
+ "name" : "Cauldron",
129
+ "function" : "CheckMCForge2",
130
+ "category" : "forge",
131
+ "active" : false,
132
+ "changelog" : false,
133
+ "mcforge" : {
134
+ "url" : "http://files.minecraftforge.net/maven/net/minecraftforge/cauldron/promotions.json",
135
+ "promo" : "recommended",
136
+ "promoType" : "version"
137
+ }
138
+ },
139
+ "FML-1.8" : {
140
+ "name" : "FML",
141
+ "function" : "CheckMCForge2",
142
+ "category" : "forge",
143
+ "active" : true,
144
+ "changelog" : false,
145
+ "mcforge" : {
146
+ "url" : "http://files.minecraftforge.net/maven/net/minecraftforge/fml/promotions.json",
147
+ "promo" : "latest-1.8",
148
+ "promoType" : "dev"
149
+ }
150
+ },
151
+ "MinecraftForge-1.8" : {
152
+ "name" : "MinecraftForge",
153
+ "function" : "CheckMCForge2",
154
+ "category" : "forge",
155
+ "active" : true,
156
+ "changelog" : false,
157
+ "mcforge" : {
158
+ "url" : "http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions.json",
159
+ "promo" : "1.8-latest",
160
+ "promoType" : "dev"
161
+ }
162
+ },
163
+ "MinecraftForge-1.8-Release" : {
164
+ "name" : "MinecraftForge",
165
+ "function" : "CheckMCForge2",
166
+ "category" : "forge",
167
+ "active" : true,
168
+ "changelog" : false,
169
+ "mcforge" : {
170
+ "url" : "http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions.json",
171
+ "promo" : "1.8-recommended",
172
+ "promoType" : "version"
173
+ }
174
+ },
175
+ "OpenPeripheralCore" : {
176
+ "comment" : "This isn't a core </3",
177
+ "function" : "CheckJenkins",
178
+ "category" : "openmods",
179
+ "active" : true,
180
+ "jenkins" : {
181
+ "url" : "http://openmods.info:8080/job/OpenPeripheralCore/lastSuccessfulBuild/api/json",
182
+ "regex" : "OpenPeripheralCore-(?P<mc>.+?)-(?P<dev>[0-9]+(?:\\.[0-9]+)*-snapshot-[0-9]+).jar$",
183
+ "item" : 5
184
+ }
185
+ },
186
+ "OpenPeripheralAddons" : {
187
+ "function" : "CheckJenkins",
188
+ "category" : "openmods",
189
+ "active" : true,
190
+ "jenkins" : {
191
+ "url" : "http://openmods.info:8080/job/OpenPeripheralAddons/lastSuccessfulBuild/api/json",
192
+ "regex" : "OpenPeripheralAddons-(?P<mc>.+?)-(?P<dev>.+?).jar$",
193
+ "item" : 1
194
+ }
195
+ },
196
+ "OpenBlocks" : {
197
+ "function" : "CheckJenkins",
198
+ "category" : "openmods",
199
+ "active" : true,
200
+ "jenkins" : {
201
+ "url" : "http://openmods.info:8080/job/OpenBlocks/lastSuccessfulBuild/api/json",
202
+ "regex" : "OpenBlocks-(?P<mc>.+?)-(?P<dev>.+?).jar$",
203
+ "item" : 1
204
+ }
205
+ },
206
+ "OpenModsLib" : {
207
+ "function" : "CheckJenkins",
208
+ "category" : "openmods",
209
+ "active" : true,
210
+ "jenkins" : {
211
+ "url" : "http://openmods.info:8080/job/OpenModsLib/lastSuccessfulBuild/api/json",
212
+ "regex" : "OpenModsLib-(?P<mc>.+?)-(?P<dev>.+?).jar$",
213
+ "item" : 2
214
+ }
215
+ },
216
+ "MineFactoryReloaded" : {
217
+ "function" : "CheckCurse",
218
+ "active" : true,
219
+ "curse" : {
220
+ "name" : "minefactory-reloaded",
221
+ "regex" : "MineFactoryReloaded-\\[(?P<mc>.+?)\\](?P<version>.+?).jar"
222
+ }
223
+ },
224
+ "IndustrialCraft2" : {
225
+ "function" : "CheckJenkins",
226
+ "active" : false,
227
+ "jenkins" : {
228
+ "url" : "http://ic2api.player.to:8080/job/IC2_lf/lastSuccessfulBuild/api/json",
229
+ "regex" : "industrialcraft-2_(?P<dev>.+?)-lf.jar$",
230
+ "item" : 2
231
+ }
232
+ },
233
+ "LanteaCraft" : {
234
+ "function" : "CheckCurse",
235
+ "active" : true,
236
+ "curse" : {
237
+ "regex" : "LanteaCraft-(?P<mc>.+?)-(?P<version>.+?).jar$"
238
+ }
239
+ },
240
+ "ModularPowersuits" : {
241
+ "function" : "CheckJenkins",
242
+ "category" : "technic-ci",
243
+ "active" : true,
244
+ "jenkins" : {
245
+ "url" : "http://build.technicpack.net/job/ModularPowersuits/lastSuccessfulBuild/api/json",
246
+ "regex" : "ModularPowersuits-(?P<dev>.+?).jar$",
247
+ "item" : 1
248
+ }
249
+ },
250
+ "Numina" : {
251
+ "function" : "CheckJenkins",
252
+ "category" : "technic-ci",
253
+ "active" : true,
254
+ "jenkins" : {
255
+ "url" : "http://build.technicpack.net/job/Numina/lastSuccessfulBuild/api/json",
256
+ "regex" : "Numina-(?P<dev>.+?).jar$",
257
+ "item" : 1
258
+ }
259
+ },
260
+ "ModularPowersuits-Addons" : {
261
+ "function" : "CheckJenkins",
262
+ "category" : "technic-ci",
263
+ "active" : false,
264
+ "jenkins" : {
265
+ "url" : "http://build.technicpack.net/job/ModularPowersuitsAddons/lastSuccessfulBuild/api/json",
266
+ "regex" : "MPSA-(?P<dev>.+?)_(.+?).jar$",
267
+ "item" : 0
268
+ }
269
+ },
270
+ "MFFSv2Classic" : {
271
+ "function" : "CheckJenkins",
272
+ "active" : false,
273
+ "jenkins" : {
274
+ "url" : "http://minalien.com:8080/job/Modular%20Forcefield%20System/lastSuccessfulBuild/api/json",
275
+ "regex" : "ModularForcefieldSystem-(?P<dev>.+?).jar$",
276
+ "item" : 0
277
+ }
278
+ },
279
+ "InventoryTweaks" : {
280
+ "function" : "CheckJenkins",
281
+ "category" : "technic-ci",
282
+ "active" : true,
283
+ "jenkins" : {
284
+ "url" : "http://build.technicpack.net/job/Inventory-Tweaks/lastSuccessfulBuild/api/json",
285
+ "regex" : "InventoryTweaks-(?P<dev>.+?).jar",
286
+ "item" : 0
287
+ }
288
+ },
289
+ "DimensionalDoors" : {
290
+ "function" : "CheckJenkins",
291
+ "category" : "technic-ci",
292
+ "active" : false,
293
+ "jenkins" : {
294
+ "url" : "http://build.technicpack.net/job/DimDoors/lastSuccessfulBuild/api/json",
295
+ "regex" : "DimensionalDoors-(?P<mc>.+?)R(?P<dev>.+?).zip$",
296
+ "item" : 0
297
+ }
298
+ },
299
+ "PowerCrystalsCore" : {
300
+ "function" : "CheckJenkins",
301
+ "category" : "technic-ci",
302
+ "active" : true,
303
+ "jenkins" : {
304
+ "url" : "http://build.technicpack.net/job/PowerCrystalsCore/lastSuccessfulBuild/api/json",
305
+ "regex" : "PowerCrystalsCore-(?P<dev>.+?).jar$",
306
+ "item" : 0
307
+ }
308
+ },
309
+ "PowerConverters" : {
310
+ "function" : "CheckJenkins",
311
+ "active" : true,
312
+ "jenkins" : {
313
+ "url" : "http://jamesmckay.id.au:8080/job/Power%20Converters/lastSuccessfulBuild/api/json",
314
+ "regex" : "PowerConverters-(?P<mc>.+?)-(?P<dev>.+?).jar",
315
+ "item" : 1
316
+ }
317
+ },
318
+ "IndustrialCraft2-EXP" : {
319
+ "function" : "CheckJenkins",
320
+ "active" : true,
321
+ "jenkins" : {
322
+ "url" : "http://jenkins.ic2.player.to/job/IC2_experimental/lastSuccessfulBuild/api/json",
323
+ "regex" : "industrialcraft-2-(?P<version>.+?)-experimental.jar",
324
+ "item" : 2
325
+ }
326
+ },
327
+ "VanityBlocks" : {
328
+ "function" : "CheckJenkins",
329
+ "active" : true,
330
+ "jenkins" : {
331
+ "url" : "http://2.iongaming.org:8080/job/VanityBlocks/lastStableBuild/api/json",
332
+ "regex" : "VanityBlocks-V(?P<mc>.+?)-(?P<dev>.+?).jar",
333
+ "item" : 0
334
+ }
335
+ },
336
+ "AdditionalBuildcraftObjects" : {
337
+ "function" : "CheckJenkins",
338
+ "active" : false,
339
+ "jenkins" : {
340
+ "url" : "https://jenkins.ra-doersch.de/job/AdditionalBuildcraftObjects/lastSuccessfulBuild/api/json",
341
+ "regex" : "buildcraft-Z-additional-buildcraft-objects-(?P<mc>.+?)-.+-(?P<dev>.+?).jar",
342
+ "item" : 0
343
+ }
344
+ },
345
+ "Galacticraft" : {
346
+ "function" : "CheckJenkins",
347
+ "active" : true,
348
+ "jenkins" : {
349
+ "url" : "http://ci.micdoodle8.com:8080/job/Galacticraft-1.7/lastSuccessfulBuild/api/json",
350
+ "regex" : "GalacticraftCore-.+?-(?P<dev>.+?).jar",
351
+ "item" : 1
352
+ }
353
+ },
354
+ "NEM-VersionChecker" : {
355
+ "function" : "CheckHTML",
356
+ "active" : true,
357
+ "html" : {
358
+ "url" : "http://files.pagefortress.com/Mods/",
359
+ "regex" : "NEM-VersionChecker-(?P<mc>.+?)-(?P<version>.+?).jar"
360
+ }
361
+ },
362
+ "BuildCraft" : {
363
+ "function" : "CheckBuildCraft",
364
+ "active" : true
365
+ },
366
+ "Artifice" : {
367
+ "function" : "CheckJenkins",
368
+ "active" : true,
369
+ "jenkins" : {
370
+ "url" : "http://76.72.175.100:8080/job/Artifice/lastSuccessfulBuild/api/json",
371
+ "regex" : "Artifice-.+?-(?P<version>.+?).jar$",
372
+ "item" : 0
373
+ }
374
+ },
375
+ "LogisticsPipes" : {
376
+ "function" : "CheckJenkins",
377
+ "active" : true,
378
+ "jenkins" : {
379
+ "url" : "http://ci.thezorro266.com/job/LogisticsPipes1.7/lastSuccessfulBuild/api/json",
380
+ "regex" : "logisticspipes-(?P<dev>.+?).jar",
381
+ "item" : 2
382
+ }
383
+ },
384
+ "Mekanism" : {
385
+ "function" : "CheckJenkins",
386
+ "active" : true,
387
+ "jenkins" : {
388
+ "url" : "http://ci.indiewikis.com:8080/job/Mekanism/lastSuccessfulBuild/api/json",
389
+ "regex" : "Mekanism-(?P<mc>.+?)-(?P<dev>.+?).jar",
390
+ "item" : 1
391
+ }
392
+ },
393
+ "Mekanism-Release" : {
394
+ "name" : "Mekanism",
395
+ "function" : "CheckJenkins",
396
+ "active" : true,
397
+ "jenkins" : {
398
+ "url" : "http://ci.indiewikis.com:8080/job/Mekanism/Recommended/api/json",
399
+ "regex" : "Mekanism-(?P<mc>.+?)-(?P<version>.+?).jar",
400
+ "item" : 1
401
+ }
402
+ },
403
+ "CodeChickenCore" : {
404
+ "function" : "CheckChickenBones",
405
+ "category" : "cb",
406
+ "active" : true
407
+ },
408
+ "ChickenChunks" : {
409
+ "function" : "CheckChickenBones",
410
+ "category" : "cb",
411
+ "active" : true
412
+ },
413
+ "NotEnoughItems" : {
414
+ "function" : "CheckChickenBones",
415
+ "category" : "cb",
416
+ "active" : true
417
+ },
418
+ "EnderStorage" : {
419
+ "function" : "CheckChickenBones",
420
+ "category" : "cb",
421
+ "active" : true
422
+ },
423
+ "Translocator" : {
424
+ "function" : "CheckChickenBones",
425
+ "category" : "cb",
426
+ "active" : true
427
+ },
428
+ "WR-CBE" : {
429
+ "function" : "CheckChickenBones",
430
+ "category" : "cb",
431
+ "active" : true
432
+ },
433
+ "TinkersConstruct" : {
434
+ "function" : "CheckCurse",
435
+ "category" : "mdiyo",
436
+ "active" : true,
437
+ "curse" : {
438
+ "name" : "tinkers-construct",
439
+ "regex" : "TConstruct-(?P<mc>.+?)-(?P<version>.+?).jar"
440
+ }
441
+ },
442
+ "Tinkers'Mechworks" : {
443
+ "function" : "CheckCurse",
444
+ "category" : "mdiyo",
445
+ "active" : true,
446
+ "curse" : {
447
+ "name" : "tinkers-mechworks",
448
+ "regex" : "TMechworks-(?P<mc>.+?)-(?P<version>.+?).jar"
449
+ }
450
+ },
451
+ "AppliedEnergistics" : {
452
+ "function" : "CheckAE",
453
+ "active" : false
454
+ },
455
+ "AppliedEnergistics2" : {
456
+ "function" : "CheckAE2",
457
+ "active" : true
458
+ },
459
+ "TextFormatting" : {
460
+ "function" : "CheckSpacechase",
461
+ "category" : "sc0",
462
+ "active" : true
463
+ },
464
+ "SurvivalWings" : {
465
+ "function" : "CheckSpacechase",
466
+ "category" : "sc0",
467
+ "active" : true
468
+ },
469
+ "BiomeWand" : {
470
+ "function" : "CheckSpacechase",
471
+ "category" : "sc0",
472
+ "active" : true
473
+ },
474
+ "ToggleSpawners" : {
475
+ "function" : "CheckSpacechase",
476
+ "category" : "sc0",
477
+ "active" : true
478
+ },
479
+ "UsefulPets" : {
480
+ "function" : "CheckSpacechase",
481
+ "category" : "sc0",
482
+ "active" : true
483
+ },
484
+ "SpaceCore" : {
485
+ "function" : "CheckSpacechase",
486
+ "category" : "sc0",
487
+ "active" : true
488
+ },
489
+ "ComponentEquipment" : {
490
+ "function" : "CheckSpacechase",
491
+ "category" : "sc0",
492
+ "active" : true
493
+ },
494
+ "UsefulPetsAddon_PainterlyTextures" : {
495
+ "function" : "CheckSpacechase",
496
+ "category" : "sc0",
497
+ "active" : true
498
+ },
499
+ "EnderTech-Drayshak" : {
500
+ "function" : "CheckCurse",
501
+ "category" : "drayshak",
502
+ "active" : true,
503
+ "curse" : {
504
+ "regex" : "EnderTech-(?P<mc>.+?)-(?P<version>.+?).jar",
505
+ "id" : "223428",
506
+ "name" : "EnderTech"
507
+ }
508
+ },
509
+ "BloodMagic" : {
510
+ "function" : "CheckCurse",
511
+ "active" : true,
512
+ "curse" : {
513
+ "regex" : "BloodMagic-(?P<mc>.+?)-(?P<version>.+?)-.+?.jar",
514
+ "id" : "224791",
515
+ "name" : "blood-magic"
516
+ }
517
+ },
518
+ "CreeperCollateral" : {
519
+ "function" : "CheckCurse",
520
+ "category" : "den",
521
+ "active" : true,
522
+ "curse" : {
523
+ "regex" : "CreeperCollateral-\\[(?P<mc>.+?)\\](?P<version>.+?).jar",
524
+ "id" : "223801"
525
+ }
526
+ },
527
+ "INpureCore" : {
528
+ "function" : "CheckCurse",
529
+ "category" : "den",
530
+ "active" : true,
531
+ "curse" : {
532
+ "regex" : "INpureCore-\\[(?P<mc>.+?)\\](?P<version>.+?).jar",
533
+ "id" : "223792"
534
+ }
535
+ },
536
+ "denLib" : {
537
+ "function" : "CheckJenkins",
538
+ "category" : "den",
539
+ "active" : false,
540
+ "jenkins" : {
541
+ "url" : "http://denoflions.servehttp.com:8080/view/All/job/denLib%203.X/lastSuccessfulBuild/api/json",
542
+ "regex" : "denLib-(?P<mc>.+?)-(?P<version>.+?).jar",
543
+ "item" : 0
544
+ }
545
+ },
546
+ "DenPipes" : {
547
+ "function" : "CheckDropBox",
548
+ "category" : "den",
549
+ "active" : false,
550
+ "html" : {
551
+ "url" : "https://www.dropbox.com/sh/qqgsswnyxh2mq9f/KBRRnClA4f/DenPipes",
552
+ "regex" : "DenPipes-(?P<mc>.+?)-(?P<version>.+?).jar"
553
+ }
554
+ },
555
+ "DenPipesEmerald" : {
556
+ "function" : "CheckDropBox",
557
+ "category" : "den",
558
+ "active" : false,
559
+ "html" : {
560
+ "url" : "https://www.dropbox.com/sh/qqgsswnyxh2mq9f/B9lEpmV2zD/DenPipes/Addons",
561
+ "regex" : "DenPipes-Emerald-(?P<mc>.+?)-(?P<version>.+?).jar"
562
+ }
563
+ },
564
+ "GateCopy" : {
565
+ "function" : "CheckDropBox",
566
+ "category" : "den",
567
+ "active" : false,
568
+ "html" : {
569
+ "url" : "https://www.dropbox.com/sh/qqgsswnyxh2mq9f/PIj33yv4Gd/GateCopy",
570
+ "regex" : "GateCopy-(?P<mc>.+?)-(?P<version>.+?).jar"
571
+ }
572
+ },
573
+ "HDSkinsandCloaks" : {
574
+ "function" : "CheckJenkins",
575
+ "category" : "den",
576
+ "active" : false,
577
+ "jenkins" : {
578
+ "url" : "http://denoflions.servehttp.com:8080/view/All/job/HDSAC%201.6.2/lastSuccessfulBuild/api/json",
579
+ "regex" : "HDSAC-(?P<mc>.+?)-(?P<version>.+?).jar",
580
+ "item" : 0
581
+ }
582
+ },
583
+ "INpureTools" : {
584
+ "function" : "CheckDropBox",
585
+ "category" : "den",
586
+ "active" : false,
587
+ "html" : {
588
+ "url" : "https://www.dropbox.com/sh/qqgsswnyxh2mq9f/3X9h2iJEcc/INpureTools",
589
+ "regex" : "INpureTools-(?P<mc>.+?)-(?P<version>.+?).jar"
590
+ }
591
+ },
592
+ "INpureTools_CCTurtle" : {
593
+ "function" : "CheckDropBox",
594
+ "category" : "den",
595
+ "active" : false,
596
+ "html" : {
597
+ "url" : "https://www.dropbox.com/sh/qqgsswnyxh2mq9f/3pg3Hi0xaX/INpureTools/Turtles",
598
+ "regex" : "INpureTools_CCTurtle-(?P<mc>.+?)-(?P<version>.+?).jar"
599
+ }
600
+ },
601
+ "PluginsForForestry" : {
602
+ "function" : "CheckJenkins",
603
+ "category" : "den",
604
+ "active" : false,
605
+ "jenkins" : {
606
+ "url" : "http://denoflions.servehttp.com:8080/job/PluginsForForestry/lastSuccessfulBuild/api/json",
607
+ "regex" : "PluginsforForestry-(?P<mc>.+?)-(?P<version>.+?).jar",
608
+ "item" : 0
609
+ }
610
+ },
611
+ "StatusEffectHUD" : {
612
+ "function" : "CheckHTML",
613
+ "category" : "bspkrs",
614
+ "active" : true,
615
+ "html" : {
616
+ "url" : "http://bspk.rs/Minecraft/1.7.10/statusEffectHUD.version",
617
+ "regex" : "(?P<version>.+?)$"
618
+ }
619
+ },
620
+ "ArmorStatusHUD" : {
621
+ "function" : "CheckHTML",
622
+ "category" : "bspkrs",
623
+ "active" : true,
624
+ "html" : {
625
+ "url" : "http://bspk.rs/Minecraft/1.7.10/armorStatusHUD.version",
626
+ "regex" : "(?P<version>.+?)$"
627
+ }
628
+ },
629
+ "BlockBreaker" : {
630
+ "function" : "CheckHTML",
631
+ "category" : "bspkrs",
632
+ "active" : true,
633
+ "html" : {
634
+ "url" : "http://bspk.rs/Minecraft/1.6.4/blockBreakerForge.version",
635
+ "regex" : "Forge (?P<version>.+?)$"
636
+ }
637
+ },
638
+ "bspkrsCore" : {
639
+ "function" : "CheckHTML",
640
+ "category" : "bspkrs",
641
+ "active" : true,
642
+ "html" : {
643
+ "url" : "http://bspk.rs/Minecraft/1.7.10/bspkrsCore.version",
644
+ "regex" : "(?P<version>.+?)$"
645
+ }
646
+ },
647
+ "CrystalWing" : {
648
+ "function" : "CheckHTML",
649
+ "category" : "bspkrs",
650
+ "active" : true,
651
+ "html" : {
652
+ "url" : "http://bspk.rs/Minecraft/1.7.10/crystalWingForge.version",
653
+ "regex" : "(?P<version>.+?)$"
654
+ }
655
+ },
656
+ "DirectionHUD" : {
657
+ "function" : "CheckHTML",
658
+ "category" : "bspkrs",
659
+ "active" : true,
660
+ "html" : {
661
+ "url" : "http://bspk.rs/Minecraft/1.7.10/directionHUD.version",
662
+ "regex" : "(?P<version>.+?)$"
663
+ }
664
+ },
665
+ "FloatingRuins" : {
666
+ "function" : "CheckHTML",
667
+ "category" : "bspkrs",
668
+ "active" : true,
669
+ "html" : {
670
+ "url" : "http://bspk.rs/Minecraft/1.7.10/floatingRuinsForge.version",
671
+ "regex" : "(?P<version>.+?)$"
672
+ }
673
+ },
674
+ "IngameInfo" : {
675
+ "function" : "CheckHTML",
676
+ "category" : "bspkrs",
677
+ "active" : true,
678
+ "html" : {
679
+ "url" : "http://bspk.rs/Minecraft/1.6.4/ingameInfo.version",
680
+ "regex" : "ML (?P<version>.+?)$"
681
+ }
682
+ },
683
+ "StartingInventory" : {
684
+ "function" : "CheckHTML",
685
+ "category" : "bspkrs",
686
+ "active" : true,
687
+ "html" : {
688
+ "url" : "http://bspk.rs/Minecraft/1.7.10/startingInventoryForge.version",
689
+ "regex" : "(?P<version>.+?)$"
690
+ }
691
+ },
692
+ "TreeCapitator" : {
693
+ "function" : "CheckHTML",
694
+ "category" : "bspkrs",
695
+ "active" : true,
696
+ "html" : {
697
+ "url" : "http://bspk.rs/Minecraft/1.7.10/treecapitator.version",
698
+ "regex" : "(?P<version>.+?)$"
699
+ }
700
+ },
701
+ "WorldStateCheckpoints" : {
702
+ "function" : "CheckHTML",
703
+ "category" : "bspkrs",
704
+ "active" : true,
705
+ "html" : {
706
+ "url" : "http://bspk.rs/Minecraft/1.7.10/worldStateCheckpointsForge.version",
707
+ "regex" : "(?P<version>.+?)$"
708
+ }
709
+ },
710
+ "DynIMC" : {
711
+ "function" : "CheckLunatrius",
712
+ "category" : "lunatrius",
713
+ "active" : true
714
+ },
715
+ "ExtensionFixer" : {
716
+ "function" : "CheckLunatrius",
717
+ "category" : "lunatrius",
718
+ "active" : true
719
+ },
720
+ "LunatriusCore" : {
721
+ "function" : "CheckLunatrius",
722
+ "category" : "lunatrius",
723
+ "active" : true
724
+ },
725
+ "InGameInfoXML" : {
726
+ "function" : "CheckLunatrius",
727
+ "category" : "lunatrius",
728
+ "active" : true
729
+ },
730
+ "InGameModConfigs" : {
731
+ "function" : "CheckLunatrius",
732
+ "category" : "lunatrius",
733
+ "active" : true
734
+ },
735
+ "LaserLevel" : {
736
+ "function" : "CheckLunatrius",
737
+ "category" : "lunatrius",
738
+ "active" : true
739
+ },
740
+ "MonsterSpawnHighlighter" : {
741
+ "function" : "CheckLunatrius",
742
+ "category" : "lunatrius",
743
+ "active" : true
744
+ },
745
+ "Profiles" : {
746
+ "function" : "CheckLunatrius",
747
+ "category" : "lunatrius",
748
+ "active" : true
749
+ },
750
+ "Stackie" : {
751
+ "function" : "CheckLunatrius",
752
+ "category" : "lunatrius",
753
+ "active" : true
754
+ },
755
+ "Schematica" : {
756
+ "function" : "CheckLunatrius",
757
+ "category" : "lunatrius",
758
+ "active" : true
759
+ },
760
+ "BigReactors" : {
761
+ "function" : "CheckBigReactors",
762
+ "active" : true
763
+ },
764
+ "AppliedThermodynamics" : {
765
+ "function" : "CheckJenkins",
766
+ "active" : false,
767
+ "jenkins" : {
768
+ "url" : "http://themattabase.com:9090/job/Applied%20Thermodynamics/lastSuccessfulBuild/api/json",
769
+ "regex" : "apptherm-(?P<dev>.+?).jar$",
770
+ "item" : 0
771
+ }
772
+ },
773
+ "EnderIO" : {
774
+ "function" : "CheckJenkins",
775
+ "active" : false,
776
+ "jenkins" : {
777
+ "url" : "http://ci.tterrag.com/job/EnderIO/lastSuccessfulBuild/api/json",
778
+ "regex" : "EnderIO-(?P<mc>.+?)-(?P<dev>.+?).jar",
779
+ "item" : 3
780
+ }
781
+ },
782
+ "EnderIO-Release" : {
783
+ "name" : "EnderIO",
784
+ "function" : "CheckCurse",
785
+ "active" : true,
786
+ "curse" : {
787
+ "regex" : "EnderIO-(?P<mc>.+?)-(?P<version>.+?).jar",
788
+ "name" : "ender-io"
789
+ }
790
+ },
791
+ "ServerTools-BACKUP" : {
792
+ "function" : "CheckCurse",
793
+ "category" : "ServerTools",
794
+ "active" : true,
795
+ "curse" : {
796
+ "regex" : "ServerTools-BACKUP-(?P<mc>.+?)-(?P<version>.+?).jar",
797
+ "id" : "220713",
798
+ "name" : "servertools-backup"
799
+ }
800
+ },
801
+ "ServerTools-CORE" : {
802
+ "function" : "CheckCurse",
803
+ "category" : "ServerTools",
804
+ "active" : true,
805
+ "curse" : {
806
+ "regex" : "ServerTools-CORE-(?P<mc>.+?)-(?P<version>.+?).jar",
807
+ "name" : "forgeservertools"
808
+ }
809
+ },
810
+ "ServerTools-PERMISSION" : {
811
+ "function" : "CheckCurse",
812
+ "category" : "ServerTools",
813
+ "active" : true,
814
+ "curse" : {
815
+ "regex" : "ServerTools-PERMISSION-(?P<mc>.+?)-(?P<version>.+?).jar",
816
+ "id" : "220714",
817
+ "name" : "servertools-permission"
818
+ }
819
+ },
820
+ "ServerTools-TELEPORT" : {
821
+ "function" : "CheckCurse",
822
+ "category" : "ServerTools",
823
+ "active" : true,
824
+ "curse" : {
825
+ "regex" : "ServerTools-TELEPORT-(?P<mc>.+?)-(?P<version>.+?).jar",
826
+ "id" : "220715",
827
+ "name" : "servertools-teleport"
828
+ }
829
+ },
830
+ "NEIAddons" : {
831
+ "function" : "CheckJenkins",
832
+ "active" : true,
833
+ "jenkins" : {
834
+ "url" : "http://jenkins.bdew.net/job/neiaddons-1.7.10/lastSuccessfulBuild/api/json",
835
+ "regex" : "neiaddons-mc1710-(?P<dev>.+?).jar",
836
+ "item" : 0
837
+ }
838
+ },
839
+ "ExtraCells" : {
840
+ "function" : "CheckJenkins",
841
+ "active" : true,
842
+ "jenkins" : {
843
+ "url" : "http://shadowcity.net:8080/job/ecrv1/lastSuccessfulBuild/api/json",
844
+ "regex" : "ExtraCells-(?P<mc>.+?)-(?P<version>.+?).jar",
845
+ "item" : 0
846
+ }
847
+ },
848
+ "ExtraCells-dev" : {
849
+ "name" : "ExtraCells",
850
+ "function" : "CheckJenkins",
851
+ "active" : true,
852
+ "jenkins" : {
853
+ "url" : "http://shadowcity.net:8080/job/ecrv2/lastSuccessfulBuild/api/json",
854
+ "regex" : "ExtraCells-(?P<mc>.+?)-(?P<dev>.+?).jar",
855
+ "item" : 0
856
+ }
857
+ },
858
+ "SuperMassiveTech" : {
859
+ "function" : "CheckJenkins",
860
+ "active" : false,
861
+ "jenkins" : {
862
+ "url" : "http://ci.tterrag.com/job/Super%20Massive%20Tech/lastSuccessfulBuild/api/json",
863
+ "regex" : "SuperMassiveTech-MC(?P<mc>.+?)-(?P<dev>.+?).jar",
864
+ "item" : 3
865
+ }
866
+ },
867
+ "Mariculture" : {
868
+ "function" : "CheckCurse",
869
+ "active" : true,
870
+ "curse" : {
871
+ "name": "mariculture",
872
+ "regex" : "Mariculture (?P<mc>.+?) - (?P<version>.+)"
873
+ }
874
+ },
875
+ "Forestry-Release" : {
876
+ "name" : "Forestry",
877
+ "function" : "CheckJenkins",
878
+ "active" : true,
879
+ "jenkins" : {
880
+ "url" : "http://jenkins.ic2.player.to/job/Forestry/lastSuccessfulBuild/api/json",
881
+ "regex" : "forestry_(?P<mc>.+?)-(?P<version>.+?).jar",
882
+ "item" : 2
883
+ }
884
+ },
885
+ "Forestry" : {
886
+ "function" : "CheckJenkins",
887
+ "active" : true,
888
+ "jenkins" : {
889
+ "url" : "http://jenkins.ic2.player.to/job/Forestry_Dev/lastSuccessfulBuild/api/json",
890
+ "regex" : "forestry_(?P<mc>.+?)-(?P<dev>.+?)-.+?jar",
891
+ "item" : 2
892
+ }
893
+ },
894
+ "ProjectRed" : {
895
+ "function" : "CheckJenkins",
896
+ "active" : false,
897
+ "jenkins" : {
898
+ "url" : "http://ci.indiewikis.com:8080/job/Project%20Red/lastSuccessfulBuild/api/json",
899
+ "regex" : "ProjectRed-Base-(?P<mc>.+?)-(?P<dev>.+?).jar",
900
+ "item" : 0
901
+ }
902
+ },
903
+ "ProjectRed-Release" : {
904
+ "name" : "ProjectRed",
905
+ "function" : "CheckJenkins",
906
+ "active" : false,
907
+ "jenkins" : {
908
+ "url" : "http://ci.indiewikis.com:8080/job/Project%20Red/Recommended/api/json",
909
+ "regex" : "ProjectRed-Base-(?P<mc>.+?)-(?P<version>.+?).jar",
910
+ "item" : 0
911
+ }
912
+ },
913
+ "CoFHCore" : {
914
+ "function" : "CheckCurse",
915
+ "active" : true,
916
+ "curse": {
917
+ "regex" : "CoFHCore-\\[(?P<mc>.+?)\\](?P<version>.+?).jar"
918
+ }
919
+ },
920
+ "CoFHLib" : {
921
+ "function" : "CheckCurse",
922
+ "active" : true,
923
+ "curse": {
924
+ "id" : "220333",
925
+ "regex" : "CoFHLib-\\[(?P<mc>.+?)\\](?P<version>.+?).jar"
926
+ }
927
+ },
928
+ "ThermalExpansion" : {
929
+ "function" : "CheckCurse",
930
+ "active" : true,
931
+ "curse": {
932
+ "regex" : "ThermalExpansion-\\[(?P<mc>.+?)\\](?P<version>.+?).jar",
933
+ "name": "thermalexpansion"
934
+ }
935
+ },
936
+ "ThermalFoundation" : {
937
+ "function" : "CheckCurse",
938
+ "active" : true,
939
+ "curse": {
940
+ "name" : "thermal-foundation",
941
+ "id" : "222880",
942
+ "regex" : "ThermalFoundation-\\[(?P<mc>.+?)\\](?P<version>.+?).jar"
943
+ }
944
+ },
945
+ "ThermalDynamics" : {
946
+ "function" : "CheckCurse",
947
+ "active" : true,
948
+ "curse": {
949
+ "name" : "thermal-dynamics",
950
+ "id" : "227443",
951
+ "regex" : "ThermalDynamics-\\[(?P<mc>.+?)\\](?P<version>.+?).jar"
952
+ }
953
+ },
954
+ "SolarFlux" : {
955
+ "function" : "CheckCurse",
956
+ "active" : true,
957
+ "curse": {
958
+ "name" : "solar-flux",
959
+ "id" : "223548",
960
+ "regex" : "SolarFlux-.+?-(?P<version>.+?).jar"
961
+ }
962
+ },
963
+ "SimplyJetpacks" : {
964
+ "function" : "CheckCurse",
965
+ "active" : true,
966
+ "curse": {
967
+ "regex" : "SimplyJetpacks-.+?-(?P<version>.+?).jar",
968
+ "name" : "simply-jetpacks"
969
+ }
970
+ },
971
+ "Witchery" : {
972
+ "function" : "CheckCurse",
973
+ "active" : true,
974
+ "curse": {
975
+ "regex" : "-.+?-(?P<version>.+?).jar"
976
+ }
977
+ },
978
+ "AnotherOneBitestheDust" : {
979
+ "function" : "CheckCurse",
980
+ "active" : true,
981
+ "curse": {
982
+ "name" : "another-one-bites-the-dust",
983
+ "id" : "221863",
984
+ "regex" : ".+?-(?P<version>.+?).jar"
985
+ }
986
+ },
987
+ "EnchantingPlus" : {
988
+ "function" : "CheckCurse",
989
+ "active" : true,
990
+ "curse": {
991
+ "name" : "enchanting-plus",
992
+ "regex" : "-.+?-(?P<version>.+?).jar"
993
+ }
994
+ },
995
+ "Railcraft" : {
996
+ "function" : "CheckCurse",
997
+ "active" : true,
998
+ "curse": {
999
+ "name" : "railcraft",
1000
+ "regex" : ".+? (?P<version>.+?)$"
1001
+ }
1002
+ },
1003
+ "JABBA" : {
1004
+ "function" : "CheckCurse",
1005
+ "active" : true,
1006
+ "curse": {
1007
+ "regex" : ".+?-(?P<version>.+?)_.+?.jar"
1008
+ }
1009
+ },
1010
+ "Waila" : {
1011
+ "function" : "CheckCurse",
1012
+ "active" : true,
1013
+ "curse": {
1014
+ "regex" : ".+?-(?P<version>.+?)_.+?.jar"
1015
+ }
1016
+ },
1017
+ "Opis" : {
1018
+ "function" : "CheckCurse",
1019
+ "active" : true,
1020
+ "curse": {
1021
+ "regex" : ".+?-(?P<version>.+?)_.+?.jar"
1022
+ }
1023
+ },
1024
+ "MobiusCore" : {
1025
+ "function" : "CheckCurse",
1026
+ "active" : true,
1027
+ "curse": {
1028
+ "regex" : "MobiusCore-(?P<version>.+?)_.+?jar"
1029
+ }
1030
+ },
1031
+ "ModTweaker" : {
1032
+ "function" : "CheckCurse",
1033
+ "active" : true,
1034
+ "curse": {
1035
+ "id" : "220954",
1036
+ "regex" : "-.+?-(?P<version>.+?)(\\.jar)?$"
1037
+ }
1038
+ },
1039
+ "Morpheus-1.7" : {
1040
+ "name" : "Morpheus",
1041
+ "function" : "CheckJenkins",
1042
+ "active" : true,
1043
+ "jenkins" : {
1044
+ "url" : "http://jenkins.qmunity.co.uk/job/Morpheus%201.7.x/lastSuccessfulBuild/api/json",
1045
+ "regex" : "-(?P<mc>.+?)-(?P<version>.+?).jar",
1046
+ "item" : 1
1047
+ }
1048
+ },
1049
+ "Morpheus-1.8" : {
1050
+ "name" : "Morpheus",
1051
+ "function" : "CheckJenkins",
1052
+ "active" : true,
1053
+ "jenkins" : {
1054
+ "url" : "http://jenkins.qmunity.co.uk/job/Morpheus/lastSuccessfulBuild/api/json",
1055
+ "regex" : "-(?P<mc>.+?)-(?P<version>.+?).jar",
1056
+ "item" : 1
1057
+ }
1058
+ },
1059
+ "NetherOres" : {
1060
+ "function" : "CheckCurse",
1061
+ "active" : true,
1062
+ "curse" : {
1063
+ "regex" : "NetherOres-\\[(?P<mc>.+?)\\](?P<version>.+?).jar"
1064
+ }
1065
+ },
1066
+ "RedstoneArsenal" : {
1067
+ "function" : "CheckCurse",
1068
+ "active" : true,
1069
+ "curse": {
1070
+ "name" : "redstone-arsenal",
1071
+ "regex" : "RedstoneArsenal-\\[(?P<mc>.+?)\\](?P<version>.+?).jar"
1072
+ }
1073
+ },
1074
+ "BDLib" : {
1075
+ "function" : "CheckCurse",
1076
+ "active" : true,
1077
+ "curse": {
1078
+ "name" : "bdlib",
1079
+ "regex" : "-.+?-(?P<version>.+?).jar"
1080
+ }
1081
+ },
1082
+ "Gendustry" : {
1083
+ "function" : "CheckCurse",
1084
+ "active" : true,
1085
+ "curse": {
1086
+ "name" : "gendustry",
1087
+ "regex" : "-.+?-(?P<version>.+?).jar"
1088
+ }
1089
+ },
1090
+ "PressurePipes" : {
1091
+ "function" : "CheckCurse",
1092
+ "active" : true,
1093
+ "curse": {
1094
+ "name" : "pressure-pipes",
1095
+ "id" : "221214",
1096
+ "regex" : "-.+?-(?P<version>.+?).jar"
1097
+ }
1098
+ },
1099
+ "Zyin'sHUD" : {
1100
+ "function" : "CheckCurse",
1101
+ "active" : true,
1102
+ "curse": {
1103
+ "name" : "zyins-hud",
1104
+ "regex" : "-.+?-v.(?P<version>.+?).jar"
1105
+ }
1106
+ },
1107
+ "ProgressiveAutomation" : {
1108
+ "function" : "CheckCurse",
1109
+ "active" : true,
1110
+ "curse": {
1111
+ "name" : "progressive-automation-early-miner",
1112
+ "id" : "220606",
1113
+ "regex" : "-.+?-(?P<version>.+?).jar"
1114
+ }
1115
+ },
1116
+ "SimpleFluidTanks" : {
1117
+ "function" : "CheckCurse",
1118
+ "active" : true,
1119
+ "curse": {
1120
+ "name": "simplefluidtanks",
1121
+ "regex": "simplefluidtanks-(?P<mc>.+?)-(?P<version>.+?).jar"
1122
+ }
1123
+ },
1124
+ "UndergroundBiomesConstructs" : {
1125
+ "function" : "CheckCurse",
1126
+ "active" : true,
1127
+ "curse": {
1128
+ "regex" : "-.+?-(?P<version>.+?).jar"
1129
+ }
1130
+ },
1131
+ "BuildcraftAdditions" : {
1132
+ "function" : "CheckCurse",
1133
+ "active" : true,
1134
+ "curse": {
1135
+ "id" : "221014",
1136
+ "name" : "buildcraft-additions",
1137
+ "regex" : "Buildcraft Additions (?P<version>.+)"
1138
+ }
1139
+ },
1140
+ "Tubes" : {
1141
+ "function" : "CheckCurse",
1142
+ "active" : true,
1143
+ "curse": {
1144
+ "regex" : "-.+?-(?P<version>.+?).jar"
1145
+ }
1146
+ },
1147
+ "WarpBook" : {
1148
+ "function" : "CheckCurse",
1149
+ "active" : true,
1150
+ "curse": {
1151
+ "name" : "warp-book",
1152
+ "regex" : "warpbook-(?P<mc>.+?)_(?P<version>.+?).jar"
1153
+ }
1154
+ },
1155
+ "Veinminer" : {
1156
+ "function" : "CheckCurse",
1157
+ "active" : true,
1158
+ "curse": {
1159
+ "name" : "veinminer",
1160
+ "regex" : "VeinMiner (?P<version>.+) \\("
1161
+ }
1162
+ },
1163
+ "SteelIndustries" : {
1164
+ "function" : "CheckCurse",
1165
+ "active" : true,
1166
+ "curse": {
1167
+ "id" : "221363",
1168
+ "name" : "steel-industries",
1169
+ "regex" : "-.+?-(?P<version>.+?).jar"
1170
+ }
1171
+ },
1172
+ "Hydraulicraft" : {
1173
+ "function" : "CheckCurse",
1174
+ "active" : true,
1175
+ "curse": {
1176
+ "id" : "223036",
1177
+ "regex" : "-.+?-(?P<version>.+?)-universal.jar"
1178
+ }
1179
+ },
1180
+ "AetherCraft" : {
1181
+ "function" : "CheckCurse",
1182
+ "active" : true,
1183
+ "curse": {
1184
+ "name" : "aec",
1185
+ "regex" : "-.+?-(?P<version>.+?).jar"
1186
+ }
1187
+ },
1188
+ "Aquaculture" : {
1189
+ "function" : "CheckCurse",
1190
+ "active" : true,
1191
+ "curse": {
1192
+ "regex" : "-.+?-(?P<version>.+?).jar"
1193
+ }
1194
+ },
1195
+ "ExNihilo" : {
1196
+ "function" : "CheckCurse",
1197
+ "active" : true,
1198
+ "curse": {
1199
+ "name" : "ex-nihilo",
1200
+ "id" : "221696",
1201
+ "regex" : "-.+?-(?P<version>.+?).jar"
1202
+ }
1203
+ },
1204
+ "ExAliquo" : {
1205
+ "function" : "CheckCurse",
1206
+ "active" : true,
1207
+ "curse": {
1208
+ "name" : "ex-aliquo",
1209
+ "regex" : ".+?_(?P<version>.+?).zip"
1210
+ }
1211
+ },
1212
+ "Pay2Spawn" : {
1213
+ "function" : "CheckJenkins",
1214
+ "active" : true,
1215
+ "category" : "DDdev",
1216
+ "jenkins": {
1217
+ "url" : "http://jenkins.dries007.net/job/Pay2Spawn/lastSuccessfulBuild/api/json",
1218
+ "regex" : "Pay2Spawn-(?P<mc>.+?)-(?P<version>.+?).jar",
1219
+ "item" : 2
1220
+ }
1221
+ },
1222
+ "HoloInventory" : {
1223
+ "function" : "CheckJenkins",
1224
+ "active" : true,
1225
+ "category" : "DDdev",
1226
+ "jenkins": {
1227
+ "url" : "http://jenkins.dries007.net/job/HoloInventory/lastSuccessfulBuild/api/json",
1228
+ "regex" : "HoloInventory-(?P<mc>.+?)-(?P<version>.+?).jar",
1229
+ "item" : 2
1230
+ }
1231
+ },
1232
+ "PlaceableTools" : {
1233
+ "function" : "CheckJenkins",
1234
+ "active" : true,
1235
+ "category" : "DDdev",
1236
+ "jenkins": {
1237
+ "url" : "http://jenkins.dries007.net/job/PlaceableTools/lastSuccessfulBuild/api/json",
1238
+ "regex" : "PlaceableTools-(?P<mc>.+?)-(?P<version>.+?).jar",
1239
+ "item" : 2
1240
+ }
1241
+ },
1242
+ "TorchTools" : {
1243
+ "function" : "CheckJenkins",
1244
+ "active" : true,
1245
+ "category" : "DDdev",
1246
+ "jenkins": {
1247
+ "url" : "http://jenkins.dries007.net/job/TorchTools/lastSuccessfulBuild/api/json",
1248
+ "regex" : "TorchTools-(?P<mc>.+?)-(?P<version>.+?).jar",
1249
+ "item" : 2
1250
+ }
1251
+ },
1252
+ "EquivalentExchange3" :{
1253
+ "function" : "CheckHTML",
1254
+ "active" : true,
1255
+ "html": {
1256
+ "url" : "http://ee3.pahimar.com/",
1257
+ "regex" : "/all/latest/EquivalentExchange3-(?P<mc>.+?)-(?P<version>.+?).jar"
1258
+ }
1259
+ },
1260
+ "HardcoreQuestingMode" :{
1261
+ "function" : "CheckCurse",
1262
+ "active" : true,
1263
+ "curse": {
1264
+ "name" : "hardcore-questing-mode",
1265
+ "regex" : "HQM-The Journey \\((?P<version>.+?)\\).jar"
1266
+ }
1267
+ },
1268
+ "Steve'sWorkshop" :{
1269
+ "function" : "CheckCurse",
1270
+ "active" : true,
1271
+ "curse": {
1272
+ "name" : "steves-workshop",
1273
+ "id" : "223173",
1274
+ "regex" : ".+?-(?P<version>.+?).jar"
1275
+ }
1276
+ },
1277
+ "MineMenu" :{
1278
+ "function" : "CheckCurse",
1279
+ "active" : true,
1280
+ "curse": {
1281
+ "name" : "minemenu",
1282
+ "id" : "222378",
1283
+ "regex" : "-.+?-(?P<version>.+?)-universal.jar"
1284
+ }
1285
+ },
1286
+ "RemoteIO" :{
1287
+ "function" : "CheckCurse",
1288
+ "active" : true,
1289
+ "curse": {
1290
+ "name" : "remote-io",
1291
+ "regex" : "RemoteIO-.+?-(?P<version>.+)"
1292
+ }
1293
+ },
1294
+ "TooMuchTime" :{
1295
+ "function" : "CheckCurse",
1296
+ "active" : true,
1297
+ "curse": {
1298
+ "id" : "222463",
1299
+ "regex" : "-.+?-(?P<version>.+?)-universal.jar"
1300
+ }
1301
+ },
1302
+ "TooMuchLoot" :{
1303
+ "function" : "CheckCurse",
1304
+ "active" : true,
1305
+ "curse": {
1306
+ "id" : "220845",
1307
+ "regex" : "-.+?-(?P<version>.+?).jar"
1308
+ }
1309
+ },
1310
+ "TooMuchRain" :{
1311
+ "function" : "CheckCurse",
1312
+ "active" : true,
1313
+ "curse": {
1314
+ "id" : "221982",
1315
+ "regex" : "-.+?-(?P<version>.+?)-universal.jar"
1316
+ }
1317
+ },
1318
+ "Ping" :{
1319
+ "function" : "CheckCurse",
1320
+ "active" : true,
1321
+ "curse": {
1322
+ "id" : "222967",
1323
+ "regex" : "-.+?-(?P<version>.+?)-universal.jar"
1324
+ }
1325
+ },
1326
+ "miscMFRcircuits" :{
1327
+ "function" : "CheckCurse",
1328
+ "active" : true,
1329
+ "curse": {
1330
+ "id" : "223152",
1331
+ "regex" : "-.+?-(?P<version>.+?).jar"
1332
+ }
1333
+ },
1334
+ "ExtraTiC" :{
1335
+ "function" : "CheckCurse",
1336
+ "active" : true,
1337
+ "curse": {
1338
+ "regex" : "-.+?-(?P<version>.+?).jar"
1339
+ }
1340
+ },
1341
+ "Metallurgy" :{
1342
+ "function" : "CheckCurse",
1343
+ "active" : true,
1344
+ "curse": {
1345
+ "regex" : "-.+?-(?P<version>.+?).jar"
1346
+ }
1347
+ },
1348
+ "MetallurgyCore" :{
1349
+ "function" : "CheckCurse",
1350
+ "active" : true,
1351
+ "curse": {
1352
+ "name" : "metallurgy-core",
1353
+ "regex" : "-.+?-(?P<version>.+?).jar"
1354
+ }
1355
+ },
1356
+ "WeepingAngels" :{
1357
+ "function" : "CheckCurse",
1358
+ "active" : true,
1359
+ "curse": {
1360
+ "name" : "weeping-angels",
1361
+ "regex" : "-.+-(?P<version>.+?).jar"
1362
+ }
1363
+ },
1364
+ "OwnerEmitter" :{
1365
+ "function" : "CheckCurse",
1366
+ "active" : true,
1367
+ "curse": {
1368
+ "id" : "222818",
1369
+ "name" : "owner-emitter",
1370
+ "regex" : "-.+-(?P<version>.+?).jar"
1371
+ }
1372
+ },
1373
+ "Origin" :{
1374
+ "function" : "CheckCurse",
1375
+ "active" : true,
1376
+ "curse": {
1377
+ "name" : "countrygamer_core",
1378
+ "regex" : "-.+?-(?P<version>.+?).jar"
1379
+ }
1380
+ },
1381
+ "Bagginses" :{
1382
+ "function" : "CheckCurse",
1383
+ "active" : true,
1384
+ "curse": {
1385
+ "id" : "223005",
1386
+ "regex" : ".+?-(?P<version>.+?).jar"
1387
+ }
1388
+ },
1389
+ "BluePower" :{
1390
+ "function" : "CheckCurse",
1391
+ "active" : true,
1392
+ "curse": {
1393
+ "id" : "223099",
1394
+ "name" : "blue-power",
1395
+ "regex" : "-(?P<mc>.+?)-(?P<version>.+?)-universal.jar"
1396
+ }
1397
+ },
1398
+ "EiraIRC" :{
1399
+ "function" : "CheckCurse",
1400
+ "active" : true,
1401
+ "curse": {
1402
+ "regex" : "-mc(?P<mc>.+?)-v(?P<version>.+?).jar"
1403
+ }
1404
+ },
1405
+ "OpenComputers" :{
1406
+ "function" : "CheckJenkins",
1407
+ "active" : true,
1408
+ "category" : "OC",
1409
+ "jenkins": {
1410
+ "url" : "http://ci.cil.li/job/OpenComputers-1.5-MC1.7.10/lastSuccessfulBuild/api/json",
1411
+ "regex" : ".+?-MC(?P<mc>.+?)-(?P<version>.+?)-.+?.jar",
1412
+ "item" : 4
1413
+ }
1414
+ },
1415
+ "OpenComputers-Dev" :{
1416
+ "name" : "OpenComputers",
1417
+ "function" : "CheckJenkins",
1418
+ "active" : true,
1419
+ "category" : "OC",
1420
+ "jenkins": {
1421
+ "url" : "http://ci.cil.li/job/OpenComputers-dev-MC1.7.10/lastSuccessfulBuild/api/json",
1422
+ "regex" : ".+?-MC(?P<mc>.+?)-(?P<dev>.+?)-.+?.jar",
1423
+ "item" : 4
1424
+ }
1425
+ },
1426
+ "SecurityCraft" :{
1427
+ "function" : "CheckCurse",
1428
+ "active" : true,
1429
+ "curse": {
1430
+ "name" : "securitycraft-mod",
1431
+ "regex" : "SecurityCraft v(?P<version>.+?) for (?P<mc>.+?).jar"
1432
+ }
1433
+ },
1434
+ "Fabricators" :{
1435
+ "function" : "CheckCurse",
1436
+ "active" : true,
1437
+ "curse": {
1438
+ "regex" : "-.+?-(?P<version>.+?)-universal.jar"
1439
+ }
1440
+ },
1441
+ "IguanasTinkerTweaks" :{
1442
+ "function" : "CheckCurse",
1443
+ "active" : true,
1444
+ "curse": {
1445
+ "id" : "223248",
1446
+ "name" : "iguanas-tinker-tweaks",
1447
+ "regex" : "-.+?-(?P<version>.+?).jar"
1448
+ }
1449
+ },
1450
+ "GravestoneMod" :{
1451
+ "function" : "CheckCurse",
1452
+ "active" : true,
1453
+ "curse": {
1454
+ "name" : "gravestone_mod",
1455
+ "regex" : "GraveStone (?P<version>.+?).jar"
1456
+ }
1457
+ },
1458
+ "Natura" :{
1459
+ "function" : "CheckCurse",
1460
+ "active" : true,
1461
+ "curse": {
1462
+ "regex" : "-.+?-(?P<version>.+?).jar"
1463
+ }
1464
+ },
1465
+ "TiCTooltips" :{
1466
+ "function" : "CheckCurse",
1467
+ "active" : true,
1468
+ "curse": {
1469
+ "name" : "tic-tooltips",
1470
+ "regex" : "-.+?-(?P<version>.+?).jar"
1471
+ }
1472
+ },
1473
+ "TheSpiceofLife" :{
1474
+ "function" : "CheckCurse",
1475
+ "active" : true,
1476
+ "curse": {
1477
+ "id" : "220811",
1478
+ "name" : "the-spice-of-life",
1479
+ "regex" : "-.+?-(?P<version>.+?).jar"
1480
+ }
1481
+ },
1482
+ "RotatableBlocks" :{
1483
+ "function" : "CheckCurse",
1484
+ "active" : true,
1485
+ "curse": {
1486
+ "name" : "rotatable-blocks",
1487
+ "regex" : "-.+?-(?P<version>.+?).jar"
1488
+ }
1489
+ },
1490
+ "RefinedRelocation" :{
1491
+ "function" : "CheckCurse",
1492
+ "active" : true,
1493
+ "curse": {
1494
+ "name" : "refined-relocation",
1495
+ "regex" : "-.+?-(?P<version>.+?).jar"
1496
+ }
1497
+ },
1498
+ "SecretRoomsMod" : {
1499
+ "function" : "CheckMCForge2",
1500
+ "category" : "forge",
1501
+ "active" : true,
1502
+ "mcforge" : {
1503
+ "url" : "http://files.minecraftforge.net/maven/com/github/abrarsyed/secretroomsmod/promotions.json",
1504
+ "promo" : "latest",
1505
+ "promoType" : "dev"
1506
+ }
1507
+ },
1508
+ "Botania" : {
1509
+ "function" : "CheckHTML",
1510
+ "active" : true,
1511
+ "html" : {
1512
+ "url" : "https://raw.githubusercontent.com/Vazkii/Botania/master/version/1.7.10.txt",
1513
+ "regex" : "^(?P<version>[rR].+?)$"
1514
+ }
1515
+ },
1516
+ "AutoCrafter2000" : {
1517
+ "function" : "CheckJenkins",
1518
+ "active" : true,
1519
+ "category" : "DDdev",
1520
+ "jenkins": {
1521
+ "url" : "http://jenkins.dries007.net/job/AutoCrafter2000/lastSuccessfulBuild/api/json",
1522
+ "regex" : "AutoCrafter2000-(?P<mc>.+?)-(?P<version>.+?).jar",
1523
+ "item" : 2
1524
+ }
1525
+ },
1526
+ "CrayCrafting" : {
1527
+ "function" : "CheckJenkins",
1528
+ "category" : "DDdev",
1529
+ "active" : true,
1530
+ "jenkins": {
1531
+ "url" : "http://jenkins.dries007.net/job/CrayCrafting/lastSuccessfulBuild/api/json",
1532
+ "regex" : "CrayCrafting-(?P<mc>.+?)-(?P<version>.+?).jar",
1533
+ "item" : 2
1534
+ }
1535
+ },
1536
+ "D3Core" : {
1537
+ "function" : "CheckJenkins",
1538
+ "active" : true,
1539
+ "category" : "DDdev",
1540
+ "jenkins": {
1541
+ "url" : "http://jenkins.dries007.net/job/D3Core/lastSuccessfulBuild/api/json",
1542
+ "regex" : "D3Core-(?P<mc>.+?)-(?P<version>.+?).jar",
1543
+ "item" : 2
1544
+ }
1545
+ },
1546
+ "GreenThumb" : {
1547
+ "function" : "CheckJenkins",
1548
+ "active" : true,
1549
+ "category" : "DDdev",
1550
+ "jenkins": {
1551
+ "url" : "http://jenkins.dries007.net/job/GreenThumb/lastSuccessfulBuild/api/json",
1552
+ "regex" : "GreenThumb-(?P<mc>.+?)-(?P<version>.+?).jar",
1553
+ "item" : 2
1554
+ }
1555
+ },
1556
+ "Let-it-Burn" : {
1557
+ "function" : "CheckJenkins",
1558
+ "active" : true,
1559
+ "category" : "DDdev",
1560
+ "jenkins": {
1561
+ "url" : "http://jenkins.dries007.net/job/Let-it-Burn/lastSuccessfulBuild/api/json",
1562
+ "regex" : "LetItBurn-(?P<mc>.+?)-(?P<version>.+?).jar",
1563
+ "item" : 2
1564
+ }
1565
+ },
1566
+ "Lumberjack" : {
1567
+ "function" : "CheckJenkins",
1568
+ "active" : true,
1569
+ "category" : "DDdev",
1570
+ "jenkins": {
1571
+ "url" : "http://jenkins.dries007.net/job/Lumberjack/lastSuccessfulBuild/api/json",
1572
+ "regex" : "Lumberjack-(?P<mc>.+?)-(?P<version>.+?).jar",
1573
+ "item" : 2
1574
+ }
1575
+ },
1576
+ "HexWool" : {
1577
+ "function" : "CheckJenkins",
1578
+ "active" : true,
1579
+ "jenkins": {
1580
+ "url" : "http://server.techjargaming.com:8080/job/HexWool/lastSuccessfulBuild/api/json",
1581
+ "regex" : "HexWool-(?P<mc>.+?)-(?P<version>.+?).jar",
1582
+ "item" : 0
1583
+ }
1584
+ },
1585
+ "MadScience" : {
1586
+ "function" : "CheckJenkins",
1587
+ "active" : true,
1588
+ "jenkins": {
1589
+ "url" : "http://madsciencemod.com:8080/job/Mad%20Science/Release%20Version/api/json",
1590
+ "regex" : "MadScience-MC(?P<mc>.+?)-F9.11.1.964_v(?P<version>.+?)-universal.jar",
1591
+ "item" : 2
1592
+ }
1593
+ },
1594
+ "Minechem" : {
1595
+ "function" : "CheckJenkins",
1596
+ "active" : false,
1597
+ "jenkins": {
1598
+ "url" : "http://jenkins.jakimfett.com/job/Minechem%201.7%20v5/lastSuccessfulBuild/api/json",
1599
+ "regex" : "Minechem-(?P<mc>.+?)-(?P<dev>.+?).jar",
1600
+ "item" : 1
1601
+ }
1602
+ },
1603
+ "AlchemyPlusPlus" : {
1604
+ "function" : "CheckJenkins",
1605
+ "active" : true,
1606
+ "jenkins": {
1607
+ "url" : "http://jenkins.jakimfett.com/job/AlchemyPlusPlus%201.7/lastSuccessfulBuild/api/json",
1608
+ "regex" : "AlchemyPlusPlus-(?P<mc>.+?)-(?P<dev>.+?).jar",
1609
+ "item" : 0
1610
+ }
1611
+ },
1612
+ "Luppii'sLadders" :{
1613
+ "function" : "CheckCurse",
1614
+ "active" : true,
1615
+ "curse": {
1616
+ "name" : "luppiis-ladders",
1617
+ "regex" : "Ladders-(?P<version>.+?)-MC(?P<mc>.+?).jar"
1618
+
1619
+ }
1620
+ },
1621
+ "VersionChecker": {
1622
+ "function": "CheckCurse",
1623
+ "active": true,
1624
+ "curse": {
1625
+ "id": "221140",
1626
+ "name": "version-checker",
1627
+ "regex": "VersionChecker-(?P<version>.+?).jar"
1628
+ }
1629
+ },
1630
+ "FluxedTrinkets": {
1631
+ "function": "CheckCurse",
1632
+ "active": false,
1633
+ "curse": {
1634
+ "id": "224164",
1635
+ "name": "fluxed-trinkets",
1636
+ "regex" : "Fluxed Trinkets \\[(?P<version>.+?)\\]"
1637
+ }
1638
+ },
1639
+ "PneumaticCraft" : {
1640
+ "function" : "CheckCurse",
1641
+ "active" : true,
1642
+ "curse": {
1643
+ "id": "224125",
1644
+ "name": "pneumaticcraft",
1645
+ "regex" : "PneumaticCraft-(?P<mc>.+?)-(?P<version>.+?)-universal.jar"
1646
+ }
1647
+ },
1648
+ "IntelligentEnergistics": {
1649
+ "function": "CheckCurse",
1650
+ "active": false,
1651
+ "curse": {
1652
+ "id": "222848",
1653
+ "name": "intelligent-energistics",
1654
+ "regex": "IntelligentEnergistics-(?P<mc>.+?)-(?P<dev>.+?)-universal.jar"
1655
+ }
1656
+ },
1657
+ "CustomNPCs": {
1658
+ "function": "CheckCurse",
1659
+ "active": true,
1660
+ "curse": {
1661
+ "id": "221826",
1662
+ "name": "custom-npcs",
1663
+ "regex": "CustomNPCs_(?P<version>.+?).jar"
1664
+ }
1665
+ },
1666
+ "MinecraftComesAlive": {
1667
+ "function": "CheckCurse",
1668
+ "active": true,
1669
+ "curse": {
1670
+ "name": "mca",
1671
+ "regex": "MCA-(?P<mc>.+?)-(?P<version>.+?)-universal.jar"
1672
+ }
1673
+ },
1674
+ "TheMistsofRioV": {
1675
+ "function": "CheckCurse",
1676
+ "active": true,
1677
+ "curse": {
1678
+ "id": "222477",
1679
+ "name": "the-mists-of-riov",
1680
+ "regex": "The Mists of RioV - (?P<version>.+?).jar"
1681
+ }
1682
+ },
1683
+ "DualHotbar": {
1684
+ "function": "CheckCurse",
1685
+ "active": true,
1686
+ "curse": {
1687
+ "id": "223272",
1688
+ "name": "dual-hotbar",
1689
+ "regex": "dualhotbar-(?P<mc>.+?)-(?P<version>.+?).jar"
1690
+ }
1691
+ },
1692
+ "ThaumicWarden": {
1693
+ "function": "CheckCurse",
1694
+ "active": true,
1695
+ "curse": {
1696
+ "name": "thaumic-warden",
1697
+ "regex": "TWarden-(?P<version>.+?).jar"
1698
+ }
1699
+ },
1700
+ "AlchemicalBling": {
1701
+ "function": "CheckCurse",
1702
+ "active": true,
1703
+ "curse": {
1704
+ "id": "221980",
1705
+ "name": "alchemical-bling",
1706
+ "regex": "AlchemicalBling-(?P<version>.+?)-universal.jar"
1707
+ }
1708
+ },
1709
+ "Atum": {
1710
+ "function": "CheckCurse",
1711
+ "active": true,
1712
+ "curse": {
1713
+ "name": "atum",
1714
+ "regex": "Atum-(?P<mc>.+?)-(?P<version>.+?).jar"
1715
+ }
1716
+ },
1717
+ "Automagy": {
1718
+ "function": "CheckCurse",
1719
+ "active": true,
1720
+ "curse": {
1721
+ "id": "222153",
1722
+ "name": "automagy",
1723
+ "regex": "^v(?P<version>[0-9]+(\\.[0-9]+)*)$"
1724
+ }
1725
+ },
1726
+ "Freedom": {
1727
+ "function": "CheckCurse",
1728
+ "active": true,
1729
+ "curse": {
1730
+ "id": "222395",
1731
+ "name": "freedom",
1732
+ "regex": "Freedom-(?P<mc>.+?)-(?P<version>.+?).jar"
1733
+ }
1734
+ },
1735
+ "Santa'sToys": {
1736
+ "function": "CheckCurse",
1737
+ "active": false,
1738
+ "curse": {
1739
+ "id": "222682",
1740
+ "name": "santas-toys",
1741
+ "regex": "-.+?-(?P<version>.+?).jar"
1742
+ }
1743
+ },
1744
+ "SparklyPants": {
1745
+ "function": "CheckCurse",
1746
+ "active": false,
1747
+ "curse": {
1748
+ "id": "222513",
1749
+ "name": "sparkly-pants",
1750
+ "regex": "-.+?-(?P<version>.+?).jar"
1751
+ }
1752
+ },
1753
+ "Santa'sDecor": {
1754
+ "function": "CheckCurse",
1755
+ "active": true,
1756
+ "curse": {
1757
+ "id": "222394",
1758
+ "name": "santas-decor",
1759
+ "regex": "Santa'sDecor-(?P<mc>.+?)-(?P<version>.+?).jar"
1760
+ }
1761
+ },
1762
+ "CraftGuide": {
1763
+ "function": "CheckCurse",
1764
+ "active": true,
1765
+ "curse": {
1766
+ "name": "craftguide",
1767
+ "regex": "CraftGuide-(?P<version>.+?).zip"
1768
+ }
1769
+ },
1770
+ "DarkMenagerie": {
1771
+ "function": "CheckCurse",
1772
+ "active": false,
1773
+ "curse": {
1774
+ "id": "224039",
1775
+ "name": "dark-menagerie",
1776
+ "regex": "dark_menagerie-(?P<mc>.+?)-(?P<version>.+?).jar"
1777
+ }
1778
+ },
1779
+ "DonutCraft": {
1780
+ "function": "CheckCurse",
1781
+ "active": true,
1782
+ "curse": {
1783
+ "id": "223352",
1784
+ "name": "donutcraft",
1785
+ "regex": "DonutCraft-(?P<version>.+?).jar"
1786
+ }
1787
+ },
1788
+ "DraconicEvolution": {
1789
+ "function": "CheckCurse",
1790
+ "active": true,
1791
+ "curse": {
1792
+ "id": "223565",
1793
+ "name": "draconic-evolution",
1794
+ "regex": "Draconic-Evolution-(?P<mc>.+?)-v(?P<version>.+?).jar"
1795
+ }
1796
+ },
1797
+ "ElementalCreepers": {
1798
+ "function": "CheckCurse",
1799
+ "active": true,
1800
+ "curse": {
1801
+ "name": "elemental-creepers",
1802
+ "regex": "Elemental Creepers v(?P<version>.+)"
1803
+ }
1804
+ },
1805
+ "ElementalMelons": {
1806
+ "function": "CheckCurse",
1807
+ "active": true,
1808
+ "curse": {
1809
+ "id": "222196",
1810
+ "name": "elemental-melons",
1811
+ "regex": "ElementalMelons-(?P<mc>.+?)-(?P<version>.+?).jar"
1812
+ }
1813
+ },
1814
+ "EvilCraft": {
1815
+ "function": "CheckGitHubRelease",
1816
+ "active": true,
1817
+ "github": {
1818
+ "repo": "rubensworks/EvilCraft",
1819
+ "regex": "EvilCraft-(?P<mc>.+?)-(?P<version>.+?)\\.jar"
1820
+ }
1821
+ },
1822
+ "JourneyMap": {
1823
+ "function": "CheckCurse",
1824
+ "active": true,
1825
+ "curse": {
1826
+ "name": "journeymap-32274",
1827
+ "regex": "JourneyMap(?P<version>.+?)_.+?_MC(?P<mc>.+?).jar"
1828
+ }
1829
+ },
1830
+ "Thaumcraft": {
1831
+ "function": "CheckCurse",
1832
+ "active": true,
1833
+ "curse": {
1834
+ "id": "223628",
1835
+ "name": "thaumcraft",
1836
+ "regex": "Thaumcraft-(?P<mc>.+?)-(?P<version>.+?).jar"
1837
+ }
1838
+ },
1839
+ "ThaumicTinkerer": {
1840
+ "function": "CheckCurse",
1841
+ "active": false,
1842
+ "curse": {
1843
+ "name": "thaumic-tinkerer",
1844
+ "regex": "ThaumicTinkerer-.+?-(?P<mc>.+?)-(?P<version>.+?).jar"
1845
+ }
1846
+ },
1847
+ "MorePistons-JiraiyahVersion": {
1848
+ "function": "CheckCurse",
1849
+ "active": true,
1850
+ "curse": {
1851
+ "id": "224220",
1852
+ "name": "more-pistons-jiraiyah-version",
1853
+ "regex": "MorePistons-(?P<mc>.+?)-(?P<version>.+?).jar"
1854
+ }
1855
+ },
1856
+ "RoguelikeDungeons": {
1857
+ "function": "CheckCurse",
1858
+ "active": true,
1859
+ "curse": {
1860
+ "id": "221585",
1861
+ "name": "roguelike-dungeons",
1862
+ "regex": "roguelike-(?P<mc>.+?)-(?P<version>.+?).jar"
1863
+ }
1864
+ },
1865
+ "NotEnoughKeys" : {
1866
+ "function": "CheckCurse",
1867
+ "active": true,
1868
+ "curse": {
1869
+ "id": "224614",
1870
+ "name": "notenoughkeys",
1871
+ "regex": "NotEnoughKeys-(?P<mc>.+?)-(?P<version>.+?).jar"
1872
+ }
1873
+ },
1874
+ "Steve'sAddons" : {
1875
+ "function" : "CheckCurse",
1876
+ "active" : true,
1877
+ "curse" : {
1878
+ "name" : "steves-addons",
1879
+ "id" : "226067",
1880
+ "regex" : "StevesAddons-(?P<mc>.+?)-(?P<version>.+?).jar"
1881
+ }
1882
+ },
1883
+ "Mystcraft": {
1884
+ "function": "CheckCurse",
1885
+ "active": true,
1886
+ "curse": {
1887
+ "id": "224599",
1888
+ "name": "mystcraft",
1889
+ "regex": "mystcraft-(?P<mc>.+?)-(?P<version>.+?).jar"
1890
+ }
1891
+ },
1892
+ "ProjectE" : {
1893
+ "function": "CheckCurse",
1894
+ "active": true,
1895
+ "curse": {
1896
+ "id": "226410",
1897
+ "name": "projecte",
1898
+ "regex": ".+?-.+?-(?P<version>.+?).jar"
1899
+ }
1900
+ },
1901
+ "Flaxbeard'sSteamPower": {
1902
+ "function": "CheckCurse",
1903
+ "active": true,
1904
+ "curse": {
1905
+ "id": "224867",
1906
+ "name": "flaxbeards-steam-power",
1907
+ "regex": "Flaxbeard'sSteamPower-(?P<mc>.+?)-(?P<version>.+?).jar"
1908
+ }
1909
+ },
1910
+ "MalisisCore": {
1911
+ "function": "CheckCurse",
1912
+ "active": true,
1913
+ "curse": {
1914
+ "id": "223896",
1915
+ "name": "malisiscore",
1916
+ "regex": "malisiscore-(?P<mc>.+?)-(?P<version>.+).jar"
1917
+ }
1918
+ },
1919
+ "MalisisDoors": {
1920
+ "function": "CheckCurse",
1921
+ "active": true,
1922
+ "curse": {
1923
+ "id": "223891",
1924
+ "name": "malisis-doors",
1925
+ "regex": "malisisdoors-(?P<mc>.+?)-(?P<version>.+).jar"
1926
+ }
1927
+ },
1928
+ "FloodLights": {
1929
+ "function": "CheckCurse",
1930
+ "active": true,
1931
+ "curse": {
1932
+ "id": "224728",
1933
+ "name": "floodlights",
1934
+ "regex": "FloodLights-(?P<mc>.+?)-(?P<version>.+).jar"
1935
+ }
1936
+ },
1937
+ "NearbyMobFinder": {
1938
+ "function": "CheckCurse",
1939
+ "active": true,
1940
+ "curse": {
1941
+ "id": "221985",
1942
+ "name": "nearby-mob-finder",
1943
+ "regex": "Nearby Mob Finder (?P<version>.+)"
1944
+ }
1945
+ },
1946
+ "ExtraUtilities": {
1947
+ "function": "CheckCurse",
1948
+ "active": true,
1949
+ "curse": {
1950
+ "id": "225561",
1951
+ "name": "extra-utilities",
1952
+ "regex": "Extra Utilities (?P<version>.+)"
1953
+ }
1954
+ },
1955
+ "BetterStorage": {
1956
+ "function": "CheckGitHubRelease",
1957
+ "active": true,
1958
+ "github": {
1959
+ "repo": "copygirl/BetterStorage",
1960
+ "regex": "BetterStorage-(?P<mc>.+?)-(?P<version>.+?)\\.jar"
1961
+ }
1962
+ },
1963
+ "BetterStorage-dev": {
1964
+ "name": "BetterStorage",
1965
+ "function": "CheckJenkins",
1966
+ "active": false,
1967
+ "jenkins": {
1968
+ "url": "http://jenkins.rx14.co.uk/job/copygirl/job/BetterStorage/lastSuccessfulBuild/api/json",
1969
+ "regex": "^BetterStorage-(?P<mc>.+)-(?P<dev>.+)\\.jar$",
1970
+ "item": 3
1971
+ }
1972
+ },
1973
+ "PoorOres": {
1974
+ "function": "CheckCurse",
1975
+ "active": true,
1976
+ "curse": {
1977
+ "id": "224492",
1978
+ "regex": "PoorOres (?P<version>.+)"
1979
+ }
1980
+ },
1981
+ "sprinkles_for_vanilla": {
1982
+ "function": "CheckCurse",
1983
+ "active": true,
1984
+ "curse": {
1985
+ "id": "226309",
1986
+ "name": "sprinkles_for_vanilla",
1987
+ "regex": "sprinkles_for_vanilla (?P<version>.+)"
1988
+ }
1989
+ },
1990
+ "Minechem-curse": {
1991
+ "name" : "Minechem",
1992
+ "function": "CheckCurse",
1993
+ "active": true,
1994
+ "curse": {
1995
+ "name": "minechem-5",
1996
+ "regex": "Minechem v(?P<version>.+) for (?P<mc>.+)"
1997
+ }
1998
+ },
1999
+ "RFTools": {
2000
+ "name" : "RFTools",
2001
+ "function": "CheckCurse",
2002
+ "active": true,
2003
+ "curse": {
2004
+ "id": "224641",
2005
+ "name": "rftools",
2006
+ "regex": "rftools-(?P<version>.+).jar"
2007
+ }
2008
+ },
2009
+ "LaunchGui-1.7": {
2010
+ "name": "LaunchGui",
2011
+ "function": "CheckJenkins",
2012
+ "category" : "Tehnut",
2013
+ "active": true,
2014
+ "jenkins": {
2015
+ "url": "http://tehnut.info/jenkins/job/LaunchGUI-1.7.10/lastSuccessfulBuild/api/json",
2016
+ "regex": "LaunchGui-(?P<mc>.+?)-(?P<version>.+?)-client.jar",
2017
+ "item": 0
2018
+ }
2019
+ },
2020
+ "LaunchGui-1.8": {
2021
+ "name": "LaunchGui",
2022
+ "function": "CheckJenkins",
2023
+ "active": true,
2024
+ "category" : "Tehnut",
2025
+ "jenkins": {
2026
+ "url": "http://tehnut.info/jenkins/job/LaunchGUI-1.8/lastSuccessfulBuild/api/json",
2027
+ "regex": "LaunchGui-(?P<mc>.+?)-(?P<version>.+?)-client.jar",
2028
+ "item": 0
2029
+ }
2030
+ },
2031
+ "LoaderList": {
2032
+ "name": "LoaderList",
2033
+ "function": "CheckJenkins",
2034
+ "active": true,
2035
+ "category" : "Tehnut",
2036
+ "jenkins": {
2037
+ "url": "http://tehnut.info/jenkins/job/LoaderList/lastSuccessfulBuild/api/json",
2038
+ "regex": "LoaderList-(?P<mc>.+?)-(?P<version>.+?)-universal.jar",
2039
+ "item": 3
2040
+ }
2041
+ },
2042
+ "SunStroke": {
2043
+ "name": "SunStroke",
2044
+ "function": "CheckJenkins",
2045
+ "active": true,
2046
+ "category" : "Tehnut",
2047
+ "jenkins": {
2048
+ "url": "http://tehnut.info/jenkins/job/SunStroke/lastSuccessfulBuild/api/json",
2049
+ "regex": "SunStroke-(?P<mc>.+?)-(?P<version>.+?).jar",
2050
+ "item": 3
2051
+ }
2052
+ },
2053
+ "MoreChisels": {
2054
+ "name": "MoreChisels",
2055
+ "function": "CheckJenkins",
2056
+ "active": true,
2057
+ "category" : "Tehnut",
2058
+ "jenkins": {
2059
+ "url": "http://tehnut.info/jenkins/job/MoreChisels/lastSuccessfulBuild/api/json",
2060
+ "regex": "MoreChisels-(?P<mc>.+?)-(?P<version>.+?).jar",
2061
+ "item": 3
2062
+ }
2063
+ },
2064
+ "ChiselTones": {
2065
+ "name": "ChiselTones",
2066
+ "function": "CheckJenkins",
2067
+ "active": true,
2068
+ "category" : "Tehnut",
2069
+ "jenkins": {
2070
+ "url": "http://tehnut.info/jenkins/job/ChiselTones/lastSuccessfulBuild/api/json",
2071
+ "regex": "ChiselTones-(?P<mc>.+?)-(?P<version>.+?).jar",
2072
+ "item": 3
2073
+ }
2074
+ },
2075
+ "CookieCore": {
2076
+ "name": "CookieCore",
2077
+ "function": "CheckJenkins",
2078
+ "active": true,
2079
+ "category" : "Tehnut",
2080
+ "jenkins": {
2081
+ "url": "http://tehnut.info/jenkins/job/CookieCore/lastSuccessfulBuild/api/json",
2082
+ "regex": "CookieCore-(?P<mc>.+?)-(?P<version>.+?).jar",
2083
+ "item": 3
2084
+ }
2085
+ },
2086
+ "ModularArmour": {
2087
+ "name": "ModularArmour",
2088
+ "function": "CheckJenkins",
2089
+ "active": true,
2090
+ "category" : "Tehnut",
2091
+ "jenkins": {
2092
+ "url": "http://tehnut.info/jenkins/job/ModularArmour/lastSuccessfulBuild/api/json",
2093
+ "regex": "ModularArmour-(?P<mc>.+?)-(?P<version>.+?).jar",
2094
+ "item": 3
2095
+ }
2096
+ },
2097
+ "Sanguimancy": {
2098
+ "name": "Sanguimancy",
2099
+ "function": "CheckJenkins",
2100
+ "active": true,
2101
+ "category" : "Tehnut",
2102
+ "jenkins": {
2103
+ "url": "http://tehnut.info/jenkins/job/Sanguimancy/lastSuccessfulBuild/api/json",
2104
+ "regex": "Sanguimancy-(?P<mc>.+?)-(?P<dev>.+?).jar",
2105
+ "item": 3
2106
+ }
2107
+ },
2108
+ "TSteelworks-Ephys-dev": {
2109
+ "name": "TinkersSteelworks-Ephys",
2110
+ "function": "CheckJenkins",
2111
+ "active": true,
2112
+ "category" : "Tehnut",
2113
+ "jenkins": {
2114
+ "url": "http://tehnut.info/jenkins/job/TSteelworks/lastSuccessfulBuild/api/json",
2115
+ "regex": "TSteelworks-(?P<mc>.+?)-(?P<dev>.+?).jar",
2116
+ "item": 3
2117
+ }
2118
+ },
2119
+ "TSteelworks-Ephys": {
2120
+ "name": "TinkersSteelworks-Ephys",
2121
+ "function": "CheckGitHubRelease",
2122
+ "active": true,
2123
+ "github": {
2124
+ "repo": "Ephys/TinkersSteelworks",
2125
+ "regex": "TSteelworks-(?P<mc>.+?)-(?P<dev>.+?).jar"
2126
+ }
2127
+ },
2128
+ "AdvancedMachines": {
2129
+ "function": "CheckAtomicStryker",
2130
+ "active": true,
2131
+ "category" : "AtomicStryker",
2132
+ "SinZationalHax": {
2133
+ "id": "atomicstryker"
2134
+ },
2135
+ "AtomicStryker": {
2136
+ "name" : "AdvancedMachines"
2137
+ }
2138
+ },
2139
+ "BattleTowers": {
2140
+ "function": "CheckAtomicStryker",
2141
+ "active": true,
2142
+ "category" : "AtomicStryker",
2143
+ "SinZationalHax": {
2144
+ "id": "atomicstryker"
2145
+ },
2146
+ "AtomicStryker": {
2147
+ "name" : "BattleTowers"
2148
+ }
2149
+ },
2150
+ "DynamicLights": {
2151
+ "function": "CheckAtomicStryker",
2152
+ "active": true,
2153
+ "category" : "AtomicStryker",
2154
+ "SinZationalHax": {
2155
+ "id": "atomicstryker"
2156
+ },
2157
+ "AtomicStryker": {
2158
+ "name" : "DynamicLights"
2159
+ }
2160
+ },
2161
+ "FinderCompass": {
2162
+ "function": "CheckAtomicStryker",
2163
+ "active": true,
2164
+ "category" : "AtomicStryker",
2165
+ "SinZationalHax": {
2166
+ "id": "atomicstryker"
2167
+ },
2168
+ "AtomicStryker": {
2169
+ "name" : "AS_FinderCompass"
2170
+ }
2171
+ },
2172
+ "InfernalMobs": {
2173
+ "function": "CheckAtomicStryker",
2174
+ "active": true,
2175
+ "category" : "AtomicStryker",
2176
+ "SinZationalHax": {
2177
+ "id": "atomicstryker"
2178
+ },
2179
+ "AtomicStryker": {
2180
+ "name" : "InfernalMobs"
2181
+ }
2182
+ },
2183
+ "Kenshiro": {
2184
+ "function": "CheckAtomicStryker",
2185
+ "active": true,
2186
+ "category" : "AtomicStryker",
2187
+ "SinZationalHax": {
2188
+ "id": "atomicstryker"
2189
+ },
2190
+ "AtomicStryker": {
2191
+ "name" : "AS_Kenshiro"
2192
+ }
2193
+ },
2194
+ "MagicYarn": {
2195
+ "function": "CheckAtomicStryker",
2196
+ "active": true,
2197
+ "category" : "AtomicStryker",
2198
+ "SinZationalHax": {
2199
+ "id": "atomicstryker"
2200
+ },
2201
+ "AtomicStryker": {
2202
+ "name" : "MagicYarn"
2203
+ }
2204
+ },
2205
+ "Minions": {
2206
+ "function": "CheckAtomicStryker",
2207
+ "active": true,
2208
+ "category" : "AtomicStryker",
2209
+ "SinZationalHax": {
2210
+ "id": "atomicstryker"
2211
+ },
2212
+ "AtomicStryker": {
2213
+ "name" : "AS_Minions"
2214
+ }
2215
+ },
2216
+ "MultiMine": {
2217
+ "function": "CheckAtomicStryker",
2218
+ "active": true,
2219
+ "category" : "AtomicStryker",
2220
+ "SinZationalHax": {
2221
+ "id": "atomicstryker"
2222
+ },
2223
+ "AtomicStryker": {
2224
+ "name" : "AS_MultiMine"
2225
+ }
2226
+ },
2227
+ "PetBat": {
2228
+ "function": "CheckAtomicStryker",
2229
+ "active": true,
2230
+ "category" : "AtomicStryker",
2231
+ "SinZationalHax": {
2232
+ "id": "atomicstryker"
2233
+ },
2234
+ "AtomicStryker": {
2235
+ "name" : "PetBat"
2236
+ }
2237
+ },
2238
+ "RopesPlus": {
2239
+ "function": "CheckAtomicStryker",
2240
+ "active": true,
2241
+ "category" : "AtomicStryker",
2242
+ "SinZationalHax": {
2243
+ "id": "atomicstryker"
2244
+ },
2245
+ "AtomicStryker": {
2246
+ "name" : "RopesPlus"
2247
+ }
2248
+ },
2249
+ "Ruins": {
2250
+ "function": "CheckAtomicStryker",
2251
+ "active": true,
2252
+ "category" : "AtomicStryker",
2253
+ "SinZationalHax": {
2254
+ "id": "atomicstryker"
2255
+ },
2256
+ "AtomicStryker": {
2257
+ "name" : "AS_Ruins"
2258
+ }
2259
+ },
2260
+ "SimplyHaxFlying": {
2261
+ "function": "CheckAtomicStryker",
2262
+ "active": true,
2263
+ "category" : "AtomicStryker",
2264
+ "SinZationalHax": {
2265
+ "id": "atomicstryker"
2266
+ },
2267
+ "AtomicStryker": {
2268
+ "name" : "SimplyHaxFlying"
2269
+ }
2270
+ },
2271
+ "Necromancy": {
2272
+ "function": "CheckAtomicStryker",
2273
+ "active": true,
2274
+ "category" : "AtomicStryker",
2275
+ "SinZationalHax": {
2276
+ "id": "atomicstryker"
2277
+ },
2278
+ "AtomicStryker": {
2279
+ "name" : "Necromancy"
2280
+ }
2281
+ },
2282
+ "DPU": {
2283
+ "function": "CheckCurse",
2284
+ "active": true,
2285
+ "curse": {
2286
+ "id": "225343",
2287
+ "name": "dont-pick-up",
2288
+ "regex": "DPU (?P<version>.+)"
2289
+ }
2290
+ },
2291
+ "Chisel-2": {
2292
+ "function": "CheckCurse",
2293
+ "active": true,
2294
+ "curse": {
2295
+ "id": "225236",
2296
+ "name": "chisel-2",
2297
+ "regex": "Chisel 2 - (?P<version>.+)"
2298
+ }
2299
+ },
2300
+ "ANSSRPG": {
2301
+ "function": "CheckGitHubRelease",
2302
+ "active": true,
2303
+ "github": {
2304
+ "repo": "disconsented/ANSSRPG",
2305
+ "regex": "ANSSRPG-(?P<mc>.+?)-(?P<dev>.+?)-.+?.jar"
2306
+ }
2307
+ },
2308
+ "Mine&BladeBattleGear2-Bullseye": {
2309
+ "function": "CheckCurse",
2310
+ "active": true,
2311
+ "curse": {
2312
+ "name": "mb-battlegear-2",
2313
+ "regex": "-.+? - (?P<version>.+)"
2314
+ }
2315
+ },
2316
+ "AnimationAPI": {
2317
+ "function": "CheckCurse",
2318
+ "active": true,
2319
+ "curse": {
2320
+ "name": "animationapi",
2321
+ "regex": ".+? v(?P<version>.+) .+?"
2322
+ }
2323
+ },
2324
+ "WorldEdit": {
2325
+ "function": "CheckCurse",
2326
+ "active": true,
2327
+ "curse": {
2328
+ "id": "225608",
2329
+ "name": "worldedit",
2330
+ "regex": "WorldEdit (?P<version>.+) \\("
2331
+ }
2332
+ },
2333
+ "Binnie'sMods": {
2334
+ "function": "CheckCurse",
2335
+ "active": true,
2336
+ "curse": {
2337
+ "id": "223525",
2338
+ "name": "binnies-mods",
2339
+ "regex": "-.+?-(?P<version>.+?).jar"
2340
+ }
2341
+ },
2342
+ "WhatAreWeLookingAt": {
2343
+ "function": "CheckCurse",
2344
+ "active": true,
2345
+ "curse": {
2346
+ "id": "224712",
2347
+ "name": "wawla-what-are-we-looking-at",
2348
+ "regex": "-(?P<version>.+?)_.+?.jar"
2349
+ }
2350
+ },
2351
+ "Dimensional-Pockets": {
2352
+ "function": "CheckCurse",
2353
+ "active": true,
2354
+ "curse": {
2355
+ "id": "226990",
2356
+ "name": "dimensional-pockets",
2357
+ "regex": "Dimensional Pockets (?P<version>.+)"
2358
+ }
2359
+ },
2360
+ "EnderZoo": {
2361
+ "function": "CheckCurse",
2362
+ "active": true,
2363
+ "curse": {
2364
+ "id": "225247",
2365
+ "name": "ender-zoo",
2366
+ "regex": ".+?-(?P<mc>.+?)-(?P<version>.+?).jar"
2367
+ }
2368
+ },
2369
+ "EnderZoo-dev": {
2370
+ "name": "EnderZoo",
2371
+ "function": "CheckJenkins",
2372
+ "active": true,
2373
+ "category" : "tterrag",
2374
+ "jenkins": {
2375
+ "url": "http://ci.tterrag.com/job/Ender%20Zoo/lastSuccessfulBuild/api/json",
2376
+ "regex": ".+?-(?P<mc>.+?)-(?P<dev>.+?).jar",
2377
+ "item": 3
2378
+ }
2379
+ },
2380
+ "Flamingo": {
2381
+ "function": "CheckGitHubRelease",
2382
+ "active": true,
2383
+ "github": {
2384
+ "repo": "Vexatos/Flamingo",
2385
+ "regex": "Flamingo-(?P<mc>.+?)-(?P<version>.+).jar"
2386
+ }
2387
+ },
2388
+ "Talismans2": {
2389
+ "function": "CheckCurse",
2390
+ "active": true,
2391
+ "curse": {
2392
+ "id": "224434",
2393
+ "name": "talismans-2",
2394
+ "regex": ".+?-(?P<mc>.+?)-(?P<version>.+?).jar"
2395
+ }
2396
+ },
2397
+ "BetterBedrockGen": {
2398
+ "function": "CheckCurse",
2399
+ "active": true,
2400
+ "curse": {
2401
+ "id": "223275",
2402
+ "name": "betterbedrockgen",
2403
+ "regex": ".+? (?P<mc>.+?)-(?P<version>.+?).jar"
2404
+ }
2405
+ },
2406
+ "CbmReborn": {
2407
+ "function": "CheckCurse",
2408
+ "active": true,
2409
+ "curse": {
2410
+ "id": "225226",
2411
+ "name": "condensed-block-mod-reborn",
2412
+ "regex": ".+?-(?P<mc>.+?)-(?P<version>.+?).jar"
2413
+ }
2414
+ },
2415
+ "Equivalence": {
2416
+ "function": "CheckCurse",
2417
+ "active": true,
2418
+ "curse": {
2419
+ "id": "226158",
2420
+ "name": "equivalence",
2421
+ "regex": ".+?-(?P<mc>.+?)-(?P<version>.+?).jar"
2422
+ }
2423
+ },
2424
+ "NEIIntegration": {
2425
+ "function": "CheckCurse",
2426
+ "active": true,
2427
+ "curse": {
2428
+ "id": "225251",
2429
+ "name": "nei-integration",
2430
+ "regex": ".+?-MC(?P<mc>.+?)-(?P<version>.+?).jar"
2431
+ }
2432
+ },
2433
+ "GlassShards": {
2434
+ "function": "CheckCurse",
2435
+ "active": true,
2436
+ "curse": {
2437
+ "id": "226834",
2438
+ "name": "glass-shards",
2439
+ "regex": ".+?_mc(?P<mc>.+?)-(?P<version>.+?).jar"
2440
+ }
2441
+ },
2442
+ "KoreSample": {
2443
+ "function": "CheckGitHubRelease",
2444
+ "active": true,
2445
+ "github": {
2446
+ "repo": "MinecraftModArchive/KoreSample",
2447
+ "regex": "KoreSample-(?P<mc>.+?)-(?P<version>.+?).jar"
2448
+ }
2449
+ },
2450
+ "ScottsTweaks": {
2451
+ "function": "CheckGitHubRelease",
2452
+ "active": true,
2453
+ "github": {
2454
+ "repo": "MinecraftModArchive/ScottsTweaks",
2455
+ "regex": "ScottsTweaks-(?P<mc>.+?)-(?P<version>.+?).jar"
2456
+ }
2457
+ },
2458
+ "ForgeTeamspeak3Integration" : {
2459
+ "function" : "CheckCurse",
2460
+ "active" : true,
2461
+ "curse" : {
2462
+ "id" : "227778",
2463
+ "name" : "forge-teamspeak-3-integration",
2464
+ "regex" : "ForgeTSIntegration-(?P<version>.+)$"
2465
+ }
2466
+ },
2467
+ "AncientTrees": {
2468
+ "function": "CheckGitHubRelease",
2469
+ "active": true,
2470
+ "github": {
2471
+ "repo": "MinecraftModArchive/Dendrology",
2472
+ "regex": "AncientTrees-(?P<mc>.+?)-(?P<version>.+?).jar"
2473
+ }
2474
+ }
2475
+ }