webERP Forum

Full Version: Pending 4.15.2 release
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Looking to release v4.15.2 in early October.

If anyone is aware of any changes that have not yet been committed, or may have any new features to submit, now would be the time to let us know for inclusion.
Release IS in the works, but is momentarily delayed.
Release effort to resume this weekend, Friday/Saturday.

Still a chance to get any outstanding bugs/features not already known applied.
Good news, thanks Paul. I think all my changes are in
Have another release delay, having issues with GitHub. (Tim, I've emailed the current hassle)
Working the release, looks like GitHub's site is having issues at the moment, based on their status page.

I'll keep going with what I can do, but cannot access some GitHub areas.
Release update... after the GitHub issues, and finally getting through the change log additions, I'm about ~60-70% done.

Down to the release portion about adding webShop before launching the make_release scripts. The rest will be covered tomorrow, taking a break, getting late in my TZ.
Resuming the release now... hopefully only another hour or so, maybe less, depending on how the rest goes.
Tim, in the make_release file, since you fixed the demo.sql file, it looks like this file is removed, before the contents are re-written as a new file?

Code:
129 mysqldump -u$MYSQL_USER  -p$MYSQL_PWD --skip-opt --skip-set-charset --quick --ignore-table=weberpdemo.mrpsupplies  --ignore-table=weberpdemo.mrpplanedorders --ignore-table=weberpdemo.mrpparameters --ignore-table=weberpdemo.levels --ignore-table=weberpdemo.mrprequirements --no-create-info weberpdemo  > $BASE_DIR/sql/mysql/country_sql/weberp-demo_data.sql
130
131 rm  $BASE_DIR/sql/mysql/country_sql/demo.sql
132 echo "CREATE DATABASE IF NOT EXISTS weberpdemo;" > $BASE_DIR/sql/mysql/country_sql/demo.sql
133 echo "USE weberpdemo;" >> $BASE_DIR/sql/mysql/country_sql/demo.sql
134
135 cat $BASE_DIR/sql/mysql/country_sql/default.sql >> $BASE_DIR/sql/mysql/country_sql/demo.sql
136
137 cat $BASE_DIR/sql/mysql/country_sql/weberp-base.sql >> $BASE_DIR/sql/mysql/country_sql/default.sql
138 cat $BASE_DIR/sql/mysql/country_sql/weberp-demo_data.sql >> $BASE_DIR/sql/mysql/country_sql/demo.sql
139 rm  $BASE_DIR/sql/mysql/country_sql/weberp-demo_data.sql
140 rm  $BASE_DIR/sql/mysql/country_sql/weberp-base.sql

Is line 131 suspect ... unless I'm missing something else? Though those lines have not changed for years, if this maybe was how the demo data was missing last time? That or, it's expected that the demo already has the data added, at least? I'll double check this last part before the run.
Hi Paul, line 129 dumps the current data (just data, no structure) into a file weberp-demo_data.sql.
Line 131 removes the old demo.sql file.
Lines 132 and 133 add the code to create and switch to the weberpdemo DB into a new demo.sql file.
Line 135 then copies the previously saved (before this excerpt - Line 96) structure into the new demo.sql file
Line 138 (not shown above) copies the data saved into the new demo.sql from weberp-demo_data.sql

So it should all work. You should end up with two new files,
demo.sql (The database structure plus a set of demo data underneath it) and..
default.sql (The database structure plus the minimum configuration data to get a new company up and running)
I hope this makes sense??

Tim
Pages: 1 2