Skip to content

Commit 311e071

Browse files
committed
Merge pull request #19 from mapaiva/final-adjusts-v0.1.0
Final adjusts v0.1.0
2 parents 9669e6f + fd43bf4 commit 311e071

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+6805
-300
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "app/core/updater/windows"]
2+
path = app/core/updater/windows
3+
url = https://github.com/lvlofenix/updateGitPie.git

Gruntfile.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ module.exports = function(grunt) {
2121

2222
'./app/**',
2323

24+
'!./app/core/updater/windows/**',
25+
2426
'./libraries/**',
2527

2628
'./language/**',

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,24 @@ Just execute the follow commands to build the project from source:
7070
git clone https://github.com/mapaiva/GitPie.git
7171
cd GitPie
7272
npm install
73-
npm install -g grunt-cli
74-
grunt build
73+
npm start # This is aliased with `npm run linux64`
74+
```
75+
76+
If you're not using `linux64`, choose the right command for you, depending on the platform:
77+
78+
```sh
79+
npm run linux32
80+
npm run linux64
81+
npm run osx32
82+
npm run osx64
83+
npm run win32
84+
npm run win64
7585
```
7686

7787
If you want to make changes in the style of the application, you need to run the dev grunt task that will convert your sass changes into css. For this execute:
7888

7989
```bash
80-
grunt dev
90+
npm run dev
8191
```
8292

8393
## License

app/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var
1212
GIT = require('./app/core/git'),
1313

1414
// Updater module for GitPie
15-
UpdaterModule = require('./app/core/updater'),
15+
UpdaterModule = require('./app/core/updater/updater'),
1616

1717
// Updater instance
1818
updater = new UpdaterModule(),

0 commit comments

Comments
 (0)