-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
49 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
======== | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
Large diffs are not rendered by default.
Oops, something went wrong.