Skip to content

Commit c839eef

Browse files
authored
Merge pull request #54 from sea-kg/version-0.4.4
Version 0.4.4
2 parents f3c61bd + 6aee577 commit c839eef

File tree

63 files changed

+1239
-393
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+1239
-393
lines changed

.dockerignore

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.git
22
dckr_mysql
3-
tmp/*
4-
.wsjcpp/*
5-
docs/*
6-
misc/*
7-
data_test/*
8-
game-simulation/*
9-
dockers/*
10-
vulnbox/*
11-
tests/*
3+
tmp
4+
.wsjcpp
5+
docs
6+
misc
7+
data_test
8+
game-simulation
9+
dockers
10+
tests
11+
ctf01d-store

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ ctf01d
1010
tmp/*
1111
.wsjcpp/*
1212
*.log
13+
.ctf01d/*
1314

1415
# Prerequisites
1516
# *.d

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to ctf01d project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [v0.4.4] - 2020-09-22 (2020 Sep 22)
9+
10+
### Added
11+
12+
* Copied script fhqjad-store from fhq-server
13+
* Fixed #52 added 'ctf01d teams list'
14+
* Added to main find workdir authomaticly
15+
* Fixed #53 added services list
16+
17+
### Changed
18+
19+
* Updated README.md
20+
* Updated wsjcpp-core to v0.2.1
21+
* Updated wsjcpp-arguments to v0.2.1
22+
23+
824
## [v0.4.3] - 2020-09-12 (2020 Sep 12)
925

1026
### Added

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,12 @@ list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_clean.
3030
list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_clean.cpp")
3131
list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_ctf01d_main.h")
3232
list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_ctf01d_main.cpp")
33+
list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_services.h")
34+
list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_services.cpp")
3335
list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_start.h")
3436
list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_start.cpp")
37+
list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_teams.h")
38+
list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_teams.cpp")
3539
list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_version.h")
3640
list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_version.cpp")
3741
list (APPEND WSJCPP_SOURCES "./src/argument_processors/argument_processor_web_test.h")

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ $ cd ~/ctf01d.git/game-simulation/
671671
$ ./ctf01d-assistent.py clean
672672
```
673673

674-
# THANKS FOR
674+
# THANKS TO
675675

676676
* Danil Dudkin
677677

0 commit comments

Comments
 (0)