New version

This commit is contained in:
Georgy Litvinov 2021-04-30 14:36:41 +02:00
parent 69f18b24c1
commit c7c25f84c0
4 changed files with 208 additions and 36 deletions

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd"> <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Configuration" script:language="StarBasic" script:moduleType="normal">Public Const redactionExtensionName As String = &quot;cleanAndValidate&quot; <script:module xmlns:script="http://openoffice.org/2000/script" script:name="Configuration" script:language="StarBasic" script:moduleType="normal">Public Const redactionExtensionName As String = &quot;cleanAndValidate&quot;
Public Const redactionExtensionVersion = &quot;0.9.27&quot; Public Const redactionExtensionVersion = &quot;0.9.28&quot;
Function initRedactionConfiguration() Function initRedactionConfiguration()
On Error Goto exceptionHandler On Error Goto exceptionHandler
Dim regFactory As Object Dim regFactory As Object

View file

@ -1,5 +1,6 @@
task oxt(type: Zip) { task oxt(type: Zip) {
dependsOn = [ 'setVersion','setVersionInBasicCode' ] dependsOn = [ 'setVersion','setVersionInBasicCode' ]
archiveName 'cleanAndValidate.oxt'
from './' from './'
include '*' include '*'
include '*/*' include '*/*'
@ -9,9 +10,10 @@ task oxt(type: Zip) {
exclude '.*' exclude '.*'
exclude 'build.gradle' exclude 'build.gradle'
exclude 'translations.ods' exclude 'translations.ods'
exclude 'build'
exclude 'buildPlugins'
exclude 'cleanandvalidate.update.xml' exclude 'cleanandvalidate.update.xml'
exclude 'cleanAndValidate.ox2' exclude 'cleanAndValidate.ox2'
archiveName 'cleanAndValidate.oxt'
} }
task setVersion(){ task setVersion(){

View file

@ -1,37 +1,207 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<description xmlns="http://openoffice.org/extensions/description/2006" xmlns:dep="http://openoffice.org/extensions/description/2006" xmlns:xlink="http://www.w3.org/1999/xlink"> <description xmlns="http://openoffice.org/extensions/description/2006" xmlns:dep="http://openoffice.org/extensions/description/2006" xmlns:xlink="http://www.w3.org/1999/xlink">
<identifier value="pro.litvinovg.Redaction"/> <identifier value="pro.litvinovg.Redaction"/>
<version value="0.9.27"/>
<version value="0.9.28"/>
<platform value="all"/> <platform value="all"/>
<display-name> <display-name>
<name lang="en">Cleaning and validation documents for publishing in html and epub with pagination</name> <name lang="en">Cleaning and validation documents for publishing in html and epub with pagination</name>
<name lang="ru">Чистка и проверка документов для издания в html и epub с сохранением пагинации</name> <name lang="ru">Чистка и проверка документов для издания в html и epub с сохранением пагинации</name>
</display-name> </display-name>
<registration> <registration>
<simple-license accept-by="admin" suppress-if-required="true" suppress-on-update="true"> <simple-license accept-by="admin" suppress-if-required="true" suppress-on-update="true">
<license-text lang="en" xlink:href="license_en.txt"/> <license-text lang="en" xlink:href="license_en.txt"/>
<license-text lang="ru" xlink:href="license_ru.txt"/> <license-text lang="ru" xlink:href="license_ru.txt"/>
</simple-license> </simple-license>
</registration> </registration>
<dependencies> <dependencies>
<OpenOffice.org-minimal-version dep:name="OpenOffice.org, LibreOffice 4.1 or later" value="4.1"/> <OpenOffice.org-minimal-version dep:name="OpenOffice.org, LibreOffice 4.1 or later" value="4.1"/>
</dependencies> </dependencies>
<update-information> <update-information>
<src xlink:href="https://dev.litvinovg.pro/litvinovg/cleanandvalidate/-/raw/master/cleanandvalidate.update.xml"/> <src xlink:href="https://dev.litvinovg.pro/litvinovg/cleanandvalidate/-/raw/master/cleanandvalidate.update.xml"/>
</update-information> </update-information>
<publisher> <publisher>
<name lang="en" xlink:href="mailto:public@litvinovg.pro">Georgy Litvinov</name> <name lang="en" xlink:href="mailto:public@litvinovg.pro">Georgy Litvinov</name>
</publisher> </publisher>
<release-notes> <release-notes>
<src lang="en" xlink:href="releasenotes.txt"/> <src lang="en" xlink:href="releasenotes.txt"/>
</release-notes> </release-notes>
<extension-description> <extension-description>
<src lang="ru" xlink:href="description/description_ru.txt"/> <src lang="ru" xlink:href="description/description_ru.txt"/>
<src lang="en" xlink:href="description/description_en.txt"/> <src lang="en" xlink:href="description/description_en.txt"/>
</extension-description> </extension-description>
<icon> <icon>
<default xlink:href="icons/addon_icon.png"/> <default xlink:href="icons/addon_icon.png"/>
<high-contrast xlink:href="icons/addon_icon.png"/> <high-contrast xlink:href="icons/addon_icon.png"/>
</icon> </icon>
</description> </description>

View file

@ -1 +1 @@
version=0.9.27 version=0.9.28