Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
cmb69 committed Feb 10, 2023
1 parent 2905f16 commit df21061
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@
<delete dir="export"/>
<copy file="dist/config/config.php" tofile="dist/config/defaultconfig.php"/>
<copy file="dist/languages/en.php" tofile="dist/languages/default.php"/>
<zip destfile="Ocal_XH-1.2-dev.zip" basedir="dist" prefix="ocal/"/>
<zip destfile="Ocal_XH-1.2.zip" basedir="dist" prefix="ocal/"/>
<delete dir="dist"/>
</target>

<target name="build-patch" description="builds a distributable update package">
<fail unless="patchee" message="patchee is not defined!"/>
<unzip file="Ocal_XH-1.2-dev.zip" todir="current"/>
<unzip file="Ocal_XH-1.2.zip" todir="current"/>
<unzip file="${patchee}" todir="patchee"/>
<copy todir="dist">
<fileset dir="current">
Expand All @@ -95,7 +95,7 @@
<include name="css/stylesheet.css"/>
</fileset>
</delete>
<zip destfile="Ocal_XH-1.2-dev-update-from-1.x.zip" basedir="dist" includeemptydirs="false"/>
<zip destfile="Ocal_XH-1.2-update-from-1.x.zip" basedir="dist" includeemptydirs="false"/>
<delete dir="patchee" quiet="true"/>
<delete dir="current" quiet="true"/>
<delete dir="dist" quiet="true"/>
Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

use Ocal\Dic;

const OCAL_VERSION = "1.2-dev";
const OCAL_VERSION = "1.2";

/**
* @param string $name
Expand Down
10 changes: 5 additions & 5 deletions teplad.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
<!-- the name of the Plugin -->
<name type="plugin">Ocal_XH</name>
<!-- Date this xml-file was updated, yyyy.mm.dd -->
<date_update>2023.02.09</date_update>
<date_update>2023.02.10</date_update>
<!-- version of Plugin -->
<version>1.1</version>
<version>1.2</version>
<!-- date of publication, yyyy.mm.dd -->
<date_version>2023.02.09</date_version>
<date_version>2023.02.10</date_version>
<!-- the name of the programmer -->
<coder>Christoph M. Becker</coder>
<!-- Categories must be written in lower case. More than one possible, separated by comma without spaces. -->
Expand All @@ -62,10 +62,10 @@
<url>
<!-- URL where you can download the plugin -->
<!-- If there no Download-URL, enter this follows! - <download_url></download_url> -->
<download_url>https://github.com/cmb69/ocal_xh/releases/1.0</download_url>
<download_url>https://github.com/cmb69/ocal_xh/releases/1.2</download_url>
<!-- URL of the programmer's website -->
<!-- If there no Website, enter this follows! - <coder_url></coder_url> -->
<coder_url>https://3-magi.net</coder_url>
<coder_url>https://3-magi.net/</coder_url>
<!-- URL where find a demo -->
<!-- If there no Demo-Website, enter this follows! - <demo_url></demo_url> -->
<demo_url></demo_url>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- info -->
<h1>Ocal 1.2-dev</h1>
<h1>Ocal 1.2</h1>
<h2>System check</h2>
<ul class="ocal_syscheck">
<li class="xh_fail">Checking that PHP version ≥ 7.1.0 … failure</li>
Expand Down
2 changes: 1 addition & 1 deletion tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

const CMSIMPLE_XH_VERSION = "CMSimple_XH 1.7.5";
const OCAL_VERSION = "1.2-dev";
const OCAL_VERSION = "1.2";

require_once './vendor/autoload.php';
require_once '../../cmsimple/classes/CSRFProtection.php';
Expand Down
2 changes: 1 addition & 1 deletion version.nfo
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Ocal_XH,1.1,1.1,1.0alpha1,,https://github.com/cmb69/ocal_xh/releases/1.1,https://raw.githubusercontent.com/cmb69/ocal_xh/master/version.nfo
Ocal_XH,1.2,1.2,1.0alpha1,,https://github.com/cmb69/ocal_xh/releases/1.2,https://raw.githubusercontent.com/cmb69/ocal_xh/master/version.nfo

0 comments on commit df21061

Please sign in to comment.