Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mm2/Little-CMS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarti Maria <marti.maria@littlecms.com>2022-10-15 20:39:11 +0300
committerMarti Maria <marti.maria@littlecms.com>2022-10-15 20:39:11 +0300
commit7c5a51f8472be479bf5674ef6bfabd70b8c88253 (patch)
treeb436d84c212a59f8d6259bf9f9fbc7437be5bc20
parent430f9166ed15f991c3f92ba592e2cdf1d1429f64 (diff)
lcms2-2.14rc
Release candidate 1
-rw-r--r--doc/LittleCMS2.13 Plugin API.pdfbin458209 -> 0 bytes
-rw-r--r--doc/LittleCMS2.13 tutorial.pdfbin588527 -> 0 bytes
-rw-r--r--doc/LittleCMS2.14 Plugin API.pdfbin0 -> 460449 bytes
-rw-r--r--doc/LittleCMS2.14 tutorial.pdfbin0 -> 574545 bytes
-rw-r--r--include/lcms2.h2
-rw-r--r--plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj3
-rw-r--r--plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj.filters5
-rw-r--r--plugins/threaded/doc/LittleCMS threaded extensions 1.0.pdfbin0 -> 190980 bytes
-rw-r--r--plugins/threaded/include/lcms2_threaded.h6
9 files changed, 12 insertions, 4 deletions
diff --git a/doc/LittleCMS2.13 Plugin API.pdf b/doc/LittleCMS2.13 Plugin API.pdf
deleted file mode 100644
index 00c7167..0000000
--- a/doc/LittleCMS2.13 Plugin API.pdf
+++ /dev/null
Binary files differ
diff --git a/doc/LittleCMS2.13 tutorial.pdf b/doc/LittleCMS2.13 tutorial.pdf
deleted file mode 100644
index 99ddba7..0000000
--- a/doc/LittleCMS2.13 tutorial.pdf
+++ /dev/null
Binary files differ
diff --git a/doc/LittleCMS2.14 Plugin API.pdf b/doc/LittleCMS2.14 Plugin API.pdf
new file mode 100644
index 0000000..1c8fa4f
--- /dev/null
+++ b/doc/LittleCMS2.14 Plugin API.pdf
Binary files differ
diff --git a/doc/LittleCMS2.14 tutorial.pdf b/doc/LittleCMS2.14 tutorial.pdf
new file mode 100644
index 0000000..3bbbd2e
--- /dev/null
+++ b/doc/LittleCMS2.14 tutorial.pdf
Binary files differ
diff --git a/include/lcms2.h b/include/lcms2.h
index b7dc886..ddead13 100644
--- a/include/lcms2.h
+++ b/include/lcms2.h
@@ -23,7 +23,7 @@
//
//---------------------------------------------------------------------------------
//
-// Version 2.14 alpha2
+// Version 2.14 rc1
//
#ifndef _lcms2_H
diff --git a/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj b/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj
index eb8dd68..005a452 100644
--- a/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj
+++ b/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj
@@ -232,6 +232,9 @@
<ItemGroup>
<ClCompile Include="..\..\testbed\threaded_testbed.c" />
</ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="..\..\include\lcms2_threaded.h" />
+ </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
diff --git a/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj.filters b/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj.filters
index 0cba047..0660190 100644
--- a/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj.filters
+++ b/plugins/threaded/Projects/VC2022/lcms2_threaded_plugin_testbed.vcxproj.filters
@@ -19,4 +19,9 @@
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="..\..\include\lcms2_threaded.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
+ </ItemGroup>
</Project> \ No newline at end of file
diff --git a/plugins/threaded/doc/LittleCMS threaded extensions 1.0.pdf b/plugins/threaded/doc/LittleCMS threaded extensions 1.0.pdf
new file mode 100644
index 0000000..007c5fd
--- /dev/null
+++ b/plugins/threaded/doc/LittleCMS threaded extensions 1.0.pdf
Binary files differ
diff --git a/plugins/threaded/include/lcms2_threaded.h b/plugins/threaded/include/lcms2_threaded.h
index 6bd38be..db2cdba 100644
--- a/plugins/threaded/include/lcms2_threaded.h
+++ b/plugins/threaded/include/lcms2_threaded.h
@@ -39,10 +39,10 @@ extern "C" {
// Configuration toggles
// The one and only plug-in entry point. To install this plugin in your code you need to place this in
-// some initialization place. IOf you want to combine this plug-in with fastfloat, make sure to call
-// the threaded entry point comes last in chain.
+// some initialization place. If you want to combine this plug-in with fastfloat, make sure to call
+// the threaded entry point comes last in chain. flags is a reserved field for future use
//
-// cmsPlugin(cmsThreadedExtensions(CMS_THREADED_GUESS_MAX_THREADS));
+// cmsPlugin(cmsThreadedExtensions(CMS_THREADED_GUESS_MAX_THREADS, 0));
//
#define CMS_THREADED_GUESS_MAX_THREADS -1