Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
48006f1
Added FontAwesome font locally
mapaiva Sep 25, 2015
db033bc
Removed link for external font awesome
mapaiva Sep 25, 2015
dc491dc
reorganized updater folder pattern
mapaiva Sep 25, 2015
649dc4b
Added updateGitPie for windows as a submodule
mapaiva Sep 28, 2015
6172898
Ignoring windows update submodule in Gruntfile
mapaiva Sep 28, 2015
0c630fc
Updated updataGitPie project
mapaiva Sep 28, 2015
f4f5cfd
Changed tooltip attrs to title attrs
mapaiva Sep 30, 2015
a7e9473
Ajusts for call updater.exe after extract files for windows
mapaiva Sep 30, 2015
fb66721
Fixed show repository name in header
mapaiva Oct 1, 2015
892e011
Fixed bug removing repository
mapaiva Oct 1, 2015
74fb1e9
Clear input fields after complete a add, clone or create action
mapaiva Oct 5, 2015
f0d72c1
Treated path in context menu action
mapaiva Oct 8, 2015
a2dfa20
Fixed commit message and description
mapaiva Oct 8, 2015
591af48
Merge branch 'update-windows' into final-adjusts-v0.1.0
mapaiva Oct 8, 2015
e8c45d2
Treated ADDED files in git status
mapaiva Oct 8, 2015
fd63977
Added unstage files feature
mapaiva Oct 8, 2015
d4a5b03
Refresh the unsyncronized changes on focus
mapaiva Oct 8, 2015
eff925e
Updated windows updater module
mapaiva Oct 8, 2015
bca5472
Added backbone to stash feature
mapaiva Oct 9, 2015
2e40aa9
Fix sync push
mapaiva Oct 13, 2015
1a894d4
Adjusts in icon and z-index notifications
mapaiva Oct 13, 2015
41b4c44
Fix callback to pull in sync method
mapaiva Oct 14, 2015
8424822
Update windows updater module
mapaiva Oct 19, 2015
099e5d4
Fixed "show reset repository button"
mapaiva Oct 19, 2015
5c4abc2
Improved Git wrapper
mapaiva Oct 19, 2015
1922c04
Added "node-wos" module
mapaiva Oct 19, 2015
007621b
Created restartApp method
mapaiva Oct 20, 2015
f58feb9
Use grunt-cli as dev dependency
IonicaBizau Oct 20, 2015
b7b5331
Update the docs
IonicaBizau Oct 20, 2015
8762ef0
Initial development of the stash feature
mapaiva Oct 22, 2015
f8e2f69
Updated node-wos dependency
mapaiva Oct 23, 2015
9973e2a
Implemented "pop" and "drop" stash methods
mapaiva Oct 23, 2015
e72f5e6
Added smart behavior to refresh stash information
mapaiva Oct 23, 2015
e0da6d9
Removed useless settings menu
mapaiva Oct 28, 2015
c557c06
Added stash labels in the language file
mapaiva Oct 28, 2015
e8808dd
Fixed problem in stash list command
mapaiva Oct 28, 2015
108b99a
Added the npm scripts
IonicaBizau Nov 3, 2015
4903fca
:memo:
IonicaBizau Nov 3, 2015
616eb53
Merge branch 'master' of github.com:mapaiva/GitPie into grunt-scripts
IonicaBizau Nov 3, 2015
3ab677b
Merge branch 'final-adjusts-v0.1.0' of github.com:mapaiva/GitPie into…
IonicaBizau Nov 3, 2015
3db4969
Merge pull request #18 from mapaiva/grunt-scripts
mapaiva Nov 3, 2015
b3f5cf2
Initial development of show stash feature
mapaiva Nov 4, 2015
b3f329c
Completely developed stash feature
mapaiva Nov 5, 2015
8791594
Added stash labels on the language file
mapaiva Nov 5, 2015
fe30dc8
Added empty messages to branch and tag lists
mapaiva Nov 5, 2015
ac65aef
Fixed remove repository bug
mapaiva Nov 5, 2015
47ccd50
Improvments in the windows update
mapaiva Nov 6, 2015
951a9c6
Added UNMERGED type on "git status -sb" response
mapaiva Nov 9, 2015
fd43bf4
Fixed some "apprefresh" bugs
mapaiva Nov 9, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "app/core/updater/windows"]
path = app/core/updater/windows
url = https://github.com/lvlofenix/updateGitPie.git
2 changes: 2 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ module.exports = function(grunt) {

'./app/**',

'!./app/core/updater/windows/**',

'./libraries/**',

'./language/**',
Expand Down
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,24 @@ Just execute the follow commands to build the project from source:
git clone https://github.com/mapaiva/GitPie.git
cd GitPie
npm install
npm install -g grunt-cli
grunt build
npm start # This is aliased with `npm run linux64`
```

If you're not using `linux64`, choose the right command for you, depending on the platform:

```sh
npm run linux32
npm run linux64
npm run osx32
npm run osx64
npm run win32
npm run win64
```

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:

```bash
grunt dev
npm run dev
```

## License
Expand Down
2 changes: 1 addition & 1 deletion app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var
GIT = require('./app/core/git'),

// Updater module for GitPie
UpdaterModule = require('./app/core/updater'),
UpdaterModule = require('./app/core/updater/updater'),

// Updater instance
updater = new UpdaterModule(),
Expand Down
Loading