Skip to content

Commit

Permalink
ver.2.1
Browse files Browse the repository at this point in the history
- Aggiunto "Stile" SudTirolo (ITA/DEU)[16]
- Aggiunta possibilità di spegnere pannello anteprima icona e testo XML nel Viewer
  • Loading branch information
carloBarazzetta committed Nov 23, 2022
1 parent ebf8444 commit 64bbc95
Show file tree
Hide file tree
Showing 67 changed files with 9,296 additions and 801 deletions.
12 changes: 6 additions & 6 deletions Debug/Preview Handlers/PreviewHandler Host/PreviewHost.dproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{b3898e3b-28c0-4d98-8436-5a69b8915599}</ProjectGuid>
<ProjectVersion>19.2</ProjectVersion>
<ProjectVersion>19.5</ProjectVersion>
<FrameworkType>VCL</FrameworkType>
<MainSource>PreviewHost.dpr</MainSource>
<Base>True</Base>
Expand Down Expand Up @@ -124,17 +124,17 @@
<FormType>dfm</FormType>
</DCCReference>
<DCCReference Include="uHostPreview.pas"/>
<BuildConfiguration Include="Release">
<Key>Cfg_2</Key>
<CfgParent>Base</CfgParent>
</BuildConfiguration>
<BuildConfiguration Include="Base">
<Key>Base</Key>
</BuildConfiguration>
<BuildConfiguration Include="Debug">
<Key>Cfg_1</Key>
<CfgParent>Base</CfgParent>
</BuildConfiguration>
<BuildConfiguration Include="Release">
<Key>Cfg_2</Key>
<CfgParent>Base</CfgParent>
</BuildConfiguration>
</ItemGroup>
<ProjectExtensions>
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
Expand Down Expand Up @@ -176,7 +176,7 @@
<Source Name="MainSource">PreviewHost.dpr</Source>
</Source>
</Delphi.Personality>
<Deployment Version="3"/>
<Deployment Version="4"/>
<Platforms>
<Platform value="Win32">True</Platform>
<Platform value="Win64">True</Platform>
Expand Down
Binary file modified Debug/Preview Handlers/PreviewHandler Host/PreviewHost.res
Binary file not shown.
1,744 changes: 1,744 additions & 0 deletions Docs/Templates/fatturapa_v1.2.1_de-it.xsl

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions Ext/SVGIconImageList/Image32/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Image32 - 2D graphics library for Delphi Pascal
Latest version: 4.11
Released: 17 February 2022
Latest version: 4.3
Released: 27 September 2022

Copyright © 2019-2022 Angus Johnson
Freeware released under Boost Software License
Expand All @@ -12,6 +12,9 @@ Download : https://sourceforge.net/projects/image32/files/

Recent changes:

Version 4.3
Numerous minor bugfixes

Version 4.11
Fixed compatibility issues with older versions of Delphi.
Updated Img32.Clipper to latest version of Clipper
Expand Down
4 changes: 2 additions & 2 deletions Ext/SVGIconImageList/Image32/source/Img32.CQ.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

(*******************************************************************************
* Author : Angus Johnson *
* Version : 4.2 *
* Date : 30 May 2022 *
* Version : 4.3 *
* Date : 27 September 2022 *
* Website : http://www.angusj.com *
* Copyright : Angus Johnson 2019-2021 *
* Purpose : Color reduction for TImage32 *
Expand Down
4 changes: 2 additions & 2 deletions Ext/SVGIconImageList/Image32/source/Img32.Clipper2.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

(*******************************************************************************
* Author : Angus Johnson *
* Version : 4.2 *
* Date : 30 May 2022 *
* Version : 4.3 *
* Date : 27 September 2022 *
* Website : http://www.angusj.com *
* Copyright : Angus Johnson 2019-2022 *
* Purpose : Wrapper module for the Clipper library *
Expand Down
22 changes: 10 additions & 12 deletions Ext/SVGIconImageList/Image32/source/Img32.Draw.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

(*******************************************************************************
* Author : Angus Johnson *
* Version : 4.2 *
* Date : 30 May 2022 *
* Version : 4.3 *
* Date : 27 September 2022 *
* Website : http://www.angusj.com *
* Copyright : Angus Johnson 2019-2021 *
* *
Expand Down Expand Up @@ -1025,25 +1025,23 @@ procedure Rasterize(const paths: TPathsD; const clipRec: TRect;
begin
byteBuffer[j] := Min(255, Round(Abs(accum) * 318));
end;
frPositive:
begin
{$IFDEF REVERSE_ORIENTATION}
if accum < -0.002 then
byteBuffer[j] := Min(255, Round(-accum * 318));
frPositive:
{$ELSE}
if accum > 0.002 then
byteBuffer[j] := Min(255, Round(accum * 318));
{$ENDIF}
end;
frNegative:
{$ENDIF}
begin
{$IFDEF REVERSE_ORIENTATION}
if accum > 0.002 then
byteBuffer[j] := Min(255, Round(accum * 318));
end;
{$IFDEF REVERSE_ORIENTATION}
frNegative:
{$ELSE}
frPositive:
{$ENDIF}
begin
if accum < -0.002 then
byteBuffer[j] := Min(255, Round(-accum * 318));
{$ENDIF}
end;
end;
end;
Expand Down
Loading

0 comments on commit 64bbc95

Please sign in to comment.