2.9.7 changes

This commit is contained in:
Konloch 2015-07-08 17:35:21 -06:00
parent bd9dcd2e67
commit a1a0767d4d
5 changed files with 27 additions and 0 deletions

BIN
libs/jruby-9.0.0.0.rc1.jar Normal file

Binary file not shown.

Binary file not shown.

14
plugins/Skeleton.gy Normal file
View File

@ -0,0 +1,14 @@
import the.bytecode.club.bytecodeviewer.api.*;
import java.util.ArrayList;
import org.objectweb.asm.tree.ClassNode;
import the.bytecode.club.bytecodeviewer.decompilers.*;
public class Skeleton extends Plugin {
@Override
public void execute(ArrayList<ClassNode> classNodesList) {
PluginConsole gui = new PluginConsole("Skeleton");
gui.setVisible(true);
gui.appendText("executed skeleton");
}
}

0
plugins/Skeleton.rb Normal file
View File

13
plugins/skeleton.py Normal file
View File

@ -0,0 +1,13 @@
from the.bytecode.club.bytecodeviewer.api import Plugin
from the.bytecode.club.bytecodeviewer.api import PluginConsole
from java.lang import System
from java.lang import Boolean
from java.util import ArrayList
from org.objectweb.asm.tree import ClassNode
class skeleton(Plugin):
def execute(classNodeList, poop): #for some reason it requires a second arg
gui = PluginConsole("Skeleton")
gui.setVisible(Boolean.TRUE)
gui.appendText("exceuted skeleton")