summaryrefslogtreecommitdiff
path: root/plugins/UserInfoEx
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-06-07 11:59:59 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-06-07 11:59:59 +0000
commitd472416d3e24ecc00083369d0a91c2ce1144f295 (patch)
treeef58fb0bd144f8dc508de6a26091298e3c72eeaa /plugins/UserInfoEx
parentebd0e5dfd0f1e594dc2b7b5bd1429c57a91e41e6 (diff)
removed not needed files
git-svn-id: http://svn.miranda-ng.org/main/trunk@354 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx')
-rw-r--r--plugins/UserInfoEx/_clear.cmd22
-rw-r--r--plugins/UserInfoEx/_publishall.cmd23
-rw-r--r--plugins/UserInfoEx/_publishbin.cmd65
3 files changed, 0 insertions, 110 deletions
diff --git a/plugins/UserInfoEx/_clear.cmd b/plugins/UserInfoEx/_clear.cmd
deleted file mode 100644
index 3b6d4acd53..0000000000
--- a/plugins/UserInfoEx/_clear.cmd
+++ /dev/null
@@ -1,22 +0,0 @@
-@echo off
-pushd ".\bin8"
-cls
-echo Leere Zwischenverzeichnis
-if not errorlevel 1 (
- attrib /s -s -r -h *.* > NUL
- del /s /f /q *.* > NUL
- pushd ..
- rd /s /q bin8 > NUL
-)
-
-attrib /s -s -r -h *.aps > NUL
-del /s /f /q *.aps > NUL
-
-attrib /s -s -r -h *.user > NUL
-del /s /f /q *.user > NUL
-
-attrib /s -s -r -h *.suo > NUL
-del /s /f /q *.suo > NUL
-
-attrib /s -s -r -h *.ncb > NUL
-del /s /f /q *.ncb > NUL
diff --git a/plugins/UserInfoEx/_publishall.cmd b/plugins/UserInfoEx/_publishall.cmd
deleted file mode 100644
index 361368e00d..0000000000
--- a/plugins/UserInfoEx/_publishall.cmd
+++ /dev/null
@@ -1,23 +0,0 @@
-:@echo off
-
-:if %1 == "" goto USAGE
-:if %2 NEQ "" goto USAGE
-
-call _publishbin.cmd "Release" %1
-call _publishbin.cmd "Release Unicode" %1
-call _publishsrc.cmd %1
-goto END
-
-:USAGE
-echo.
-echo ===============================================================================
-echo UserInfoEx Postbuilt Script for automatic preparation of published binaries.
-echo.
-echo USAGE: _publishall [VERSION]
-echo.
-echo Example: _publishall "0.8.3.2"
-echo.
-echo ===============================================================================
-echo.
-
-:END \ No newline at end of file
diff --git a/plugins/UserInfoEx/_publishbin.cmd b/plugins/UserInfoEx/_publishbin.cmd
deleted file mode 100644
index 80d3e33699..0000000000
--- a/plugins/UserInfoEx/_publishbin.cmd
+++ /dev/null
@@ -1,65 +0,0 @@
-@echo off
-
-:if %1 == "" goto USAGE
-:if %2 == "" goto USAGE
-:if %3 NEQ "" goto USAGE
-
-SET OUT_BASE=publish
-
-: Prepare Release for publication
-SET BUILT=%1
-SET VER=%2
-
-SET IN_ICON=%BUILT%\Icons
-SET IN_PLUG=%BUILT%\Plugins
-SET OUT_PATH=%OUT_BASE%\%VER%\%BUILT%
-SET OUT_DOCS=%OUT_PATH%\Docs
-SET OUT_DOCS_UINFOEX=%OUT_DOCS%\uinfoex
-SET OUT_ICON=%OUT_PATH%\Icons
-SET OUT_PLUG=%OUT_PATH%\Plugins
-SET OUT_SOUND=%OUT_PATH%\Sounds
-
-: Create folder structure
-if not exist %OUT_BASE% mkdir %OUT_BASE%
-if not exist %OUT_BASE%\%VER% mkdir %OUT_BASE%\%VER%
-if not exist %OUT_PATH% mkdir %OUT_PATH%
-if not exist %OUT_DOCS% mkdir %OUT_DOCS%
-if not exist %OUT_DOCS_UINFOEX% mkdir %OUT_DOCS_UINFOEX%
-if not exist %OUT_ICON% mkdir %OUT_ICON%
-if not exist %OUT_PLUG% mkdir %OUT_PLUG%
-if not exist %OUT_SOUND% mkdir %OUT_SOUND%
-
-: Copy binary files
-copy /y %IN_ICON%\uinfoex_icons.dll %OUT_ICON% > nul
-if not errorlevel 0 goto MISSING
-copy /y %IN_PLUG%\uinfoex?.dll %OUT_PLUG% > nul
-if not errorlevel 0 goto MISSING
-copy /y changelog.txt %OUT_DOCS_UINFOEX% > nul
-if not errorlevel 0 goto MISSING
-copy /y docs\uinfoex_translate.txt %OUT_DOCS_UINFOEX% > nul
-if not errorlevel 0 goto MISSING
-copy /y sdk\m_userinfoex.h %OUT_DOCS_UINFOEX% > nul
-if not errorlevel 0 goto MISSING
-copy /y sounds\*.wav %OUT_SOUND% > nul
-if not errorlevel 0 goto MISSING
-
-echo Fertig!
-goto END
-
-:MISSING
-echo Missing required file!
-goto END
-
-:USAGE
-echo.
-echo ===============================================================================
-echo UserInfoEx Postbuilt Script for automatic preparation of published binaries.
-echo.
-echo USAGE: _publishbin [BUILT] [VERSION]
-echo.
-echo Example: _publishbin "Release Unicode" "0.8.3.2"
-echo.
-echo ===============================================================================
-echo.
-
-:END \ No newline at end of file