-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.8.0 Beta solidify pixel engines, and polish (#4)
- add validateTargetLayerColorIndex funciton to all tools that define a target layer - remove "all" in layerSetKnobs that use CategorizeFilters - LayerSetKnob.cpp : remove now unneeded layerSetKnobData manipulations - LayerSetConfig.h, add const reference - add simple central version handling, cleanup - adapt to upstream changes to argparse repo, locking it to latest version v0.1.0 - add LayerAlchemy namespace - namespaced all nuke plugins - remove redundant of unused includes (again) - code style tweaks - GradeLayerSet.cpp: rewrite to follow GradeBeautyLayerSet engines - FlattenLayerSet.cpp: refactors, and slight tweaks to pixel engine - add mix luminance back to grade type tools - createVersionTextKnob to show the version on nuke plugins - CMake : compile yaml-cpp to custom namespace to avoid namespace clashes with nuke 12 ocio yaml-cpp - CMake : remove loops, make explicit - CMake: add documentation package target - CMake : add external projects in thirdparty directory - CMake : update to use version.h - update documentation images
- Loading branch information
Showing
24 changed files
with
1,013 additions
and
664 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,23 @@ | ||
find_package(PythonInterp) | ||
find_program(PYTHON "python") | ||
find_program(MKDOCS_ABSPATH NAMES mkdocs) | ||
include(GNUInstallDirs) | ||
|
||
get_filename_component(DOCUMENTATION_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/documentation" ABSOLUTE) | ||
|
||
add_custom_target(documentation | ||
COMMAND ${MKDOCS_ABSPATH} build -c -s -v -q --site-dir ${CMAKE_CURRENT_BINARY_DIR} | ||
COMMAND ${MKDOCS_ABSPATH} build -c -s -v -q --site-dir ${CMAKE_CURRENT_BINARY_DIR}/site | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
COMMENT "Generating mkdocs documentation in ${CMAKE_CURRENT_SOURCE_DIR}" | ||
) | ||
|
||
add_custom_target(documentation_package | ||
COMMENT "creating documentation package for ${PROJECT_PACKAGE_NAME}" | ||
COMMAND ${CMAKE_COMMAND} -E tar "cfvz" "${PROJECT_NAME}-${LAYER_ALCHEMY_VERSION_STRING}_documentation.tgz" "${DOCUMENTATION_INSTALL_DIR}" | ||
DEPENDS ${CMAKE_INSTALL_PREFIX} # make sure the install directory exists | ||
DEPENDS documentation | ||
) | ||
|
||
install( | ||
DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} | ||
DESTINATION ${CMAKE_INSTALL_PREFIX} | ||
PATTERN "CmakeFiles" EXCLUDE | ||
PATTERN "CMakeFiles" EXCLUDE | ||
PATTERN "Makefile" EXCLUDE | ||
PATTERN "cmake_install.cmake" EXCLUDE | ||
) | ||
DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/site/ | ||
DESTINATION ${DOCUMENTATION_INSTALL_DIR} | ||
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+3.02 KB
(100%)
documentation/docs/media/parameters/GradeBeauty_uncollapsed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#pragma once | ||
#define LAYER_ALCHEMY_VERSION_MAJOR 0 | ||
#define LAYER_ALCHEMY_VERSION_MINOR 8 | ||
#define LAYER_ALCHEMY_VERSION_PATCH 0 | ||
|
||
#include <string> | ||
|
||
static const std::string LAYER_ALCHEMY_VERSION_STRING = | ||
std::to_string(LAYER_ALCHEMY_VERSION_MAJOR) + "." + | ||
std::to_string(LAYER_ALCHEMY_VERSION_MINOR) + "." + | ||
std::to_string(LAYER_ALCHEMY_VERSION_PATCH); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.