Skip to content

Commit

Permalink
Релиз 1.3
Browse files Browse the repository at this point in the history
+ фиксы
+ файл лицензии
  • Loading branch information
bia-tech committed Jan 17, 2024
1 parent c1c2d7a commit d20b711
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 29 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.ospx
47 changes: 24 additions & 23 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,55 +1,52 @@
{
"version": "0.1.0",
"version": "2.0.0",
"command": "oscript",
"isShellCommand": true,
"showOutput": "silent",
"args": [
"-encoding=utf-8"
],
"tasks": [
{
"taskName": "OneScript: compile",
"label": "OneScript: compile",
"type": "shell",
"command": "oscript",
"args": [
"-encoding=utf-8",
"-compile",
"${file}"
],
"echoCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"isBuildCommand": false
"problemMatcher": []
},
{
"taskName": "OneScript: check",
"label": "OneScript: check",
"type": "shell",
"command": "oscript",
"args": [
"-encoding=utf-8",
"-check",
"${file}"
],
"echoCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"isBuildCommand": false
"problemMatcher": []
},
{
"taskName": "OneScript: make",
"label": "OneScript: make",
"type": "shell",
"command": "oscript",
"args": [
"-encoding=utf-8",
"-make",
"${file}",
"${fileBasename}.exe"
],
"echoCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"isBuildCommand": false
"problemMatcher": []
},
{
"taskName": "OneScript: run",
"label": "OneScript: run",
"type": "shell",
"command": "oscript",
"args": [
"-encoding=utf-8",
"${file}"
],
"echoCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"isBuildCommand": true,
"problemMatcher": {
"fileLocation": "absolute",
"pattern": {
Expand All @@ -58,6 +55,10 @@
"location": 2,
"message": 3
}
},
"group": {
"_id": "build",
"isDefault": false
}
}
]
Expand Down
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2017-2024 Maximov Valery aka theshadowco

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
12 changes: 12 additions & 0 deletions installlocalhost.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@echo off
call del "*.ospx"

for /f %%i in ('"oscript -version"') do set result=%%i

if %result%==1.0.19.105 (
call opm build . -mf ./packagedef -out .
) else (
call opm build -m ./packagedef -o .
)

call opm install -f *.ospx
1 change: 1 addition & 0 deletions packagedef
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
Описание.Имя("progbar")
.Версия("1.3")
.ВключитьФайл("src")
.ВключитьФайл("LICENSE")
.ВключитьФайл("lib.config")
.ВключитьФайл("readme.md")
13 changes: 7 additions & 6 deletions src/ПрогрессБар.os
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
Перем СтрокаПустогоБара;
Перем СтрокаЗаполненногоБара;
Перем ЦветБара;

///////////////////////////////////////////////////////////////////////////////

// Начать
Expand All @@ -32,7 +33,8 @@
// ВыводитьНомерИКоличество - Булево - Флаг вывода прогресса в абсолютном виде
// ВыводитьВремя - Булево - Флаг вывода времени выполнения и прогноза завершения
//
Процедура Начать(КоличествоШагов, Подсказка = "", ВыводитьПроценты = ИСТИНА, ВыводитьНомерИКоличество = ИСТИНА, ВыводитьВремя = ИСТИНА) Экспорт
Процедура Начать(КоличествоШагов, Подсказка = "", ВыводитьПроценты = ИСТИНА, ВыводитьНомерИКоличество = ИСТИНА,
ВыводитьВремя = ИСТИНА) Экспорт

ЦветТекстаКонсоли = Консоль.ЦветТекста;
ТекстПодсказки = Подсказка;
Expand All @@ -49,7 +51,7 @@
ПоследнийШаг = 0;
ДатаНачала = ТекущаяДата();
Длительность = 0;
Инициализирован = ИСТИНА;
Инициализирован = Истина;

КонецПроцедуры // Начать

Expand All @@ -59,8 +61,8 @@
//
// Параметры:
// Инкремент - Число - Размер и направление (для отрицательных значений) шага
// Подсказка - Строка - Текст, выводимый перед строкой прогресса
// КоличествоШагов - Число - Общее количество шагов прогресса
// Подсказка - Строка - Текст, выводимый перед строкой прогресса
//
Процедура СделатьШаг(Инкремент = 1, КоличествоШагов = 0, Подсказка = Неопределено) Экспорт

Expand Down Expand Up @@ -157,7 +159,7 @@
//
Процедура Завершить() Экспорт

Инициализирован = ЛОЖЬ;
Инициализирован = Ложь;
Длительность = ТекущаяДата() - ДатаНачала;
Консоль.ВидимостьКурсора(Истина);
Консоль.ЦветТекста = ЦветТекстаКонсоли;
Expand All @@ -174,7 +176,7 @@
// Возвращаемое значение:
// Число, Строка - Время, прошедшее с начала работы
//
Функция ДлительностьВыполнения(ВВидеПредставления = ЛОЖЬ) Экспорт
Функция ДлительностьВыполнения(ВВидеПредставления = Ложь) Экспорт

Если ВВидеПредставления Тогда

Expand Down Expand Up @@ -259,7 +261,6 @@

КонецФункции


Инициализирован = ЛОЖЬ;
Длительность = 0;
ЦветБара = ЦветКонсоли.Magenta;
Expand Down

0 comments on commit d20b711

Please sign in to comment.