Skip to content

Commit

Permalink
File versioning and checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Yeo committed Apr 28, 2019
1 parent 163bdfc commit af853c3
Show file tree
Hide file tree
Showing 23 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions README.md
@@ -1,4 +1,4 @@
# FruxePi OPEN-PROTOTYPE v0.2-BETA
# FruxePi OPEN-PROTOTYPE v0.3-BETA
A browser-based dashboard to monitor and automate indoor agriculture using the Raspberry Pi.

![FruxePi Dashboard](https://github.com/fruxefarms/FruxePi/blob/master/docs/img/screenshot-frame.png?raw=true)
Expand Down Expand Up @@ -132,7 +132,7 @@ This project was built with the assistance of the following libraries and tools:

## Version

### frx-pi-v0.2-BETA
### frx-pi-v0.3-BETA
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/fruxefarms/FruxePi/tags).

---
Expand Down
2 changes: 1 addition & 1 deletion app/application/controllers/Crop.php
@@ -1,7 +1,7 @@
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
ob_start();
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Crops Controller
*/
class Crop extends CI_Controller
Expand Down
2 changes: 1 addition & 1 deletion app/application/controllers/Dashboard.php
Expand Up @@ -2,7 +2,7 @@
if (!defined('BASEPATH')) exit('No direct script access allowed');
ob_start();
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Dashboard Controller
*/
class Dashboard extends CI_Controller
Expand Down
2 changes: 1 addition & 1 deletion app/application/controllers/Media.php
@@ -1,7 +1,7 @@
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
ob_start();
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Media Controller
*/
class Media extends CI_Controller
Expand Down
2 changes: 1 addition & 1 deletion app/application/controllers/Sensors.php
@@ -1,7 +1,7 @@
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
ob_start();
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Sensors Controller
*/
class Sensors extends CI_Controller
Expand Down
2 changes: 1 addition & 1 deletion app/application/models/Camera_model.php
@@ -1,6 +1,6 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Camera Model
*/
class Camera_model extends CI_Model
Expand Down
2 changes: 1 addition & 1 deletion app/application/models/Climate_model.php
@@ -1,6 +1,6 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Climate Model
*/
class Climate_model extends CI_Model
Expand Down
2 changes: 1 addition & 1 deletion app/application/models/Crop_model.php
@@ -1,6 +1,6 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Crop Model
*/
class Crop_model extends CI_Model
Expand Down
2 changes: 1 addition & 1 deletion app/application/models/Dashboard_model.php
@@ -1,6 +1,6 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Dashboard Model
*/
class Dashboard_model extends CI_Model
Expand Down
2 changes: 1 addition & 1 deletion app/application/models/Fan_model.php
@@ -1,6 +1,6 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Fan Model
*/
class Fan_model extends CI_Model
Expand Down
2 changes: 1 addition & 1 deletion app/application/models/Heater_model.php
@@ -1,6 +1,6 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Heater Model
*/
class Heater_model extends CI_Model
Expand Down
2 changes: 1 addition & 1 deletion app/application/models/Lights_model.php
@@ -1,6 +1,6 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Lights Model
*/
class Lights_model extends CI_Model
Expand Down
2 changes: 1 addition & 1 deletion app/application/models/Media_model.php
@@ -1,6 +1,6 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Media Model
*/
class Media_model extends CI_Model
Expand Down
2 changes: 1 addition & 1 deletion app/application/models/Moisture_model.php
@@ -1,6 +1,6 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Moisture Model
*/
class Moisture_model extends CI_Model
Expand Down
2 changes: 1 addition & 1 deletion app/application/models/Pump_model.php
@@ -1,6 +1,6 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Pump Model
*/
class Pump_model extends CI_Model
Expand Down
2 changes: 1 addition & 1 deletion app/application/models/Scheduler_model.php
@@ -1,6 +1,6 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* FruxePi (frx-dev-v0.2)
* FruxePi (frx-dev-v0.3)
* Scheduler Model
*/
class Scheduler_model extends CI_Model
Expand Down
2 changes: 1 addition & 1 deletion app/application/views/auth/login.php
Expand Up @@ -41,7 +41,7 @@

<button class="btn btn-magenta btn-lg btn-block" type="submit">Login</button>

