Skip to content

Commit

Permalink
Updated version number to v1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkh committed Jan 25, 2015
1 parent e5f6fe3 commit 22c0d16
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Changelog
================================================================================================

Sefrengo v1.6.2
------------------------------------------------------------------------------------------------
Internal versionnumber: 01.06.02<br/>
Release: 25.01.2015

See full changelog at <https://github.com/sefrengo-cms/sefrengo-1.x/commits/v1.6.2>

* FIXED: Escaped strings for session ids and name
* ADDED: Sortable CSS and JS files for layouts (thanks to sidd)



Sefrengo v1.6.1
------------------------------------------------------------------------------------------------
Internal versionnumber: 01.06.01<br/>
Expand Down
5 changes: 3 additions & 2 deletions setup/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ class setup {
'updates_from.01.04.06.sql',
'updates_from.01.05.00.sql',
'updates_from.01.05.01.sql',
'updates_from.01.06.00.sql');
'updates_from.01.06.00.sql',
'updates_from.01.06.01.sql');

/**
* Konstruktor. Catch all globals
Expand All @@ -139,7 +140,7 @@ function setup()
$this -> catch_globals();
$this -> version['prior'] = '01';
$this -> version['minor'] = '06';
$this -> version['fix'] = '01';
$this -> version['fix'] = '02';
$this -> version_text = $this -> version['prior'];
$this -> version_text .= '.';
$this -> version_text .= $this -> version['minor'];
Expand Down
2 changes: 1 addition & 1 deletion setup/sql/config.sql
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ INSERT INTO cms_values VALUES ('', 0, 0, 'css_units', 'auto', 'v', '', '', 'auto
INSERT INTO cms_values VALUES ('', 0, 0, 'css_units', 'attachment', 'v', '', '', 'fixed|scroll', 0, NULL, NULL, 'txt', NULL, NULL, 0);

# cms config
INSERT INTO cms_values VALUES ('', 0, 0, 'cfg', 'version', '', '', '', '01.06.01', '0', NULL, NULL, '', NULL, NULL, '0');
INSERT INTO cms_values VALUES ('', 0, 0, 'cfg', 'version', '', '', '', '01.06.02', '0', NULL, NULL, '', NULL, NULL, '0');

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');
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');
Expand Down
2 changes: 2 additions & 0 deletions setup/sql/updates_from.01.06.01.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# 25.01.2015 set new versionnumber - Sefrengo 1.6.2
UPDATE cms_values SET value = '01.06.02' WHERE group_name = 'cfg' AND key1 = 'version';

0 comments on commit 22c0d16

Please sign in to comment.