Skip to content

Commit

Permalink
Assembly v 7.1 (19.04.24)
Browse files Browse the repository at this point in the history
  • Loading branch information
adslbarxatov committed Apr 18, 2024
1 parent 74dac2d commit 4631a2e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 28 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.0'
TAG: '7.1'

steps:
# Проверка состава репозитория (без анализа, как может показаться)
Expand Down
Binary file added .release/DPArray.sfx.exe
Binary file not shown.
9 changes: 6 additions & 3 deletions .release/Release.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
_Changes for v 7.0_:
_Changes for v 7.1_:
- Access checking method has been completely rewritten: now it will properly detect problems with file / registry input / output and help user with fixing them;
- Added the special section in the user guide for access troubleshooting;
- Autorun option now will use the registry instead of the start menu;
- Upgraded the self-update algorithm (useful for Windows 10 rights management);
- The method of setup for autostart settings has been rewritten: now the app uses the separate button in the packages manager for it;
- The interface of packages manager has been updated;
- DPArray now has no deinstallation scripts;
- Updated HypeHelp and Updates checker mechanics: this should fix apps freezing immediately after launch (on some PCs);
- The mini-launcher now can kill user-defined processes;
- Updated the HypeHelp links list
- The mini-launcher now can kill user-defined processes
9 changes: 2 additions & 7 deletions Changes.log
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
DPArray: changes log

ToDo:
- Реализовать отдельный модуль обновления, который:
- принимает команду при загрузке пакета
- создаёт копию обновляемого приложения
- направляет ему полученный пакет в качестве параметра

Version 7.1:
• Access checking method has been completely rewritten: now it will properly detect problems
with file / registry input / output;
with file / registry input / output and help user with fixing them;
• Added the special section in the user guide for access troubleshooting;
• Autorun option now will use the registry instead of the start menu;
• Upgraded the self-update algorithm (useful for Windows 10 rights management)

Version 7.0:
• The method of setup for autostart settings has been rewritten: now the app uses the separate
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.0
p:000946A5C4D6F5B9
v:7.1
p:0009489CB419C33A



Expand Down
Binary file modified packages/DPArray.dp
Binary file not shown.
18 changes: 3 additions & 15 deletions src/Generics/AboutForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public partial class AboutForm: Form

// Элементы поддержки HypeHelp
private const string HypeHelpKey = "HypeHelp";
/*private bool hypeHelp;*/
private const string LastHypeHelpKey = "LastHypeHelp";

private string[] hypeHelpLinks = new string[] {
Expand Down Expand Up @@ -285,16 +284,6 @@ private int LaunchForm (bool StartupMode, bool AcceptMode)
RDLocale.GetDefaultText (RDLDefaultTexts.Control_PolicyEULA) :
RDLocale.GetDefaultText (RDLDefaultTexts.Control_AppAbout);

/*if (!AcceptMode)
{
// Запуск проверки обновлений
UpdatesPageButton.Enabled = false;
RDGenerics.RunWork (UpdatesChecker, null, null, RDRunWorkFlags.DontSuspendExecution);
UpdatesTimer.Enabled = true;
}
else*/

// Получение Политики
if (AcceptMode)
{
Expand Down Expand Up @@ -328,7 +317,7 @@ private int LaunchForm (bool StartupMode, bool AcceptMode)
if (RDGenerics.StartedFromMSStore)
HypeHelpFlag.Checked = HypeHelpFlag.Visible = false;
else
HypeHelpFlag.Checked = /*hypeHelp*/ (RDGenerics.GetDPArraySettingsValue (HypeHelpKey) == "1");
HypeHelpFlag.Checked = (RDGenerics.GetDPArraySettingsValue (HypeHelpKey) == "1");

RDGenerics.LoadAppAboutWindowDimensions (this);

Expand All @@ -338,8 +327,7 @@ private int LaunchForm (bool StartupMode, bool AcceptMode)
RDGenerics.SetDPArraySettingsValue (HypeHelpKey, HypeHelpFlag.Checked ? "1" : "0");

// HypeHelp (только если окно отображено)
/*hypeHelp = RDGenerics.GetDPArraySettingsValue (HypeHelpKey) == "1";*/
if (/*hypeHelp*/ HypeHelpFlag.Checked)
if (HypeHelpFlag.Checked)
{
DateTime lastHypeHelp;
try
Expand All @@ -351,7 +339,7 @@ private int LaunchForm (bool StartupMode, bool AcceptMode)
lastHypeHelp = DateTime.Now;
}

if (/*(StartupMode || AcceptMode)*/ !AcceptMode && (lastHypeHelp <= DateTime.Now))
if (!AcceptMode && (lastHypeHelp <= DateTime.Now))
{
RDGenerics.RunWork (HypeHelper, null, null, RDRunWorkFlags.DontSuspendExecution);

Expand Down
2 changes: 2 additions & 0 deletions src/Generics/WindowsShortcut.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ public static int DeleteDesktopShortcut (string ShortcutFileName)
Environment.GetFolderPath (Environment.SpecialFolder.Desktop));
}

/*
/// <summary>
/// Метод создаёт ярлык к файлу в меню автозапуска
/// </summary>
Expand All @@ -96,6 +97,7 @@ public static int DeleteDesktopShortcut (string ShortcutFileName)
Environment.GetFolderPath (Environment.SpecialFolder.CommonStartup),
ShortcutArguments);
}
*/

/// <summary>
/// Метод удаляет ярлык к файлу из меню автозапуска
Expand Down

0 comments on commit 4631a2e

Please sign in to comment.