<p class="mt-5 mb-3 text-muted">&copy; <?php echo date('Y'); ?> frx-dev-v0.1</p>
<p class="mt-5 mb-3 text-muted">&copy; <?php echo date('Y'); ?> frx-dev-v0.3</p>

<?php echo form_close();?>
</body>
Expand Down
6 changes: 3 additions & 3 deletions app/application/views/core/header.php
@@ -1,4 +1,4 @@
<!-- FruxePi (frx-dev-v0.2) - fruxe.co/project -->
<!-- FruxePi (frx-dev-v0.3) - fruxe.co/project -->
<!doctype html>
<html lang="en">
<!-- Head -->
Expand Down Expand Up @@ -26,9 +26,9 @@

<!-- Page title and description -->
<?php if (!empty($title)): ?>
<title><?php echo $title ?> | frx-dev-v0.2</title>
<title><?php echo $title ?> | frx-dev-v0.3</title>
<?php else: ?>
<title>frx-dev-v0.2</title>
<title>frx-dev-v0.3</title>
<?php endif; ?>

</head>
Expand Down
2 changes: 1 addition & 1 deletion app/application/views/core/page_footer.php
@@ -1,6 +1,6 @@

<footer class="footer">
<div class="container">
<p class="text-muted">frx-dev-v0.2</p>
<p class="text-muted">frx-dev-v0.3</p>
</div>
</footer>
2 changes: 1 addition & 1 deletion db/frx_db.sql
@@ -1,4 +1,4 @@
-- FruxePi OPEN-PROTOTYPE DEVELOPMENT v0.2
-- FruxePi OPEN-PROTOTYPE DEVELOPMENT v0.3
-- DB: frx_DEV

SET FOREIGN_KEY_CHECKS = 0;
Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
@@ -1,4 +1,4 @@
# FruxePi OPEN-PROTOTYPE v0.2-BETA
# FruxePi OPEN-PROTOTYPE v0.3-BETA
A browser-based dashboard to monitor and automate indoor agriculture using the Raspberry Pi.

![FruxePi Dashboard](https://github.com/fruxefarms/FruxePi/blob/master/docs/img/screenshot-frame.png?raw=true)
Expand Down Expand Up @@ -75,7 +75,7 @@ The basic functionalies of the FruxePi include:

## Latest Version

### frx-pi-v0.2-BETA
### frx-pi-v0.3-BETA
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/fruxefarms/FruxePi/tags).

---
Expand Down
4 changes: 2 additions & 2 deletions docs/_coverpage.html
Expand Up @@ -6,15 +6,15 @@
</video>
<div class="title">
<a href="https://fruxe.co/"><img src="img/fruxe_wordmark.svg"></a>
<h1>FruxePi <small>v0.2-beta</small></h1>
<h1>FruxePi <small>v0.3-beta</small></h1>
<p>
Indoor farming software to grow delicious vegetables and greens using automation and the Raspberry Pi.
</p>
<p class="author">
An Agrotech Project by <strong>Fruxe</strong>
</p>
<div style="padding-top:20px;">
<a class="btn btn-cover btn-download" href="https://github.com/fruxefarms/FruxePi"><i class="fab fa-github"></i> Download v0.2-beta</a>
<a class="btn btn-cover btn-download" href="https://github.com/fruxefarms/FruxePi"><i class="fab fa-github"></i> Download v0.3-beta</a>
<a class="btn btn-cover btn-start" href="https://docs.fruxe.co/#/?id=quick-install"><i class="fas fa-book"></i> Get Started</a>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Expand Up @@ -2,8 +2,8 @@

# FRUXEPI DOCKER installation
echo ""
echo -e "\e[1m\e[45mFruxePi v0.2-BETA Install\e[0m"
echo -e "\e[1mversion:\e[0m \e[37mfrx-pi-v0.2-BETA\e[0m"
echo -e "\e[1m\e[45mFruxePi v0.3-BETA Install\e[0m"
echo -e "\e[1mversion:\e[0m \e[37mfrx-pi-v0.3-BETA\e[0m"
echo -e "\e[1mweb:\e[0m \e[37mdocs.fruxe.co\e[0m"
echo ""

Expand Down

0 comments on commit af853c3

Please sign in to comment.