Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
0f87446906 | |||
e0fcaf1f53 |
14
CHANGELOG.md
14
CHANGELOG.md
@ -3,10 +3,22 @@ Changelog
|
|||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
[v0.11.4][v0.11.4] (2024-09-22) {#v0.11.4}
|
||||||
|
------------------------------------------
|
||||||
|
|
||||||
|
### Behobene Fehler {#v0.11.4-bugfixes}
|
||||||
|
|
||||||
|
* In den Tooltips für Gewicht und Flächenbindungen wurden die Abstände wieder hergestellt. (e0fcaf1f53)
|
||||||
|
|
||||||
|
[v0.11.4]: https://git.necronda.net/winzer/elwig/releases/tag/v0.11.4
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[v0.11.3][v0.11.3] (2024-09-22) {#v0.11.3}
|
[v0.11.3][v0.11.3] (2024-09-22) {#v0.11.3}
|
||||||
------------------------------------------
|
------------------------------------------
|
||||||
|
|
||||||
### Sonstiges {#v0.11.3-misc}
|
### Behobene Fehler {#v0.11.3-bugfixes}
|
||||||
|
|
||||||
* Im Mitglieder-Fenster (`MemberAdminWindow`) wurde das Berechnen der Mitgliederdaten pro Jahr und Mitglied rückgängig gemacht. (1d187c25f3)
|
* Im Mitglieder-Fenster (`MemberAdminWindow`) wurde das Berechnen der Mitgliederdaten pro Jahr und Mitglied rückgängig gemacht. (1d187c25f3)
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<UseWPF>true</UseWPF>
|
<UseWPF>true</UseWPF>
|
||||||
<PreserveCompilationContext>true</PreserveCompilationContext>
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
||||||
<ApplicationIcon>Resources\Images\Elwig.ico</ApplicationIcon>
|
<ApplicationIcon>Resources\Images\Elwig.ico</ApplicationIcon>
|
||||||
<Version>0.11.3</Version>
|
<Version>0.11.4</Version>
|
||||||
<SatelliteResourceLanguages>de-AT</SatelliteResourceLanguages>
|
<SatelliteResourceLanguages>de-AT</SatelliteResourceLanguages>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||||
|
@ -242,8 +242,8 @@ namespace Elwig.Services {
|
|||||||
AddToolTipCell(grid, "Lieferrecht", 0, 4, 1, false, false, true);
|
AddToolTipCell(grid, "Lieferrecht", 0, 4, 1, false, false, true);
|
||||||
int rowNum = 1;
|
int rowNum = 1;
|
||||||
foreach (var row in data) {
|
foreach (var row in data) {
|
||||||
|
if (rowNum == 2 || (rowNum != 1 && row.Item1 != null)) rowNum++;
|
||||||
AddToolTipRow(grid, rowNum++, row.Item1, row.Item2, row.Item3, row.Item4, row.Item5);
|
AddToolTipRow(grid, rowNum++, row.Item1, row.Item2, row.Item3, row.Item4, row.Item5);
|
||||||
if (rowNum == 2) rowNum++;
|
|
||||||
}
|
}
|
||||||
return grid;
|
return grid;
|
||||||
}
|
}
|
||||||
|
@ -830,8 +830,8 @@ namespace Elwig.Services {
|
|||||||
wGrid.ColumnDefinitions.Add(new() { Width = new(50) });
|
wGrid.ColumnDefinitions.Add(new() { Width = new(50) });
|
||||||
int rowNum = 0;
|
int rowNum = 0;
|
||||||
foreach (var row in weightData) {
|
foreach (var row in weightData) {
|
||||||
|
if (rowNum == 1 || (rowNum != 0 && row.Item1 != null)) rowNum++;
|
||||||
AddWeightToolTipRow(wGrid, rowNum++, row.Item1, row.Item2, row.Item3, row.Item4, row.Item5);
|
AddWeightToolTipRow(wGrid, rowNum++, row.Item1, row.Item2, row.Item3, row.Item4, row.Item5);
|
||||||
if (rowNum == 1) rowNum++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var gGrid = new Grid();
|
var gGrid = new Grid();
|
||||||
@ -845,8 +845,8 @@ namespace Elwig.Services {
|
|||||||
AddToolTipCell(gGrid, "Max.", 0, 4, 1, false, false, true);
|
AddToolTipCell(gGrid, "Max.", 0, 4, 1, false, false, true);
|
||||||
rowNum = 1;
|
rowNum = 1;
|
||||||
foreach (var row in gradationData) {
|
foreach (var row in gradationData) {
|
||||||
|
if (rowNum == 2 || (rowNum != 1 && row.Item1 != null)) rowNum++;
|
||||||
AddGradationToolTipRow(gGrid, rowNum++, row.Item1, row.Item2, row.Item3, row.Item4, row.Item5);
|
AddGradationToolTipRow(gGrid, rowNum++, row.Item1, row.Item2, row.Item3, row.Item4, row.Item5);
|
||||||
if (rowNum == 2) rowNum++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return (wGrid, gGrid);
|
return (wGrid, gGrid);
|
||||||
|
Reference in New Issue
Block a user