Permalink
Please
sign in to comment.
Showing
with
38,460 additions
and 38,429 deletions.
- +43 −12 .gitattributes
- +15 −15 .idea/ant.xml
- +28 −28 .idea/compiler.xml
- +4 −4 .idea/copyright/profiles_settings.xml
- +5 −5 .idea/encodings.xml
- +9 −9 .idea/libraries/lib.xml
- +10 −10 .idea/libraries/testlib.xml
- +37 −37 .idea/misc.xml
- +11 −11 .idea/modules.xml
- +125 −125 .idea/uiDesigner.xml
- +7 −7 .idea/vcs.xml
- +553 −553 .idea/workspace.xml
- +7 −7 lib/avi.montemedia.license.txt
- +26 −26 lib/flamingo.license.txt
- +5 −5 lib/gif.license.txt
- +16 −16 lib/jl.license.txt
- +11 −11 lib/jna.license.txt
- +10 −10 lib/jpacker.license.txt
- +15 −15 lib/jpproxy.muffin.license.txt
- +10 −10 lib/jsyntaxpane.license.txt
- +16 −16 lib/nellymoser.license.txt
- +12 −12 lib/sfntly.license.txt
- +26 −26 lib/substance-flamingo.license.txt
- +26 −26 lib/trident.license.txt
- +23 −23 lib/ttf.doubletype.license.txt
- +19 −19 lib/ttf.fontastic.license.txt
- +138 −138 libsrc/FlashPlayer/FlashPlayer.dof
- +24 −24 libsrc/FlashPlayer/FlashPlayer.dpr
- +73 −73 libsrc/LZMA/build.xml
- +3 −3 libsrc/LZMA/manifest.mf
- +1,413 −1,413 libsrc/LZMA/nbproject/build-impl.xml
- +8 −8 libsrc/LZMA/nbproject/genfiles.properties
- +71 −71 libsrc/LZMA/nbproject/project.properties
- +15 −15 libsrc/LZMA/nbproject/project.xml
- +138 −138 libsrc/Swf2Exe/Swf2Exe.dof
- +16 −16 libsrc/Swf2Exe/Swf2Exe.dpr
- +651 −651 libsrc/Swf2Exe/uMain.dfm
- +94 −94 libsrc/Swf2Exe/uMain.pas
- +73 −73 libsrc/avi/build.xml
- +1,413 −1,413 libsrc/avi/nbproject/build-impl.xml
- +8 −8 libsrc/avi/nbproject/genfiles.properties
- +72 −72 libsrc/avi/nbproject/project.properties
- +15 −15 libsrc/avi/nbproject/project.xml
- +111 −111 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/ApplicationInfo.java
- +62 −62 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/ReadOnlyTagList.java
- +3,651 −3,651 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWF.java
- +157 −157 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWFSearch.java
- +2,911 −2,911 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/AVM2Code.java
- +61 −61 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/XMLAVM2Item.java
- +475 −475 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/types/MethodBody.java
- +1,496 −1,496 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/Action.java
- +93 −93 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/LocalDataArea.java
- +51 −51 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/special/ActionUnknown.java
- +455 −455 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/swf4/ActionPush.java
- +1,062 −1,062 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/configuration/Configuration.java
- +32 −32 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/configuration/SwfSpecificConfiguration.java
- +164 −164 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/dumpview/DumpInfo.java
- +164 −164 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/ShapeExporter.java
- +433 −433 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/commonshape/Matrix.java
- +162 −162 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/helpers/NulWriter.java
- +38 −38 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/locales/AppResources.properties
- +585 −585 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFont2Tag.java
- +601 −601 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFont3Tag.java
- +183 −183 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontInfo2Tag.java
- +184 −184 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontInfoTag.java
- +382 −382 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DefineFontTag.java
- +112 −112 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DoABCTag.java
- +224 −224 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/DoActionTag.java
- +261 −261 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/SoundStreamHead2Tag.java
- +64 −64 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/base/FontInfoTag.java
- +417 −417 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/base/FontTag.java
- +281 −281 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/base/ImageTag.java
- +459 −459 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/tags/gfx/DefineCompactedFont.java
- +52 −52 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/types/LINESTYLE.java
- +484 −484 libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/types/gfx/EdgeType.java
- +73 −73 libsrc/gif/build.xml
- +1,413 −1,413 libsrc/gif/nbproject/build-impl.xml
- +8 −8 libsrc/gif/nbproject/genfiles.properties
- +71 −71 libsrc/gif/nbproject/project.properties
- +15 −15 libsrc/gif/nbproject/project.xml
- +73 −73 libsrc/gnujpdf/build.xml
- +3 −3 libsrc/gnujpdf/manifest.mf
- +1,413 −1,413 libsrc/gnujpdf/nbproject/build-impl.xml
- +8 −8 libsrc/gnujpdf/nbproject/genfiles.properties
- +15 −15 libsrc/gnujpdf/nbproject/project.xml
- +73 −73 libsrc/jpacker/build.xml
- +3 −3 libsrc/jpacker/manifest.mf
- +1,413 −1,413 libsrc/jpacker/nbproject/build-impl.xml
- +8 −8 libsrc/jpacker/nbproject/genfiles.properties
- +77 −77 libsrc/jpacker/nbproject/project.properties
- +15 −15 libsrc/jpacker/nbproject/project.xml
- +158 −158 libsrc/jpproxy/build.xml
- +3 −3 libsrc/jpproxy/manifest.mf
- +74 −74 libsrc/jpproxy/nbproject/project.properties
- +13 −13 libsrc/jpproxy/nbproject/project.xml
- +89 −89 libsrc/jsyntaxpane/jsyntaxpane/CHANGELOG.txt
- +41 −41 libsrc/jsyntaxpane/jsyntaxpane/nbactions.xml
- +118 −118 ...syntaxpane/src/main/resources/META-INF/services/jsyntaxpane/defaultsyntaxkit/config_es.properties
- +118 −118 ...syntaxpane/src/main/resources/META-INF/services/jsyntaxpane/defaultsyntaxkit/config_pt.properties
- +18 −18 ...ne/src/main/resources/META-INF/services/jsyntaxpane/syntaxkits/javasyntaxkit/combocompletions.txt
- +29 −29 ...ane/src/main/resources/META-INF/services/jsyntaxpane/syntaxkits/luasyntaxkit/combocompletions.txt
- +22 −22 ...axpane/src/main/resources/META-INF/services/jsyntaxpane/syntaxkits/luasyntaxkit/config.properties
- +39 −39 libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle.properties
- +38 −38 libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_cs.properties
- +39 −39 libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_de.properties
- +39 −39 libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_es.properties
- +39 −39 libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_hu.properties
- +38 −38 libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_nl.properties
- +39 −39 libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_pt.properties
- +38 −38 libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_ru.properties
- +39 −39 libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_sv.properties
- +38 −38 libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_uk.properties
- +39 −39 libsrc/jsyntaxpane/jsyntaxpane/src/main/resources/jsyntaxpane/Bundle_zh.properties
- +32 −32 libsrc/jsyntaxpane/nbactions.xml
- +73 −73 libsrc/nellymoser/build.xml
- +1,413 −1,413 libsrc/nellymoser/nbproject/build-impl.xml
- +8 −8 libsrc/nellymoser/nbproject/genfiles.properties
- +71 −71 libsrc/nellymoser/nbproject/project.properties
- +15 −15 libsrc/nellymoser/nbproject/project.xml
- +73 −73 libsrc/ttf/build.xml
- +3 −3 libsrc/ttf/manifest.mf
- +15 −15 libsrc/ttf/nbproject/project.xml
- +3 −3 manifest.mf
- +74 −74 nbbuild.xml
- +33 −33 nbproject/ide-targets.xml
- +631 −631 src/com/jpexs/decompiler/flash/gui/AdvancedSettingsDialog.java
- +719 −719 src/com/jpexs/decompiler/flash/gui/FontPanel.java
- +3,618 −3,618 src/com/jpexs/decompiler/flash/gui/MainPanel.java
- +247 −247 src/com/jpexs/decompiler/flash/gui/QuickFindPanel.java
- +142 −142 src/com/jpexs/decompiler/flash/gui/SearchPanel.java
- +728 −728 src/com/jpexs/decompiler/flash/gui/abc/DecompiledEditorPane.java
- +101 −101 src/com/jpexs/decompiler/flash/gui/abc/TraitsList.java
- +1,065 −1,065 src/com/jpexs/decompiler/flash/gui/action/ActionPanel.java
- +27 −27 src/com/jpexs/decompiler/flash/gui/locales/AboutDialog.properties
- +27 −27 src/com/jpexs/decompiler/flash/gui/locales/AboutDialog_es.properties
- +27 −27 src/com/jpexs/decompiler/flash/gui/locales/AboutDialog_sv.properties
- +434 −434 src/com/jpexs/decompiler/flash/gui/locales/AdvancedSettingsDialog_fr.properties
- +434 −434 src/com/jpexs/decompiler/flash/gui/locales/AdvancedSettingsDialog_it.properties
- +21 −21 src/com/jpexs/decompiler/flash/gui/locales/LoadFromCacheFrame_fr.properties
- +32 −32 src/com/jpexs/decompiler/flash/gui/locales/LoadFromMemoryFrame_it.properties
- +722 −722 src/com/jpexs/decompiler/flash/gui/locales/MainFrame_es.properties
- +722 −722 src/com/jpexs/decompiler/flash/gui/locales/MainFrame_it.properties
@@ -1,16 +1,47 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set. | ||
#* text=auto | ||
# Text files | ||
*.txt text | ||
*.xml text | ||
*.md text | ||
|
||
# Explicitly declare text files you want to always be normalized and converted | ||
# to native line endings on checkout. | ||
*.c text | ||
*.h text | ||
*.java text eol=crlf | ||
*.sh binary | ||
# Installers: | ||
*.iss text | ||
*.nsi text | ||
*.nsh text | ||
|
||
# Declare files that will always have CRLF line endings on checkout. | ||
*.sln text eol=crlf | ||
# Java | ||
*.java text | ||
*.mf text | ||
*.properties text | ||
|
||
# Denote all files that are truly binary and should not be modified. | ||
# Graphics: | ||
*.svg text | ||
*.png binary | ||
*.jpg binary | ||
*.jpg binary | ||
*.bmp binary | ||
*.ico binary | ||
*.icns binary | ||
*.xcf binary | ||
*.gif binary | ||
|
||
# Findbugs: | ||
*.fbp text | ||
|
||
# Batch files | ||
*.sh text eol=lf | ||
*.bat text eol=crlf | ||
|
||
# Delphi sources | ||
*.dpr text eol=crlf | ||
*.dfm text eol=crlf | ||
*.pas text eol=crlf | ||
*.dof text eol=crlf | ||
|
||
# Executables | ||
*.dll binary | ||
*.exe binary | ||
*.jar binary | ||
*.res binary | ||
|
||
# Fonts | ||
*.otf binary | ||
*.ttf binary |
@@ -1,15 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="AntConfiguration"> | ||
<defaultAnt bundledAnt="true" /> | ||
<buildFile url="file://$PROJECT_DIR$/build.xml"> | ||
<additionalClassPath /> | ||
<antReference projectDefault="true" /> | ||
<customJdkName value="" /> | ||
<maximumHeapSize value="128" /> | ||
<maximumStackSize value="2" /> | ||
<properties /> | ||
</buildFile> | ||
</component> | ||
</project> | ||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="AntConfiguration"> | ||
<defaultAnt bundledAnt="true" /> | ||
<buildFile url="file://$PROJECT_DIR$/build.xml"> | ||
<additionalClassPath /> | ||
<antReference projectDefault="true" /> | ||
<customJdkName value="" /> | ||
<maximumHeapSize value="128" /> | ||
<maximumStackSize value="2" /> | ||
<properties /> | ||
</buildFile> | ||
</component> | ||
</project> | ||
|
@@ -1,28 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="CompilerConfiguration"> | ||
<option name="DEFAULT_COMPILER" value="Javac" /> | ||
<resourceExtensions> | ||
<entry name=".+\.(properties|xml|html|dtd|tld)" /> | ||
<entry name=".+\.(gif|png|jpeg|jpg)" /> | ||
<entry name=".+\.(bin)" /> | ||
</resourceExtensions> | ||
<wildcardResourcePatterns> | ||
<entry name="?*.properties" /> | ||
<entry name="?*.xml" /> | ||
<entry name="?*.gif" /> | ||
<entry name="?*.png" /> | ||
<entry name="?*.jpeg" /> | ||
<entry name="?*.jpg" /> | ||
<entry name="?*.html" /> | ||
<entry name="?*.dtd" /> | ||
<entry name="?*.tld" /> | ||
<entry name="?*.ftl" /> | ||
</wildcardResourcePatterns> | ||
<annotationProcessing enabled="false" useClasspath="true" /> | ||
</component> | ||
<component name="JavacSettings"> | ||
<option name="ADDITIONAL_OPTIONS_STRING" value="-target 1.6" /> | ||
</component> | ||
</project> | ||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="CompilerConfiguration"> | ||
<option name="DEFAULT_COMPILER" value="Javac" /> | ||
<resourceExtensions> | ||
<entry name=".+\.(properties|xml|html|dtd|tld)" /> | ||
<entry name=".+\.(gif|png|jpeg|jpg)" /> | ||
<entry name=".+\.(bin)" /> | ||
</resourceExtensions> | ||
<wildcardResourcePatterns> | ||
<entry name="?*.properties" /> | ||
<entry name="?*.xml" /> | ||
<entry name="?*.gif" /> | ||
<entry name="?*.png" /> | ||
<entry name="?*.jpeg" /> | ||
<entry name="?*.jpg" /> | ||
<entry name="?*.html" /> | ||
<entry name="?*.dtd" /> | ||
<entry name="?*.tld" /> | ||
<entry name="?*.ftl" /> | ||
</wildcardResourcePatterns> | ||
<annotationProcessing enabled="false" useClasspath="true" /> | ||
</component> | ||
<component name="JavacSettings"> | ||
<option name="ADDITIONAL_OPTIONS_STRING" value="-target 1.6" /> | ||
</component> | ||
</project> | ||
|
@@ -1,5 +1,5 @@ | ||
<component name="CopyrightManager"> | ||
<settings default=""> | ||
<module2copyright /> | ||
</settings> | ||
<component name="CopyrightManager"> | ||
<settings default=""> | ||
<module2copyright /> | ||
</settings> | ||
</component> |
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" /> | ||
</project> | ||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" /> | ||
</project> | ||
|
@@ -1,10 +1,10 @@ | ||
<component name="libraryTable"> | ||
<library name="lib"> | ||
<CLASSES> | ||
<root url="jar://$PROJECT_DIR$/lib/jsyntaxpane-0.9.5.jar!/" /> | ||
<root url="jar://$PROJECT_DIR$/lib/jpproxy.jar!/" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES /> | ||
</library> | ||
<component name="libraryTable"> | ||
<library name="lib"> | ||
<CLASSES> | ||
<root url="jar://$PROJECT_DIR$/lib/jsyntaxpane-0.9.5.jar!/" /> | ||
<root url="jar://$PROJECT_DIR$/lib/jpproxy.jar!/" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES /> | ||
</library> | ||
</component> |
@@ -1,11 +1,11 @@ | ||
<component name="libraryTable"> | ||
<library name="testlib"> | ||
<CLASSES> | ||
<root url="jar://$PROJECT_DIR$/testlib/junit-4.8.2.jar!/" /> | ||
<root url="jar://$PROJECT_DIR$/testlib/emma_ant.jar!/" /> | ||
<root url="jar://$PROJECT_DIR$/testlib/emma.jar!/" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES /> | ||
</library> | ||
<component name="libraryTable"> | ||
<library name="testlib"> | ||
<CLASSES> | ||
<root url="jar://$PROJECT_DIR$/testlib/junit-4.8.2.jar!/" /> | ||
<root url="jar://$PROJECT_DIR$/testlib/emma_ant.jar!/" /> | ||
<root url="jar://$PROJECT_DIR$/testlib/emma.jar!/" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES /> | ||
</library> | ||
</component> |
@@ -1,37 +1,37 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="DependencyValidationManager"> | ||
<option name="SKIP_IMPORT_STATEMENTS" value="false" /> | ||
</component> | ||
<component name="JavadocGenerationManager"> | ||
<option name="OUTPUT_DIRECTORY" /> | ||
<option name="OPTION_SCOPE" value="protected" /> | ||
<option name="OPTION_HIERARCHY" value="true" /> | ||
<option name="OPTION_NAVIGATOR" value="true" /> | ||
<option name="OPTION_INDEX" value="true" /> | ||
<option name="OPTION_SEPARATE_INDEX" value="true" /> | ||
<option name="OPTION_DOCUMENT_TAG_USE" value="false" /> | ||
<option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" /> | ||
<option name="OPTION_DOCUMENT_TAG_VERSION" value="false" /> | ||
<option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="true" /> | ||
<option name="OPTION_DEPRECATED_LIST" value="true" /> | ||
<option name="OTHER_OPTIONS" value="" /> | ||
<option name="HEAP_SIZE" /> | ||
<option name="LOCALE" /> | ||
<option name="OPEN_IN_BROWSER" value="true" /> | ||
</component> | ||
<component name="MavenProjectsManager"> | ||
<option name="originalFiles"> | ||
<list> | ||
<option value="$PROJECT_DIR$/libsrc/jsyntaxpane/jsyntaxpane/pom.xml" /> | ||
</list> | ||
</option> | ||
</component> | ||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_5" assert-keyword="true" jdk-15="true" project-jdk-name="1.6" project-jdk-type="JavaSDK"> | ||
<output url="file://$PROJECT_DIR$/out" /> | ||
</component> | ||
<component name="SvnBranchConfigurationManager"> | ||
<option name="mySupportsUserInfoFilter" value="true" /> | ||
</component> | ||
</project> | ||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="DependencyValidationManager"> | ||
<option name="SKIP_IMPORT_STATEMENTS" value="false" /> | ||
</component> | ||
<component name="JavadocGenerationManager"> | ||
<option name="OUTPUT_DIRECTORY" /> | ||
<option name="OPTION_SCOPE" value="protected" /> | ||
<option name="OPTION_HIERARCHY" value="true" /> | ||
<option name="OPTION_NAVIGATOR" value="true" /> | ||
<option name="OPTION_INDEX" value="true" /> | ||
<option name="OPTION_SEPARATE_INDEX" value="true" /> | ||
<option name="OPTION_DOCUMENT_TAG_USE" value="false" /> | ||
<option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" /> | ||
<option name="OPTION_DOCUMENT_TAG_VERSION" value="false" /> | ||
<option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="true" /> | ||
<option name="OPTION_DEPRECATED_LIST" value="true" /> | ||
<option name="OTHER_OPTIONS" value="" /> | ||
<option name="HEAP_SIZE" /> | ||
<option name="LOCALE" /> | ||
<option name="OPEN_IN_BROWSER" value="true" /> | ||
</component> | ||
<component name="MavenProjectsManager"> | ||
<option name="originalFiles"> | ||
<list> | ||
<option value="$PROJECT_DIR$/libsrc/jsyntaxpane/jsyntaxpane/pom.xml" /> | ||
</list> | ||
</option> | ||
</component> | ||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_5" assert-keyword="true" jdk-15="true" project-jdk-name="1.6" project-jdk-type="JavaSDK"> | ||
<output url="file://$PROJECT_DIR$/out" /> | ||
</component> | ||
<component name="SvnBranchConfigurationManager"> | ||
<option name="mySupportsUserInfoFilter" value="true" /> | ||
</component> | ||
</project> | ||
|
@@ -1,11 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="ProjectModuleManager"> | ||
<modules> | ||
<module fileurl="file://$PROJECT_DIR$/ASDec.iml" filepath="$PROJECT_DIR$/ASDec.iml" /> | ||
<module fileurl="file://$PROJECT_DIR$/libsrc/jpproxy/jpproxy.iml" filepath="$PROJECT_DIR$/libsrc/jpproxy/jpproxy.iml" /> | ||
<module fileurl="file://$PROJECT_DIR$/libsrc/jsyntaxpane/jsyntaxpane/jsyntaxpane.iml" filepath="$PROJECT_DIR$/libsrc/jsyntaxpane/jsyntaxpane/jsyntaxpane.iml" /> | ||
</modules> | ||
</component> | ||
</project> | ||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="ProjectModuleManager"> | ||
<modules> | ||
<module fileurl="file://$PROJECT_DIR$/ASDec.iml" filepath="$PROJECT_DIR$/ASDec.iml" /> | ||
<module fileurl="file://$PROJECT_DIR$/libsrc/jpproxy/jpproxy.iml" filepath="$PROJECT_DIR$/libsrc/jpproxy/jpproxy.iml" /> | ||
<module fileurl="file://$PROJECT_DIR$/libsrc/jsyntaxpane/jsyntaxpane/jsyntaxpane.iml" filepath="$PROJECT_DIR$/libsrc/jsyntaxpane/jsyntaxpane/jsyntaxpane.iml" /> | ||
</modules> | ||
</component> | ||
</project> | ||
|

Oops, something went wrong.
0 comments on commit
afc2c05