1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-06-20 09:19:27 +02:00

Поднят номер версии

This commit is contained in:
Anton Titovets
2026-03-26 09:19:49 +03:00
parent 0dec5c42db
commit 7d30ca0260
21 changed files with 42 additions and 42 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
"value": {
"version": {
"description": "Current project version",
"value": "1.34.0"
"value": "2.0.0"
},
"repoUrl": {
"description": "Repository URL",
+15 -15
View File
@@ -17,8 +17,8 @@ const DownloadPage = () => {
{
name: 'CFE (расширение)',
files: {
ru: 'OpenIntegrations_1.34.0_ru.cfe',
en: 'OpenIntegrations_1.34.0_en.cfe',
ru: 'OpenIntegrations_2.0.0_ru.cfe',
en: 'OpenIntegrations_2.0.0_en.cfe',
},
desc: 'Файл расширения 1С в формате .cfe',
},
@@ -46,32 +46,32 @@ const DownloadPage = () => {
{
name: 'Windows Installer',
files: {
ru: 'oint_1.34.0_installer_ru.exe',
en: 'oint_1.34.0_installer_en.exe',
ru: 'oint_2.0.0_installer_ru.exe',
en: 'oint_2.0.0_installer_en.exe',
},
desc: 'Windows установщик CLI приложения с аддоном Melezh',
},
{
name: 'Debian / Ubuntu (.deb)',
files: {
ru: 'oint_1.34.0_all_ru.deb',
en: 'oint_1.34.0_all_en.deb',
ru: 'oint_2.0.0_all_ru.deb',
en: 'oint_2.0.0_all_en.deb',
},
desc: 'Пакет CLI приложения для систем на базе Debian',
},
{
name: 'Fedora / RHEL (.rpm)',
files: {
ru: 'oint-1.34.0-1.noarch_ru.rpm',
en: 'oint-1.34.0-1.noarch_en.rpm',
ru: 'oint-2.0.0-1.noarch_ru.rpm',
en: 'oint-2.0.0-1.noarch_en.rpm',
},
desc: 'Пакет CLI приложения для систем на базе RHEL',
},
{
name: 'Linux (.AppImage)',
files: {
ru: 'oint-1.34.0_ru-x86_64.AppImage',
en: 'oint-1.34.0_en-x86_64.AppImage',
ru: 'oint-2.0.0_ru-x86_64.AppImage',
en: 'oint-2.0.0_en-x86_64.AppImage',
},
desc: 'Единый исполняемый файл CLI формата AppImage',
},
@@ -84,16 +84,16 @@ const DownloadPage = () => {
{
name: 'Пакет oint (.ospx)',
files: {
ru: 'oint-1.34.0_ru.ospx',
en: 'oint-1.34.0_en.ospx',
ru: 'oint-2.0.0_ru.ospx',
en: 'oint-2.0.0_en.ospx',
},
desc: 'Пакет библиотеки для OneScript',
},
{
name: 'Пакет oint-cli (.ospx)',
files: {
ru: 'oint-cli-1.34.0_ru.ospx',
en: 'oint-cli-1.34.0_en.ospx',
ru: 'oint-cli-2.0.0_ru.ospx',
en: 'oint-cli-2.0.0_en.ospx',
},
desc: 'Пакет CLI-приложения для OneScript',
},
@@ -155,7 +155,7 @@ const DownloadPage = () => {
Скачать последнюю версию
</Heading>
<p className={styles.downloadSubtitle}>
Текущая версия: 1.34.0 | Выберите подходящий язык и вариант поставки
Текущая версия: 2.0.0 | Выберите подходящий язык и вариант поставки
</p>
</div>
</div>
+1 -1
View File
@@ -1,5 +1,5 @@
#define MyAppName "OInt"
#define MyAppVersion "1.34.0"
#define MyAppVersion "2.0.0"
#define MyAppPublisher "bayselonarrend"
#define MyAppURL "https://github.com/Bayselonarrend/OpenIntegrations"
#define MyAppExeName "oint.bat"
+1 -1
View File
@@ -1,5 +1,5 @@
#define MyAppName "OInt"
#define MyAppVersion "1.34.0"
#define MyAppVersion "2.0.0"
#define MyAppPublisher "bayselonarrend"
#define MyAppURL "https://github.com/Bayselonarrend/OpenIntegrations"
#define MyAppExeName "oint.bat"
+3 -3
View File
@@ -35,7 +35,7 @@ pipeline {
steps {
script {
// Скачиваем новый deb-пакет oint
sh 'wget -O oint_1.34.0_all_%1.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/1.34.0/oint_1.34.0_all_%1.deb '
sh 'wget -O oint_2.0.0_all_%1.deb https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_all_%1.deb '
}
}
}
@@ -43,14 +43,14 @@ pipeline {
stage('Install oint package') {
steps {
script {
sh 'dpkg -i oint_1.34.0_all_%1.deb'
sh 'dpkg -i oint_2.0.0_all_%1.deb'
}
}
}
stage('Prepare'){
steps{
sh 'cd ./src/%1/OInt && opm build && opm install oint-1.34.0.ospx && rm oint-1.34.0.ospx'
sh 'cd ./src/%1/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
}
+3 -3
View File
@@ -34,7 +34,7 @@ pipeline {
steps {
script {
// Скачиваем новый rpm-пакет oint
sh 'wget -O oint-1.34.0-1.noarch_%1.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/1.34.0/oint-1.34.0-1.noarch_%1.rpm '
sh 'wget -O oint-2.0.0-1.noarch_%1.rpm https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint-2.0.0-1.noarch_%1.rpm '
}
}
}
@@ -43,14 +43,14 @@ pipeline {
steps {
script {
// Устанавливаем скаченный пакет
sh 'rpm -ivh --replacepkgs oint-1.34.0-1.noarch_%1.rpm'
sh 'rpm -ivh --replacepkgs oint-2.0.0-1.noarch_%1.rpm'
}
}
}
stage('Prepare'){
steps{
sh 'cd ./src/%1/OInt && opm build && opm install oint-1.34.0.ospx && rm oint-1.34.0.ospx'
sh 'cd ./src/%1/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
}
@@ -23,7 +23,7 @@ pipeline {
stage('Decrypt Data') {
steps {
powershell encoding: 'UTF-8', script:'cd ./src/%1/OInt; opm build; opm install oint-1.34.0.ospx; del oint-1.34.0.ospx'
powershell encoding: 'UTF-8', script:'cd ./src/%1/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%%GPGKEY%%" --output ./data.json ./data.json.gpg'
}
@@ -90,7 +90,7 @@ pipeline {
stage('Download Installer') {
steps {
powershell encoding: 'UTF-8', script: '''
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/1.34.0/oint_1.34.0_installer_%1.exe "
$url = "https://jenkins.openintegrations.dev/job/OpiBuild/job/OpiRelease/lastSuccessfulBuild/artifact/2.0.0/oint_2.0.0_installer_%1.exe "
$output = "$env:USERPROFILE\\Downloads\\oint_installer.exe"
Invoke-WebRequest -Uri $url -OutFile $output
Write-Host "Инсталлер скачан в: $output"
+1 -1
View File
@@ -60,7 +60,7 @@ pipeline {
stage('Prepare'){
steps{
sh 'cd ./src/%1/OInt && opm build && opm install oint-1.34.0.ospx && rm oint-1.34.0.ospx'
sh 'cd ./src/%1/OInt && opm build && opm install oint-2.0.0.ospx && rm oint-2.0.0.ospx'
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
sh 'gpg --quiet --batch --yes --decrypt --passphrase="$GPGKEY" --output ./data.json ./data.json.gpg'
}
@@ -57,7 +57,7 @@ pipeline {
}
stage('Build OInt from source and decrypt secret data'){
steps{
powershell encoding: 'UTF-8', script:'cd ./src/%1/OInt; opm build; opm install oint-1.34.0.ospx; del oint-1.34.0.ospx'
powershell encoding: 'UTF-8', script:'cd ./src/%1/OInt; opm build; opm install oint-2.0.0.ospx; del oint-2.0.0.ospx'
withCredentials([string(credentialsId: 'gpgkey', variable: 'GPGKEY')]) {
bat encoding: 'UTF-8', script:'gpg --quiet --batch --yes --decrypt --passphrase="%%GPGKEY%%" --output ./data.json ./data.json.gpg'
}
+1 -1
View File
@@ -1,5 +1,5 @@
Описание.Имя("oint")
.Версия("1.34.0")
.Версия("2.0.0")
.Автор("bayselonarrend")
.АдресАвтора("bayselonarrend@gmail.com")
.Описание("Открытый пакет интеграций с популярными API")
@@ -1132,7 +1132,7 @@ Function GetLastBuildHashSum() Export
EndFunction
Function OPIVersion() Export
Return "1.34.0";
Return "2.0.0";
EndFunction
Function OPILanguage() Export
+1 -1
View File
@@ -1134,7 +1134,7 @@ Function GetLastBuildHashSum() Export
EndFunction
Function OPIVersion() Export
Return "1.34.0";
Return "2.0.0";
EndFunction
Function OPILanguage() Export
+1 -1
View File
@@ -26,7 +26,7 @@
<usePurposes>PersonalComputer</usePurposes>
<scriptVariant>English</scriptVariant>
<vendor>https://github.com/Bayselonarrend</vendor>
<version>1.34.0</version>
<version>2.0.0</version>
<detailedInformation>
<key>en</key>
<value>The Open Integration Package is a set of libraries for integrating with some popular APIs for 1C:Enterprise. It consists of common modules, each responsible for its own API, as well as several shared tool modules..</value>
+1 -1
View File
@@ -1,5 +1,5 @@
{
"version": "1.34.0",
"version": "2.0.0",
"modules": {
"tools": "Utils",
"airtable": "OPI_Airtable",
+2 -2
View File
@@ -1,5 +1,5 @@
Описание.Имя("oint-cli")
.Версия("1.34.0")
.Версия("2.0.0")
.Автор("bayselonarrend")
.АдресАвтора("bayselonarrend@gmail.com")
.Описание("OpenIntegrations-based CLI tool")
@@ -11,5 +11,5 @@
.ВключитьФайл("env")
.ВключитьФайл("lib.config")
.ВключитьФайл(".versionhash")
.ЗависитОт("oint", "1.34.0")
.ЗависитОт("oint", "2.0.0")
.ИсполняемыйФайл("core/Classes/app.os", "oint")
+1 -1
View File
@@ -1,5 +1,5 @@
Описание.Имя("oint")
.Версия("1.34.0")
.Версия("2.0.0")
.Автор("bayselonarrend")
.АдресАвтора("bayselonarrend@gmail.com")
.Описание("Открытый пакет интеграций с популярными API")
@@ -1132,7 +1132,7 @@
КонецФункции
Функция ВерсияОПИ() Экспорт
Возврат "1.34.0";
Возврат "2.0.0";
КонецФункции
Функция ЯзыкОПИ() Экспорт
@@ -1134,7 +1134,7 @@
КонецФункции
Функция ВерсияОПИ() Экспорт
Возврат "1.34.0";
Возврат "2.0.0";
КонецФункции
Функция ЯзыкОПИ() Экспорт
@@ -26,7 +26,7 @@
<usePurposes>PersonalComputer</usePurposes>
<scriptVariant>Russian</scriptVariant>
<vendor>https://github.com/Bayselonarrend</vendor>
<version>1.34.0</version>
<version>2.0.0</version>
<detailedInformation>
<key>ru</key>
<value>Открытый пакет интеграций - набор библиотек для интеграции с некоторыми популярными API для 1C:Enterprise. Он состоит из общих модулей, каждый из которых отвечает за свой API, а также нескольких модулей-инструментов, общих для всех.</value>
+1 -1
View File
@@ -1,5 +1,5 @@
{
"version": "1.34.0",
"version": "2.0.0",
"modules": {
"tools": "Utils",
"airtable": "OPI_Airtable",
+2 -2
View File
@@ -1,5 +1,5 @@
Описание.Имя("oint-cli")
.Версия("1.34.0")
.Версия("2.0.0")
.Автор("bayselonarrend")
.АдресАвтора("bayselonarrend@gmail.com")
.Описание("OpenIntegrations-based CLI tool")
@@ -11,5 +11,5 @@
.ВключитьФайл("env")
.ВключитьФайл("lib.config")
.ВключитьФайл(".versionhash")
.ЗависитОт("oint", "1.34.0")
.ЗависитОт("oint", "2.0.0")
.ИсполняемыйФайл("core/Classes/app.os", "oint")