-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
154 lines (141 loc) · 5.47 KB
/
index.html
File metadata and controls
154 lines (141 loc) · 5.47 KB
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
<!DOCTYPE HTML>
<!--
Stellar by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>JD-FX</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header" class="alt">
<span class="logo"><img src="images/jd-fx-icon.svg" width="128" height="128" alt="" /></span>
<h1>JD-FX</h1>
<p>Java decompiler using Kotlin, JavaFX and Fernflower.<br />
built by <a href="https://github.com/dadler64">Dan Adler</a> for all to use.</p>
</header>
<!-- Nav -->
<nav id="nav">
<ul>
<li><a href="#intro" class="active">Introduction</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#downloads">Downloads</a></li>
<li><a href="#wiki">Wiki</a></li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<!-- Introduction -->
<section id="intro" class="main">
<div class="spotlight">
<div class="content">
<header class="major">
<h2>JD-FX: Java Decompiler - FX</h2>
</header>
<span class=""><img src="images/jd-fx-screenshot.png" width="512" height="" alt="" /></span>
<p>Ever since JD-GUI stopped working for me I figured it was about time someone
came up with a competitive alternative which supported Java' modern language
features yet still retained that classic "JD-GUI" look and feel.</p>
<ul class="actions">
<li><a href="#downloads" class="button ">Download</a></li>
</ul>
</div>
</div>
</section>
<!-- Features -->
<section id="features" class="main special">
<header class="major">
<h2>Features</h2>
</header>
<ul class="features">
<li>
<span class="icon solid major style1 fa-code"></span>
<h3>Powerful Text Editor</h3>
<p>Each file is decompiled and opened using <a>RichTextFX</a> which leverages
the newest and most powerful features found in JavaFX.</p>
</li>
<li>
<span class="icon major style3 fa-copy"></span>
<h3>Multi-Project Support</h3>
<p>Decompile and explore multiple projects at once using the modern JavaFX user
interface.</p>
</li>
<li>
<span class="icon major style5 fa-gem"></span>
<h3>Powered by Fernflower</h3>
<p>Decompiling is done using the quick and efficient Fernflower which is used in
the industry leading <a href="https://www.jetbrains.com/idea/">IntellliJ IDEA IDE</a> developed by JetBrains.</p>
</li>
</ul>
<footer class="major">
<ul class="actions special">
<li><a href="#downloads" class="button">Download</a></li>
</ul>
</footer>
</section>
<!-- Downloads Section -->
<section id="downloads" class="main special">
<header class="major">
<h2>Downloads</h2>
<p>All downloads come directly from the Releases page for this repository on
GitHub.</p>
</header>
<!-- TODO: Add in stats from GitHub-->
<ul class="statistics">
<li class="style4">
<span class="icon solid fa-java"></span>
<strong>--</strong>
<a href="https://github.com/JD-FX/JD-FX/releases">Java Jar</a>
</li>
<li class="style5">
<span class="icon solid fa fa-windows"></span>
<strong>--</strong>
<a href="https://github.com/JD-FX/JD-FX/releases">Windows Executable</a>
</li>
</ul>
<p class="content">JD-FX si built to support Java 11 and beyond. It uses the Apache
Maven build system to generate both executable Jar files and Windows executables.
Java dropped support for building MacOS App files a while ago so chances of those
being released are slim.</p>
<footer class="major">
</footer>
</section>
<!-- Get Started -->
<section id="wiki" class="main special">
<header class="major">
<h2>Contribute</h2>
<p>Visit the project on GitHub to browse the source and contribute changes and
fixes. Read the project Wiki to learn more about how the project works and what
is planned.</p>
</header>
<footer class="major">
<ul class="actions special">
<li><a href="generic.html" class="button primary">JD-FX GitHub</a></li>
<li><a href="generic.html" class="button primary">Wiki</a></li>
</ul>
</footer>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<p class="copyright">© Dan Adler 2019. Design: <a href="https://html5up.net">HTML5 UP</a>.</p>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>