Skip to content

Commit 26fe3a2

Browse files
committed
Update Pom to new standard
Recompiled and built with updated dependencies.
1 parent ba68ee1 commit 26fe3a2

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

pom.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,37 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>us.deathmarine</groupId>
55
<artifactId>luyten</artifactId>
6-
<version>0.5.3</version>
6+
<version>0.5.4</version>
77
<dependencies>
88
<dependency>
99
<groupId>com.fifesoft</groupId>
1010
<artifactId>rsyntaxtextarea</artifactId>
11-
<version>LATEST</version>
11+
<version>3.0.2</version>
1212
</dependency>
1313
<dependency>
1414
<groupId>com.apple</groupId>
1515
<artifactId>AppleJavaExtensions</artifactId>
16-
<version>LATEST</version>
16+
<version>1.4</version>
1717
</dependency>
1818
<dependency>
1919
<groupId>org.bitbucket.mstrobel</groupId>
2020
<artifactId>procyon-core</artifactId>
21-
<version>LATEST</version>
21+
<version>0.5.33</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>org.bitbucket.mstrobel</groupId>
2525
<artifactId>procyon-expressions</artifactId>
26-
<version>LATEST</version>
26+
<version>0.5.33</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>org.bitbucket.mstrobel</groupId>
3030
<artifactId>procyon-reflection</artifactId>
31-
<version>LATEST</version>
31+
<version>0.5.33</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>org.bitbucket.mstrobel</groupId>
3535
<artifactId>procyon-compilertools</artifactId>
36-
<version>LATEST</version>
36+
<version>0.5.33</version>
3737
</dependency>
3838
<!--
3939
<dependency>

src/us/deathmarine/luyten/MainMenuBar.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
import javax.swing.KeyStroke;
3535
import javax.swing.text.DefaultEditorKit;
3636

37+
import org.fife.ui.rsyntaxtextarea.RSyntaxTextArea;
38+
3739
import com.strobel.Procyon;
3840
import com.strobel.decompiler.DecompilerSettings;
3941
import com.strobel.decompiler.languages.Language;
@@ -573,14 +575,14 @@ public void actionPerformed(ActionEvent event) {
573575
link.addMouseListener(new LinkListener(procyon, link));
574576
pane.add(link);
575577
pane.add(new JLabel("Version: " + Procyon.version()));
576-
pane.add(new JLabel("(c) 2016 Mike Strobel"));
578+
pane.add(new JLabel("(c) 2018 Mike Strobel"));
577579
String rsyntax = "https://github.com/bobbylight/RSyntaxTextArea";
578580
link = new JLabel("<HTML><FONT color=\"#000099\"><U>" + rsyntax + "</U></FONT></HTML>");
579581
link.setCursor(new Cursor(Cursor.HAND_CURSOR));
580582
link.addMouseListener(new LinkListener(rsyntax, link));
581583
pane.add(link);
582-
pane.add(new JLabel("Version: 2.6.1"));
583-
pane.add(new JLabel("(c) 2017 Robert Futrell"));
584+
pane.add(new JLabel("Version: 3.0.2"));
585+
pane.add(new JLabel("(c) 2019 Robert Futrell"));
584586
pane.add(new JLabel(" "));
585587
JOptionPane.showMessageDialog(null, pane);
586588
}

0 commit comments

Comments
 (0)