Skip to content

Commit

Permalink
Assembly v 7.3.8 (22.09.24)
Browse files Browse the repository at this point in the history
  • Loading branch information
adslbarxatov committed Sep 22, 2024
1 parent 89f5c47 commit 29751ff
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 11 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.7'
TAG: '7.3.8'

steps:
# Проверка состава репозитория (без анализа, как может показаться)
Expand Down
Binary file added .release/DPArray.sfx.exe
Binary file not shown.
7 changes: 3 additions & 4 deletions .release/Release.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
_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
_Changes for v 7.3.8_:
- Current updates have been applied;
- Updated some short names in the mini-launcher
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.8:
• Current updates have been applied

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

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.7
p:00085F8B49334753
v:7.3.8
p:00085F8B8FB7D421



Expand Down
Binary file modified packages/DPArray.dp
Binary file not shown.
4 changes: 2 additions & 2 deletions src/DPModule/ESHQInstaller_en_us.resx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Also you can try other Lab projects. Use tray icon and “App about” option</v
<data name="IncorrectPackage" xml:space="preserve">
<value>Your deployment package is not original! We strongly recommend against using it!

Please, launch this manager again and download the original package</value>
Please, start this manager again and download the original package</value>
</data>
<data name="InstallRadioText_Main" xml:space="preserve">
<value>Install: the app installation or recovery</value>
Expand Down Expand Up @@ -427,7 +427,7 @@ Updates are highlighted in yellow in the packages list. At the bottom of the win
{0:S}
If possible, they will be installed automatically in the next step. Otherwise, their web pages will be opened with manual download option.

* Opened web pages that don’t offer automatic download of installation packages are for informational purposes only</value>
Note: opened web pages that don’t offer automatic download of installation packages are for informational purposes only</value>
</data>
<data name="PSF_Context00" xml:space="preserve">
<value>More info</value>
Expand Down
2 changes: 1 addition & 1 deletion src/DPModule/ESHQInstaller_ru_ru.resx
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@
{0:S}
Если это возможно, они будут установлены автоматически на следующем шаге. В противном случае будут открыты их веб-страницы с возможностью ручной загрузки.

* Открывшиеся веб-страницы, не предлагающие автоматическую загрузку установочных пакетов, носят информационно-ознакомительный характер</value>
Внимание: открывшиеся веб-страницы, не предлагающие автоматическую загрузку установочных пакетов, носят информационно-ознакомительный характер</value>
</data>
<data name="PSF_Context00" xml:space="preserve">
<value>Подробнее</value>
Expand Down
2 changes: 2 additions & 0 deletions src/Generics/AboutForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,8 @@ private void AskDeveloper_Click (object sender, EventArgs e)
/// </summary>
public static void AskDeveloper ()
{
RDGenerics.SendToClipboard (RDGenerics.LabMailLink, true);

RDGenerics.RunURL ("mailto://" + RDGenerics.LabMailLink + ("?subject=" +
RDGenerics.LabMailCaption).Replace (" ", "%20"));
}
Expand Down
17 changes: 16 additions & 1 deletion src/Generics/RDMessageForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ public enum RDMessageTypes
/// Сообщение об успешном результате с текстом по центру
/// </summary>
Success_Center = 14,

/// <summary>
/// Сообщение об успешном результате с текстом по центру без звука
/// </summary>
Clipboard_Center = 15,
}

/// <summary>
Expand Down Expand Up @@ -152,6 +157,11 @@ private enum RDMessageInternalTypes
/// </summary>
Success_Center = 14,

/// <summary>
/// Сообщение об успешном результате с текстом по центру без звука
/// </summary>
Clipboard_Center = 15,

/// <summary>
/// Окно ввода с текстом по центру
/// </summary>
Expand Down Expand Up @@ -346,6 +356,7 @@ private void RDMessageFormInit (RDMessageInternalTypes Type, string Message,
case RDMessageInternalTypes.Warning_Center:
case RDMessageInternalTypes.Error_Center:
case RDMessageInternalTypes.Input_Center:
case RDMessageInternalTypes.Clipboard_Center:
Label01.TextAlign = HorizontalAlignment.Center;
break;
}
Expand Down Expand Up @@ -434,7 +445,7 @@ private void RDMessageFormInit (RDMessageInternalTypes Type, string Message,
}
}

// Системный звук
// Системный звук и фоновый цвет
switch (windowType)
{
case RDMessageInternalTypes.Information_Left:
Expand Down Expand Up @@ -473,6 +484,10 @@ private void RDMessageFormInit (RDMessageInternalTypes Type, string Message,
SystemSounds.Asterisk.Play ();
this.BackColor = RDGenerics.GetInterfaceColor (RDInterfaceColors.SuccessMessage);
break;

case RDMessageInternalTypes.Clipboard_Center:
this.BackColor = RDGenerics.GetInterfaceColor (RDInterfaceColors.SuccessMessage);
break;
}

// Окончательное выравнивание элементов, применение цветовой схемы
Expand Down

0 comments on commit 29751ff

Please sign in to comment.