Skip to content

Commit

Permalink
Assembly v 7.3.7 (8.09.24)
Browse files Browse the repository at this point in the history
  • Loading branch information
adslbarxatov committed Sep 7, 2024
1 parent e14ab23 commit eefe337
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# Константы, используемые далее по тексту
env:
PROJ: ${{ github.event.repository.name }}
TAG: '7.3.6'
TAG: '7.3.7'

steps:
# Проверка состава репозитория (без анализа, как может показаться)
Expand Down
Binary file added .release/DPArray.sfx.exe
Binary file not shown.
6 changes: 3 additions & 3 deletions .release/Release.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
_Changes for v 7.3.6_:
_Changes for v 7.3.7_:
- Updated some short names in the mini-launcher;
- New identity has been applied;
- The “App about” interface has been updated;
- Applied some improvements for generic interfaces
- The “App about” interface has been updated
3 changes: 3 additions & 0 deletions Changes.log
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
DPArray: changes log

Version 7.3.7:
• Updated some short names in the mini-launcher

Version 7.3.6:
• New identity has been applied

Expand Down
4 changes: 2 additions & 2 deletions Packages.dpt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ n:DPArray
a:DPArray.dp
f:fvd
i:INFOPAGE
v:7.3.6
p:00085F8B118BFB21
v:7.3.7
p:00085F8B49334753



Expand Down
Binary file modified packages/DPArray.dp
Binary file not shown.
9 changes: 7 additions & 2 deletions src/Generics/AboutForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,13 @@ private int LaunchForm (bool StartupMode, bool AcceptMode)
// Настройка контролов
int al = (int)RDLocale.CurrentLanguage;

ExitButton.Text = RDLocale.GetDefaultText (AcceptMode ? RDLDefaultTexts.Button_Accept :
RDLDefaultTexts.Button_Exit);
if (AcceptMode)
ExitButton.Text = RDLocale.GetDefaultText (RDLDefaultTexts.Button_Accept);
else if (StartupMode)
ExitButton.Text = RDLocale.GetDefaultText (RDLDefaultTexts.Button_Next);
else
ExitButton.Text = RDLocale.GetDefaultText (RDLDefaultTexts.Button_Close);

MisacceptButton.Text = RDLocale.GetDefaultText (RDLDefaultTexts.Button_Decline);
if (AcceptMode)
{
Expand Down

0 comments on commit eefe337

Please sign in to comment.