Skip to content

Commit

Permalink
Updated s9e\TextFormatter
Browse files Browse the repository at this point in the history
Fixes #5 in new posts. Old posts need to be reparsed.
  • Loading branch information
JoshyPHP committed Jun 5, 2016
1 parent e2475de commit 7a94e1f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion bundle.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "phpbb-extension",
"description": "Embed third-party content in your phpBB forum",
"homepage": "https://github.com/s9e/phpbb-ext-mediaembed/",
"version": "20160310",
"version": "20160605",
"keywords": ["phpbb","embed","forum","media"],
"license": "MIT",
"require": {
Expand Down
3 changes: 2 additions & 1 deletion parsing.php
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,8 @@ protected function filterTag(Tag $tag)
'parser' => $this,
'registeredVars' => $this->registeredVars,
'tag' => $tag,
'tagConfig' => $tagConfig
'tagConfig' => $tagConfig,
'text' => $this->text
);
foreach ($tagConfig['filterChain'] as $filter)
if (!self::executeFilter($filter, $vars))
Expand Down
12 changes: 6 additions & 6 deletions rendering.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vendor/s9e/TextFormatter
Submodule TextFormatter updated 33 files
+1 −1 composer.json
+1 −1 src/Bundles/Fatdown.php
+4 −4 src/Bundles/Fatdown/Renderer.php
+1 −1 src/Bundles/Forum.php
+6 −6 src/Bundles/Forum/Renderer.php
+1 −1 src/Bundles/MediaPack.php
+6 −6 src/Bundles/MediaPack/Renderer.php
+76 −15 src/Configurator.php
+1 −1 src/Configurator/Bundles/Fatdown.php
+2 −0 src/Configurator/Bundles/Forum.php
+1 −1 src/Configurator/JavaScript/CallbackGenerator.php
+11 −3 src/Configurator/JavaScript/Encoder.php
+2 −1 src/Configurator/JavaScript/Minifiers/ClosureCompilerService.php
+1 −0 src/Configurator/JavaScript/Minifiers/FirstAvailable.php
+1 −1 src/Configurator/JavaScript/Minifiers/HostedMinifier.php
+1 −1 src/Configurator/JavaScript/Minifiers/RemoteCache.php
+3 −7 src/Configurator/JavaScript/OnlineMinifier.php
+26 −32 src/Configurator/JavaScript/RegexpConvertor.php
+2 −1 src/Parser.php
+1 −1 src/Parser/BuiltInFilters.js
+3 −3 src/Plugins/Autolink/Configurator.php
+9 −22 src/Plugins/Autolink/Parser.js
+2 −8 src/Plugins/Autolink/Parser.php
+17 −3 src/Plugins/BBCodes/Configurator/repository.xml
+1 −1 src/Plugins/Emoji/Configurator.php
+1 −1 src/Plugins/Emoji/Parser.js
+1 −1 src/Plugins/Emoji/Parser.php
+0 −1 src/Plugins/HTMLElements/Configurator.php
+9 −3 src/Plugins/Litedown/Configurator.php
+19 −19 src/Plugins/Litedown/Parser.js
+15 −14 src/Plugins/Litedown/Parser.php
+34 −26 src/Plugins/MediaEmbed/Configurator/CachedSiteDefinitionProvider.php
+2 −0 src/Plugins/MediaEmbed/Configurator/TemplateGenerator.php
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"stable":{"20160310":{"current":"20160310","announcement":"https:\/\/www.phpbb.com\/community\/viewtopic.php?f=456&t=2272431","download":"https:\/\/github.com\/s9e\/phpbb-ext-mediaembed\/releases\/download\/20160310\/s9e-mediaembed-20160310.zip","eol":null,"security":false}}}
{"stable":{"20160605":{"current":"20160605","announcement":"https:\/\/www.phpbb.com\/community\/viewtopic.php?f=456&t=2272431","download":"https:\/\/github.com\/s9e\/phpbb-ext-mediaembed\/releases\/download\/20160605\/s9e-mediaembed-20160605.zip","eol":null,"security":false}}}

0 comments on commit 7a94e1f

Please sign in to comment.