summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted/rps/ZIP
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-02-13 10:46:57 +0000
committerRobert Pösel <robyer@seznam.cz>2013-02-13 10:46:57 +0000
commita249b34c4be0de060a44c342e43a43f95dcf1874 (patch)
tree95b43dac9bf64aa0d4dd6626976db545abbfc3e4 /plugins/!NotAdopted/rps/ZIP
parentbddc30f7d1f00d51bf348517bd429bd28f3f749c (diff)
Added rps and statuschange plugins sources (not adopted)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3587 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/!NotAdopted/rps/ZIP')
-rw-r--r--plugins/!NotAdopted/rps/ZIP/doit.bat58
1 files changed, 58 insertions, 0 deletions
diff --git a/plugins/!NotAdopted/rps/ZIP/doit.bat b/plugins/!NotAdopted/rps/ZIP/doit.bat
new file mode 100644
index 0000000000..47911225d3
--- /dev/null
+++ b/plugins/!NotAdopted/rps/ZIP/doit.bat
@@ -0,0 +1,58 @@
+@echo off
+
+rem Batch file to build and upload files
+rem
+rem TODO: Integration with FL
+
+set name=rps
+
+rem To upload, this var must be set here or in other batch
+rem set ftp=ftp://<user>:<password>@<ftp>/<path>
+
+echo Building %name% ...
+
+msdev ..\%name%.dsp /MAKE "%name% - Win32 Release" /REBUILD
+
+echo Generating files for %name% ...
+
+del *.zip
+del *.dll
+copy ..\Docs\%name%_changelog.txt
+copy ..\Docs\%name%_version.txt
+copy ..\Docs\%name%_readme.txt
+mkdir Docs
+cd Docs
+del /Q *.*
+copy ..\..\Docs\%name%_readme.txt
+cd ..
+mkdir Plugins
+cd Plugins
+del /Q *.*
+copy ..\..\..\..\bin\release\Plugins\RemovePersonalSettings.dll
+copy ..\..\RemovePersonalSettings.ini
+cd ..
+
+"C:\Program Files\Filzip\Filzip.exe" -a -rp %name%.zip Docs Plugins
+
+cd Docs
+del /Q *.*
+cd ..
+rmdir Docs
+cd Plugins
+del /Q *.*
+cd ..
+rmdir Plugins
+
+if "%ftp%"=="" GOTO END
+
+echo Going to upload files...
+pause
+
+"C:\Program Files\FileZilla\FileZilla.exe" -u .\%name%.zip %ftp% -overwrite -close
+"C:\Program Files\FileZilla\FileZilla.exe" -u .\%name%_changelog.txt %ftp% -overwrite -close
+"C:\Program Files\FileZilla\FileZilla.exe" -u .\%name%_version.txt %ftp% -overwrite -close
+"C:\Program Files\FileZilla\FileZilla.exe" -u .\%name%_readme.txt %ftp% -overwrite -close
+
+:END
+
+echo Done.