Skip to content
This repository has been archived by the owner on Nov 5, 2022. It is now read-only.

Commit

Permalink
Assembly v 8.3.1 (29.01.22)
Browse files Browse the repository at this point in the history
  • Loading branch information
adslbarxatov committed Jan 29, 2022
1 parent c23c64f commit e9c53cd
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 36 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: TextToKKT
TAG: 8.3
TAG: 8.3.1

steps:
# Проверка состава репозитория
Expand Down
5 changes: 2 additions & 3 deletions .release/Release.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
_Изменения для v 8.3_:
_Изменения для v 8.3.1_:
- FNReader: исправлена критическая ошибка в формировании отчёта о закрытии ФН;
- FNReader: реализовано открытие смены; для ФФД 1.1 и 1.2 открытие смены, закрытие смены и закрытие архива пока могут работать неправильно;
- FNReader: все операции записи в ФН сгруппированы в список;
- FNReader: реализована защита от зависания порта в случае неожиданного прерывания операции;
- Обновлены сведения о поддержке ФФД 1.2;
- FNReader: в тестовом режиме реализована выгрузка ФН в файлы ```.fnc``` с ФФД 1.1 и 1.2 (с поддержкой внутренних перерегистраций с изменением ФФД). ***Функция может работать неправильно, т.к. находится в тестировании!***
- Добавлены серии ЗН ККТ Штрих-МПЕЙ-Ф и Штрих-Нано-Ф
Binary file modified .release/TextToKKT.exe
Binary file not shown.
3 changes: 3 additions & 0 deletions Changes.log
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Text to KKT: лог изменений

Версия 8.3.1:
• FNReader: исправлена критическая ошибка в формировании отчёта о закрытии ФН

Версия 8.3:
• FNReader: реализовано открытие смены; для ФФД 1.1 и 1.2 открытие смены, закрытие смены и закрытие архива
пока могут работать неправильно;
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# TextToKKT v 8.3
> PCC: 0011EC8998AEEEEF
# TextToKKT v 8.3.1
> PCC: 000EDC8B8F9EFBBA

Утилита сервис-инженера ККТ (контрольно-кассовая техника, 54-ФЗ)
Expand Down
32 changes: 4 additions & 28 deletions src/AboutForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private int LaunchForm (bool StartupMode, bool AcceptMode)
"• включите запуск от имени администратора для всех пользователей в настройках совместимости.\n\n" +
"После этого перезапустите программу и повторите попытку";

this.Text = AcceptMode ? "Политика разработки и соглашение пользователя" : программе";
this.Text = AcceptMode ? "Политика разработки и соглашение пользователя" : приложении";
break;

default: // en_us
Expand All @@ -190,10 +190,10 @@ private int LaunchForm (bool StartupMode, bool AcceptMode)
"• enable running as administrator for all users in compatibility settings.\n\n" +
"Then restart the program and try again";

this.Text = AcceptMode ? "Development policy and user agreement" : "About application";
this.Text = AcceptMode ? "Development policy and user agreement" : "About the application";
break;
}
ToLaboratory.Text = "Free development lab";
ToLaboratory.Text = RDGenerics.AssemblyCompany;

// Запуск проверки обновлений
HardWorkExecutor hwe;
Expand Down Expand Up @@ -245,13 +245,6 @@ private int LaunchForm (bool StartupMode, bool AcceptMode)
ProgramDescription.AssemblyVersion);

// Контроль доступа к реестру
/*if (Registry.GetValue (RDGenerics.AssemblySettingsKey, LastShownVersionKey, "").ToString () !=
ProgramDescription.AssemblyVersion)
{
MessageBox.Show (registryFail, ProgramDescription.AssemblyTitle, MessageBoxButtons.OK,
MessageBoxIcon.Exclamation);
}*/

WindowsIdentity identity = WindowsIdentity.GetCurrent ();
WindowsPrincipal principal = new WindowsPrincipal (identity);
if (!principal.IsInRole (WindowsBuiltInRole.Administrator))
Expand Down Expand Up @@ -289,15 +282,8 @@ private void PolicyLoader (object sender, DoWorkEventArgs e)
textLeft += 6;
html = html.Substring (textLeft, textRight - textLeft);

// Формирование абзацных отступов
/*html = html.Replace ("<br/>", "\r\n").Replace ("</p>", "\r\n").Replace ("</li>", "\r\n").
Replace ("</h1>", "\r\n\r\n").Replace ("</h3>", "\r\n").Replace ("<li>", "• ");*/
// Формирование
html = ApplyReplacements (html);

/*// Удаление вложенных тегов
while (((textLeft = html.IndexOf ("<")) >= 0) && ((textRight = html.IndexOf (">", textLeft)) >= 0))
html = html.Replace (html.Substring (textLeft, textRight - textLeft + 1), "");*/

html = html.Substring (0, html.Length - 12);
}
else
Expand Down Expand Up @@ -432,14 +418,6 @@ private void AskDeveloper_Click (object sender, EventArgs e)
new string[] { "</p>", "\r\n" },
new string[] { "<br", "\r\n<" },

/*new string[] { "</li>", "" },
new string[] { "<ul>", "" },
new string[] { "</ul>", "" },
new string[] { "<em>", "" },
new string[] { "</em>", "" },
new string[] { "<code>", "" },
new string[] { "</code>", "" },*/

new string[] { "<h1", "\r\n<" },
new string[] { "</h1>", "\r\n" },
new string[] { "<h3", "\r\n<" },
Expand Down Expand Up @@ -517,8 +495,6 @@ private void UpdatesChecker (object sender, DoWorkEventArgs e)
goto policy;

versionDescription = html.Substring (i, j - i);
/*for (int r = 0; r < ucReplacements.Length; r++)
versionDescription = versionDescription.Replace (ucReplacements[r][0], ucReplacements[r][1]);*/
versionDescription = "\r\n" + ApplyReplacements (versionDescription);

// Отображение результата
Expand Down
4 changes: 2 additions & 2 deletions src/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--package="texttokkt.huawei" package="com.RD_AAOW.TextToKKT"-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.RD_AAOW.TextToKKT"
android:installLocation="internalOnly" android:versionCode="600807" android:versionName="8.3">
android:installLocation="internalOnly" android:versionCode="600809" android:versionName="8.3">

<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="31" />

Expand All @@ -12,7 +12,7 @@

<application android:label="Text to KKT" android:icon="@mipmap/icon">

<receiver android:name="com.RD_AAOW.TextToKKTBoot" android:label="TextToKKTBoot">
<receiver android:name="com.RD_AAOW.TextToKKTBoot" android:label="TextToKKTBoot" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
Expand Down

0 comments on commit e9c53cd

Please sign in to comment.