User Tools

Site Tools


relnotes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
relnotes [2024/06/21 18:06]
nightfly
relnotes [2025/04/15 15:36] (current)
nightfly [0.1.5]
Line 1: Line 1:
 ====== Release notes ====== ====== Release notes ======
  
 +===== 0.1.5 =====
 +
 +few new options added 
 +
 +<file ini yalf.ini>
 +YALF_AUTH_KEEP_DEFAULT=1
 +YALF_AUTH_KEEP_CB=0
 +YALF_AUTH_NOREDIR=0
 +</file>
 +
 +===== 0.1.4 =====
 +
 +few new config options added
 +<file ini alter.ini>
 +LICENSES_ENABLED=0
 +PAGE_LOAD_INDICATOR=1
 +</file>
 +
 +
 +===== 0.1.3 =====
 +
 +nothing happened
 +
 +===== 0.1.2 =====
 +
 +and few new config options again
 +<file ini alter.ini>
 +QUICKSEARCH_ENABLED=1
 +</file>
 +
 +===== 0.1.1 =====
 +
 +WOW! Some new options here:
 +
 +<file ini alter.ini>
 +CHANSHOTS_EMBED=0
 +CHANSHOTS_WATERMARK=""
 +WA_NAME=""
 +WA_ICON_192=""
 +WA_ICON_512=""
 +MODET_ENABLED=1
 +EXPORT_FORCED_SCHED=1
 +</file>
 +
 +===== 0.1.0 =====
 +
 +yet another change in database scheme
 +
 +<code sql>
 +CREATE TABLE IF NOT EXISTS `camopts` (
 +  `id` int(11) NOT NULL auto_increment,
 +  `cameraid` INT(11) NOT NULL,
 +  `rtspport` INT(11) DEFAULT NULL,
 +  `keepsubalive` tinyint(2) NOT NULL DEFAULT 0,
 +  `order` INT(11) DEFAULT NULL,
 +  PRIMARY KEY  (`id`),
 +  KEY `cameraid` (`cameraid`)
 +) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
 +</code>
  
 ===== 0.0.9 ===== ===== 0.0.9 =====
Line 8: Line 67:
 <file ini alter.ini> <file ini alter.ini>
 LIVE_WALL=1 LIVE_WALL=1
 +CHANSHOTS_VALIDATION=1
 </file> </file>
  
 +Wow, something changed in database, just apply 0.0.9 database patch 
 +<code sql>
 +CREATE TABLE IF NOT EXISTS `custtpls` (
 +  `id` int(11) NOT NULL auto_increment,
 +  `name` varchar(64) NOT NULL,
 +  `proto` varchar(10) NOT NULL,
 +  `main` varchar(255) NOT NULL,
 +  `sub` varchar(255) NOT NULL,
 +  `rtspport` INT(11) NOT NULL,
 +  `sound` tinyint(2) NOT NULL DEFAULT 0,
 +  `ptz` tinyint(2) NOT NULL DEFAULT 0,
 +  PRIMARY KEY  (`id`)
 +) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
 +</code>
  
 ===== 0.0.8 ===== ===== 0.0.8 =====
relnotes.1718982378.txt.gz ยท Last modified: 2024/06/21 18:06 by nightfly