Offline help is currently ignored in AS6 extensions - reduce extension size by omitting it from the generated extension VSIX.

pull/1469/head
Dean Camera 12 years ago
parent 397d77cb44
commit 7eaf3d18d2

@ -712,6 +712,7 @@ RECURSIVE = YES
# run.
EXCLUDE = Documentation/ \
StudioIntegration/ \
License.txt
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or

@ -54,12 +54,6 @@
<xsl:value-of select="$filename"/>
</xsl:attribute>
</build>
<build type="offline-help" subtype="module-help-page-append">
<xsl:attribute name="value">
<xsl:value-of select="$filename"/>
</xsl:attribute>
</build>
</xsl:template>
</xsl:stylesheet>

@ -22,11 +22,6 @@
<module-help-page scheme="append" baseurl="http://www.lufa-lib.org/documentation/"/>
<module-guide-page scheme="append" baseurl="http://www.lufa-lib.org/documentation/"/>
</online-help>
<offline-help>
<index-page caption="LUFA Documentation" path="Documentation/html/"/>
<module-help-page scheme="append" basepath="Documentation/html/"/>
<module-guide-page scheme="append" basepath="Documentation/html/"/>
</offline-help>
<dependencies/>
</extension>
</fdk>

@ -55,7 +55,7 @@ generate_vsix: $(EXTENSION_OUTPUT_XML) $(MODULE_OUTPUT_XML)
@python generate_caches.py $(LUFA_ROOT)/../
@echo "Archiving Content..."
@cd $(LUFA_ROOT)/../ && zip contents.zip -q -9 -r --exclude=*$(notdir $(DOXYGEN_TAG_FILE_XML)) --exclude=*StudioIntegration* LUFA Bootloaders Demos Projects extension.xml README.txt
@cd $(LUFA_ROOT)/../ && zip contents.zip -q -9 -r --exclude=*Documentation* --exclude=*StudioIntegration* LUFA Bootloaders Demos Projects extension.xml README.txt
@echo "Creating VSIX Dependencies..."
@cp $(LUFA_ROOT)/DoxygenPages/Images/LUFA_thumb.png $(LUFA_ROOT)/../PreviewThumb.png

Loading…
Cancel
Save