Skip to content

Commit

Permalink
Assembly v 6.8 (12.11.23)
Browse files Browse the repository at this point in the history
  • Loading branch information
adslbarxatov committed Nov 12, 2023
1 parent 3653e3d commit c9451fe
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 18 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: '6.7.2'
TAG: '6.8'

steps:
# Проверка состава репозитория (без анализа, как может показаться)
Expand Down
Binary file added .release/DPArray.sfx.exe
Binary file not shown.
14 changes: 6 additions & 8 deletions .release/Release.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
_Changes for v 6.7.2_:
_Changes for v 6.8_:
- App is now able to build offline help files and add them to packages;
- Applied some interface improvements;
- Now you can add your own apps (or regular files) to DPArray’s mini-launcher;
- App is now able to skip projects that don’t support the selected interface language;
- Fixed incorrect behavior on loading of unsupported packages;
- Extended package info now contains the status description;
- Adjusted the cleanup method for Downloaded directory;
- App now has language-dependent banners;
- Set of banners and their URLs has been updated;
- Adjusted the cleanup method for `Downloaded` directory;
- List of banners and their URLs has been updated;
- Version `DP13` of package formats has been deprecated (old monolanguage script);
- Version `DP15` of package formats has been implemented (new script without obsolete fields);
- Fixed incorrect version detection for ESHQ and ESRM;
- Completed the process of version control unification
- Version `DP15` of package formats has been implemented (new script without obsolete fields)
4 changes: 4 additions & 0 deletions Changes.log
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
DPArray: changes log

Version 6.8:
• App is now able to build offline help files and add them to packages;
• Applied some interface improvements

Version 6.7.2:
• Now you can add your own apps (or regular files) to DPArray’s 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:6.7.2
p:000B3BC7979D0012
v:6.8
p:000B4578A8783E3C



Expand Down
Binary file modified packages/DPArray.dp
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/_packages.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
```
Packages, available for download:
DPArray 6.7.2 DEFSTORAGE/DPArray.dp DPArray.dp 0x000B3BC7 0 INFOPAGE
DPArray 6.8 DEFSTORAGE/DPArray.dp DPArray.dp 0x000B4578 0 INFOPAGE
#Windows apps
Batch image convertor 3.5.1 DEFSTORAGE/DEFFILE BatchImageConvertor.dp 0x000D44F4 1 INFOPAGE
Expand Down
20 changes: 14 additions & 6 deletions src/Generics/AboutForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@ private enum LinkTypes
/// </summary>
public const string MissingRefMaterialAlias = "";

/// <summary>
/// Возвращает расширение файла справки для приложения
/// </summary>
public const string HelpFilesExtension = RDGenerics.DPArrayFileNameExt + "h";

/// <summary>
/// Конструктор. Инициализирует форму
/// </summary>
Expand Down Expand Up @@ -148,12 +153,15 @@ public AboutForm ()
/// другое значение, если окно справки было отображено</returns>
public int ShowAbout (bool StartupMode)
{
if (string.IsNullOrWhiteSpace (ProgramDescription.AssemblyReferenceMaterials[2]) ||
(ProgramDescription.AssemblyReferenceMaterials[2] == DefaultRefMaterialAlias))
description = Localization.GetText ("HelpText");
else
description = ProgramDescription.AssemblyReferenceMaterials[2];

try
{
description = File.ReadAllText (RDGenerics.AppStartupPath + ProgramDescription.AssemblyMainName +
"_" + Localization.CurrentLanguage.ToString () + HelpFilesExtension);
}
catch
{
description = Localization.GetDefaultText (LzDefaultTextValues.Message_NoOfflineHelp);
}
return LaunchForm (StartupMode, false);
}

Expand Down
1 change: 1 addition & 0 deletions src/Generics/RDMessageForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ private void RDMessageFormInit (RDMessageTypes Type, string Message, string Butt
if (Timeout > 0)
{
this.Height += 17;
Label01.Top = (this.Height - Label01.Height) / 2 + 8;
}
else
{
Expand Down

0 comments on commit c9451fe

Please sign in to comment.