This commit is contained in:
Бондарев Иван 2015-06-27 18:33:50 +02:00
parent f31d02a96c
commit 59169b5168
60 changed files with 130 additions and 10 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "2"; public const string Major = "2";
public const string Minor = "2"; public const string Minor = "2";
public const string Build = "0"; public const string Build = "0";
public const string Revision = "965"; public const string Revision = "966";
public const string MainVersion = Major + "." + Minor; public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision; public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%MINOR%=2 %MINOR%=2
%REVISION%=965 %REVISION%=966
%MAJOR%=2 %MAJOR%=2
%COREVERSION%=0 %COREVERSION%=0

Binary file not shown.

View file

@ -70,7 +70,7 @@ Var PABCWorkNETPath
;-------------------------------- ;--------------------------------
;Pages ;Pages
!insertmacro MUI_PAGE_LICENSE $(MUILicense) ;!insertmacro MUI_PAGE_LICENSE $(MUILicense)
!insertmacro MUI_PAGE_COMPONENTS !insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY !insertmacro MUI_PAGE_DIRECTORY
Page custom fnc_PABCWorkNETDriveChoose_Show Page custom fnc_PABCWorkNETDriveChoose_Show

View file

@ -1 +1 @@
!define VERSION '2.2.0.965' !define VERSION '2.2.0.966'

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit ABCButtons; unit ABCButtons;
interface interface

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit ABCHouse; unit ABCHouse;
interface interface

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///Модуль реализует векторные графические объекты с возможностью масштабирования, наложения друг на друга, ///Модуль реализует векторные графические объекты с возможностью масштабирования, наложения друг на друга,
///создания составных графических объектов и многократного их вложения друг в друга. ///создания составных графических объектов и многократного их вложения друг в друга.
///Каждый векторный графический объект перерисовывает себя при перемещении, изменении размеров ///Каждый векторный графический объект перерисовывает себя при перемещении, изменении размеров

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///Модуль ABCSprites реализует спрайты - анимационные объекты с автоматически меняющимися кадрами. ///Модуль ABCSprites реализует спрайты - анимационные объекты с автоматически меняющимися кадрами.
///Спрайт представляется классом SpriteABC и является разновидностью мультикартинки MultiPictureABC. ///Спрайт представляется классом SpriteABC и является разновидностью мультикартинки MultiPictureABC.
unit ABCSprites; unit ABCSprites;

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit Arrays; unit Arrays;
interface interface

View file

@ -1,11 +1,11 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
/// <summary> /// <summary>
/// Ìîäóëü äëÿ ðàáîòû ñ êîíñîëüþ /// Ìîäóëü äëÿ ðàáîòû ñ êîíñîëüþ
/// </summary> /// </summary>
unit CRT; unit CRT;
// Âåðñèÿ 0.3
// Copyright (c) 2006-2007 DarkStar, SSM (parts)
{$apptype console} {$apptype console}
{$gendoc true} {$gendoc true}

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit Core; unit Core;
{$reference 'System.Core.dll'} {$reference 'System.Core.dll'}
end. end.

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit DMCollect; unit DMCollect;
{$reference 'System.Drawing.dll'} {$reference 'System.Drawing.dll'}

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit DMTaskMaker; unit DMTaskMaker;
interface interface

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit DrawManField; unit DrawManField;
//#savepcu false //#savepcu false

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///Исполнитель Чертежник предназначен для построения рисунков и чертежей на плоскости с координатами. ///Исполнитель Чертежник предназначен для построения рисунков и чертежей на плоскости с координатами.
///Чертежник имеет перо, которое он может поднимать, опускать и перемещать. При перемещении опущенного пера за ним остается след. ///Чертежник имеет перо, которое он может поднимать, опускать и перемещать. При перемещении опущенного пера за ним остается след.
unit Drawman; unit Drawman;

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit FilesOperations; unit FilesOperations;
interface interface

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit FormsABC; unit FormsABC;
{$apptype windows} {$apptype windows}

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///Модуль предоставляет константы, типы, процедуры, функции и классы для рисования в графическом окне ///Модуль предоставляет константы, типы, процедуры, функции и классы для рисования в графическом окне
unit GraphABC; unit GraphABC;

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit GraphABCHelper; unit GraphABCHelper;
//{$apptype windows} //{$apptype windows}

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit IniFile; unit IniFile;
interface interface

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit MPI; unit MPI;
interface interface

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
/// Ñòàíäàðòíûé ìîäóëü /// Ñòàíäàðòíûé ìîäóëü
/// !! System unit /// !! System unit
unit PABCSystem; unit PABCSystem;

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit PointerTools; unit PointerTools;
procedure WriteMemoryToScreen(p:pointer; Count,InLineCount:integer); procedure WriteMemoryToScreen(p:pointer; Count,InLineCount:integer);

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///Исполнитель Робот действует на прямоугольном клеточном поле. Между некоторыми клетками, а также по периметру поля находятся стены. ///Исполнитель Робот действует на прямоугольном клеточном поле. Между некоторыми клетками, а также по периметру поля находятся стены.
///Основная цель Робота закрасить указанные клетки и переместиться в конечную клетку. ///Основная цель Робота закрасить указанные клетки и переместиться в конечную клетку.
unit Robot; unit Robot;

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit RobotField; unit RobotField;
//#savepcu false //#savepcu false

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit RobotTaskMaker; unit RobotTaskMaker;
interface interface

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit Sockets; unit Sockets;
{$reference 'System.dll'} {$reference 'System.dll'}

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit Utils; unit Utils;
interface interface

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit vcl; unit vcl;
{$apptype windows} {$apptype windows}

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///-- ///--
unit __RedirectIOMode; unit __RedirectIOMode;

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///-- ///--
unit __RunMode; unit __RunMode;

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit ABCButtons; unit ABCButtons;
interface interface

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit ABCHouse; unit ABCHouse;
interface interface

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///Модуль реализует векторные графические объекты с возможностью масштабирования, наложения друг на друга, ///Модуль реализует векторные графические объекты с возможностью масштабирования, наложения друг на друга,
///создания составных графических объектов и многократного их вложения друг в друга. ///создания составных графических объектов и многократного их вложения друг в друга.
///Каждый векторный графический объект перерисовывает себя при перемещении, изменении размеров ///Каждый векторный графический объект перерисовывает себя при перемещении, изменении размеров

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///Модуль ABCSprites реализует спрайты - анимационные объекты с автоматически меняющимися кадрами. ///Модуль ABCSprites реализует спрайты - анимационные объекты с автоматически меняющимися кадрами.
///Спрайт представляется классом SpriteABC и является разновидностью мультикартинки MultiPictureABC. ///Спрайт представляется классом SpriteABC и является разновидностью мультикартинки MultiPictureABC.
unit ABCSprites; unit ABCSprites;

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit Arrays; unit Arrays;
interface interface

