From afc200ddbc69e119a46f9a1413e11b672cd29bbd Mon Sep 17 00:00:00 2001 From: Arnd Messer Date: Sat, 4 Nov 2017 13:00:43 +0100 Subject: [PATCH 1/5] Update readme.md --- readme.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index 796eed7..331a1bc 100644 --- a/readme.md +++ b/readme.md @@ -2,9 +2,7 @@ ## Usage: -Be sure u use a "starpilot" Provider extension that contains the folowing changes: -[Startpilot commit #716682418a205a4691e076043026c70fa74cd273](https://github.com/misterboe/startpilot/commit/716682418a205a4691e076043026c70fa74cd273) - +The "startpilot" extension is required to run this script! Alwas run the script from your project root (depending on your composer.json bin-dir) If your config looks like this: @@ -24,4 +22,4 @@ use: `sh vendor/bin/ce-gen.sh` ## Dependencies -* brew install gettext \ No newline at end of file +* brew install gettext From 41248a7fa9e190d3163294cb3fed444427dc71da Mon Sep 17 00:00:00 2001 From: Boris Schauer Date: Tue, 21 Nov 2017 11:09:41 +0100 Subject: [PATCH 2/5] [TASK] Add newline --- lib/mm/ext_tables_mm.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mm/ext_tables_mm.sql b/lib/mm/ext_tables_mm.sql index 52bf760..9a29302 100644 --- a/lib/mm/ext_tables_mm.sql +++ b/lib/mm/ext_tables_mm.sql @@ -56,4 +56,4 @@ CREATE TABLE tt_content_tx_${mmtitleLower}_mm ( sorting int(11) unsigned DEFAULT '0' NOT NULL, KEY uid_local (uid_local), KEY uid_foreign (uid_foreign) -); \ No newline at end of file +); From a5768053de1ef3dc1374a8b73859d6f03b24dab0 Mon Sep 17 00:00:00 2001 From: Boris Schauer Date: Tue, 21 Nov 2017 11:10:11 +0100 Subject: [PATCH 3/5] [TASK] MM recursive = 99 --- lib/mm/typoscript_ce_ctype.t3s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mm/typoscript_ce_ctype.t3s b/lib/mm/typoscript_ce_ctype.t3s index ba84ceb..7740124 100644 --- a/lib/mm/typoscript_ce_ctype.t3s +++ b/lib/mm/typoscript_ce_ctype.t3s @@ -6,7 +6,7 @@ tt_content.${extname}_${cename} { 10 { table = tx_${mmtitleLower} pidInList = root,-1 - recursive = 2 + recursive = 99 selectFields = tx_${mmtitleLower}.* join = tt_content_tx_${mmtitleLower}_mm ON tt_content_tx_${mmtitleLower}_mm.uid_foreign = tx_${mmtitleLower}.uid where.data = field:###selected_tx_${mmtitleLower}### // field:uid From 146ecd0eca6b2057bd3d066356a407c9a8a7b986 Mon Sep 17 00:00:00 2001 From: Boris Schauer Date: Fri, 22 Dec 2017 11:06:27 +0100 Subject: [PATCH 4/5] [TASK] Fix Title in IRRE --- lib/irre/tx_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/irre/tx_table.php b/lib/irre/tx_table.php index 13e89e6..05731f2 100644 --- a/lib/irre/tx_table.php +++ b/lib/irre/tx_table.php @@ -7,7 +7,7 @@ 'tstamp' => 'tstamp', 'crdate' => 'crdate', 'cruser_id' => 'cruser_id', - 'title' => 'Item', + 'title' => '${cetitle}-Item', 'delete' => 'deleted', 'versioningWS' => true, 'origUid' => 't3_origuid', From fc15c73ecb028918882fb9c276ed2d6f86542e61 Mon Sep 17 00:00:00 2001 From: Boris Schauer Date: Fri, 22 Dec 2017 11:06:54 +0100 Subject: [PATCH 5/5] [TASK] Set Version Number to 1.2.1 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 95133c8..56ef34a 100644 --- a/composer.json +++ b/composer.json @@ -17,5 +17,5 @@ "ce-gen.sh" ], "minimum-stability": "dev", - "version": "1.2.0" + "version": "1.2.1" }