Skip to content

Commit

Permalink
v2.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Ko committed Apr 21, 2014
1 parent 110105c commit 943686f
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .version
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
2.8.0
2014-04-06
2.9.0
2014-04-21
23 changes: 23 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
v2.9.0
========

FIXED

- Fix sum of AccumulatorFull model ~ Knut Kohl <[email protected]>
- Fix wrong config include ~ Knut Kohl <[email protected]>

CHANGED

- Adjust AccumulatorFull to work correct with meter channels ~ Knut Kohl <[email protected]>
- Adjust add channel layout for channel type or template ~ Knut Kohl <[email protected]>
- Adjust route parameter handling in route definitions ~ Knut Kohl <[email protected]>
- Adjust HTML hooks ~ Knut Kohl <[email protected]>
- Adjust sone models ~ Knut Kohl <[email protected]>
- Make index view compatible with embedded=2 parameter ~ Knut Kohl <[email protected]>

NEW

- Add new model AccumulatorFull ~ Knut Kohl <[email protected]>
- Add select for inserting templated channels into hierarchy ~ Knut Kohl <[email protected]>
- Add HTML hooks for head and body (before and after) content ~ Knut Kohl <[email protected]>

v2.8.0
========

Expand Down
17 changes: 17 additions & 0 deletions sql/pvlng.2.9.0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
--
-- v2.8.* > v2.9.0
--

ALTER TABLE `pvlng_type` ADD INDEX `childs` (`childs`), ADD INDEX `read` (`read`), ADD INDEX `write` (`write`);

INSERT INTO `pvlng_type` (`id`, `name`, `description`, `model`, `unit`, `childs`, `read`, `write`, `graph`, `icon`) VALUES
(26, 'Meter to sensor', 'model::MeterToSensor', 'MeterToSensor', '', 1, 1, 0, 1, '/images/ico/calculator_scientific.png'),
(27, 'Full Accumulator', 'model::AccumulatorFull', 'AccumulatorFull', '', -1, 1, 0, 1, '/images/ico/calculator_scientific.png');

REPLACE INTO `pvlng_babelkit` (`code_set`, `code_lang`, `code_code`, `code_desc`, `code_order`) VALUES
('model', 'de', 'Accumulator', 'Summiert die Messwerte aller Sub-Kanäle für den gleichen Zeitpunkt und ignoriert alle Datensätze, wo mindestens ein Wert pro Zeitpunkt fehlt.', 0),
('model', 'en', 'Accumulator', 'Build the sum of readings of all child channels for same timestamp and ignores data sets, where at least one for a timestamp ist missing.', 0),
('model', 'de', 'AccumulatorFull', 'Summiert die Messwerte aller Sub-Kanäle für den gleichen Zeitpunkt, summiert die Werte auch, wenn ein Wert für einen Zeitpunkt fehlt.', 0),
('model', 'en', 'AccumulatorFull', 'Build the sum of readings of all child channels for same timestamp, works for all timestamps, also if one data set is missing.', 0),
('app', 'de', 'ClearSearch', 'Suchbegriff löschen', 0),
('app', 'en', 'ClearSearch', 'Clear search term', 0);
14 changes: 0 additions & 14 deletions sql/pvlng.develop.sql
Original file line number Diff line number Diff line change
@@ -1,17 +1,3 @@
--
-- For development branch only!
--

ALTER TABLE `pvlng_type` ADD INDEX `childs` (`childs`), ADD INDEX `read` (`read`), ADD INDEX `write` (`write`);

INSERT INTO `pvlng_type` (`id`, `name`, `description`, `model`, `unit`, `childs`, `read`, `write`, `graph`, `icon`) VALUES
(26, 'Meter to sensor', 'model::MeterToSensor', 'MeterToSensor', '', 1, 1, 0, 1, '/images/ico/calculator_scientific.png'),
(27, 'Full Accumulator', 'model::AccumulatorFull', 'AccumulatorFull', '', -1, 1, 0, 1, '/images/ico/calculator_scientific.png');

REPLACE INTO `pvlng_babelkit` (`code_set`, `code_lang`, `code_code`, `code_desc`, `code_order`) VALUES
('model', 'de', 'Accumulator', 'Summiert die Messwerte aller Sub-Kanäle für den gleichen Zeitpunkt und ignoriert alle Datensätze, wo mindestens ein Wert pro Zeitpunkt fehlt.', 0),
('model', 'en', 'Accumulator', 'Build the sum of readings of all child channels for same timestamp and ignores data sets, where at least one for a timestamp ist missing.', 0),
('model', 'de', 'AccumulatorFull', 'Summiert die Messwerte aller Sub-Kanäle für den gleichen Zeitpunkt, summiert die Werte auch, wenn ein Wert für einen Zeitpunkt fehlt.', 0),
('model', 'en', 'AccumulatorFull', 'Build the sum of readings of all child channels for same timestamp, works for all timestamps, also if one data set is missing.', 0),
('app', 'de', 'ClearSearch', 'Suchbegriff löschen', 0),
('app', 'en', 'ClearSearch', 'Clear search term', 0);
11 changes: 7 additions & 4 deletions sql/pvlng.sql

Large diffs are not rendered by default.

0 comments on commit 943686f

Please sign in to comment.