linuxdcpp-team team mailing list archive
-
linuxdcpp-team team
-
Mailing list archive
-
Message #06954
[Branch ~dcplusplus-team/dcpp-plugin-sdk-cpp/SpellPlugin] Rev 34: packaging update
------------------------------------------------------------
revno: 34
committer: poy <poy@xxxxxxxxxx>
branch nick: SpellPlugin
timestamp: Mon 2013-06-03 19:07:51 +0200
message:
packaging update
modified:
packaging/info.xml
packaging/make_dcext.bat
--
lp:~dcplusplus-team/dcpp-plugin-sdk-cpp/SpellPlugin
https://code.launchpad.net/~dcplusplus-team/dcpp-plugin-sdk-cpp/SpellPlugin
Your team Dcplusplus-team is subscribed to branch lp:~dcplusplus-team/dcpp-plugin-sdk-cpp/SpellPlugin.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcpp-plugin-sdk-cpp/SpellPlugin/+edit-subscription
=== modified file 'packaging/info.xml'
--- packaging/info.xml 2013-06-02 11:56:15 +0000
+++ packaging/info.xml 2013-06-03 17:07:51 +0000
@@ -12,6 +12,7 @@
The <Files> tag is empty; should you want to distribute additional files, include them
in there within <File> tags (again, more information in the above doc file).
+It is recommended you provide a .pdb file to ease debugging.
When you are done editing this file, rename it to "info.xml", move the relevant files
to this directory and zip them; rename that .zip to .dcext and you are done!
@@ -21,12 +22,14 @@
<UUID>{df596b8e-e5a0-42f8-836b-9f451cf2d6ad}</UUID>
<Name>Spellcheck plugin</Name>
<Version>1</Version>
- <ApiVersion>7</ApiVersion>
+ <ApiVersion>8</ApiVersion>
<Author>DC++</Author>
<Description>Spellcheck messages being typed in DC++.</Description>
<Website>http://dcplusplus.sourceforge.net/</Website>
<Plugin Platform="pe-x64">SpellPlugin-x64.dll</Plugin>
<Plugin Platform="pe-x86">SpellPlugin-x86.dll</Plugin>
<Files>
+ <File Platform="pe-x64">SpellPlugin-x64.pdb</File>
+ <File Platform="pe-x86">SpellPlugin-x86.pdb</File>
</Files>
</dcext>
=== modified file 'packaging/make_dcext.bat'
--- packaging/make_dcext.bat 2013-06-02 11:56:15 +0000
+++ packaging/make_dcext.bat 2013-06-03 17:07:51 +0000
@@ -11,11 +11,13 @@
cd ..\..\packaging
copy ..\projects\make\build-mingw-x64\%PLUGIN_NAME%.dll %PLUGIN_NAME%-x64.dll
+copy ..\projects\make\build-mingw-x64\%PLUGIN_NAME%.pdb %PLUGIN_NAME%-x64.pdb
copy ..\projects\make\build-mingw-x86\%PLUGIN_NAME%.dll %PLUGIN_NAME%-x86.dll
+copy ..\projects\make\build-mingw-x86\%PLUGIN_NAME%.pdb %PLUGIN_NAME%-x86.pdb
set PATH=C:\Cygwin\bin
-zip -9 %PLUGIN_NAME%.dcext info.xml %PLUGIN_NAME%-x86.dll %PLUGIN_NAME%-x64.dll %PLUGIN_NAME%.ico
+zip -9 %PLUGIN_NAME%.dcext info.xml %PLUGIN_NAME%-x64.dll %PLUGIN_NAME%-x86.dll %PLUGIN_NAME%-x64.pdb %PLUGIN_NAME%-x86.pdb %PLUGIN_NAME%.ico
-del %PLUGIN_NAME%-x64.dll %PLUGIN_NAME%-x86.dll
+del %PLUGIN_NAME%-x64.dll %PLUGIN_NAME%-x86.dll %PLUGIN_NAME%-x64.pdb %PLUGIN_NAME%-x86.pdb
pause