From aa9bb03cc2679089b4f07c16b3654bddacee8b71 Mon Sep 17 00:00:00 2001 From: Sergey Kalinin Date: Wed, 3 Dec 2025 18:02:13 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debian/changelog | 11 +++++++++-- lib/procedure.tcl | 4 ++-- projman.tcl | 6 +++--- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5cb7e5e..56903f5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,15 @@ +projman (2.0.0-alpha21) stable; urgency=medium + + * Исправил ошибку + * Добавлены настройки путей к программам для выполнения редактируемых файлов для каждого поддержимаего типа. И использование этих настроек при выполнении файла. + + -- Sergey Kalinin Wed, 3 Dec 2025 17:59:31 +0300 + projman (2.0.0-alpha20) stable; urgency=medium - * Добавлены настройки путей к программам для выполнения редактируемых файлов для каждого поддержимаего типа. И использование этих настроек при выполнении файла. * Добавил вывод номера версии tcl/tl в О Программе - -- Sergey Kalinin Mon, 03 Dec 2025 17:22:44 +0300 + -- Sergey Kalinin Mon, 03 Dec 2025 17:22:44 +0300 projman (2.0.0-alpha19) stable; urgency=medium @@ -425,3 +431,4 @@ projman (2.0.0-alfa0) stable; urgency=medium + diff --git a/lib/procedure.tcl b/lib/procedure.tcl index 02ede91..954a42a 100644 --- a/lib/procedure.tcl +++ b/lib/procedure.tcl @@ -915,8 +915,8 @@ proc Execute {filePath w activeEditor} { # Added executor from config set fileType [string toupper [string trimleft [file extension $filePath] "."]] - if {[info exists cfgVariables(fileType)] == 0} { - $w.frame.text insert end "$cfgVariables($fileType) " + if {[info exists cfgVariables($fileType)] != 0 && $cfgVariables($fileType) ne ""} { + $w.frame.text insert end "$cfgVariables($fileType) %f" } unset fileType # $w.frame.text insert end [string toupper [string trimleft [file extension $filePath] "."]] diff --git a/projman.tcl b/projman.tcl index 7445741..f050b9d 100755 --- a/projman.tcl +++ b/projman.tcl @@ -8,9 +8,9 @@ exec wish8.6 "$0" -- "$@" # Author: Sergey Kalinin svk@nuk-svk.ru # Home page: https://nuk-svk.ru ###################################################### -# Version: 2.1.0 -# Release: alpha0 -# Build: 03122025172242 +# Version: 2.0.0 +# Release: alpha20 +# Build: 03122025175941 ###################################################### # определим текущую версию, релиз и т.д.