FhemUtils/release.pm for the new update process added.

git-svn-id: https://svn.fhem.de/fhem/trunk@1651 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
mfr69bs
2012-06-25 08:20:00 +00:00
parent 260e42d490
commit 8cbc788ff2
2 changed files with 18 additions and 0 deletions

View File

@@ -50,6 +50,7 @@
- feature: portpassword and basicAuth may use evaluated functions - feature: portpassword and basicAuth may use evaluated functions
- feature: motd with SecurityCheck added - feature: motd with SecurityCheck added
- feature: telnet module added, attr global port moved. allowfrom changed. - feature: telnet module added, attr global port moved. allowfrom changed.
- feature: FhemUtils/release.pm for the new update process added. (M. Fischer)
- 2011-12-31 (5.2) - 2011-12-31 (5.2)
- bugfix: applying smallscreen attributes to firefox/opera - bugfix: applying smallscreen attributes to firefox/opera

View File

@@ -0,0 +1,17 @@
################################################################
# $Id:$
package main;
use strict;
use warnings;
use vars qw($DISTRIB_ID);
use vars qw($DISTRIB_RELEASE);
use vars qw($DISTRIB_BRANCH);
use vars qw($DISTRIB_DESCRIPTION);
$DISTRIB_ID="Fhem";
$DISTRIB_RELEASE="5.2";
$DISTRIB_BRANCH="EXPERIMENTAL";
$DISTRIB_DESCRIPTION="$DISTRIB_ID $DISTRIB_RELEASE ($DISTRIB_BRANCH)";
1;