View file

@ -1,11 +1,11 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
/// <summary> /// <summary>
/// Ìîäóëü äëÿ ðàáîòû ñ êîíñîëüþ /// Ìîäóëü äëÿ ðàáîòû ñ êîíñîëüþ
/// </summary> /// </summary>
unit CRT; unit CRT;
// Âåðñèÿ 0.3
// Copyright (c) 2006-2007 DarkStar, SSM (parts)
{$apptype console} {$apptype console}
{$gendoc true} {$gendoc true}

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit Core; unit Core;
{$reference 'System.Core.dll'} {$reference 'System.Core.dll'}
end. end.

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit DMCollect; unit DMCollect;
{$reference 'System.Drawing.dll'} {$reference 'System.Drawing.dll'}

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit DMTaskMaker; unit DMTaskMaker;
interface interface

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit DrawManField; unit DrawManField;
//#savepcu false //#savepcu false

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///Исполнитель Чертежник предназначен для построения рисунков и чертежей на плоскости с координатами. ///Исполнитель Чертежник предназначен для построения рисунков и чертежей на плоскости с координатами.
///Чертежник имеет перо, которое он может поднимать, опускать и перемещать. При перемещении опущенного пера за ним остается след. ///Чертежник имеет перо, которое он может поднимать, опускать и перемещать. При перемещении опущенного пера за ним остается след.
unit Drawman; unit Drawman;

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit FilesOperations; unit FilesOperations;
interface interface

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit FormsABC; unit FormsABC;
{$apptype windows} {$apptype windows}

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///Модуль предоставляет константы, типы, процедуры, функции и классы для рисования в графическом окне ///Модуль предоставляет константы, типы, процедуры, функции и классы для рисования в графическом окне
unit GraphABC; unit GraphABC;

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit GraphABCHelper; unit GraphABCHelper;
//{$apptype windows} //{$apptype windows}

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit IniFile; unit IniFile;
interface interface

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit MPI; unit MPI;
interface interface

Binary file not shown.

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
/// Ñòàíäàðòíûé ìîäóëü /// Ñòàíäàðòíûé ìîäóëü
/// !! System unit /// !! System unit
unit PABCSystem; unit PABCSystem;

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit PointerTools; unit PointerTools;
procedure WriteMemoryToScreen(p:pointer; Count,InLineCount:integer); procedure WriteMemoryToScreen(p:pointer; Count,InLineCount:integer);

View file

@ -1,3 +1,6 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///Исполнитель Робот действует на прямоугольном клеточном поле. Между некоторыми клетками, а также по периметру поля находятся стены. ///Исполнитель Робот действует на прямоугольном клеточном поле. Между некоторыми клетками, а также по периметру поля находятся стены.
///Основная цель Робота закрасить указанные клетки и переместиться в конечную клетку. ///Основная цель Робота закрасить указанные клетки и переместиться в конечную клетку.
unit Robot; unit Robot;

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit RobotField; unit RobotField;
//#savepcu false //#savepcu false

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit RobotTaskMaker; unit RobotTaskMaker;
interface interface

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit Sockets; unit Sockets;
{$reference 'System.dll'} {$reference 'System.dll'}

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit Utils; unit Utils;
interface interface

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
unit vcl; unit vcl;
{$apptype windows} {$apptype windows}

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///-- ///--
unit __RedirectIOMode; unit __RedirectIOMode;

View file

@ -1,3 +1,5 @@
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
///-- ///--
unit __RunMode; unit __RunMode;