Skip to content

Commit

Permalink
Dev: added new features to release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisGac committed Aug 10, 2017
1 parent 99d6d9a commit f7badd2
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 1 deletion.
66 changes: 66 additions & 0 deletions application/config/__config.php
@@ -0,0 +1,66 @@
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
| For complete instructions please consult the 'Database Connection'
| page of the User Guide.
|
| -------------------------------------------------------------------
| EXPLANATION OF VARIABLES
| -------------------------------------------------------------------
|
| 'connectionString' Hostname, database, port and database type for
| the connection. Driver example: mysql. Currently supported:
| mysql, pgsql, mssql, sqlite, oci
| 'username' The username used to connect to the database
| 'password' The password used to connect to the database
| 'tablePrefix' You can add an optional prefix, which will be added
| to the table name when using the Active Record class
|
*/
return array(
'components' => array(
'db' => array(
'connectionString' => 'mysql:host=localhost;port=3306;dbname=lsnext;',
'emulatePrepare' => true,
'username' => 'root',
'password' => 'p455p455',
'charset' => 'utf8mb4',
'tablePrefix' => 'lime_',
),

// Uncomment the following line if you need table-based sessions
// 'session' => array (
// 'class' => 'application.core.web.DbHttpSession',
// 'connectionID' => 'db',
// 'sessionTableName' => '{{sessions}}',
// ),

'urlManager' => array(
'urlFormat' => 'get',
'rules' => array(
// You can add your own rules here
),
'showScriptName' => true,
),

),
// For security issue : it's better to set runtimePath out of web access
// Directory must be readable and writable by the webuser
// 'runtimePath'=>'/var/limesurvey/runtime/'
// Use the following config variable to set modified optional settings copied from config-defaults.php
'config'=>array(
// debug: Set this to 1 if you are looking for errors. If you still get no errors after enabling this
// then please check your error-logs - either in your hosting provider admin panel or in some /logs directory
// on your webspace.
// LimeSurvey developers: Set this to 2 to additionally display STRICT PHP error messages and get full access to standard templates
'debug'=>0,
'debugsql'=>0, // Set this to 1 to enanble sql logging, only active when debug = 2
// Update default LimeSurvey config here
)
);
/* End of file config.php */
/* Location: ./application/config/config.php */
7 changes: 6 additions & 1 deletion docs/release_notes.txt
Expand Up @@ -36,6 +36,11 @@ CHANGE LOG
------------------------------------------------------

Changes from 3.0.0-beta.1 (build 170720) to 3.0.0-beta.2 (build 170810) Aug 10, 2017
-New feature: Survey groups. Each survey now belongs to a survey group. (Louis Gac)

This comment has been minimized.

Copy link
@maziminke

maziminke Aug 11, 2017

Collaborator

Great new feature. Do we already have some documentation for this?

-New feature: List survey groups. Views for survey group feature (Louis Gac)
-New feature: Template Options at survey level. User can now set the template options at the survey level (Louis Gac and Markus Fluer)
-New feature: Template Options global inheritance. All template options can be inherited from global/survey group settings (Louis Gac and Markus Fluer)
-New feature: Template Options specific inheritance. A specific option can be inherited from global/survey group settings (Louis Gac and Markus Fluer)
-Fixed issue #12450: DataEntry not opening with array filter (TYPO) (Tõnis Ormisson)
-Fixed issue #12492 Use of "text fields" as filter in "Participants" and "Answers" (markusfluer)
-Fixed issue #12513: "All-in-one" not working (LouisGac)
Expand Down Expand Up @@ -97,7 +102,7 @@ Changes from 2.67.0 (build 170622) to 3.0.0-beta.1 (build 170720) Jul 19, 2017
-New feature: sidebar rendering via vuejs2 based on vuex state management (Markus Flür)
-New feature: menus and entries collected via ajax (Markus Flür)
-New feature: questiongroups and questions collected by ajax (Markus Flür)
-New feature: sidebar is now resizeable by dragging (maximum size: 50% of screen) (Markus Flür)
-New feature: sidebar is now resizeable by dragging (maximum size: 50% of screen) (Markus Flür)
-New feature: new system for editing and creating menuentries in the sidebar and the quickmenu (Markus Flür)
-New feature: menus and entries are now items in the database and can be user and/or surveyspecific (Markus Flür)
-New feature:integrated menu positions are side, collapsed, top and bottom (Markus Flür)
Expand Down

0 comments on commit f7badd2

Please sign in to comment.