Ignore:
Timestamp:
10/23/12 10:05:29 (12 years ago)
Author:
sherbold
Message:
  • renamed de.ugoe.cs.autoquest.plugin.mfc.guimodel.WindowTree? to MFCWindowTree.
  • corrected loading of plug-ins to use prefix "autoquest" instead of "quest"
Location:
trunk/autoquest-plugin-core
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-core/.classpath

    r511 r940  
    22<classpath> 
    33        <classpathentry kind="src" output="target/classes" path="src/main/java"> 
    4                 <attributes> 
    5                         <attribute name="optional" value="true"/> 
    6                         <attribute name="maven.pomderived" value="true"/> 
    7                 </attributes> 
    8         </classpathentry> 
    9         <classpathentry kind="src" output="target/test-classes" path="src/test/java"> 
    104                <attributes> 
    115                        <attribute name="optional" value="true"/> 
  • trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/PluginLoader.java

    r929 r940  
    248248                        return false; 
    249249                } 
    250                 return filename.startsWith("quest-plugin-") && !filename.startsWith("quest-plugin-core") 
     250                return filename.startsWith("autoquest-plugin-") && !filename.startsWith("autoquest-plugin-core") 
    251251                                && 
    252252                                ((filename.split("-").length == 4 && filename.endsWith(".jar")) || 
Note: See TracChangeset for help on using the changeset viewer.