Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
thick-casting
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
潘栩锋
thick-casting
Commits
3b793d4a
Commit
3b793d4a
authored
Jun 03, 2024
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
## 流延测厚仪客户端 v7.7.4
1. 修复 修复大混合图 10条曲线,有算出一样的ID,IDs无法Add 这个bug 2. 优化 即时扫描图 的 柱状图带红黄绿颜色
parent
b7a93404
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
59 additions
and
15 deletions
+59
-15
AssemblyInfo.cs
...LY.Thick.FilmCasting.UI.Client/Properties/AssemblyInfo.cs
+3
-3
AssemblyInfo.cs
...LY.Thick.FilmCasting.UI.Server/Properties/AssemblyInfo.cs
+3
-3
GiantMixScanGraph2Vm.cs
...ng.UI/UiModule/GiantMixScanGraph2/GiantMixScanGraph2Vm.cs
+3
-1
TempScanGraphVm.cs
....FilmCasting.UI/UiModule/TempScanGraph/TempScanGraphVm.cs
+28
-6
filmCastingInstallZipVersionInfo.json
脚本/filmCastingInstallZipVersionInfo.json
+3
-2
版本描述.md
脚本/版本描述.md
+19
-0
No files found.
Project.FLY.Thick.FilmCasting/FLY.Thick.FilmCasting.UI.Client/Properties/AssemblyInfo.cs
View file @
3b793d4a
...
...
@@ -12,7 +12,7 @@ using System.Windows;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("枫莱尔自动化技术有限公司")]
[assembly: AssemblyProduct("流延测厚仪客户端")]
[assembly: AssemblyCopyright("Copyright © 202
3
FLYAutomation")]
[assembly: AssemblyCopyright("Copyright © 202
4
FLYAutomation")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
...
...
@@ -51,6 +51,6 @@ using System.Windows;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.7.
3
.0")]
[assembly: AssemblyFileVersion("7.7.
3
.0")]
[assembly: AssemblyVersion("7.7.
4
.0")]
[assembly: AssemblyFileVersion("7.7.
4
.0")]
[assembly: Guid("BD20A921-953E-44CA-8FAB-4619D3CBCD06")]
Project.FLY.Thick.FilmCasting/FLY.Thick.FilmCasting.UI.Server/Properties/AssemblyInfo.cs
View file @
3b793d4a
...
...
@@ -12,7 +12,7 @@ using System.Windows;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("佛山市枫莱尔自动化技术有限公司")]
[assembly: AssemblyProduct("流延测厚仪服务器")]
[assembly: AssemblyCopyright("Copyright © 202
3
FLYAutomation")]
[assembly: AssemblyCopyright("Copyright © 202
4
FLYAutomation")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
...
...
@@ -51,6 +51,6 @@ using System.Windows;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("7.7.
2
.0")]
[assembly: AssemblyFileVersion("7.7.
2
.0")]
[assembly: AssemblyVersion("7.7.
4
.0")]
[assembly: AssemblyFileVersion("7.7.
4
.0")]
[assembly: Guid("E7D930E0-C871-4001-A31A-DC748ED5817C")]
Project.FLY.Thick.FilmCasting/FLY.Thick.FilmCasting.UI/UiModule/GiantMixScanGraph2/GiantMixScanGraph2Vm.cs
View file @
3b793d4a
...
...
@@ -792,7 +792,9 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
int
index
=
(
int
)
Math
.
Round
(
index_d
);
while
(
index
<
scanDatas
.
Count
)
{
Ids
.
Add
(
scanDatas
[
index
].
ID
,
index
);
long
id
=
scanDatas
[
index
].
ID
;
if
(!
Ids
.
ContainsKey
(
id
))
Ids
.
Add
(
id
,
index
);
index_d
+=
interval
;
index
=
(
int
)
Math
.
Round
(
index_d
);
}
...
...
Project.FLY.Thick.FilmCasting/FLY.Thick.FilmCasting.UI/UiModule/TempScanGraph/TempScanGraphVm.cs
View file @
3b793d4a
...
...
@@ -97,6 +97,7 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
protected
ChartValues
<
double
>
Values
=
new
ChartValues
<
double
>();
protected
List
<
double
>
datas
=
new
List
<
double
>();
protected
object
Mapper
;
protected
object
Mapper2
;
protected
FilmCastingProfileParam
profileParam
;
protected
TempScanGraphItemParam
graphparam
;
IBulkDbService
bulkDb
;
...
...
@@ -150,8 +151,28 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
Mapper
=
Mappers
.
Xy
<
double
>()
.
X
((
value
,
index
)
=>
{
//变为分区号
return
index
+
1
;
return
index
+
1
;
})
.
Y
(
value
=>
value
)
.
Fill
((
value
)
=>
{
if
((
value
>
Tolerance2YMax
)
||
(
value
<
Tolerance2YMin
))
{
return
AreaColors
[
2
];
}
else
if
((
value
>
ToleranceYMax
)
||
(
value
<
ToleranceYMin
))
{
return
AreaColors
[
1
];
}
else
{
return
AreaColors
[
0
];
}
});
Mapper2
=
Mappers
.
Xy
<
double
>()
.
X
((
value
,
index
)
=>
{
return
index
+
1
;
})
.
Y
(
value
=>
value
);
#
endregion
...
...
@@ -214,10 +235,11 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
Stroke
=
new
SolidColorBrush
(
Colors
.
DarkBlue
),
Fill
=
AreaColors
[
4
],
PointGeometry
=
null
,
Configuration
=
Mapper
Configuration
=
Mapper
2
};
lineSeries_avg
.
SetValue
(
System
.
Windows
.
Controls
.
Panel
.
ZIndexProperty
,
10
);
lineSeries_avg
.
SetBinding
(
LineSeries
.
AreaLimitProperty
,
new
Binding
(
nameof
(
Target
))
{
Source
=
this
});
Series
=
new
SeriesCollection
{
lineSeries_avg
...
...
@@ -230,8 +252,8 @@ namespace FLY.Thick.FilmCasting.UI.UiModule
new
Column2Series
{
Values
=
Values
,
Stroke
=
new
SolidColorBrush
(
Colors
.
Transparent
),
StrokeThickness
=
0
,
Stroke
=
new
SolidColorBrush
(
Colors
.
Black
),
StrokeThickness
=
1
,
PointGeometry
=
null
,
Configuration
=
Mapper
}
...
...
脚本/filmCastingInstallZipVersionInfo.json
View file @
3b793d4a
{
"InstallZipVersion"
:
"7.7.
3
"
,
"InstallZipUrl"
:
"http://server.flyautomation.net:8889/download/流延测厚仪安装包_v7.7.
3_2023091
3.7z"
"InstallZipVersion"
:
"7.7.
4
"
,
"InstallZipUrl"
:
"http://server.flyautomation.net:8889/download/流延测厚仪安装包_v7.7.
4_2024060
3.7z"
}
\ No newline at end of file
脚本/版本描述.md
View file @
3b793d4a
# 流延测厚仪安装包_v7.7.4_20240603
## 流延测厚仪服务器 v7.7.2
## 流延测厚仪客户端 v7.7.4
1.
修复 修复大混合图 10条曲线,有算出一样的ID,IDs无法Add 这个bug
2.
优化 即时扫描图 的 柱状图带红黄绿颜色
## 自动模头服务器 v7.6.1
## 称重服务器 v7.2.0
## 数据浏览器 v7.6.1
## LP3 v3.0.0
<br/>
<br/>
<br/>
# 流延测厚仪安装包_v7.7.3_20230913
## 流延测厚仪服务器 v7.7.2
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment