forked from ecd-plugin/ecd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
nbauma109
committed
Mar 6, 2022
1 parent
67da740
commit 3d200ae
Showing
35 changed files
with
907 additions
and
900 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,52 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<feature | ||
id="org.sf.feeling.decompiler.cfr" | ||
label="%featureName" | ||
version="3.2.5" | ||
provider-name="%providerName" | ||
plugin="org.sf.feeling.decompiler.cfr"> | ||
|
||
<description url="%aboutURL"> | ||
%description | ||
</description> | ||
|
||
<copyright url="%copyrightURL"> | ||
%copyright | ||
</copyright> | ||
|
||
<license url="%licenseURL"> | ||
%license | ||
</license> | ||
|
||
<url> | ||
<update label="Enhanced Class Decompiler Updates" url="https://ecd-plugin.github.io/update"/> | ||
<discovery label="%updateSiteName" url="https://ecd-plugin.github.io/update"/> | ||
</url> | ||
|
||
<requires> | ||
<import plugin="org.eclipse.core.runtime"/> | ||
<import plugin="org.eclipse.core.resources"/> | ||
<import plugin="org.eclipse.jface"/> | ||
<import plugin="org.eclipse.jface.text"/> | ||
<import plugin="org.eclipse.ui.editors"/> | ||
<import plugin="org.eclipse.ui.workbench"/> | ||
<import plugin="org.eclipse.ui.workbench.texteditor"/> | ||
<import plugin="org.eclipse.jdt.core"/> | ||
<import plugin="org.eclipse.jdt.ui"/> | ||
<import plugin="org.eclipse.jdt.debug.ui"/> | ||
<import plugin="org.eclipse.debug.ui"/> | ||
<import plugin="org.eclipse.jdt.launching"/> | ||
<import plugin="org.eclipse.core.expressions"/> | ||
<import plugin="org.eclipse.ui.navigator"/> | ||
<import plugin="org.eclipse.core.filesystem"/> | ||
<import plugin="org.sf.feeling.decompiler" version="3.2.5" match="greaterOrEqual"/> | ||
</requires> | ||
|
||
<plugin | ||
id="org.sf.feeling.decompiler.cfr" | ||
download-size="0" | ||
install-size="0" | ||
version="3.2.5" | ||
unpack="false"/> | ||
|
||
</feature> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<feature | ||
id="org.sf.feeling.decompiler.cfr" | ||
label="%featureName" | ||
version="3.2.6" | ||
provider-name="%providerName" | ||
plugin="org.sf.feeling.decompiler.cfr"> | ||
|
||
<description url="%aboutURL"> | ||
%description | ||
</description> | ||
|
||
<copyright url="%copyrightURL"> | ||
%copyright | ||
</copyright> | ||
|
||
<license url="%licenseURL"> | ||
%license | ||
</license> | ||
|
||
<url> | ||
<update label="Enhanced Class Decompiler Updates" url="https://ecd-plugin.github.io/update"/> | ||
<discovery label="%updateSiteName" url="https://ecd-plugin.github.io/update"/> | ||
</url> | ||
|
||
<requires> | ||
<import plugin="org.eclipse.core.runtime"/> | ||
<import plugin="org.eclipse.core.resources"/> | ||
<import plugin="org.eclipse.jface"/> | ||
<import plugin="org.eclipse.jface.text"/> | ||
<import plugin="org.eclipse.ui.editors"/> | ||
<import plugin="org.eclipse.ui.workbench"/> | ||
<import plugin="org.eclipse.ui.workbench.texteditor"/> | ||
<import plugin="org.eclipse.jdt.core"/> | ||
<import plugin="org.eclipse.jdt.ui"/> | ||
<import plugin="org.eclipse.jdt.debug.ui"/> | ||
<import plugin="org.eclipse.debug.ui"/> | ||
<import plugin="org.eclipse.jdt.launching"/> | ||
<import plugin="org.eclipse.core.expressions"/> | ||
<import plugin="org.eclipse.ui.navigator"/> | ||
<import plugin="org.eclipse.core.filesystem"/> | ||
<import plugin="org.sf.feeling.decompiler" version="3.2.6" match="greaterOrEqual"/> | ||
</requires> | ||
|
||
<plugin | ||
id="org.sf.feeling.decompiler.cfr" | ||
download-size="0" | ||
install-size="0" | ||
version="3.2.6" | ||
unpack="false"/> | ||
|
||
</feature> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
############################################################################### | ||
# Copyright (c) 2017 Chen Chao and other ECD project contributors. | ||
# All rights reserved. This program and the accompanying materials | ||
# are made available under the terms of the Eclipse Public License v1.0 | ||
# which accompanies this distribution, and is available at | ||
# https://www.eclipse.org/legal/epl-v10.html | ||
############################################################################### | ||
--> | ||
<plugin> | ||
<extension point="org.eclipse.ui.commands"> | ||
<command | ||
name="Decompile With CFR" | ||
categoryId="org.sf.feeling.decompiler" | ||
id="org.sf.feeling.decompiler.decompile.cfr"> | ||
</command> | ||
</extension> | ||
<extension | ||
point="org.eclipse.ui.handlers"> | ||
<handler | ||
commandId="org.sf.feeling.decompiler.decompile.cfr" | ||
class="org.sf.feeling.decompiler.cfr.actions.DecompileWithCfrHandler"> | ||
</handler> | ||
</extension> | ||
<extension | ||
point="org.sf.feeling.decompiler.decompilerAdapters"> | ||
<adaptable | ||
class="org.sf.feeling.decompiler.JavaDecompilerPlugin"> | ||
<adapter | ||
class="org.sf.feeling.decompiler.cfr.decompiler.CfrDecompilerDescriptor" | ||
id="org.sf.feeling.decompiler.cfr.CfrDecompilerAdapter" | ||
singleton="true" | ||
type="org.sf.feeling.decompiler.editor.IDecompilerDescriptor"> | ||
</adapter> | ||
</adaptable> | ||
</extension> | ||
</plugin> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
############################################################################### | ||
# Copyright (c) 2017 Chen Chao and other ECD project contributors. | ||
# All rights reserved. This program and the accompanying materials | ||
# are made available under the terms of the Eclipse Public License v1.0 | ||
# which accompanies this distribution, and is available at | ||
# https://www.eclipse.org/legal/epl-v10.html | ||
############################################################################### | ||
--> | ||
<plugin> | ||
<extension point="org.eclipse.ui.commands"> | ||
<command | ||
name="Decompile With CFR" | ||
categoryId="org.sf.feeling.decompiler" | ||
id="org.sf.feeling.decompiler.decompile.cfr"> | ||
</command> | ||
</extension> | ||
<extension | ||
point="org.eclipse.ui.handlers"> | ||
<handler | ||
commandId="org.sf.feeling.decompiler.decompile.cfr" | ||
class="org.sf.feeling.decompiler.cfr.actions.DecompileWithCfrHandler"> | ||
</handler> | ||
</extension> | ||
<extension | ||
point="org.sf.feeling.decompiler.decompilerAdapters"> | ||
<adaptable | ||
class="org.sf.feeling.decompiler.JavaDecompilerPlugin"> | ||
<adapter | ||
class="org.sf.feeling.decompiler.cfr.decompiler.CfrDecompilerDescriptor" | ||
id="org.sf.feeling.decompiler.cfr.CfrDecompilerAdapter" | ||
singleton="true" | ||
type="org.sf.feeling.decompiler.editor.IDecompilerDescriptor"> | ||
</adapter> | ||
</adaptable> | ||
</extension> | ||
</plugin> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,56 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<feature | ||
id="org.sf.feeling.decompiler" | ||
label="%featureName" | ||
version="3.2.5" | ||
provider-name="%providerName" | ||
plugin="org.sf.feeling.decompiler"> | ||
|
||
<description url="%aboutURL"> | ||
%description | ||
</description> | ||
|
||
<copyright url="%copyrightURL"> | ||
%copyright | ||
</copyright> | ||
|
||
<license url="%licenseURL"> | ||
%license | ||
</license> | ||
|
||
<url> | ||
<update label="Enhanced Class Decompiler Updates" url="https://ecd-plugin.github.io/update"/> | ||
<discovery label="%updateSiteName" url="https://ecd-plugin.github.io/update"/> | ||
</url> | ||
|
||
<requires> | ||
<import plugin="org.eclipse.jface"/> | ||
<import plugin="org.eclipse.jface.text"/> | ||
<import plugin="org.eclipse.ui.editors"/> | ||
<import plugin="org.eclipse.ui.workbench.texteditor"/> | ||
<import plugin="org.eclipse.jdt.ui"/> | ||
<import plugin="org.eclipse.jdt.debug.ui"/> | ||
<import plugin="org.eclipse.debug.ui"/> | ||
<import plugin="org.eclipse.jdt.launching"/> | ||
<import plugin="org.eclipse.ui.navigator"/> | ||
<import plugin="org.eclipse.ui.views"/> | ||
<import plugin="org.eclipse.search"/> | ||
<import plugin="org.eclipse.help.base"/> | ||
<import plugin="org.eclipse.core.runtime" version="3.14.0" match="greaterOrEqual"/> | ||
<import plugin="org.eclipse.core.resources" version="3.13.0" match="greaterOrEqual"/> | ||
<import plugin="org.eclipse.ui.workbench" version="3.111.0" match="greaterOrEqual"/> | ||
<import plugin="org.eclipse.jdt.core" version="3.14.0" match="greaterOrEqual"/> | ||
<import plugin="org.eclipse.jdt.debug" version="3.11.100" match="greaterOrEqual"/> | ||
<import plugin="org.eclipse.core.expressions" version="3.6.100" match="greaterOrEqual"/> | ||
<import plugin="org.eclipse.core.filesystem" version="1.7.100" match="greaterOrEqual"/> | ||
<import plugin="org.apache.commons.codec" version="1.9.0" match="greaterOrEqual"/> | ||
</requires> | ||
|
||
<plugin | ||
id="org.sf.feeling.decompiler" | ||
download-size="0" | ||
install-size="0" | ||
version="3.2.5" | ||
unpack="false"/> | ||
|
||
</feature> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<feature | ||
id="org.sf.feeling.decompiler" | ||
label="%featureName" | ||
version="3.2.6" | ||
provider-name="%providerName" | ||
plugin="org.sf.feeling.decompiler"> | ||
|
||
<description url="%aboutURL"> | ||
%description | ||
</description> | ||
|
||
<copyright url="%copyrightURL"> | ||
%copyright | ||
</copyright> | ||
|
||
<license url="%licenseURL"> | ||
%license | ||
</license> | ||
|
||
<url> | ||
<update label="Enhanced Class Decompiler Updates" url="https://ecd-plugin.github.io/update"/> | ||
<discovery label="%updateSiteName" url="https://ecd-plugin.github.io/update"/> | ||
</url> | ||
|
||
<requires> | ||
<import plugin="org.eclipse.jface"/> | ||
<import plugin="org.eclipse.jface.text"/> | ||
<import plugin="org.eclipse.ui.editors"/> | ||
<import plugin="org.eclipse.ui.workbench.texteditor"/> | ||
<import plugin="org.eclipse.jdt.ui"/> | ||
<import plugin="org.eclipse.jdt.debug.ui"/> | ||
<import plugin="org.eclipse.debug.ui"/> | ||
<import plugin="org.eclipse.jdt.launching"/> | ||
<import plugin="org.eclipse.ui.navigator"/> | ||
<import plugin="org.eclipse.ui.views"/> | ||
<import plugin="org.eclipse.search"/> | ||
<import plugin="org.eclipse.help.base"/> | ||
<import plugin="org.eclipse.core.runtime" version="3.14.0" match="greaterOrEqual"/> | ||
<import plugin="org.eclipse.core.resources" version="3.13.0" match="greaterOrEqual"/> | ||
<import plugin="org.eclipse.ui.workbench" version="3.111.0" match="greaterOrEqual"/> | ||
<import plugin="org.eclipse.jdt.core" version="3.14.0" match="greaterOrEqual"/> | ||
<import plugin="org.eclipse.jdt.debug" version="3.11.100" match="greaterOrEqual"/> | ||
<import plugin="org.eclipse.core.expressions" version="3.6.100" match="greaterOrEqual"/> | ||
<import plugin="org.eclipse.core.filesystem" version="1.7.100" match="greaterOrEqual"/> | ||
<import plugin="org.apache.commons.codec" version="1.9.0" match="greaterOrEqual"/> | ||
</requires> | ||
|
||
<plugin | ||
id="org.sf.feeling.decompiler" | ||
download-size="0" | ||
install-size="0" | ||
version="3.2.6" | ||
unpack="false"/> | ||
|
||
</feature> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.