Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to wsjcpp project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [v0.2.7] - 2026-05-17 (2026 May 17)

* Redesign resources struct
* Disable include h files for resource to CMakeLists.txt
* Fixed comment with wsjcpp version in file resources
* Fixed spell checker 'automaticly' -> 'automatically'
* Removed dependency wsjcpp-hashes (copied what a need to project)
* Redesing build_simple.sh
* Updated year in copyrights

## [v0.2.6] - 2026-01-01 (2026 Jan 1)

- Fixed makeDirPath is not working #117
Expand All @@ -19,19 +29,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [v0.2.4] - 2025-01-18 (2025 Jan 18)

### Added

- Added set permissions for build_simple.sh on init
- Added temporary fix for init package
- Added hint about change version on init new package
- Added license to files

### Fixed

- Fix urls

### Changed

- Change minimal version fo c++ from 11 to 17 (it's need for wsjcpp-core)

## [v0.2.3] - 2025-01-13 (2025 Jan 13)
Expand Down
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ set(EXECUTABLE_OUTPUT_PATH ${wsjcpp_SOURCE_DIR})
# include header dirs
list (APPEND WSJCPP_INCLUDE_DIRS "src")
list (APPEND WSJCPP_INCLUDE_DIRS "src/app")
list (APPEND WSJCPP_INCLUDE_DIRS "src/thirdparty")
list (APPEND WSJCPP_INCLUDE_DIRS "src/ArgumentsProcessors")
list (APPEND WSJCPP_INCLUDE_DIRS "src/Downloaders")

list (APPEND WSJCPP_SOURCES "src/thirdparty/smallsha1.cpp")
list (APPEND WSJCPP_SOURCES "src/wsjcpp_helpers.cpp")

list (APPEND WSJCPP_SOURCES "src/wsjcpp_package_manager_author.cpp")
list (APPEND WSJCPP_SOURCES "src/wsjcpp_package_manager_author.h")
list (APPEND WSJCPP_SOURCES "src/wsjcpp_package_manager_dependence.h")
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2024 Evgenii Sopov
Copyright (c) 2019-2026 Evgenii Sopov

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.6
0.2.7
11 changes: 5 additions & 6 deletions build_simple.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@ check_ret() {
fi
}

if [ ! -d tmp ]; then
mkdir -p tmp
fi
# if [ ! -d tmp ]; then
# mkdir -p tmp
# fi

cd tmp
cmake ..
cmake -H. -Btmp/release -DCMAKE_BUILD_TYPE=Release
check_ret $? "configure"

make
cmake --build tmp/release --config Release
check_ret $? "make"
59 changes: 0 additions & 59 deletions src-resources.wsjcpp/__build_simple_sh_pathd79e07.cpp

This file was deleted.

13 changes: 0 additions & 13 deletions src-resources.wsjcpp/__build_simple_sh_pathd79e07.h

This file was deleted.

19 changes: 5 additions & 14 deletions src.wsjcpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Automaticly generated by [email protected].6
# Automaticly generated by [email protected].7
cmake_minimum_required(VERSION 3.0)

add_definitions(-DWSJCPP_APP_VERSION="v0.2.6")
add_definitions(-DWSJCPP_APP_VERSION="v0.2.7")
add_definitions(-DWSJCPP_APP_NAME="wsjcpp")

if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
Expand All @@ -22,15 +22,6 @@ list (APPEND WSJCPP_INCLUDE_DIRS "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_core/"
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_core/wsjcpp_core.cpp")
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_core/wsjcpp_core.h")

# wsjcpp-hashes:v0.1.4
list (APPEND WSJCPP_INCLUDE_DIRS "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_hashes/")
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_hashes/md5.cpp")
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_hashes/md5.h")
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_hashes/smallsha1.h")
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_hashes/smallsha1.cpp")
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_hashes/wsjcpp_hashes.cpp")
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_hashes/wsjcpp_hashes.h")

# wsjcpp-safe-scripting:v0.1.1
list (APPEND WSJCPP_INCLUDE_DIRS "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_safe_scripting/")
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_safe_scripting/wsjcpp_safe_scripting.h")
Expand All @@ -47,9 +38,9 @@ list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_yaml/wsjcpp
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/./src.wsjcpp/wsjcpp_yaml/wsjcpp_yaml.h")

# resources.wsjcpp
list (APPEND WSJCPP_INCLUDE_DIRS "${CMAKE_SOURCE_DIR}/src-resources.wsjcpp/")
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/src-resources.wsjcpp/__build_simple_sh_pathd79e07.h")
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/src-resources.wsjcpp/__build_simple_sh_pathd79e07.cpp")
list (APPEND WSJCPP_INCLUDE_DIRS "${CMAKE_SOURCE_DIR}/src/resources.wsjcpp/")
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/src/resources.wsjcpp/__build_simple_sh_path66c8dc.h")
list (APPEND WSJCPP_SOURCES "${CMAKE_SOURCE_DIR}/src/resources.wsjcpp/__build_simple_sh_path66c8dc.cpp")

# required-libraries
list (APPEND WSJCPP_LIBRARIES "-lpthread")
Expand Down
Loading
Loading