Skip to content

Commit 4fcb76b

Browse files
authored
Merge pull request #42 from dmpas/develop
3.0.40
2 parents 456bd72 + d503215 commit 4fcb76b

File tree

10 files changed

+466
-299
lines changed

10 files changed

+466
-299
lines changed

Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,19 @@ OUT_RELEASE = bin/Release/v8unpack
3131

3232
OBJ_RELEASE = $(OBJDIR_RELEASE)/src/V8File.o $(OBJDIR_RELEASE)/src/main.o
3333
PREFIX=$(DESTDIR)/usr/bin
34+
BASH_COMPLETION_PREFIX=$(DESTDIR)/etc/bash_completion.d
3435

3536
all: release
3637

37-
install:
38+
install: $(OUT_RELEASE)
3839
test -d $(PREFIX) || mkdir -p $(PREFIX)
3940
cp bin/Release/v8unpack $(PREFIX)/v8unpack
41+
test -d $(BASH_COMPLETION_PREFIX) || mkdir -p $(BASH_COMPLETION_PREFIX)
42+
cp bash_completion.sh $(BASH_COMPLETION_PREFIX)/v8unpack
4043

4144
uninstall:
4245
rm $(PREFIX)/v8unpack
46+
rm $(BASH_COMPLETION_PREFIX)/v8unpack
4347

4448
clean: clean_release
4549

@@ -56,10 +60,10 @@ release: $(OUT_RELEASE) after_release
5660
$(OUT_RELEASE): bin/Release $(OBJ_RELEASE) $(DEP_RELEASE)
5761
$(LD) $(LIBDIR_RELEASE) -o $(OUT_RELEASE) $(OBJ_RELEASE) $(LDFLAGS_RELEASE) $(LIB_RELEASE)
5862

59-
$(OBJDIR_RELEASE)/src/V8File.o: src/V8File.cpp
63+
$(OBJDIR_RELEASE)/src/V8File.o: src/V8File.cpp src/V8File.h
6064
$(CXX) -D__LINUX $(CFLAGS_RELEASE) $(INC_RELEASE) -c src/V8File.cpp -o $(OBJDIR_RELEASE)/src/V8File.o
6165

62-
$(OBJDIR_RELEASE)/src/main.o: src/main.cpp
66+
$(OBJDIR_RELEASE)/src/main.o: src/main.cpp src/V8File.h
6367
$(CXX) -D__LINUX $(CFLAGS_RELEASE) $(INC_RELEASE) -c src/main.cpp -o $(OBJDIR_RELEASE)/src/main.o
6468

6569
clean_release:

VersionInfo.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
1 VERSIONINFO
2-
FILEVERSION 3,0,39,1
3-
PRODUCTVERSION 3,0,39,1
2+
FILEVERSION 3,0,40,1
3+
PRODUCTVERSION 3,0,40,1
44
BEGIN
55
BLOCK "StringFileInfo"
66
BEGIN
77
BLOCK "041904E3"
88
BEGIN
99
VALUE "CompanyName", "V8Unpack developers community"
1010
VALUE "FileDescription", "V8 Unpack Tool"
11-
VALUE "FileVersion", "3.0.39"
11+
VALUE "FileVersion", "3.0.40"
1212
VALUE "InternalName", "v8unpack"
1313
VALUE "LegalCopyright", "Denis Demidov, Sergey Batanov and others"
1414
VALUE "OriginalFilename", "v8unpack.exe"
1515
VALUE "ProductName", "V8 Unpack Tool"
16-
VALUE "ProductVersion", "3.0.39"
16+
VALUE "ProductVersion", "3.0.40"
1717
END
1818
END
1919

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 3.0.39.{build}
1+
version: 3.0.40.{build}
22
pull_requests:
33
do_not_increment_build_number: true
44
clone_depth: 1

bash_completion.sh

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
_v8unpack_complete()
2+
{
3+
local cur opts
4+
COMPREPLY=()
5+
cur="${COMP_WORDS[COMP_CWORD]}"
6+
prev="${COMP_WORDS[COMP_CWORD]}"
7+
opts="-unpack -pack -parse -build -inflate -deflate \
8+
-list -example -bat -version"
9+
10+
if [[ ${COMP_CWORD} == 1 ]] ; then
11+
COMPREPLY=( $(compgen -W "$opts" -- ${cur}) )
12+
return 0
13+
fi
14+
15+
COMPREPLY=( $(compgen -f ${cur}) )
16+
return 0
17+
}
18+
complete -F _v8unpack_complete v8unpack
19+

debian/changelog

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
v8unpack (3.0.40-2~xenial) xenial; urgency=low
2+
3+
* Fixed build bug
4+
5+
-- Sergey Batanov <sergey.batanov@dmpas.ru> Fri, 17 Mar 2017 22:44:00 +0300
6+
7+
v8unpack (3.0.40-2~vivid) vivid; urgency=low
8+
9+
* Fixed build bug
10+
11+
-- Sergey Batanov <sergey.batanov@dmpas.ru> Fri, 17 Mar 2017 22:44:00 +0300
12+
13+
v8unpack (3.0.40-2~trusty) trusty; urgency=low
14+
15+
* Fixed build bug
16+
17+
-- Sergey Batanov <sergey.batanov@dmpas.ru> Fri, 17 Mar 2017 22:44:00 +0300
18+
119
v8unpack (3.0.39-1~xenial) xenial; urgency=low
220

321
* Added -list mode

rpm/v8unpack.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: v8unpack
2-
Version: 3.0.38
2+
Version: 3.0.40
33
Release: 1%{?dist}
44
Summary: Enterprise 8 unpack tool
55

0 commit comments

Comments
 (0)