Unverified Commit 984b75b7 authored by Marius Göcke's avatar Marius Göcke
Browse files

added certain file-types;+semver:minor

parent 90df5567
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
# Release notes

## Changes

- Added functions for concrete filetypes.
+2 −1
Original line number Diff line number Diff line
@@ -4,3 +4,4 @@ Version;SupportBegin;SupportEnd
1.1.0;2025-07-10T00:00:00;2027-10-09T00:00:00
1.0.2;2025-08-07T00:00:00;2027-11-06T00:00:00
1.2.0;2025-08-10T00:00:00;2027-11-09T00:00:00
1.2.1;2025-08-28T00:00:00;2027-11-27T00:00:00
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ RUN mkdir /Workspace && \
  mkdir /Workspace/Configuration && \
  mkdir /Workspace/Logs && \
  apt-get update && \
  apt-get install -y git && \
  apt-get install -y git libreoffice-core libreoffice-writer libreoffice-calc && \
  rm -rf /var/lib/apt/lists/*
ADD ./Other/Resources/DependentCodeUnits/SimpleOCRService/BuildResult_DotNet_win-x64 /Workspace/Application
ADD ./Other/Resources/OCRData /Workspace/OCRData
+3 −3
Original line number Diff line number Diff line
# SimpleOCRCLI-reference

TODO
## Usage

Example picture:
### Hints

![Image not available](images/Example.png "Example picture")
When working with office-documents then it is required that `soffice` is available as commandline-command.
+8 −0
Original line number Diff line number Diff line
@@ -7,6 +7,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleOCRCLI", "SimpleOCRCL
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SimpleOCRCLITests", "SimpleOCRCLITests\SimpleOCRCLITests.csproj", "{C6110F13-7E67-4CD1-9333-D984EE5C4BFC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleOCRLibrary", "..\SimpleOCRLibrary\SimpleOCRLibrary\SimpleOCRLibrary.csproj", "{2AB3E305-EF7C-6DBF-0AA4-328145001C56}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Development|Any CPU = Development|Any CPU
@@ -26,6 +28,12 @@ Global
		{C6110F13-7E67-4CD1-9333-D984EE5C4BFC}.Productive|Any CPU.Build.0 = Productive|Any CPU
		{C6110F13-7E67-4CD1-9333-D984EE5C4BFC}.QualityCheck|Any CPU.ActiveCfg = QualityCheck|Any CPU
		{C6110F13-7E67-4CD1-9333-D984EE5C4BFC}.QualityCheck|Any CPU.Build.0 = QualityCheck|Any CPU
		{2AB3E305-EF7C-6DBF-0AA4-328145001C56}.Development|Any CPU.ActiveCfg = Development|Any CPU
		{2AB3E305-EF7C-6DBF-0AA4-328145001C56}.Development|Any CPU.Build.0 = Development|Any CPU
		{2AB3E305-EF7C-6DBF-0AA4-328145001C56}.Productive|Any CPU.ActiveCfg = Productive|Any CPU
		{2AB3E305-EF7C-6DBF-0AA4-328145001C56}.Productive|Any CPU.Build.0 = Productive|Any CPU
		{2AB3E305-EF7C-6DBF-0AA4-328145001C56}.QualityCheck|Any CPU.ActiveCfg = QualityCheck|Any CPU
		{2AB3E305-EF7C-6DBF-0AA4-328145001C56}.QualityCheck|Any CPU.Build.0 = QualityCheck|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
Loading