Skip to content

Commit 22c0d16

Browse files
committed
Updated version number to v1.6.2
1 parent e5f6fe3 commit 22c0d16

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

Diff for: changelog.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Changelog
22
================================================================================================
33

4+
Sefrengo v1.6.2
5+
------------------------------------------------------------------------------------------------
6+
Internal versionnumber: 01.06.02<br/>
7+
Release: 25.01.2015
8+
9+
See full changelog at <https://github.com/sefrengo-cms/sefrengo-1.x/commits/v1.6.2>
10+
11+
* FIXED: Escaped strings for session ids and name
12+
* ADDED: Sortable CSS and JS files for layouts (thanks to sidd)
13+
14+
15+
416
Sefrengo v1.6.1
517
------------------------------------------------------------------------------------------------
618
Internal versionnumber: 01.06.01<br/>

Diff for: setup/index.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ class setup {
129129
'updates_from.01.04.06.sql',
130130
'updates_from.01.05.00.sql',
131131
'updates_from.01.05.01.sql',
132-
'updates_from.01.06.00.sql');
132+
'updates_from.01.06.00.sql',
133+
'updates_from.01.06.01.sql');
133134

134135
/**
135136
* Konstruktor. Catch all globals
@@ -139,7 +140,7 @@ function setup()
139140
$this -> catch_globals();
140141
$this -> version['prior'] = '01';
141142
$this -> version['minor'] = '06';
142-
$this -> version['fix'] = '01';
143+
$this -> version['fix'] = '02';
143144
$this -> version_text = $this -> version['prior'];
144145
$this -> version_text .= '.';
145146
$this -> version_text .= $this -> version['minor'];

Diff for: setup/sql/config.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ INSERT INTO cms_values VALUES ('', 0, 0, 'css_units', 'auto', 'v', '', '', 'auto
321321
INSERT INTO cms_values VALUES ('', 0, 0, 'css_units', 'attachment', 'v', '', '', 'fixed|scroll', 0, NULL, NULL, 'txt', NULL, NULL, 0);
322322

323323
# cms config
324-
INSERT INTO cms_values VALUES ('', 0, 0, 'cfg', 'version', '', '', '', '01.06.01', '0', NULL, NULL, '', NULL, NULL, '0');
324+
INSERT INTO cms_values VALUES ('', 0, 0, 'cfg', 'version', '', '', '', '01.06.02', '0', NULL, NULL, '', NULL, NULL, '0');
325325

326326
INSERT INTO cms_values VALUES ('', 0, 0, 'cfg', 'cms_path', NULL, NULL, NULL, '<!--{cms_path}-->backend/', 100, 'set_cms_path', NULL, 'txt', NULL, NULL, '1');
327327
INSERT INTO cms_values VALUES ('', 0, 0, 'cfg', 'cms_html_path', NULL, NULL, NULL, '<!--{cms_full_http_path}-->backend/', 101, 'set_html_path', NULL, 'txt', NULL, NULL, '1');

Diff for: setup/sql/updates_from.01.06.01.sql

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# 25.01.2015 set new versionnumber - Sefrengo 1.6.2
2+
UPDATE cms_values SET value = '01.06.02' WHERE group_name = 'cfg' AND key1 = 'version';

0 commit comments

Comments
 (0)