Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 25a07be6 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

Merge remote-tracking branch 'VECTO-KRISPER/master' into si_unit

# Conflicts:
#	VectoCommon/VectoCommon/Utils/SI.cs
#	packages/JetBrains.Annotations.10.1.4/JetBrains.Annotations.10.1.4.nupkg
parents d43875cb d1bfe9e2
No related branches found
No related tags found
No related merge requests found
Showing
with 1372 additions and 17 deletions
...@@ -198,3 +198,8 @@ VectoCommon/VectoHashingTest/Testdata/XML/XSD/ ...@@ -198,3 +198,8 @@ VectoCommon/VectoHashingTest/Testdata/XML/XSD/
VectoCore/VectoCoreTest/TestData/Integration/DeclarationMode/**.vmod VectoCore/VectoCoreTest/TestData/Integration/DeclarationMode/**.vmod
VectoCore/VectoCoreTest/TestData/Integration/DeclarationMode/**.vsum VectoCore/VectoCoreTest/TestData/Integration/DeclarationMode/**.vsum
Coverage/ Coverage/
**/*.RSLT_*.xml
Documentation/VehiclesReleaseComparisonDeclarationMode/*.vmod
Documentation/VehiclesReleaseComparisonDeclarationMode/*.vsum
.vs/
...@@ -44,10 +44,13 @@ ...@@ -44,10 +44,13 @@
</UsingTask> </UsingTask>
<Target Name="GenerateReleasenotesPDF" BeforeTargets="AfterBuild" Condition="$(Configuration) == 'Deploy'"> <Target Name="GenerateReleasenotesPDF" BeforeTargets="AfterBuild" Condition="$(Configuration) == 'Deploy'">
<Message Text="Generating Release Notes PDF"/>
<Exec Command="cscript &quot;$(solutiondir)documentation\user manual source\convertpptxtopdf.vbs&quot; &quot;$(solutiondir)documentation\user manual source\release notes vecto3.x.pptx&quot; &quot;$(solutiondir)documentation\user manual source\release notes vecto3.x.pdf&quot;"/> <Exec Command="cscript &quot;$(solutiondir)documentation\user manual source\convertpptxtopdf.vbs&quot; &quot;$(solutiondir)documentation\user manual source\release notes vecto3.x.pptx&quot; &quot;$(solutiondir)documentation\user manual source\release notes vecto3.x.pdf&quot;"/>
</Target> </Target>
<Target Name="GenerateHelpHTML" BeforeTargets="AfterBuild" Condition="$(Configuration) == 'Deploy'"> <Target Name="GenerateHelpHTML" BeforeTargets="AfterBuild" Condition="$(Configuration) == 'Deploy'">
<Message Text="Generating Help"/>
<Exec Command="&quot;$(solutiondir)documentation\user manual\convert.bat&quot;" WorkingDirectory="$(solutiondir)documentation\user manual"/> <Exec Command="&quot;$(solutiondir)documentation\user manual\convert.bat&quot;" WorkingDirectory="$(solutiondir)documentation\user manual"/>
<Exec Command="&quot;$(solutiondir)documentation\VectoHashingTool\convert.bat&quot;" WorkingDirectory="$(solutiondir)documentation\VectoHashingTool"/>
</Target> </Target>
<Target Name="BeforeBuild" Condition="$(Configuration) == 'Deploy' OR $(Configuration) == 'Release'"> <Target Name="BeforeBuild" Condition="$(Configuration) == 'Deploy' OR $(Configuration) == 'Release'">
...@@ -69,15 +72,21 @@ ...@@ -69,15 +72,21 @@
<VectoXSD Include="$(SolutionDir)VectoCore\VectoCore\Resources\XSD\**\*.*" Exclude="$(SolutionDir)**\*Engineering*"/> <VectoXSD Include="$(SolutionDir)VectoCore\VectoCore\Resources\XSD\**\*.*" Exclude="$(SolutionDir)**\*Engineering*"/>
<VectoXMLExamples Include="$(SolutionDir)VectoCore\VectoCoreTest\TestData\XML\XMLReaderDeclaration\*-sample.xml"/> <VectoXMLExamples Include="$(SolutionDir)VectoCore\VectoCoreTest\TestData\XML\XMLReaderDeclaration\*-sample.xml"/>
<UserManual Include="$(SolutionDir)Documentation\User Manual\help.html"/> <UserManual Include="$(SolutionDir)Documentation\User Manual\help.html"/>
<UserManual Include="$(SolutionDir)Documentation\VectoHashingTool\HashingToolHelp.html"/>
<UserManual Include="$(SolutionDir)Documentation\XML\*.pdf"/> <UserManual Include="$(SolutionDir)Documentation\XML\*.pdf"/>
<UserManual Include="$(SolutionDir)Documentation\XML\VectoParameters.html"/> <UserManual Include="$(SolutionDir)Documentation\XML\VectoParameters.html"/>
<UserManual Include="$(SolutionDir)Documentation\User Manual Source\JIRA Quick Start Guide.pdf"/> <UserManual Include="$(SolutionDir)Documentation\User Manual Source\JIRA Quick Start Guide.pdf"/>
<UserManual Include="$(SolutionDir)Documentation\Cdv_Generator_VECTO3.2.xlsx"/> <UserManual Include="$(SolutionDir)Documentation\Cdv_Generator_VECTO3.2.xlsx"/>
<ReleaseNotes Include="$(SolutionDir)Documentation\User Manual Source\Release Notes Vecto3.x.pdf"/> <ReleaseNotes Include="$(SolutionDir)Documentation\User Manual Source\Release Notes Vecto3.x.pdf"/>
<HashingTool Include="$(SolutionDir)HashingTool\bin\Deploy\HashingTool.exe"/>
<HashingTool Include="$(SolutionDir)VectoCommon\VectoHashing\bin\Deploy\VectoHashing.XML"/>
<HashingTool Include="$(SolutionDir)HashingCmd\bin\Deploy\hashingcmd.exe"/>
</ItemGroup> </ItemGroup>
<Message Text="@(VectoCommandLine)"/> <Message Text="@(VectoCommandLine)"/>
<Copy SourceFiles="@(VectoCommandLine)" DestinationFolder="$(OutputPath)"/> <Copy SourceFiles="@(VectoCommandLine)" DestinationFolder="$(OutputPath)"/>
<Copy SourceFiles="@(HashingTool)" DestinationFolder="$(OutputPath)"/>
<Copy SourceFiles="@(GenericVehicles)" DestinationFiles="@(GenericVehicles->'$(OutputPath)\Generic Vehicles\%(RecursiveDir)%(Filename)%(Extension)')" /> <Copy SourceFiles="@(GenericVehicles)" DestinationFiles="@(GenericVehicles->'$(OutputPath)\Generic Vehicles\%(RecursiveDir)%(Filename)%(Extension)')" />
<Copy SourceFiles="@(DeclarationData)" DestinationFolder="$(OutputPath)\Declaration" /> <Copy SourceFiles="@(DeclarationData)" DestinationFolder="$(OutputPath)\Declaration" />
<Copy SourceFiles="@(MissionProfiles)" DestinationFolder="$(OutputPath)\Mission Profiles" /> <Copy SourceFiles="@(MissionProfiles)" DestinationFolder="$(OutputPath)\Mission Profiles" />
...@@ -102,8 +111,14 @@ ...@@ -102,8 +111,14 @@
<ZipFiles Include="$(OutputPath)*.dll" /> <ZipFiles Include="$(OutputPath)*.dll" />
<ZipFiles Include="$(OutputPath)VECTO.exe*" /> <ZipFiles Include="$(OutputPath)VECTO.exe*" />
<ZipFiles Include="$(OutputPath)vectocmd.exe*"/> <ZipFiles Include="$(OutputPath)vectocmd.exe*"/>
<ZipFiles Include="$(OutputPath)HashingTool.exe*"/>
<ZipFiles Include="$(OutputPath)hashingcmd.exe*"/>
</ItemGroup> </ItemGroup>
<Zip OutputFilename="$(OutputPath)Vecto_%(VectoAssemblyIdentities.Version).zip" Files="@(ZipFiles)" SourcePath="$(OutputPath)" DestinationPath="VECTO_%(VectoAssemblyIdentities.Version)\"/> <PropertyGroup>
<CurrentDate>$([System.DateTime]::Now.ToString(yyy_MM_dd))</CurrentDate>
</PropertyGroup>
<Message Text="Creating ZIP, CurrentDate: $(CurrentDate)"/>
<Zip OutputFilename="$(OutputPath)$(CurrentDate)-VECTO-%(VectoAssemblyIdentities.Version).zip" Files="@(ZipFiles)" SourcePath="$(OutputPath)" DestinationPath="$(CurrentDate)-VECTO-%(VectoAssemblyIdentities.Version)\"/>
</Target> </Target>
<Target Name="CleanVectoDeploy" Condition="$(Configuration) == 'Deploy'"> <Target Name="CleanVectoDeploy" Condition="$(Configuration) == 'Deploy'">
......
File added
No preview for this file type
No preview for this file type
...@@ -2,6 +2,24 @@ ...@@ -2,6 +2,24 @@
**VECTO 3.2.0** **VECTO 3.2.0**
***Build 1005 (2017-10-01)***
- Improvements
+ Release of *VECTO Hashing Tool*
- Bugfixes
+ [VECTO-569] - ‘Engine Retarder’ not correctly recognized as input
+ [VECTO-571] - Customer Report – wrong output format of average RRC
+ [VECTO-573] - Correction of displayed units in graph window
+ [VECTO-575] - Correction of simulation aborts (due to gearbox inertia, engineering mode)
+ [VECTO-577] - Correction of XML export functionality
+ [VECTO-579] - Bug fix GUI crashes on invalid input
+ [VECTO-558] - Correction of output in .vsum file – BFColdHot always 0
+ [VECTO-564] - Bug fix: correct output of vehicle group in XML report
+ [VECTO-566] - Vehicle height not correctly read (engineering mode)
+ [VECTO-545] - Update documentation on Settings dialog
***Build 940 (2017-07-28)*** ***Build 940 (2017-07-28)***
- Bugfixes: - Bugfixes:
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
@echo off
echo Starting Help-file generation...
setlocal enabledelayedexpansion enableextensions
set LIST=
for /f %%f in (files.txt) do set LIST=!LIST! "%%f"
REM pandoc --verbose -f markdown+raw_html %LIST% -s -S --toc --toc-depth=2 --self-contained --email-obfuscation=none --section-divs --mathjax=includes/mathjax.js -c includes/style.css -c includes/print.css -B includes/header.html -A includes/footer.html -o help.html -H includes/jquery.js -H includes/jquery-ui.js -H includes/include.js
%LOCALAPPDATA%\Pandoc\pandoc --verbose -f markdown+raw_html %LIST% -s -S --toc --toc-depth=2 --self-contained --email-obfuscation=none --section-divs --webtex -c includes/style.css -c includes/print.css -B includes/header.html -A includes/footer.html -o HashingToolHelp.html -H includes/jquery.js -H includes/jquery-ui.js -H includes/include.js
REM pandoc %LIST% -s -S --toc --toc-depth=2 --self-contained --email-obfuscation=none --section-divs --webtex -c includes/style.css -B includes/header.html -A includes/footer.html -o help.html -H includes/jquery.js -H includes/jquery-ui.js -H includes/include.js
REM pandoc %LIST% -s -S --toc --toc-depth=2 --self-contained --email-obfuscation=none --section-divs --webtex="https://latex.codecogs.com/svg.latex?\large " -c includes/style.css -B includes/header.html -A includes/footer.html -o help.html -H includes/jquery.js -H includes/jquery-ui.js -H includes/include.js
echo Generated outputfile: help.html
REM pandoc -s -S --toc --toc-depth=2 -N %LIST% -o help.docx
REM pandoc -s -S --toc --toc-depth=2 -N %LIST% -o help.pdf
REM pandoc -s -S --toc --toc-depth=2 -N %LIST% -o help.latex
Manual.md
\ No newline at end of file
Documentation/VectoHashingTool/images/ErrorDialog.PNG

30 KiB

Documentation/VectoHashingTool/images/FileSelectionDialog.PNG

4.16 KiB

Documentation/VectoHashingTool/images/IVT.png

3.92 KiB

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="23.509333mm"
height="8.0808182mm"
viewBox="0 0 83.300785 28.63282"
id="svg4160"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="Icon_XML_green.svg">
<defs
id="defs4162" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="33.990078"
inkscape:cy="-54.986893"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1018"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
<metadata
id="metadata4165">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-59.285156,-215.2361)">
<path
style="fill:#00c000;fill-opacity:1;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4145"
d="m 59.285156,243.86892 9.785156,-14.94141 -8.867187,-13.69141 6.757812,0 5.742188,9.19922 5.625,-9.19922 6.699219,0 -8.90625,13.90625 9.785156,14.72657 -6.972656,0 -6.347657,-9.90235 -6.367187,9.90235 -6.933594,0 z" />
<path
style="fill:#00c000;fill-opacity:1;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4147"
d="m 88.835937,243.86892 0,-28.63282 8.652344,0 5.195309,19.53125 5.13672,-19.53125 8.67188,0 0,28.63282 -5.3711,0 0,-22.53907 -5.68359,22.53907 -5.566406,0 -5.664063,-22.53907 0,22.53907 -5.371094,0 z" />
<path
style="fill:#00c000;fill-opacity:1;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4149"
d="m 122.42969,243.86892 0,-28.39844 5.78125,0 0,23.57422 14.375,0 0,4.82422 -20.15625,0 z" />
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
overflow="visible"
id="svg5582"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="Icon_XML_green1.svg"
width="83.300781"
height="28.63282"
style="overflow:visible">
<metadata
id="metadata5596">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs5594" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1157"
inkscape:window-height="583"
id="namedview5592"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="2.36"
inkscape:cx="-63.522444"
inkscape:cy="41.326547"
inkscape:window-x="2106"
inkscape:window-y="118"
inkscape:window-maximized="0"
inkscape:current-layer="svg5582" />
<path
style="fill:#00c000;fill-opacity:1;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4145"
d="M 0,28.63282 9.785156,13.69141 0.917969,0 7.675781,0 13.417969,9.19922 19.042969,0 l 6.699219,0 -8.90625,13.90625 9.785156,14.72657 -6.972656,0 -6.347657,-9.90235 -6.367187,9.90235 -6.933594,0 z" />
<path
style="fill:#ff0000;fill-opacity:1;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4147"
d="M 29.550781,28.63282 29.550781,0 38.203125,0 43.398434,19.53125 48.535154,0 l 8.67188,0 0,28.63282 -5.3711,0 0,-22.53907 -5.68359,22.53907 -5.566406,0 -5.664063,-22.53907 0,22.53907 -5.371094,0 z" />
<path
style="fill:#ff0000;fill-opacity:1;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4149"
d="m 63.144534,28.63282 0,-28.39844 5.78125,0 0,23.57422 14.375,0 0,4.82422 -20.15625,0 z" />
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
overflow="visible"
id="svg6138"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="Icon_XML_green2.svg"
width="83.300781"
height="28.63282"
style="overflow:visible">
<metadata
id="metadata6152">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6150" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1066"
inkscape:window-height="618"
id="namedview6148"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="2.36"
inkscape:cx="-8.5809275"
inkscape:cy="75.224852"
inkscape:window-x="2288"
inkscape:window-y="98"
inkscape:window-maximized="0"
inkscape:current-layer="svg6138" />
<path
style="fill:#00c000;fill-opacity:1;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4145"
d="M 0,28.63282 9.785156,13.69141 0.917969,0 7.675781,0 13.417969,9.19922 19.042969,0 l 6.699219,0 -8.90625,13.90625 9.785156,14.72657 -6.972656,0 -6.347657,-9.90235 -6.367187,9.90235 -6.933594,0 z" />
<path
style="fill:#00c000;fill-opacity:1;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4147"
d="M 29.550781,28.63282 29.550781,0 38.203125,0 43.398434,19.53125 48.535154,0 l 8.67188,0 0,28.63282 -5.3711,0 0,-22.53907 -5.68359,22.53907 -5.566406,0 -5.664063,-22.53907 0,22.53907 -5.371094,0 z" />
<path
style="fill:#ff0000;fill-opacity:1;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4149"
d="m 63.144534,28.63282 0,-28.39844 5.78125,0 0,23.57422 14.375,0 0,4.82422 -20.15625,0 z" />
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
overflow="visible"
id="svg5027"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="Icon_XML_outline.svg"
width="84.725914"
height="29.63282"
style="overflow:visible">
<metadata
id="metadata5040">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs5038" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1055"
inkscape:window-height="642"
id="namedview5036"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="2.36"
inkscape:cx="17.660696"
inkscape:cy="24.377394"
inkscape:window-x="2228"
inkscape:window-y="86"
inkscape:window-maximized="0"
inkscape:current-layer="svg5027" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#464646;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4145"
d="M 0.92513315,29.13282 10.710289,14.19141 1.8431022,0.5 l 6.757812,0 5.7421878,9.19922 5.625,-9.19922 6.699219,0 -8.90625,13.90625 9.785156,14.72657 -6.972656,0 -6.347657,-9.90235 -6.3671868,9.90235 -6.93359405,0 z" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#464646;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4147"
d="m 30.475914,29.13282 0,-28.63282 8.652344,0 5.195309,19.53125 5.13672,-19.53125 8.67188,0 0,28.63282 -5.3711,0 0,-22.53907 -5.68359,22.53907 -5.566406,0 -5.664063,-22.53907 0,22.53907 -5.371094,0 z" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#464646;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4149"
d="m 64.069667,29.13282 0,-28.39844 5.78125,0 0,23.57422 14.375,0 0,4.82422 -20.15625,0 z" />
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
overflow="visible"
id="svg6694"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="Icon_XML_red.svg"
width="83.300781"
height="28.63282"
style="overflow:visible">
<metadata
id="metadata6708">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6706" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="857"
inkscape:window-height="480"
id="namedview6704"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="2.36"
inkscape:cx="33.921098"
inkscape:cy="24.377394"
inkscape:window-x="2174"
inkscape:window-y="118"
inkscape:window-maximized="0"
inkscape:current-layer="svg6694" />
<path
style="fill:#ff0000;fill-opacity:1;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4145"
d="M 0,28.63282 9.785156,13.69141 0.917969,0 7.675781,0 13.417969,9.19922 19.042969,0 l 6.699219,0 -8.90625,13.90625 9.785156,14.72657 -6.972656,0 -6.347657,-9.90235 -6.367187,9.90235 -6.933594,0 z" />
<path
style="fill:#ff0000;fill-opacity:1;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4147"
d="M 29.550781,28.63282 29.550781,0 38.203125,0 43.398434,19.53125 48.535154,0 l 8.67188,0 0,28.63282 -5.3711,0 0,-22.53907 -5.68359,22.53907 -5.566406,0 -5.664063,-22.53907 0,22.53907 -5.371094,0 z" />
<path
style="fill:#ff0000;fill-opacity:1;stroke-width:1"
inkscape:connector-curvature="0"
stroke-linecap="Flat"
stroke-linejoin="Miter"
id="path4149"
d="m 63.144534,28.63282 0,-28.39844 5.78125,0 0,23.57422 14.375,0 0,4.82422 -20.15625,0 z" />
</svg>
Documentation/VectoHashingTool/images/JRC.png

8.18 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment