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

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Conceição <Tiago_caza@hotmail.com>2022-05-02 06:38:55 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2022-05-02 06:38:55 +0300
commit1280510eba41ea61e9d383ca692b3d041f6361fe (patch)
treed1eda3c7544ca8169003fc97a9e3238e3fe62018 /UVtools.WPF
parent3130ebe0f21d34f3d50c5ef05b7d0144ce674aa9 (diff)
v3.4.1v3.4.1
- (Add) Suggestion - Wait time before cure: Allow to set the number of layers to smooth transition from bottom to normal wait time (Defaults to 8) - (Fix) Tool - PCB Exposure: Pixels per millimeter was been set to fixed value instead of use printer lcd pitch, causing wrong dimentions on different from 50µm pitch - (Fix) Tool - PCB Exposure: Unable to run the tool when the display size information isn't available
Diffstat (limited to 'UVtools.WPF')
-rw-r--r--UVtools.WPF/Controls/Suggestions/SuggestionWaitTimeBeforeCureControl.axaml22
-rw-r--r--UVtools.WPF/UVtools.WPF.csproj2
2 files changed, 23 insertions, 1 deletions
diff --git a/UVtools.WPF/Controls/Suggestions/SuggestionWaitTimeBeforeCureControl.axaml b/UVtools.WPF/Controls/Suggestions/SuggestionWaitTimeBeforeCureControl.axaml
index 53f4d9f..596e1e4 100644
--- a/UVtools.WPF/Controls/Suggestions/SuggestionWaitTimeBeforeCureControl.axaml
+++ b/UVtools.WPF/Controls/Suggestions/SuggestionWaitTimeBeforeCureControl.axaml
@@ -88,10 +88,32 @@
<TextBlock Grid.Row="10" Grid.Column="0"
VerticalAlignment="Center"
+ ToolTip.Tip="Sets the number of layers to smooth transition from bottom to normal wait time"
+ IsVisible="{Binding Suggestion.IsSetTypeFixed}"
+ Text="Transition layers:"/>
+
+ <TextBlock Grid.Row="10" Grid.Column="0"
+ VerticalAlignment="Center"
ToolTip.Tip="Sets the wait time according an (wait time - exposure time) ratio"
IsVisible="{Binding !Suggestion.IsSetTypeFixed}"
Text="Proportional wait time:"/>
+ <NumericUpDown Grid.Row="10" Grid.Column="2"
+ VerticalAlignment="Center"
+ Classes="ValueLabel ValueLabel_layers"
+ Minimum="0"
+ Maximum="255"
+ Increment="1"
+ IsVisible="{Binding Suggestion.IsSetTypeFixed}"
+ Value="{Binding Suggestion.WaitTimeBeforeCureTransitionLayerCount}"/>
+
+ <TextBlock Grid.Row="10" Grid.Column="6"
+ VerticalAlignment="Center"
+ ToolTip.Tip="Decrement step per layer"
+ IsEnabled="{Binding Suggestion.WaitTimeBeforeCureTransitionLayerCount}"
+ IsVisible="{Binding Suggestion.IsSetTypeFixed}"
+ Text="{Binding Suggestion.WaitTimeBeforeCureTransitionDecrement, StringFormat=Decrement: {0:F2}s per layer}"/>
+
<NumericUpDown Grid.Row="10" Grid.Column="2"
VerticalAlignment="Center"
Classes="ValueLabel ValueLabel_s"
diff --git a/UVtools.WPF/UVtools.WPF.csproj b/UVtools.WPF/UVtools.WPF.csproj
index b40b1f4..32d4b43 100644
--- a/UVtools.WPF/UVtools.WPF.csproj
+++ b/UVtools.WPF/UVtools.WPF.csproj
@@ -12,7 +12,7 @@
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/sn4k3/UVtools</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
- <Version>3.4.0</Version>
+ <Version>3.4.1</Version>
<Platforms>AnyCPU;x64</Platforms>
<PackageIcon>UVtools.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>