Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Commit

Permalink
prepare 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mutec committed Aug 3, 2017
1 parent 910dd4e commit 4cce880
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ CREATE TABLE wcf1_todo (
attachments mediumint(7) NOT NULL DEFAULT 0,
hasEmbeddedObjects tinyint(1) NOT NULL DEFAULT 0,
ipAddress varchar(39) NOT NULL DEFAULT '',
hasLabels tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (todoID)
);

Expand Down
11 changes: 9 additions & 2 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<packagename language="de"><![CDATA[ToDo-Liste]]></packagename>
<packagedescription><![CDATA[Gives the possibility to manage ToDos in several custom categories on your website]]></packagedescription>
<packagedescription language="de"><![CDATA[Ermöglicht die Verwaltung von ToDos in mehreren Kategorien auf Ihrer Website]]></packagedescription>
<version>1.2.5 pl 1</version>
<version>1.2.6</version>
<date>2017-01-23</date>
<packageurl>https://www.mysterycode.de/index.php?page/products/todo/</packageurl>
</packageinformation>
Expand Down Expand Up @@ -49,15 +49,22 @@
<!-- script -->
<instruction type="script">acp/install_de.mysterycode.wcf.todo_1.2.0.php</instruction>

<!-- language -->

<instruction type="language">language/*.xml</instruction>
</instructions>

<instructions type="update" fromversion="1.2.5 pl 1">
<!-- files -->
<instruction type="file">files.tar</instruction>
<instruction type="template">templates.tar</instruction>

<!-- SQL -->
<instruction type="sql">update.sql</instruction>

<!-- language -->
<instruction type="language">language/*.xml</instruction>

<!-- XMLs -->
<instruction type="objectType">xml/objectType.xml</instruction>
</instructions>
</package>
1 change: 1 addition & 0 deletions update.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE wcf1_todo ADD COLUMN hasLabels TINYINT(1) NOT NULL DEFAULT 0;

0 comments on commit 4cce880

Please sign in to comment.