Skip to content

Commit

Permalink
version and version date updated
Browse files Browse the repository at this point in the history
  • Loading branch information
lmkannan committed Feb 1, 2018
1 parent 3496293 commit dbfb331
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ To upgrade, overwrite application files and apply respective DB script:
* v0.4.2 to v0.5 - `/sql/upgrade-0.4.2-0.5.sql`
* v0.5.1 to v0.5.2 - `/sql/upgrade-0.5.1-0.5.2.sql`
* v0.5.2 to v0.6 - `/sql/upgrade-0.5.2-0.6.sql`
* v0.6 to v0.6.1 - `/sql/upgrade-0.6-0.6.1.sql`

### Forum

Expand Down
2 changes: 1 addition & 1 deletion client/js/templates/about_us.jst.ejs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="about-block col-xs-pull-0 col-xs-push-0">
<h1><a title="<%- SITE_NAME %>" href="javascript:void(0);"><img src="img/logo.png" alt="[Image: <%- SITE_NAME %> ]" title="<%- SITE_NAME %>" class="img-responsive center-block"/></a> </h1>
<small class="show text-center">v 0.6 (2017-11-08)</small>
<small class="show text-center">v 0.6.1 (2018-02-01)</small>
<h3><%- i18next.t("Technologies and Components") %></h3>
<ul class="list-unstyled">
<li>Restya platform <a class="text-primary" target="_blank" title="http://restya.com/?utm_source=Restyaboard - <%- SITE_NAME %>&utm_medium=web&utm_campaign=about_us" href="http://restya.com/">http://restya.com/ </a></li>
Expand Down
4 changes: 4 additions & 0 deletions restyaboard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,10 @@
then
upgrade+=("upgrade-0.5.2-0.6")
fi
if [[ $version < "v0.6.1" ]];
then
upgrade+=("upgrade-0.6-0.6.1")
fi
# use for loop to read all values and indexes
for i in "${upgrade[@]}"
do
Expand Down
2 changes: 1 addition & 1 deletion server/php/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function main()
if (!defined('STDIN') && !file_exists(APP_PATH . '/tmp/cache/client.php') && !empty($_server_domain_url)) {
doPost('http://restya.com/clients', array(
'app' => 'board',
'ver' => '0.6',
'ver' => '0.6.1',
'url' => $_server_domain_url
));
$fh = fopen(APP_PATH . '/tmp/cache/client.php', 'a');
Expand Down
2 changes: 1 addition & 1 deletion server/php/libs/core.php
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ function sendMail($template, $replace_content, $to, $reply_to_mail = '')
}
$headers.= "MIME-Version: 1.0" . PHP_EOL;
$headers.= "Content-Type: text/html; charset=UTF-8" . PHP_EOL;
$headers.= "X-Mailer: Restyaboard (0.6; +http://restya.com/board)" . PHP_EOL;
$headers.= "X-Mailer: Restyaboard (0.6.1; +http://restya.com/board)" . PHP_EOL;
$headers.= "X-Auto-Response-Suppress: All" . PHP_EOL;
$result = mail($to, $subject, $message, $headers);
if (R_DEBUG) {
Expand Down

0 comments on commit dbfb331

Please sign in to comment.