I've done some reorganization of the SmartGwt modules to that by default the compile output does not include debug sources, unused resources, developer tools etc. People were getting the wrong impression that the size of the compiled output was the size of their application.
Most users are probably using either com.smartgwt.SmartGwt or com.smartgwt.SmartGwtNoScript and will be unaffected by this refactoring. You will only notice that the compile output is a lot smaller as it does not include the debug / readable source js files, and the developer console files.
The most important change to keep in mind is that in order to use the Developer Console (ie SC.showConsole() ), you will now need to inherit the following module
Users that happen be using com.smartgwt.SmartGwtDebug will need to inherit com.smartgwt.debug.SmartGwtDebug instead.
Please try out the latest nightly and let me know if you have any issues / questions.
Thanks,
Sanjiv
Most users are probably using either com.smartgwt.SmartGwt or com.smartgwt.SmartGwtNoScript and will be unaffected by this refactoring. You will only notice that the compile output is a lot smaller as it does not include the debug / readable source js files, and the developer console files.
The most important change to keep in mind is that in order to use the Developer Console (ie SC.showConsole() ), you will now need to inherit the following module
Code:
<inherits name="com.smartgwt.tools.SmartGwtTools"/>
Please try out the latest nightly and let me know if you have any issues / questions.
Thanks,
Sanjiv
Comment