1
0
mirror of https://github.com/typemill/typemill.git synced 2025-10-16 23:28:52 +02:00

Version 1.2.9: Add videos and public forms

This commit is contained in:
Sebastian
2019-01-04 00:53:18 +01:00
parent 08ece40117
commit d5182b77a7
5 changed files with 29 additions and 27 deletions

View File

@@ -19,8 +19,7 @@ class SettingsController extends Controller
$settings = $this->c->get('settings');
$copyright = $this->getCopyright();
$languages = $this->getLanguages();
$locale = explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']);
$locale = $locale[0];
$locale = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? substr($_SERVER["HTTP_ACCEPT_LANGUAGE"],0,2) : 'en';
$users = $user->getUsers();
$route = $request->getAttribute('route');

View File

@@ -47,7 +47,7 @@ class Settings
'contentFolder' => 'content',
'cache' => true,
'cachePath' => $rootPath . 'cache',
'version' => '1.2.8',
'version' => '1.2.9',
'setup' => true,
'welcome' => true,
'images' => ['live' => ['width' => 820], 'mlibrary' => ['width' => 50, 'height' => 50]],

View File

@@ -11,7 +11,7 @@
<h1>Hurra!</h1>
<p>Your account has been created and you are logged in now.</p>
<p><strong>Next step:</strong> Visit the author panel and setup your new website. You can configure the system, choose themes and add plugins.</p>
<p><strong>Coming soon:</strong> You can already use the web-editor to create, edit and sort your content, but there is no media library yet. We will add it together with a cool visual content editor, soon.</p>
<p><strong>New:</strong> We recently added an image upload and youtube videos to the visual content editor.</p>
<p><strong>Get help:</strong> If you have any questions, please consult the <a target="_blank" href="http://typemill.net/typemill"><i class="icon-link-ext"></i> docs</a> or open a new issue on <a target="_blank" href="https://github.com/trendschau/typemill"><i class="icon-link-ext"></i> github</a>.</p>
</div>
<a class="button" href="{{ path_for('settings.show') }}">Configure your website</a>