Skip to content

Commit

Permalink
Updating the git and zip-archive files
Browse files Browse the repository at this point in the history
  • Loading branch information
d0vgan committed Mar 8, 2018
1 parent cd99a3c commit 10c9b4c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#-------------------------------------------------------------------------------
# NppExec
NppExec_Manual.chm

*.zip

#-------------------------------------------------------------------------------
# VisualStudio
Expand Down
8 changes: 5 additions & 3 deletions NppExec_latest.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

set ARC_EXE=C:\Progs\Far\7z.exe
set ARC_EXE=7z.exe
for /f "tokens=1-3 delims=/.- " %%a in ('DATE /T') do set ARC_DATE=%%c%%b%%a
set ARC_SRC_NAME=NppExec%ARC_DATE%_src
set ARC_DLL_NAME=NppExec%ARC_DATE%_dll
Expand All @@ -21,10 +21,12 @@ cd ..

if not exist NppExec\x64\Release\NppExec.dll goto no_dll_file_x64_exit
cd NppExec\x64\Release
%ARC_EXE% u -tzip ..\..\..\%ARC_DLL_NAME_64%.zip NppExec.dll NppExec\*.h -mx5
%ARC_EXE% u -tzip ..\..\..\%ARC_DLL_NAME_64%.zip NppExec.dll -mx5
cd ..\..
%ARC_EXE% u -tzip ..\%ARC_DLL_NAME_64%.zip doc\NppExec.txt doc\NppExec_TechInfo.txt doc\NppExec*.chm doc\*.html doc\*.css doc\*.png -mx5
cd ..
cd Release
%ARC_EXE% u -tzip ..\..\%ARC_DLL_NAME_64%.zip NppExec\*.h -mx5
cd ..\..
%ARC_EXE% t %ARC_DLL_NAME_64%.zip

:no_dll_file_x64_exit
4 changes: 3 additions & 1 deletion NppExec_src.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
NppExec_latest.bat
NppExec_src.txt
.gitignore
README.md
NppExec\ConsoleIcon.*
NppExec\NppExec*.dev
NppExec\NppExec*.vcproj
Expand All @@ -8,7 +10,7 @@ NppExec\NppExec*.vcxproj.filters
NppExec\NppExec*.sln
NppExec\doc\NppExec*.txt
NppExec\doc\NppExec*.chm
NppExec\doc\NppExec*.zip
NppExec\doc\NppExec_Manual\*.*
NppExec\doc\*.html
NppExec\doc\*.css
NppExec\doc\*.png
Expand Down
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# nppexec
NppExec (plugin for Notepad++)
# NppExec (plugin for Notepad++)

Here is some brief info about NppExec for new users:
* NppExec adds a Console window at the bottom of Notepad++'s window;
This Console window allows to run different console programs directly in it;
Also there is Plugins -> NppExec -> Execute window that allows to execute NppExecs scripts (set of commands).
* NppExecs commands and variables are listed in the NppExec.txt file.
* To get more details, type help (without the quotes) directly in NppExecs Console. To get a detailed help about any NppExecs command, type help <command> - e.g. help npp_open or help set.
And dont forget about Plugins -> NppExec -> Help/Manual.
Also there is Plugins -> NppExec -> Execute... window that allows to execute NppExec's scripts (set of commands).
* NppExec's commands and variables are listed in the "NppExec.txt" file.
* To get more details, type "help" (without the quotes) directly in NppExec's Console. To get a detailed help about any NppExec's command, type "help <command>" - e.g. "help npp_open" or "help set".
And don't forget about Plugins -> NppExec -> Help/Manual.

0 comments on commit 10c9b4c

Please sign in to comment.