Skip to content

Commit

Permalink
default port 3306
Browse files Browse the repository at this point in the history
close #9
  • Loading branch information
garrylachman committed May 23, 2016
1 parent ba04557 commit 4331449
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 9 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@ MySQL CRUD application built on [Electron](http://electron.atom.io/).
No Coding, just select database and create views.

## Download Binaries
[Mac OSX, ver. 0.2.0 (Pre-release)](https://github.com/garrylachman/ElectroCRUD/raw/master/dist_binaries/ElectoCRUD-darwin-x64.zip)
[![GitHub version](https://badge.fury.io/gh/garrylachman%2FelectroCrud.svg)](https://badge.fury.io/gh/garrylachman%2FelectroCrud)
[Mac OSX (Pre-release)](https://github.com/garrylachman/ElectroCRUD/raw/master/dist_binaries/ElectoCRUD-darwin-x64.zip)

[Linux 32Bit, ver. 0.2.0 (Pre-release)](https://github.com/garrylachman/ElectroCRUD/raw/master/dist_binaries/ElectoCRUD-linux-ia32.zip)
[Linux 32Bit (Pre-release)](https://github.com/garrylachman/ElectroCRUD/raw/master/dist_binaries/ElectoCRUD-linux-ia32.zip)

[Linux 64Bit, ver. 0.2.0 (Pre-release)](https://github.com/garrylachman/ElectroCRUD/raw/master/dist_binaries/ElectoCRUD-linux-x64.zip)
[Linux 64Bit (Pre-release)](https://github.com/garrylachman/ElectroCRUD/raw/master/dist_binaries/ElectoCRUD-linux-x64.zip)

[Windows 32Bit, ver. 0.2.0 (Pre-release)](https://github.com/garrylachman/ElectroCRUD/raw/master/dist_binaries/ElectoCRUD-win32-ia32.zip)
[Windows 32Bit (Pre-release)](https://github.com/garrylachman/ElectroCRUD/raw/master/dist_binaries/ElectoCRUD-win32-ia32.zip)

[Windows 64Bit, ver. 0.2.0 (Pre-release)](https://github.com/garrylachman/ElectroCRUD/raw/master/dist_binaries/ElectoCRUD-win32-x64.zip)
[Windows 64Bit (Pre-release)](https://github.com/garrylachman/ElectroCRUD/raw/master/dist_binaries/ElectoCRUD-win32-x64.zip)

## Screenshots
![Screenshot](http://i.imgur.com/cGVXegb.png)
Expand Down Expand Up @@ -41,3 +42,5 @@ Run `grunt buildElectron`.
* [AdminLTE](https://almsaeedstudio.com/)
* [node-mysql](https://github.com/felixge/node-mysql)
* [font awesome](http://fontawesome.io)

Sponsored By [P2P Proxies Network](https://rev.proxies.online)
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"main": "index.js",
"name": "electrocrud",
"version": "0.2.0",
"version": "0.2.1",
"private": false,
"engines": {
"node": ">=0.10.0"
Expand Down
4 changes: 3 additions & 1 deletion app/scripts/controllers/addeditproject.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ angular.module('electroCrudApp')
function ($scope, breadcrumb, projectsModel, $route, $routeParams,
mysql, SweetAlert, $location, session, ngProgressFactory) {
$scope.editMode = ($route.current.$$route.controllerAs == "editProject");
$scope.project = {};
$scope.project = {
'mysql_port': 3306
};
$scope.detailsFormValid = false;
$scope.databases = [];
$scope.projectId = undefined;
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "electro-crud",
"version": "0.2.0",
"version": "0.2.1",
"dependencies": {
"angular": "angularjs#^1.5.5",
"bootstrap-sass-official": "^3.2.0",
Expand Down
Binary file modified dist_binaries/ElectoCRUD-darwin-x64.zip
Binary file not shown.
Binary file modified dist_binaries/ElectoCRUD-linux-ia32.zip
Binary file not shown.
Binary file modified dist_binaries/ElectoCRUD-linux-x64.zip
Binary file not shown.
Binary file modified dist_binaries/ElectoCRUD-win32-ia32.zip
Binary file not shown.
Binary file modified dist_binaries/ElectoCRUD-win32-x64.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"main": "app/index.js",
"version": "0.2.0",
"version": "0.2.1",
"name": "electrocrud",
"private": false,
"description": "MySQL CRUD build on Electron",
Expand Down

0 comments on commit 4331449

Please sign in to comment.