using pluie-yaml-0.6 use Yaml.Loader.PACK_NESTED_ENTRIES option
This commit is contained in:
parent
85c70bca5e
commit
90af78dfdf
|
@ -4,7 +4,7 @@
|
||||||
!v!Pluie.Berel.Meta meta :
|
!v!Pluie.Berel.Meta meta :
|
||||||
keys :
|
keys :
|
||||||
software : berel; <https://git.pluie.org/pluie/berel>
|
software : berel; <https://git.pluie.org/pluie/berel>
|
||||||
version : 0.21
|
version : 0.25
|
||||||
type : program
|
type : program
|
||||||
date : 2018
|
date : 2018
|
||||||
license : GPLv3.0; <http://www.gnu.org/licenses/>
|
license : GPLv3.0; <http://www.gnu.org/licenses/>
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -2,7 +2,7 @@
|
||||||
#^# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
#^# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
#
|
#
|
||||||
# @software : berel <https://git.pluie.org/pluie/berel>
|
# @software : berel <https://git.pluie.org/pluie/berel>
|
||||||
# @version : 0.21
|
# @version : 0.25
|
||||||
# @type : program
|
# @type : program
|
||||||
# @date : 2018
|
# @date : 2018
|
||||||
# @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
# @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#^# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
#^# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
#
|
#
|
||||||
# @software : berel <https://git.pluie.org/pluie/berel>
|
# @software : berel <https://git.pluie.org/pluie/berel>
|
||||||
# @version : 0.21
|
# @version : 0.25
|
||||||
# @type : program
|
# @type : program
|
||||||
# @date : 2018
|
# @date : 2018
|
||||||
# @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
# @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
#
|
#
|
||||||
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #^#
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #^#
|
||||||
|
|
||||||
project('berel', ['vala', 'c'], version:'0.21')
|
project('berel', ['vala', 'c'], version:'0.22')
|
||||||
|
|
||||||
conf = configuration_data()
|
conf = configuration_data()
|
||||||
conf.set('VERSION' , meson.project_version())
|
conf.set('VERSION' , meson.project_version())
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* @software : berel <https://git.pluie.org/pluie/berel>
|
* @software : berel <https://git.pluie.org/pluie/berel>
|
||||||
* @version : 0.21
|
* @version : 0.25
|
||||||
* @type : program
|
* @type : program
|
||||||
* @date : 2018
|
* @date : 2018
|
||||||
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
||||||
|
@ -77,6 +77,7 @@ public class Pluie.Berel.App
|
||||||
{
|
{
|
||||||
bool done = false;
|
bool done = false;
|
||||||
this.pwd = GLib.Environment.get_current_dir ();
|
this.pwd = GLib.Environment.get_current_dir ();
|
||||||
|
Yaml.Loader.PACK_NESTED_ENTRIES = true;
|
||||||
var config = new Yaml.Config (Path.build_filename (path != null ? path : pwd, ".berel.yml"), false);
|
var config = new Yaml.Config (Path.build_filename (path != null ? path : pwd, ".berel.yml"), false);
|
||||||
var root = config.root_node ();
|
var root = config.root_node ();
|
||||||
root.name = Path.get_basename (pwd)+"/.berel.yml";
|
root.name = Path.get_basename (pwd)+"/.berel.yml";
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* @software : berel <https://git.pluie.org/pluie/berel>
|
* @software : berel <https://git.pluie.org/pluie/berel>
|
||||||
* @version : 0.21
|
* @version : 0.25
|
||||||
* @type : program
|
* @type : program
|
||||||
* @date : 2018
|
* @date : 2018
|
||||||
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* @software : berel <https://git.pluie.org/pluie/berel>
|
* @software : berel <https://git.pluie.org/pluie/berel>
|
||||||
* @version : 0.21
|
* @version : 0.25
|
||||||
* @type : program
|
* @type : program
|
||||||
* @date : 2018
|
* @date : 2018
|
||||||
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* @software : berel <https://git.pluie.org/pluie/berel>
|
* @software : berel <https://git.pluie.org/pluie/berel>
|
||||||
* @version : 0.21
|
* @version : 0.25
|
||||||
* @type : program
|
* @type : program
|
||||||
* @date : 2018
|
* @date : 2018
|
||||||
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* @software : berel <https://git.pluie.org/pluie/berel>
|
* @software : berel <https://git.pluie.org/pluie/berel>
|
||||||
* @version : 0.21
|
* @version : 0.25
|
||||||
* @type : program
|
* @type : program
|
||||||
* @date : 2018
|
* @date : 2018
|
||||||
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* @software : berel <https://git.pluie.org/pluie/berel>
|
* @software : berel <https://git.pluie.org/pluie/berel>
|
||||||
* @version : 0.21
|
* @version : 0.25
|
||||||
* @type : program
|
* @type : program
|
||||||
* @date : 2018
|
* @date : 2018
|
||||||
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* @software : berel <https://git.pluie.org/pluie/berel>
|
* @software : berel <https://git.pluie.org/pluie/berel>
|
||||||
* @version : 0.21
|
* @version : 0.25
|
||||||
* @type : program
|
* @type : program
|
||||||
* @date : 2018
|
* @date : 2018
|
||||||
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/*^* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* @software : berel <https://git.pluie.org/pluie/berel>
|
* @software : berel <https://git.pluie.org/pluie/berel>
|
||||||
* @version : 0.21
|
* @version : 0.25
|
||||||
* @type : program
|
* @type : program
|
||||||
* @date : 2018
|
* @date : 2018
|
||||||
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
* @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#^# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
#^# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
#
|
#
|
||||||
# @software : berel <https://git.pluie.org/pluie/berel>
|
# @software : berel <https://git.pluie.org/pluie/berel>
|
||||||
# @version : 0.21
|
# @version : 0.25
|
||||||
# @type : program
|
# @type : program
|
||||||
# @date : 2018
|
# @date : 2018
|
||||||
# @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
# @license : GPLv3.0 <http://www.gnu.org/licenses/>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user