├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gulpfile.js ├── LICENSE ├── README.md ├── app ├── app.js ├── core │ ├── code-processor.js │ ├── emoji.js │ ├── git.js │ └── packager │ │ ├── config.json │ │ └── installer.nsi.tpl └── frontend │ ├── global │ └── notification.js │ ├── modules │ ├── attributes.js │ ├── components.js │ ├── content.js │ ├── dialogs.js │ ├── header.js │ └── settings-page.js │ └── view │ ├── components │ ├── loading-icon.html │ ├── pane.html │ └── tabs.html │ ├── content │ ├── merge-modal-dialog.html │ ├── pieContent.html │ ├── push-modal-dialog.html │ └── settings-page.html │ └── header │ └── pieHeader.html ├── index.html ├── index.js ├── language ├── en.json └── pt-BR.json ├── libraries ├── angular.min.js └── google-code-prettify │ └── run_prettify.min.js ├── package.json └── resources ├── emoji └── emojiList.json ├── fonts ├── Consolas │ ├── Consolas.ttf │ └── consolas.css ├── FontAwesome │ ├── HELP-US-OUT.txt │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss ├── Roboto │ ├── LICENSE.txt │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ └── roboto.css └── octicons │ ├── LICENSE.txt │ ├── README.md │ ├── octicons-local.ttf │ ├── octicons.css │ ├── octicons.eot │ ├── octicons.less │ ├── octicons.svg │ ├── octicons.ttf │ ├── octicons.woff │ └── sprockets-octicons.scss ├── images ├── editable │ ├── gitpie-wizard-image.svg │ └── icon.svg ├── gitpie-banner.png ├── gitpie-wizard-image.bmp ├── icon.icns ├── icon.ico └── icon.png └── sass ├── all.scss ├── mixins.scss └── variables.scss /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .tern-project 3 | cache 4 | build 5 | release 6 | .sass-cache 7 | resources/css/** 8 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esnext": true, 3 | "node": true, 4 | "browser": true, 5 | "devel": true, 6 | "globals": { 7 | "angular": true, 8 | "GIT": true, 9 | "WIN": true, 10 | "applyScope": true, 11 | "GPNotification": true, 12 | "MSGS": true, 13 | "PR": true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 4 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Matheus Paiva 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![GitPie](https://raw.githubusercontent.com/gitpie/GitPie/master/resources/images/gitpie-banner.png) 2 | 3 | ![build](https://travis-ci.org/gitpie/GitPie.svg) 4 | ![dependencies](https://david-dm.org/gitpie/GitPie.svg) ![devdependecies](https://david-dm.org/gitpie/GitPie/dev-status.svg?style=flat) 5 | 6 | GitPie is a Multiplatform Client for [Git](https://git-scm.com/) that have the goal to be a simple and elegant solution to manage any git project don't matter what git service you use. And the best is 100% open source. 7 | 8 | ## What's in the pie stuffing? 9 | 10 | GitPie is built on [Electron](https://github.com/atom/electron) and [Angular](https://github.com/angular/angular) to have a maintainable and organized source to anyone understand what's going on behind the scenes. 11 | 12 | ## Installing 13 | 14 | **Prerequisites** 15 | 16 | - [Git](https://git-scm.com/downloads) 17 | 18 | ### Linux 19 | 20 | Available on 32-bit and 64-bit. 21 | 22 | Download the latest Pie from the GitPie [release page](https://github.com/gitpie/GitPie/releases). 23 | 24 | ### OS X 25 | 26 | Available on 32-bit and 64-bit. 27 | 28 | Download the latest Pie from the GitPie [release page](https://github.com/gitpie/GitPie/releases). 29 | 30 | ### Windows 31 | 32 | Available on 32-bit and 64-bit. 33 | 34 | Download the latest Pie from the GitPie [release page](https://github.com/gitpie/GitPie/releases). 35 | 36 | ## Contributing 37 | Want to contribute with the project? This is awesome. But before doing that we prepare a recipe to you do it the right way. 38 | 39 | - All contributions must adhere to the [Idiomatic.js Style Guide](https://github.com/rwaldron/idiomatic.js), by maintaining the existing coding style. 40 | 41 | - Discuss the changes before doing them. Open a issue in the bug tracker describing the contribution you'd like to make, the bug you found or any other ideas you have. 42 | 43 | - Fork the project and submit your changes by a Pull Request 44 | 45 | - Be the most creative as possible. 46 | 47 | If you want to make changes in the style of the application, you need to convert the sass code into css. For this execute: 48 | 49 | ```bash 50 | npm run dev 51 | ``` 52 | 53 | ## Building 54 | 55 | Just execute the following commands to build the project from source: 56 | 57 | Prerequisites 58 | - wine (*Required only if you're on OSX or Linux*) 59 | 60 | ```bash 61 | git clone https://github.com/gitpie/GitPie.git 62 | cd GitPie 63 | npm install 64 | npm build # This will build binaries for the all supported platforms: `linux`, `osx` and `windows` 65 | ``` 66 | 67 | If you want build to a specific platform, just execute one of the following commands: 68 | 69 | ```sh 70 | npm run linux32 71 | npm run linux64 72 | npm run osx64 73 | npm run win32 74 | npm run win64 75 | 76 | # You can just build the binaries 77 | 78 | npm run build:linux32 79 | npm run build:linux64 80 | npm run build:osx64 81 | npm run build:win32 82 | npm run build:win64 83 | ``` 84 | 85 | ## Packing 86 | The following tasks will create a installer for Windows, a `.dmg` file for OS X, a `.deb` and `.rmp` file for linux and compressed files with the binaries for each platform. 87 | 88 | Prerequisites 89 | - zip 90 | - makensis [See how install it](https://github.com/loopline-systems/electron-builder#pre-requisites) 91 | - wine (*Required only if you're on OSX or Linux*) 92 | 93 | *The following programs are required only if you want to build .deb and .rpm packages* 94 | 95 | - dpkg-deb 96 | - alien 97 | 98 | ```sh 99 | npm run pack # This will pack the application for the all supported platforms: `linux`, `osx` and `windows` 100 | npm run pack:linux32 101 | npm run pack:linux64 102 | npm run pack:osx64 103 | npm run pack:win32 104 | npm run pack:win64 105 | ``` 106 | 107 | ## License 108 | Copyright (c) 2016 Matheus Paiva (MIT) The MIT License 109 | -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | // Remote electron module 4 | const remote = require('remote'); 5 | // Locale language 6 | const LANG = window.navigator.userLanguage || window.navigator.language; 7 | 8 | var 9 | 10 | // browser window object 11 | WIN = remote.getCurrentWindow(), 12 | 13 | // Git class that perfoms git commands 14 | GIT = require('./app/core/git'), 15 | 16 | // Messages and labels of the application 17 | MSGS, 18 | 19 | // Apply AngularJS scope if a apply task is not being digest 20 | applyScope = function (scope) { 21 | if (!scope.$$phase) { 22 | scope.$apply(); 23 | } 24 | }; 25 | 26 | WIN.focus(); 27 | 28 | /** 29 | * Show error message on uncaughtException 30 | */ 31 | process.on('uncaughtException', function(err) { 32 | alert(err); 33 | }); 34 | 35 | /* Get the defaults configurations of GitPie */ 36 | let configs = JSON.parse(localStorage.getItem('configs')); 37 | 38 | if (!configs) { 39 | // Set the defaults configurations of GitPie 40 | configs = { 41 | fontFamily: 'Roboto', 42 | showRepository: { 43 | github: true, 44 | bitbucket: true, 45 | others: true 46 | }, 47 | language: { 48 | code: 'en', 49 | description: 'English' 50 | } 51 | }; 52 | 53 | localStorage.setItem('configs', JSON.stringify(configs)); 54 | } 55 | 56 | try { 57 | MSGS = require('./language/'.concat(configs.language.code).concat('.json')); 58 | } catch (err) { 59 | MSGS = require('./language/en.json'); 60 | } 61 | 62 | /* AngularJS app init */ 63 | (function () { 64 | var app = angular.module('gitpie', ['components', 'attributes', 'header', 'content', 'settings', 'dialogs']); 65 | 66 | // Trust as HTML Global filter 67 | app.filter('trustAsHtml', function($sce) { 68 | return function(html) { 69 | return $sce.trustAsHtml(html); 70 | }; 71 | }); 72 | 73 | app.factory('CommomService', function ($rootScope) { 74 | var repositoriesStr = localStorage.getItem('repos'), 75 | 76 | repositories = JSON.parse(repositoriesStr) || {}, 77 | 78 | findWhere = function (array, object) { 79 | 80 | for (var i = 0; i < array.length; i++) { 81 | 82 | if (array[i][Object.keys(object)[0]] == object[Object.keys(object)[0]]) { 83 | return array[i]; 84 | } 85 | } 86 | 87 | return null; 88 | }, 89 | 90 | saveRepository = function (repository) { 91 | var storagedRepositories = JSON.parse(repositoriesStr) || {}; 92 | 93 | storagedRepositories.github = storagedRepositories.github || []; 94 | storagedRepositories.bitbucket = storagedRepositories.bitbucket || []; 95 | storagedRepositories.others = storagedRepositories.others || []; 96 | 97 | switch (repository.type) { 98 | case 'GITHUB': 99 | storagedRepositories.github.push(repository); 100 | break; 101 | 102 | case 'BITBUCKET': 103 | storagedRepositories.bitbucket.push(repository); 104 | break; 105 | 106 | default: 107 | storagedRepositories.others.push(repository); 108 | break; 109 | } 110 | 111 | localStorage.setItem('repos', JSON.stringify(storagedRepositories)); 112 | repositoriesStr = JSON.stringify(storagedRepositories); 113 | }; 114 | 115 | repositories.github = repositories.github || []; 116 | repositories.bitbucket = repositories.bitbucket || []; 117 | repositories.others = repositories.others || []; 118 | 119 | // Set the application messages globally 120 | $rootScope.MSGS = MSGS; 121 | $rootScope.showApp = false; 122 | 123 | $rootScope.showRepositoryMenu = true; 124 | 125 | // Load the application Configs 126 | var Configs = JSON.parse(localStorage.getItem('configs')); 127 | 128 | $rootScope.CONFIGS = Configs; 129 | 130 | // Save any change made on global configs 131 | WIN.on('close', function () { 132 | WIN.hide(); 133 | 134 | localStorage.setItem('configs', JSON.stringify($rootScope.CONFIGS)); 135 | 136 | WIN.close(true); 137 | }); 138 | 139 | return { 140 | 141 | addRepository: function (repositoryPath, callback) { 142 | 143 | if (repositoryPath) { 144 | 145 | // Easter egg :D 146 | if (repositoryPath.toLowerCase() === $rootScope.MSGS['i have no idea']) { 147 | alert($rootScope.MSGS['It happends with me all the time too. But lets\'s try find your project again!']); 148 | 149 | } else { 150 | let gitUrlParse = require('git-url-parse'); 151 | 152 | GIT.listRemotes(repositoryPath, function (err, repositoryRemotes) { 153 | 154 | if (err) { 155 | 156 | if (err.code == 'ENOREMOTE') { 157 | let dialog = remote.require('dialog'); 158 | let browserWindow = remote.require('browser-window'); 159 | let currentWindow = browserWindow.getFocusedWindow(); 160 | 161 | dialog.showMessageBox(currentWindow, 162 | { 163 | type: 'warning', 164 | title: `${MSGS['Repository without remote']}`, 165 | message: `${MSGS[err.message]}. ${MSGS['Add it anyway?']}`, 166 | buttons: ['Yes', 'No'] 167 | }, 168 | function (response) { 169 | 170 | if (response === 0) { 171 | let path = require('path'), 172 | repository = this.addNewGitRepository({ 173 | repositoryName: path.basename(repositoryPath), 174 | path: repositoryPath 175 | }); 176 | 177 | if (callback && typeof callback == 'function') { 178 | callback.call(this, repository); 179 | } 180 | } 181 | }.bind(this) 182 | ); 183 | } else { 184 | alert($rootScope.MSGS['Nothing for me here.\n The folder {folder} is not a git project'].replace('{folder}', repositoryPath)); 185 | } 186 | 187 | } else { 188 | let gitUrl = gitUrlParse(repositoryRemotes.origin.push), 189 | type, 190 | index, 191 | repositoryExists, 192 | repository; 193 | 194 | switch (gitUrl.resource) { 195 | case 'github.com': 196 | repositoryExists = findWhere(repositories.github, { path: repositoryPath}); 197 | type = 'github'; 198 | break; 199 | case 'bitbucket.org': 200 | repositoryExists = findWhere(repositories.bitbucket, { path: repositoryPath}); 201 | type = 'bitbucket'; 202 | break; 203 | default: 204 | repositoryExists = findWhere(repositories.others, { path: repositoryPath}); 205 | type = 'others'; 206 | break; 207 | } 208 | 209 | if (!repositoryExists) { 210 | 211 | index = repositories[type].push({ 212 | name: gitUrl.name, 213 | path: repositoryPath, 214 | type : type.toUpperCase() 215 | }); 216 | 217 | repository = repositories[type][index - 1]; 218 | 219 | saveRepository(repository); 220 | } else { 221 | repository = repositoryExists; 222 | } 223 | 224 | if (callback && typeof callback == 'function') { 225 | callback.call(this, repository); 226 | } 227 | } 228 | }.bind(this)); 229 | } 230 | } 231 | }, 232 | 233 | addNewGitRepository: function (opts) { 234 | opts = opts || {}; 235 | 236 | if (opts.repositoryName && opts.path) { 237 | var index, 238 | repositoryExists, 239 | repository; 240 | 241 | repositoryExists = findWhere(repositories.others, { path: opts.path}); 242 | 243 | if (!repositoryExists) { 244 | 245 | index = repositories.others.push({ 246 | name: opts.repositoryName, 247 | path: opts.path, 248 | type : 'OTHERS' 249 | }); 250 | 251 | repository = repositories.others[index - 1]; 252 | 253 | saveRepository(repository); 254 | } else { 255 | repository = repositoryExists; 256 | } 257 | 258 | return repository; 259 | } 260 | }, 261 | 262 | // Return true if the repository was selected and false case not 263 | removeRepository: function (repositoryType, index) { 264 | var storagedRepositories = JSON.parse(repositoriesStr) || {}, 265 | type = repositoryType.toLowerCase(), 266 | removedRepository; 267 | 268 | storagedRepositories.github = storagedRepositories.github || []; 269 | storagedRepositories.bitbucket = storagedRepositories.bitbucket || []; 270 | storagedRepositories.others = storagedRepositories.others || []; 271 | 272 | storagedRepositories[type].splice(index, 1); 273 | removedRepository = repositories[type].splice(index, 1); 274 | 275 | localStorage.setItem('repos', JSON.stringify(storagedRepositories)); 276 | repositoriesStr = JSON.stringify(storagedRepositories); 277 | 278 | return removedRepository[0].selected; 279 | }, 280 | 281 | isRepoListEmpty: function () { 282 | 283 | if (repositories.github.length > 0 || repositories.bitbucket.length > 0 || repositories.others.length > 0) { 284 | return false; 285 | } 286 | 287 | return true; 288 | }, 289 | 290 | repositories: repositories 291 | }; 292 | }); 293 | 294 | })(); 295 | -------------------------------------------------------------------------------- /app/core/code-processor.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | 3 | var getLineType = function (firstChar) { 4 | 5 | if (firstChar == '+') { 6 | return 'PLUS'; 7 | } else if (firstChar == '-') { 8 | return 'MINOR'; 9 | } else { 10 | return 'UNCHANGED'; 11 | } 12 | 13 | }, 14 | 15 | buildDiffTable = function (blockList, lang) { 16 | var table = [ 17 | '', 18 | '' 19 | ]; 20 | 21 | blockList.forEach(function (block) { 22 | var lineColumn = {}, 23 | 24 | hunk = block.header.split('@')[2].replace(/ /g, '').replace('-', '').split('+'), 25 | 26 | deletionHunk = hunk[0].split(','), 27 | 28 | additionHunk = hunk[1].split(','); 29 | 30 | lineColumn = { 31 | deletion: { 32 | startLine: parseInt(deletionHunk[0]), 33 | amountRemovedLines: parseInt(deletionHunk[1]) 34 | }, 35 | 36 | addition: { 37 | startLine: parseInt(additionHunk[0]), 38 | amountAddedLines: parseInt(additionHunk[1]) 39 | } 40 | }; 41 | 42 | // Controller variables for line numbers 43 | var leftNumberColumn = lineColumn.deletion.startLine, 44 | rightNumberColumn = lineColumn.addition.startLine; 45 | 46 | table.push([ 47 | '', 48 | '', 49 | '', 50 | '' 51 | ].join('')); 52 | 53 | for (var i = 0; i < block.lines.length; i++) { 54 | var lineCode = block.lines[i].code.replace(/&/g, '&').replace(//g, '>'), 55 | indicator; 56 | 57 | switch (block.lines[i].type) { 58 | case 'PLUS': 59 | indicator = '+'; 60 | break; 61 | case 'MINOR': 62 | indicator = '-'; 63 | break; 64 | default: 65 | indicator = ''; 66 | break; 67 | } 68 | 69 | if (block.lines[i].type != 'UNCHANGED') { 70 | lineCode = lineCode.substr(1); 71 | } 72 | 73 | var tbLine = [ 74 | '', 75 | '', 78 | '', 81 | '', 84 | '', 89 | '' 90 | ]; 91 | 92 | if (block.lines[i].type == 'PLUS') { 93 | rightNumberColumn++; 94 | } else if (block.lines[i].type == 'MINOR') { 95 | leftNumberColumn++; 96 | } else { 97 | rightNumberColumn++; 98 | leftNumberColumn++; 99 | } 100 | 101 | table.push(tbLine.join('')); 102 | } 103 | }); 104 | 105 | table.push('
', block.header, '
', 76 | ( block.lines[i].type != 'PLUS' ? leftNumberColumn : '' ), 77 | '', 79 | ( block.lines[i].type != 'MINOR' ? rightNumberColumn : '' ), 80 | '', 82 | indicator, 83 | '', 85 | '', 86 | lineCode, 87 | '', 88 | '
'); 106 | 107 | return table.join(''); 108 | }; 109 | 110 | function CodeDiffProcessor() { 111 | this.version = '0.0.1'; 112 | } 113 | 114 | CodeDiffProcessor.prototype.processCode = function (code, filePath) { 115 | var lines, 116 | blocks = [], 117 | currentBlockIndex, 118 | extName; 119 | 120 | lines = code.split('\n'); 121 | 122 | for (var i = 0; i < lines.length; i++) { 123 | 124 | if (currentBlockIndex) { 125 | 126 | if (lines[i][0] == '@' && lines[i][1] == '@') { 127 | 128 | currentBlockIndex = blocks.push({ 129 | header: lines[i], 130 | lines: [] 131 | }); 132 | } else { 133 | 134 | blocks[ currentBlockIndex - 1 ].lines.push({ 135 | type: getLineType(lines[i][0]), 136 | code: lines[i] 137 | }); 138 | } 139 | 140 | } else { 141 | 142 | if (lines[i][0] == '@' && lines[i][1] == '@') { 143 | 144 | currentBlockIndex = blocks.push({ 145 | header: lines[i], 146 | lines: [] 147 | }); 148 | } 149 | 150 | } 151 | } 152 | 153 | if (filePath) { 154 | extName = 'lang-'.concat( path.extname(filePath).replace('.', '') ); 155 | extName = extName.replace(/(scss|less)/, 'css'); 156 | } 157 | 158 | return buildDiffTable(blocks, extName); 159 | }; 160 | 161 | module.exports = CodeDiffProcessor; 162 | -------------------------------------------------------------------------------- /app/core/emoji.js: -------------------------------------------------------------------------------- 1 | var emojiList = require('../../resources/emoji/emojiList'), 2 | parse = function (string) { 3 | var emojis = string.match(/(:[\w.&\-\+]+:)/g), 4 | parsedString = string; 5 | 6 | if (emojis) { 7 | var regex, 8 | emojiLabel, 9 | emojiURL, 10 | dictionary = {}; 11 | 12 | for (var i = 0; i < emojis.length; i++) { 13 | 14 | if (!dictionary[ emojis[i] ]) { 15 | emojiLabel = emojis[i].replace(/:/g, ''); 16 | regex = new RegExp(':' + (emojiLabel.replace('+', '\\+').replace('-', '\\-')) + ':', 'g'); 17 | emojiURL = emojiList[emojiLabel]; 18 | 19 | if (emojiURL) { 20 | parsedString = parsedString.replace(regex, ''); 21 | } 22 | 23 | dictionary[ emojis[i] ] = emojis[i]; 24 | } 25 | } 26 | 27 | regex = null; 28 | emojiLabel = null; 29 | emojiURL = null; 30 | dictionary = null; 31 | } 32 | 33 | return parsedString; 34 | }; 35 | 36 | module.exports = { 37 | parse: parse 38 | }; 39 | -------------------------------------------------------------------------------- /app/core/packager/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "osx" : { 3 | "title": "GitPie", 4 | "icon": "resources/images/icon.icns", 5 | "icon-size": 80, 6 | "contents": [ 7 | { "x": 438, "y": 344, "type": "link", "path": "/Applications" }, 8 | { "x": 192, "y": 344, "type": "file" } 9 | ] 10 | }, 11 | "win" : { 12 | "title" : "GitPie", 13 | "version" : "0.6.0", 14 | "publisher": "GitPie", 15 | "icon" : "resources/images/icon.ico", 16 | "verbosity": 1, 17 | "nsiTemplate" : "app/core/packager/installer.nsi.tpl" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/core/packager/installer.nsi.tpl: -------------------------------------------------------------------------------- 1 | !define APP_NAME "<%= name %>" 2 | !define APP_VERSION "<%= version %>" 3 | !define APP_PUBLISHER "<%= publisher %>" 4 | 5 | !define APP_DIR "${APP_NAME}" 6 | 7 | Name "${APP_NAME}" 8 | 9 | !include "MUI2.nsh" 10 | !define MUI_ICON "icon.ico" 11 | !define MUI_UNICON "icon.ico" 12 | 13 | !addplugindir . 14 | !include "nsProcess.nsh" 15 | !include "FileFunc.nsh" 16 | 17 | <% if(fileAssociation){ %> 18 | # include file association script 19 | !include "FileAssociation.nsh" 20 | <% } %> 21 | 22 | BrandingText "${APP_NAME} ${APP_VERSION}" 23 | 24 | # define the resulting installer's name 25 | OutFile "<%= out %>\${APP_NAME} Setup.exe" 26 | 27 | # set the installation directory 28 | InstallDir "$PROGRAMFILES\${APP_NAME}\" 29 | 30 | # Set side image 31 | !define MUI_HEADERIMAGE_BITMAP "<%= appPath %>\resources\app\resources\images\gitpie-wizard-image.bmp" 32 | !define MUI_WELCOMEFINISHPAGE_BITMAP "<%= appPath %>\resources\app\resources\images\gitpie-wizard-image.bmp" 33 | 34 | # app dialogs 35 | !insertmacro MUI_PAGE_WELCOME 36 | !insertmacro MUI_PAGE_INSTFILES 37 | 38 | !define MUI_FINISHPAGE_RUN_TEXT "Start ${APP_NAME}" 39 | !define MUI_FINISHPAGE_RUN "$INSTDIR\${APP_NAME}.exe" 40 | 41 | !insertmacro MUI_PAGE_FINISH 42 | !insertmacro MUI_LANGUAGE "English" 43 | 44 | !macro CheckAppRunning MODE 45 | ${nsProcess::FindProcess} "${APP_NAME}.exe" $R0 46 | ${If} $R0 == 0 47 | MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION "${APP_NAME} is running. $\r$\nClick OK to close it and continue with ${MODE}." /SD IDCANCEL IDOK doStopProcess 48 | Abort 49 | doStopProcess: 50 | DetailPrint "Closing running ${APP_NAME} ..." 51 | ${nsProcess::KillProcess} "${APP_NAME}.exe" $R0 52 | DetailPrint "Waiting for ${APP_NAME} to close." 53 | Sleep 2000 54 | ${EndIf} 55 | ${nsProcess::Unload} 56 | !macroend 57 | 58 | # default section start 59 | Section 60 | SetShellVarContext all 61 | 62 | !insertmacro CheckAppRunning "install" 63 | # delete the installed files 64 | RMDir /r $INSTDIR 65 | 66 | # define the path to which the installer should install 67 | SetOutPath $INSTDIR 68 | 69 | # specify the files to go in the output path 70 | File /r "<%= appPath %>\*" 71 | 72 | # specify icon to go in the output path 73 | File "icon.ico" 74 | 75 | <% if(fileAssociation){ %> 76 | # specify file association 77 | ${registerExtension} "$INSTDIR\${APP_NAME}.exe" "<%= fileAssociation.extension %>" "<%= fileAssociation.fileType %>" 78 | <% } %> 79 | 80 | # create the uninstaller 81 | WriteUninstaller "$INSTDIR\Uninstall ${APP_NAME}.exe" 82 | 83 | # create shortcuts in the start menu and on the desktop 84 | CreateDirectory "$SMPROGRAMS\${APP_DIR}" 85 | CreateShortCut "$SMPROGRAMS\${APP_DIR}\${APP_NAME}.lnk" "$INSTDIR\${APP_NAME}.exe" 86 | CreateShortCut "$SMPROGRAMS\${APP_DIR}\Uninstall ${APP_NAME}.lnk" "$INSTDIR\Uninstall ${APP_NAME}.exe" 87 | CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "$INSTDIR\${APP_NAME}.exe" "" "$INSTDIR\icon.ico" 88 | 89 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ 90 | "DisplayName" "${APP_NAME}" 91 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ 92 | "UninstallString" "$INSTDIR\Uninstall ${APP_NAME}.exe" 93 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ 94 | "DisplayIcon" "$INSTDIR\icon.ico" 95 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ 96 | "DisplayVersion" "${APP_VERSION}" 97 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ 98 | "Publisher" "${APP_PUBLISHER}" 99 | 100 | ${GetSize} "$INSTDIR" "/S=0K" $0 $1 $2 101 | IntFmt $0 "0x%08X" $0 102 | WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" \ 103 | "EstimatedSize" "$0" 104 | 105 | SectionEnd 106 | 107 | # create a section to define what the uninstaller does 108 | Section "Uninstall" 109 | 110 | !insertmacro CheckAppRunning "uninstall" 111 | 112 | SetShellVarContext all 113 | 114 | # delete the installed files 115 | RMDir /r $INSTDIR 116 | 117 | # delete the shortcuts 118 | delete "$SMPROGRAMS\${APP_DIR}\${APP_NAME}.lnk" 119 | delete "$SMPROGRAMS\${APP_DIR}\Uninstall ${APP_NAME}.lnk" 120 | rmDir "$SMPROGRAMS\${APP_DIR}" 121 | delete "$DESKTOP\${APP_NAME}.lnk" 122 | 123 | 124 | DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" 125 | SectionEnd 126 | -------------------------------------------------------------------------------- /app/frontend/global/notification.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | let container = document.querySelector('#global-container'); 4 | 5 | /** 6 | * @class GPNotification 7 | * @param title {String} Title of the notification 8 | * @param opts {object} Options to the notification 9 | * - type {string} 'local' or 'global' 10 | * - body {string} Body of the notification 11 | * - showLoad {boolean} If true, show the loading icon for local notifications 12 | * - autoclose {boolean} If true, the notification is close after 3 seconds visible 13 | */ 14 | class GPNotification { 15 | constructor (title, opts) { 16 | opts = opts || {}; 17 | 18 | this.type = opts.type || 'local'; 19 | this.title = title; 20 | this.body = opts.body; 21 | this.showLoad = opts.showLoad; 22 | this.notificationElement = null; 23 | this.autoclose = opts.autoclose; 24 | this.closable = opts.closable; 25 | } 26 | 27 | pop() { 28 | let isGlobal = (this.type == 'global'); 29 | let path = require('path'); 30 | 31 | if (isGlobal) { 32 | new Notification(this.title, { 33 | body: this.body, 34 | icon: path.join(__dirname, 'resources', 'images', 'icon.png') 35 | }); 36 | } else { 37 | var bodyText = this.body; 38 | var titleText = this.title; 39 | 40 | this.notificationElement = document.createElement('section'); 41 | this.notificationElement.className = 'notify-dialog'; 42 | 43 | if (this.showLoad) { 44 | this.notificationElement.innerHTML = ` 45 |
46 |
47 |
48 | 49 | 50 | 51 |
52 |
53 |
54 | `; 55 | } else { 56 | this.notificationElement.innerHTML = ''; 57 | } 58 | 59 | this.notificationElement.innerHTML += `
${bodyText || titleText}
`; 60 | 61 | if (this.closable) { 62 | let closeBtn = document.createElement('button'); 63 | 64 | closeBtn.className = 'close-button'; 65 | closeBtn.title = MSGS.Close; 66 | closeBtn.innerHTML = ''; 67 | closeBtn.onclick = function () { 68 | this.close(); 69 | }.bind(this); 70 | 71 | this.notificationElement.appendChild(closeBtn); 72 | } 73 | 74 | container.appendChild(this.notificationElement); 75 | 76 | setTimeout(function () { 77 | this.notificationElement.style.marginBottom = '10px'; 78 | }.bind(this), 100); 79 | 80 | if (this.autoclose) { 81 | setTimeout(function () { 82 | this.close(); 83 | }.bind(this), 3000); 84 | } 85 | 86 | return this; 87 | } 88 | } 89 | 90 | close() { 91 | this.notificationElement.style.marginBottom = '-100px'; 92 | 93 | setTimeout(function () { 94 | container.removeChild(this.notificationElement); 95 | }.bind(this), 1000); 96 | } 97 | } 98 | 99 | window.GPNotification = GPNotification; 100 | -------------------------------------------------------------------------------- /app/frontend/modules/attributes.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | angular.module('attributes', []) 3 | 4 | .directive('ngRightClick', function($parse) { 5 | return function(scope, element, attrs) { 6 | var fn = $parse(attrs.ngRightClick); 7 | 8 | element.bind('contextmenu', function(event) { 9 | 10 | scope.$apply(function() { 11 | event.preventDefault(); 12 | fn(scope, {$event:event}); 13 | }); 14 | }); 15 | }; 16 | }) 17 | 18 | .directive('ngScroll', function ($parse) { 19 | return function (scope, element, attrs) { 20 | var fn = $parse(attrs.ngScroll); 21 | 22 | element.bind('scroll', function (event) { 23 | 24 | scope.$apply(function() { 25 | event.preventDefault(); 26 | fn(scope, {$event:event}); 27 | }); 28 | }); 29 | }; 30 | }) 31 | 32 | .directive('ngEnter', function() { 33 | return function(scope, element, attrs) { 34 | 35 | element.bind("keydown keypress", function(event) { 36 | 37 | if (event.which === 13) { 38 | scope.$apply(function() { 39 | scope.$eval(attrs.ngEnter); 40 | }); 41 | } 42 | }); 43 | }; 44 | }); 45 | })(); 46 | -------------------------------------------------------------------------------- /app/frontend/modules/components.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | angular.module('components', []) 3 | 4 | .directive('tabs', function() { 5 | return { 6 | restrict: 'E', 7 | transclude: true, 8 | scope: {}, 9 | controller: function($scope, $element, CommomService) { 10 | var panes = $scope.panes = []; 11 | 12 | if ($element.attr('id') == 'chagesTabPanel') { 13 | CommomService.changesTabPanel = $scope; 14 | } 15 | 16 | $scope.select = function(pane) { 17 | var selectedPane; 18 | 19 | angular.forEach(panes, function(pane) { 20 | pane.selected = false; 21 | }); 22 | 23 | if (typeof pane == 'number') { 24 | panes[pane].selected = true; 25 | selectedPane = panes[pane]; 26 | } else { 27 | selectedPane = pane; 28 | pane.selected = true; 29 | } 30 | 31 | if ($element.attr('id') == 'chagesTabPanel') { 32 | $scope.$root.appCtrl.enableCommitBlock = selectedPane.paneTitle == $scope.$root.MSGS.Changes; 33 | } 34 | }; 35 | 36 | this.addPane = function(pane) { 37 | if (panes.length === 0) $scope.select(pane); 38 | 39 | pane.showTab = (pane.showPane == 'false' ? false : true); 40 | 41 | panes.push(pane); 42 | }; 43 | 44 | $scope.hidePanel = function (paneIndex) { 45 | panes[paneIndex].selected = false; 46 | panes[paneIndex].showTab = false; 47 | panes[ (paneIndex-1) ].selected = true; 48 | 49 | $scope.select( (paneIndex-1) ); 50 | }; 51 | 52 | $scope.showPanel = function (paneIndex) { 53 | panes[paneIndex].showTab = true; 54 | 55 | $scope.select(paneIndex); 56 | }.bind(this); 57 | }, 58 | templateUrl: 'app/frontend/view/components/tabs.html', 59 | replace: true 60 | }; 61 | }) 62 | 63 | .directive('pane', function() { 64 | return { 65 | require: '^tabs', 66 | restrict: 'E', 67 | transclude: true, 68 | scope: { paneTitle: '@', icon: '@', showPane: '@'}, 69 | link: function(scope, element, attrs, tabsController) { 70 | tabsController.addPane(scope); 71 | }, 72 | templateUrl: 'app/frontend/view/components/pane.html', 73 | replace: true 74 | }; 75 | }) 76 | 77 | .directive('loadingIcon', function () { 78 | 79 | return { 80 | restrict: 'E', 81 | scope: {}, 82 | replace: true, 83 | templateUrl: 'app/frontend/view/components/loading-icon.html', 84 | }; 85 | }); 86 | 87 | })(); 88 | -------------------------------------------------------------------------------- /app/frontend/modules/dialogs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('dialogs', []) 4 | 5 | .directive('pushModalDialog', function () { 6 | return { 7 | restrict: 'E', 8 | templateUrl: 'app/frontend/view/content/push-modal-dialog.html', 9 | 10 | controller: function ($rootScope, $scope) { 11 | 12 | this.showDialog = false; 13 | 14 | this.submitAuthPushForm = function (formFields) { 15 | var repositoryName = this.pushConfigs.gitFetchURL.name; 16 | 17 | let header = $scope.headerCtrl; 18 | let notification = new GPNotification(`Syncronizing ${repositoryName}`, { showLoad: true }); 19 | 20 | notification.pop(); 21 | this.hideDialog(); 22 | 23 | GIT.sync({ 24 | path: header.selectedRepository.path, 25 | branch: header.currentBranch, 26 | setUpstream: !header.isRemoteBranch(header.currentBranch), 27 | push: header.syncStatus.ahead, 28 | httpsConfigs: formFields 29 | }, function (err) { 30 | 31 | if (err) { 32 | alert(MSGS['Error syncronazing repository. \n Error: '] + err.message); 33 | } else { 34 | $scope.$broadcast('changedbranch', header.selectedRepository); 35 | } 36 | 37 | notification.close(); 38 | 39 | applyScope($scope); 40 | }.bind(this)); 41 | }; 42 | 43 | this.hideDialog = function () { 44 | this.showDialog = false; 45 | }; 46 | 47 | this.popDialog = function (pushConfigs) { 48 | this.showDialog = true; 49 | this.pushConfigs = pushConfigs; 50 | 51 | applyScope($scope); 52 | }; 53 | 54 | this.pushConfigs = {}; 55 | 56 | // Expose pop dialog 57 | $rootScope.showPushModalDialog = this.popDialog.bind(this); 58 | }, 59 | 60 | controllerAs: 'modalCtrl' 61 | }; 62 | }) 63 | 64 | .directive('mergeModalDialog', function () { 65 | return { 66 | restrict: 'E', 67 | templateUrl: 'app/frontend/view/content/merge-modal-dialog.html', 68 | 69 | controller: function ($rootScope, $scope) { 70 | 71 | this.showDialog = false; 72 | this.showIsUpToDateMsg = false; 73 | this.currentBranch = null; 74 | this.branchCompare = null; 75 | this.remoteBranches = []; 76 | this.localBranches = []; 77 | this.diffInformation = {}; 78 | this.commitDiffList = []; 79 | 80 | this.hideDialog = function () { 81 | this.showDialog = false; 82 | }; 83 | 84 | this.popDialog = function (pushConfigs) { 85 | this.showDialog = true; 86 | this.showIsUpToDateMsg = false; 87 | this.branchCompare = null; 88 | this.diffInformation = {}; 89 | 90 | document.querySelector('#merge-button').setAttribute('disabled', 'true'); 91 | 92 | this.currentBranch = $scope.headerCtrl.currentBranch; 93 | this.remoteBranches = $scope.headerCtrl.remoteBranches; 94 | this.localBranches = $scope.headerCtrl.localBranches; 95 | 96 | applyScope($scope); 97 | }; 98 | 99 | this.getBranchesDiff = function () { 100 | let treatedBranchCompare = this.branchCompare.replace('origin/', ''); 101 | let mergeBtn = document.querySelector('#merge-button'); 102 | 103 | this.diffInformation = {}; 104 | 105 | mergeBtn.setAttribute('disabled', 'true'); 106 | 107 | if (treatedBranchCompare != $scope.headerCtrl.currentBranch) { 108 | let header = $scope.headerCtrl; 109 | let notification = new GPNotification(`${MSGS['Comparing branches...']}`, { showLoad: true }); 110 | 111 | notification.pop(); 112 | 113 | GIT.geDiffMerge(header.selectedRepository.path, { 114 | branchCompare: this.branchCompare, 115 | branchBase: header.currentBranch, 116 | callback: function (err, diffInformation) { 117 | notification.close(); 118 | 119 | if (err) { 120 | alert(err); 121 | } else { 122 | this.diffInformation = diffInformation; 123 | 124 | if (diffInformation.files.length > 0) { 125 | this.showIsUpToDateMsg = false; 126 | mergeBtn.removeAttribute('disabled'); 127 | } else { 128 | this.showIsUpToDateMsg = true; 129 | } 130 | 131 | applyScope($scope); 132 | } 133 | }.bind(this) 134 | }); 135 | 136 | GIT.getCommitDiff(header.selectedRepository.path, { 137 | branchCompare: this.branchCompare, 138 | branchBase: header.currentBranch, 139 | callback: function (err, commits) { 140 | 141 | if (err) { 142 | alert(err); 143 | } else { 144 | this.commitDiffList = commits; 145 | 146 | applyScope($scope); 147 | } 148 | }.bind(this) 149 | }); 150 | 151 | } else { 152 | this.showIsUpToDateMsg = true; 153 | } 154 | }; 155 | 156 | this.mergeBranches = function () { 157 | let header = $scope.headerCtrl; 158 | let notification; 159 | 160 | var branchBase = header.currentBranch, 161 | branchCompare = this.branchCompare.replace('origin/', ''); 162 | 163 | notification = new GPNotification(`${MSGS['Merging branch']} ${branchCompare} ${MSGS.INTO.toLowerCase()} ${branchBase}...`, { showLoad: true }); 164 | 165 | this.hideDialog(); 166 | 167 | notification.pop(); 168 | 169 | GIT.merge(header.selectedRepository.path, { 170 | branchCompare: this.branchCompare, 171 | callback: function (err, stdout, isConflituosMerge) { 172 | notification.close(); 173 | 174 | if (err) { 175 | const remote = require('remote'); 176 | const dialog = remote.require('dialog'); 177 | const browserWindow = remote.require('browser-window'); 178 | 179 | let currentWindow = browserWindow.getFocusedWindow(); 180 | let message; 181 | let buttons = [`${MSGS.Ok}`]; 182 | let detail = null; 183 | 184 | if (isConflituosMerge) { 185 | message = `${MSGS['There are conflicts merging']} ${branchCompare} ${MSGS.INTO.toLowerCase()} ${branchBase}. ${MSGS['Resolve them and commit the changes to complete the merge.\n\n If you want, you can abort this merge clicking on "Abort Merge"']}`; 186 | 187 | detail = stdout; 188 | 189 | buttons.push(MSGS['Abort Merge']); 190 | } else { 191 | message = `${MSGS['Something wrong happened merging']} ${branchCompare} ${MSGS.INTO.toLowerCase()} ${branchBase}. \n\n${err.message}`; 192 | } 193 | 194 | dialog.showMessageBox(currentWindow, 195 | { 196 | type: 'error', 197 | title: `${MSGS['Error merging branches']}`, 198 | message: message, 199 | detail: detail, 200 | buttons: buttons 201 | }, 202 | function (response) { 203 | 204 | if (response == 1) { 205 | 206 | GIT.mergeAbort(header.selectedRepository.path, function (err) { 207 | 208 | if (err) { 209 | alert(err); 210 | } 211 | 212 | $scope.$broadcast('changedbranch', header.selectedRepository); 213 | }); 214 | } else { 215 | $scope.appCtrl.setCommitMessage(`Merge branch '${branchCompare}' into '${header.currentBranch}'`); 216 | $scope.appCtrl.setCommitDescription( this.commitDiffList.map((commit) => { return `- ${commit.message}`; }).join('\n') ); 217 | 218 | $scope.$broadcast('changedbranch', header.selectedRepository); 219 | } 220 | }.bind(this) 221 | ); 222 | } else { 223 | $scope.$broadcast('changedbranch', header.selectedRepository); 224 | } 225 | }.bind(this) 226 | }); 227 | }; 228 | 229 | // Expose pop dialog 230 | $rootScope.showMergeModalDialog = this.popDialog.bind(this); 231 | }, 232 | 233 | controllerAs: 'mergeCtrl' 234 | }; 235 | }); 236 | -------------------------------------------------------------------------------- /app/frontend/modules/settings-page.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | (function () { 4 | 5 | angular.module('settings', []).directive('settingsPage', function () { 6 | return { 7 | restrict: 'E', 8 | templateUrl: 'app/frontend/view/content/settings-page.html', 9 | 10 | controller: function ($scope) { 11 | this.showSettingsPage = false; 12 | this.hidePage = true; 13 | this.fonts = [ 14 | 'Comic Sans MS', 15 | 'Ubuntu', 16 | 'Droid Sans', 17 | 'Roboto', 18 | 'Helvetica' 19 | ]; 20 | this.selectedRepository = null; 21 | this.globalGitConfigs = { 22 | 'user.name': '', 23 | 'user.email': '', 24 | 'merge.tool': '' 25 | }; 26 | this.languages = [ 27 | { code: 'en', description: 'English'}, 28 | { code: 'pt-BR', description: 'Portuguese (Brazil)'} 29 | ]; 30 | 31 | this.appVersion = require('./package').version; 32 | 33 | this.hideSettingsPage = function () { 34 | this.showSettingsPage = false; 35 | 36 | setTimeout(function () { 37 | this.hidePage = true; 38 | applyScope($scope); 39 | }.bind(this), 500); 40 | }; 41 | 42 | this.getGlobalGitConfigs = function () { 43 | GIT.getGlobalConfigs(function (err, configs) { 44 | 45 | if (err) { 46 | new GPNotification(MSGS['It seems that a git username and email are not set globally. You can fix this accessing the Settings menu'], { closable: true }).pop(); 47 | } else { 48 | this.globalGitConfigs = configs; 49 | } 50 | }.bind(this)); 51 | }; 52 | 53 | $scope.$root.showSettingsPage = function () { 54 | this.hidePage = false; 55 | 56 | setTimeout(function () { 57 | this.showSettingsPage = true; 58 | applyScope($scope); 59 | }.bind(this), 200); 60 | }.bind(this); 61 | 62 | // Attemp to get the global git configs on load the application 63 | this.getGlobalGitConfigs(); 64 | 65 | this.changeGitCofigs = function (global, event) { 66 | var username, 67 | email, 68 | repositoryPath, 69 | mergeTool; 70 | 71 | if (global) { 72 | username = this.globalGitConfigs['user.name']; 73 | email = this.globalGitConfigs['user.email']; 74 | mergeTool = this.globalGitConfigs['merge.tool']; 75 | } else { 76 | username = this.localGitConfigs['user.name']; 77 | email = this.localGitConfigs['user.email']; 78 | mergeTool = this.localGitConfigs['merge.tool']; 79 | repositoryPath = this.selectedRepository.path; 80 | } 81 | 82 | event.target.setAttribute('disabled', true); 83 | 84 | GIT.alterGitConfig(repositoryPath, { 85 | global: global, 86 | username: username, 87 | email: email, 88 | mergeTool: mergeTool, 89 | callback: function (err) { 90 | 91 | if (err) { 92 | alert(err); 93 | } else { 94 | new GPNotification(MSGS['THE GIT CONFIGURATIONS HAVE BEEN SUCCESSFULLY CHANGED'], { autoclose: true }).pop(); 95 | } 96 | 97 | event.target.removeAttribute('disabled'); 98 | } 99 | }); 100 | }; 101 | 102 | this.openMergeToolConfigHelp = function () { 103 | const shell = require('shell'); 104 | 105 | shell.openExternal('https://gist.github.com/mapaiva/c77bd11de94014a9d865'); 106 | }; 107 | 108 | this.changeAppLanguage = function (language) { 109 | var newLangCode = $scope.CONFIGS.language.code; 110 | 111 | for (var i = 0; i < this.languages.length; i++) { 112 | 113 | if (newLangCode == this.languages[i].code) { 114 | $scope.CONFIGS.language.description = this.languages[i].description; 115 | break; 116 | } 117 | } 118 | 119 | try { 120 | $scope.MSGS = require('./language/'.concat(newLangCode).concat('.json')); 121 | MSGS = $scope.MSGS; 122 | } catch (err) { 123 | $scope.CONFIGS.language = { 124 | code: 'en', 125 | description: 'English' 126 | }; 127 | } 128 | }; 129 | 130 | $scope.$on('repositorychanged', function (event, repository) { 131 | this.selectedRepository = repository; 132 | this.selectedRepository.usingSSH = false; 133 | 134 | GIT.listRemotes(repository.path, function (err, remotesList) { 135 | 136 | if (err) { 137 | alert(err.message); 138 | } else if (remotesList.origin) { 139 | var GitUrlParse = require('git-url-parse'), 140 | repoSettings = GitUrlParse(remotesList.origin.push); 141 | 142 | if (repoSettings.protocol == 'ssh') { 143 | this.selectedRepository.usingSSH = true; 144 | } 145 | } 146 | }.bind(this)); 147 | 148 | this.getGlobalGitConfigs(); 149 | 150 | GIT.getLocalConfigs(this.selectedRepository.path, function (err, configs) { 151 | 152 | if (err) { 153 | this.localGitConfigs = { 154 | 'user.name': '', 155 | 'user.email': '', 156 | 'merge.tool': '' 157 | }; 158 | alert(err.message); 159 | } else { 160 | this.localGitConfigs = configs; 161 | } 162 | }.bind(this)); 163 | 164 | }.bind(this)); 165 | 166 | $scope.$on('removedRepository', function () { 167 | this.selectedRepository = null; 168 | }.bind(this)); 169 | }, 170 | 171 | controllerAs: 'settingsCtrl' 172 | }; 173 | }); 174 | })(); 175 | -------------------------------------------------------------------------------- /app/frontend/view/components/loading-icon.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 6 |
7 |
8 | -------------------------------------------------------------------------------- /app/frontend/view/components/pane.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /app/frontend/view/components/tabs.html: -------------------------------------------------------------------------------- 1 |
2 | 8 |
9 |
10 | -------------------------------------------------------------------------------- /app/frontend/view/content/merge-modal-dialog.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

{{ MSGS['Merge branches'] }}

6 | 7 |
8 |
9 | {{ mergeCtrl.currentBranch }} 10 | ... 11 | 12 | 16 | 17 |
18 | 19 |
20 | {{ MSGS['The things are the same near here'] }} 21 |

22 | {{ mergeCtrl.currentBranch }} {{ MSGS['is up to date with all commits from'] }} {{ mergeCtrl.branchCompare.replace('origin/', '') }}. {{ MSGS['Try choose another branch to compare'] }}. 23 |

24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 | 36 | 39 | 44 | 47 | 50 | 51 | 52 |
32 |
33 | {{ commit.author.trim()[0] }} 34 |
35 |
37 | {{ commit.author }} 38 | 40 | 41 | {{ commit.message | limitTo: 100 }}{{ commit.message.length > 100 ? '...' : ''}} 42 | 43 | 45 | {{ commit.hash }} 46 | 48 | {{ commit.date.toLocaleString() }} 49 |
53 |
54 | 55 |
56 |
    57 |
  • 58 | 59 | 60 | 61 | {{ file.name.length > 80 ? '...' : ''}}{{ file.name | limitTo: - 80 }} 62 | 63 | 64 | 65 | {{ file.deletions }} 66 | 67 | 68 | {{ file.additions }} 69 | 70 | 71 |
  • 72 |
73 |
74 |
{{ mergeCtrl.diffInformation.shortstat }}
75 |
76 |
77 | 78 | 80 |
81 |
82 |
83 |
84 | -------------------------------------------------------------------------------- /app/frontend/view/content/pieContent.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 6 | 7 | 41 |
42 | 43 |
44 |
45 | 46 |
47 | {{ MSGS["Start adding, clonning or creating some awesome things"] }}! 48 |
49 | 50 |
51 | 52 | {{ MSGS["Select a repository to start"] }} 53 |
54 | 55 |
56 | 57 |
58 | 59 | 61 | 62 | 65 | 68 |
69 | 70 |
71 | 72 |

{{ MSGS['No match for the filter'] }}

73 |

74 | 75 |
77 |

{{ MSGS["Commit changes"] }}

78 |
79 | 80 | 82 |
83 | 86 |
87 | 88 | 108 | 109 |
110 | 111 | 234 |
235 | -------------------------------------------------------------------------------- /app/frontend/view/content/push-modal-dialog.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |

{{ MSGS['Authentication required'] }}

6 |

7 | {{ MSGS['You\'re trying to make changes into a https remote'] }} 8 | ({{ modalCtrl.pushConfigs.remote }}) 9 | {{ MSGS['and a username and password are required. Please type it and let us publish your changes LOL'] }} 10 |

11 |
12 | 13 | 14 | 16 |
17 |
18 |
19 |
20 | -------------------------------------------------------------------------------- /app/frontend/view/content/settings-page.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
{{ MSGS.Settings }}
6 |
7 | 8 | 162 |
163 |
164 | -------------------------------------------------------------------------------- /app/frontend/view/header/pieHeader.html: -------------------------------------------------------------------------------- 1 | 205 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | GitPie 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 |
15 |
16 | 17 | 18 |
19 | 20 |
21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | let Electronify = require('electronify'), 4 | App = new Electronify(__dirname + '/index.html', { 5 | title: 'GitPie', 6 | resizable: true, 7 | width: 1000, 8 | height: 600, 9 | minWidth: 1000, 10 | minHeight: 600 11 | }); 12 | -------------------------------------------------------------------------------- /language/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "ADD": "ADD", 3 | "CLONE": "CLONE", 4 | "CREATE": "CREATE", 5 | "ADD REPOSITORY": "ADD REPOSITORY", 6 | "Browse directory": "Browse directory", 7 | "Where are your stuffs": "Where are your stuffs", 8 | "Select a repository to start": "Select a repository to start", 9 | "Click on a commit to see what happend there": "Click on a commit to see what happend there", 10 | "All clean here Chief": "All clean here Chief", 11 | "Sync": "Sync", 12 | "Settings": "Settings", 13 | "Others": "Others", 14 | "Commit changes": "Commit changes", 15 | "Add, Clone or Create a repository": "Add, Clone or Create a repository", 16 | "Type a message for your commit": "Type a message for your commit", 17 | "Give a description to the commit. Tell more about your changes...": "Give a description to the commit. Tell more about your changes...", 18 | "Add local git projects to GitPie": "Add local git projects to GitPie", 19 | "Search repositories": "Search repositories", 20 | "COMMIT": "COMMIT", 21 | "CREATING COMMIT...": "CREATING COMMIT...", 22 | "Clone URL": "Clone URL", 23 | "cloned": "cloned", 24 | "with success": "with success", 25 | "Destination Folder": "Destination Folder", 26 | "History": "History", 27 | "Changes": "Changes", 28 | "Unsyncronized Changes": "Unsyncronized Changes", 29 | "No tags here": "No tags here", 30 | "No branches here": "No branches here", 31 | "Search for a tag": "Search for a tag", 32 | "Switching to branch": "Switching to branch", 33 | "This branch only exits locally": "This branch only exits locally", 34 | "Local branches": "Local branches", 35 | "Switch to branch": "Switch to branch", 36 | "Delete this branch": "Delete this branch", 37 | "Delete branch": "Delete branch", 38 | "Merge branches": "Merge branches", 39 | "MERGE": "MERGE", 40 | "MERGING": "MERGING", 41 | "Abort Merge": "Abort Merge", 42 | "Opening repository": "Opening repository", 43 | "Comparing branches...": "Comparing branches...", 44 | "All the unmerged changes will be lost! Are you sure to delete the branch": "All the unmerged changes will be lost! Are you sure to delete the branch", 45 | "Something wrong happened merging": "Something wrong happened merging", 46 | "There are conflicts merging": "There are conflicts merging", 47 | "Resolve them and commit the changes to complete the merge.\n\n If you want, you can abort this merge clicking on \"Abort Merge\"":"Resolve them and commit the changes to complete the merge.\n\n If you want, you can abort this merge clicking on \"Abort Merge\"", 48 | "Error merging branches": "Error merging branches", 49 | "Merging branch": "Merging branch", 50 | "Ok": "Ok", 51 | "Merge Tool not defined": "Merge Tool not defined", 52 | "No Merge Tool is globaly or localy defined. You can easily set one by the Setting menu": "No Merge Tool is globaly or localy defined. You can easily set one by the Setting menu", 53 | "Open Setting menu": "Open Setting menu", 54 | "Maybe later": "Maybe later", 55 | "The things are the same near here": "The things are the same near here", 56 | "is up to date with all commits from": "is up to date with all commits from", 57 | "Try choose another branch to compare": "Try choose another branch to compare", 58 | "MODIFIED": "MODIFIED", 59 | "NEW": "NEW", 60 | "ADDED": "ADDED", 61 | "DELETED": "DELETED", 62 | "BINARY": "BINARY", 63 | "RENAMED": "RENAMED", 64 | "UNMERGED": "UNMERGED", 65 | "Discart": "Discart", 66 | "Counting...": "Counting...", 67 | "Remove": "Remove", 68 | "Move to Trash": "Move to Trash", 69 | "Pop": "Pop", 70 | "Publish branch": "Publish branch", 71 | "Use ours": "Use ours", 72 | "Copy selection": "Copy selection", 73 | "Use theirs": "Use theirs", 74 | "Stage file": "Stage file", 75 | "Open merge tool": "Open merge tool", 76 | "CLONING REPOSITORY FROM": "CLONING REPOSITORY FROM", 77 | "CREATING REPOSITORY IN": "CREATING REPOSITORY IN", 78 | "INTO": "INTO", 79 | "Stash {number} changes": "Stash {number} changes", 80 | "Stash list ({number})": "Stash list ({number})", 81 | "Show in folder": "Show in folder", 82 | "Assume unchanged": "Assume unchanged", 83 | "Unstage file": "Unstage file", 84 | "Reset branch {branch} to selected commit": "Reset branch {branch} to selected commit", 85 | "Collapse all": "Collapse all", 86 | "Expand all": "Expand all", 87 | "Discart all selected": "Discart all selected", 88 | "Close stash tab": "Close stash tab", 89 | "View files": "View files", 90 | "Files changed": "Files changed", 91 | "Select or create a new branch": "Select or create a new branch", 92 | "Hide menu": "Hide menu", 93 | "Show menu": "Show menu", 94 | "Create new branch": "Create new branch", 95 | "Your repository will be created as": "Your repository will be created as", 96 | "Repository name": "Repository name", 97 | "Folder": "Folder", 98 | "i have no idea": "i have no idea", 99 | "THE GIT CONFIGURATIONS HAVE BEEN SUCCESSFULLY CHANGED": "THE GIT CONFIGURATIONS HAVE BEEN SUCCESSFULLY CHANGED", 100 | "It happends with me all the time too. But lets's try find your project again!": "It happends with me all the time too. But let's try find your project again!", 101 | "Start adding, clonning or creating some awesome things": "Start adding, clonning or creating some awesome things", 102 | "Nothing for me here.\n The folder {folder} is not a git project": "Nothing for me here.\n The folder {folder} is not a git project", 103 | "Close": "Close", 104 | "It seems that a git username and email are not set globally. You can fix this accessing the Settings menu": "It seems that a git username and email are not set globally. You can fix this accessing the Settings menu", 105 | "Filter": "Filter", 106 | "Filter by": "Filter by", 107 | "Search commits": "Search commits", 108 | "Search": "Search", 109 | "MESSAGE": "Message", 110 | "FILE": "File", 111 | "AUTHOR": "Author", 112 | "No match for the filter": "No match for the filter", 113 | "Searching for": "Searching for", 114 | 115 | "Error counting commits. Error: ": "Error counting commits. Error: ", 116 | "Error adding files. Error:": "Error adding files. Error:", 117 | "Error commiting changes. Error: ": "Error commiting changes. Error: ", 118 | "Error getting more history. Error: ": "Error getting more history. Error: ", 119 | 120 | "Error switching branch. Error: ": "Error switching branch. Error: ", 121 | "Error syncronazing repository. \n Error: ": "Error syncronazing repository. \n Error: ", 122 | "'{cloneURL}' not appears to be a git remote URL. Let's try again!": "'{cloneURL}' not appears to be a git remote URL. Let's try again!", 123 | "The path '{path}' is not a folder. Pick a valid directory to clone projects.": "The path '{path}' is not a folder. Pick a valid directory to clone projects.", 124 | "The path '{path}' is not a folder. Pick a valid directory to create projects.": "The path '{path}' is not a folder. Pick a valid directory to create projects.", 125 | "Repository without remote": "Repository without remote", 126 | "Add it anyway?": "Add it anyway?", 127 | "The repository do not have any remote": "The repository do not have any remote", 128 | 129 | "SettingsPage": { 130 | "Preferences": "Preferences", 131 | "Font": "Font", 132 | "Username": "Username", 133 | "Email": "Email", 134 | "Merge Tool": "Merge Tool", 135 | "Put here the merge tool name. Ex: meld": "Put here the merge tool name. Ex: meld", 136 | "GitPie set some defaults configurations to setting up the mergetool. You can change this after": "GitPie set some defaults configurations to setting up the mergetool. You can change this after", 137 | "See how": "See how", 138 | "Repository": "Repository", 139 | "Using ssh key": "Using ssh key", 140 | "About": "About", 141 | "License": "License", 142 | "default": "default", 143 | "GitPie is distributed under the MIT License": "GitPie is distributed under the MIT License", 144 | "GitPie is an open source git client that have the goal to be the most simple and nice client for any project and for any people": "GitPie is an open source git client that have the goal to be the most simple and nice client for any project and for any people", 145 | "CHANGE GLOBALS CONFIGURATIONS": "CHANGE GLOBALS CONFIGURATIONS", 146 | "CHANGE {repository} CONFIGURATIONS": "CHANGE {repository} CONFIGURATIONS", 147 | "Show repositories from": "Show repositories from", 148 | "Shortcuts list": "Shortcuts list", 149 | "Hide shortcuts": "Hide shortcuts", 150 | "Show shortcuts": "Show shortcuts", 151 | "Open add projects dialog": "Open add projects dialog", 152 | "Toggle developer tools": "Toggle developer tools", 153 | "Hide repositories menu": "Hide repositories menu", 154 | "Show repositories menu": "Show repositories menu", 155 | "Language": "Language", 156 | "Navigate between repositories top to bottom": "Navigate between repositories top to bottom", 157 | "Navigate between repositories bottom to top": "Navigate between repositories bottom to top", 158 | "Add focus on the \"Search repositories\" field": "Add focus on the \"Search repositories\" field", 159 | "Close modal windows and header menus": "Close modal windows and header menus", 160 | "Version": "Version", 161 | "Toogle \"Search Commit\" Block": "Toogle \"Search Commit\" Block" 162 | }, 163 | 164 | "Authentication required": "Authentication required", 165 | "You're trying to make changes into a https remote": "You're trying to make changes into a https remote", 166 | "and a username and password are required. Please type it and let us publish your changes LOL": "and a username and password are required. Please type it and let us publish your changes LOL", 167 | "Password": "Password", 168 | "SUBMIT": "SUBMIT", 169 | "CANCEL": "CANCEL" 170 | } 171 | -------------------------------------------------------------------------------- /language/pt-BR.json: -------------------------------------------------------------------------------- 1 | { 2 | "ADD": "ADD", 3 | "CLONE": "CLONAR", 4 | "CREATE": "CRIAR", 5 | "ADD REPOSITORY": "ADICIONAR REPOSITÓRIO", 6 | "Browse directory": "Buscar diretório", 7 | "Where are your stuffs": "Onde estão suas coisas", 8 | "Select a repository to start": "Selecione um repositório para começar", 9 | "Click on a commit to see what happend there": "Clique em um commit para ver o que aconteceu", 10 | "All clean here Chief": "Tudo limpo aqui Chief", 11 | "Sync": "Sinc", 12 | "Settings": "Configurações", 13 | "Others": "Outros", 14 | "Commit changes": "Commitar mudanças", 15 | "Add, Clone or Create a repository": "Adicione, Clone or Crie um repositório", 16 | "Type a message for your commit": "Digite uma mensagem para o seu commit", 17 | "Give a description to the commit. Tell more about your changes...": "Dê uma descrição para o commit. Fale mais sobre suas mudanças...", 18 | "Add local git projects to GitPie": "Adicionar projetos git locais ao GitPie", 19 | "Search repositories": "Procurar repositórios", 20 | "COMMIT": "COMMIT", 21 | "CREATING COMMIT...": "CRIANDO COMMIT...", 22 | "Clone URL": "URL de clone", 23 | "cloned": "clonado", 24 | "with success": "com sucesso", 25 | "Destination Folder": "Pasta de destino", 26 | "History": "Histórico", 27 | "Changes": "Mudanças", 28 | "Unsyncronized Changes": "Mudanças não sincronizadas", 29 | "No tags here": "Sem tags aqui", 30 | "No branches here": "Sem branches aqui", 31 | "Search for a tag": "Procure por uma tag", 32 | "Switching to branch": "Mudando para o branch", 33 | "This branch only exits locally": "Esse branch existe apenas localmente", 34 | "Local branches": "Branches locais", 35 | "Switch to branch": "Mudar para o branch", 36 | "Delete this branch": "Deletar esse branch", 37 | "Delete branch": "Deletar branch", 38 | "Merge branches": "Merge branches", 39 | "MERGE": "MERGE", 40 | "MERGING": "APLICANDO MERGE", 41 | "Abort Merge": "Abortar Merge", 42 | "Opening repository": "Abrindo repositório", 43 | "Comparing branches...": "Comparando branches...", 44 | "All the unmerged changes will be lost! Are you sure to delete the branch": "Todas mudanças sem merge serão perdidas! Tem certeza que quer deletar o branch", 45 | "Something wrong happened merging": "Algo errado aconteceu no merge", 46 | "There are conflicts merging": "Há conflitos aplicando merge", 47 | "Resolve them and commit the changes to complete the merge.\n\n If you want, you can abort this merge clicking on \"Abort Merge\"":"Resolva-os e commite as mudanças para completar o merge.\n\n Se você quiser, você pode abortar esse merge clicando em \"Abortar Merge\"", 48 | "Error merging branches": "Erro aplicando merge entre branches", 49 | "Merging branch": "Aplicando merge no branch", 50 | "Ok": "Ok", 51 | "Merge Tool not defined": "Ferramenta de Merge não definida", 52 | "No Merge Tool is globaly or localy defined. You can easily set one by the Setting menu": "Nenhuma Ferramenta de Merge está globalmente ou localmente definida. Você pode facilmente adicionar uma pelo menu Configurações", 53 | "Open Setting menu": "Abrir menu Configurações", 54 | "Maybe later": "Talvez depois", 55 | "The things are the same near here": "As coisas estão na mesma por aqui", 56 | "is up to date with all commits from": "está atualizado com todos os commits de", 57 | "Try choose another branch to compare": "Tente comparar com outro branch", 58 | "MODIFIED": "MODIFICADO", 59 | "NEW": "NOVO", 60 | "ADDED": "ADICIONADO", 61 | "DELETED": "DELETADO", 62 | "BINARY": "BINÁRIO", 63 | "RENAMED": "RENOMEADO", 64 | "UNMERGED": "COM CONFLITO", 65 | "Discart": "Descartar", 66 | "Counting...": "Contando...", 67 | "Remove": "Remover", 68 | "Move to Trash": "Mover para Lixeira", 69 | "Pop": "Pop", 70 | "Publish branch": "Publicar branch", 71 | "Use ours": "Use ours", 72 | "Copy selection": "Copiar seleção", 73 | "Use theirs": "Use theirs", 74 | "Stage file": "Aplicar Stage em arquivo", 75 | "Open merge tool": "Abrir ferramenta de merge", 76 | "CLONING REPOSITORY FROM": "CLONANDO REPOSITÓRIO DE", 77 | "CREATING REPOSITORY IN": "CRIANDO REPOSITÓRIO EM", 78 | "INTO": "DENTRO DE", 79 | "Stash {number} changes": "Aplicar Stash em {number} mudanças", 80 | "Stash list ({number})": "Lista de Stashs ({number})", 81 | "Show in folder": "Mostrar na pasta", 82 | "Assume unchanged": "Assume unchanged", 83 | "Unstage file": "Alplicar Unstage em arquivo", 84 | "Reset branch {branch} to selected commit": "Resetar branch {branch} para o commit selecionado", 85 | "Collapse all": "Contrair todos", 86 | "Expand all": "Expandir todos", 87 | "Discart all selected": "Discartar todos selecionados", 88 | "Close stash tab": "Fechar aba stash", 89 | "View files": "Ver arquivos", 90 | "Files changed": "Arquivos alterados", 91 | "Select or create a new branch": "Selecione ou crie um novo branch", 92 | "Hide menu": "Esconder menu", 93 | "Show menu": "Mostrar menu", 94 | "Create new branch": "Criar novo branch", 95 | "Your repository will be created as": "Seu repositório será criado como", 96 | "Repository name": "Nome do repositório", 97 | "Folder": "Pasta", 98 | "i have no idea": "não faço ideia", 99 | "THE GIT CONFIGURATIONS HAVE BEEN SUCCESSFULLY CHANGED": "AS CONFIGURAÇÕES GIT FORAM ALTERADAS COM SUCESSO", 100 | "It happends with me all the time too. But lets's try find your project again!": "Isso acontece comigo o tempo todo. Mas vamos tentar achar o seu projeto de novo!", 101 | "Start adding, clonning or creating some awesome things": "Comece adicionando, clonando ou criando coisas incríveis", 102 | "Nothing for me here.\n The folder {folder} is not a git project": "Nada pra mim aqui.\n A pasta {folder} não é um projeto git", 103 | "Close": "Fechar", 104 | "It seems that a git username and email are not set globally. You can fix this accessing the Settings menu": "Parece que um usuário e email git não estão definidos globalmente. Você pode corrigir isso acessando o menu de Configurações", 105 | "Filter": "Filtro", 106 | "Filter by": "Filtrar por", 107 | "Search commits": "Buscar commits", 108 | "Search": "Buscar", 109 | "MESSAGE": "Mensagem", 110 | "FILE": "Arquivo", 111 | "AUTHOR": "Autor", 112 | "No match for the filter": "Nenhuma correspondência para o filtro", 113 | "Searching for": "Buscando por", 114 | 115 | "Error counting commits. Error: ": "Erro contando commits. Erro: ", 116 | "Error adding files. Error:": "Erro adicionando arquivos. Erro:", 117 | "Error commiting changes. Error: ": "Error commitando mudanças. Erro: ", 118 | "Error getting more history. Error: ": "Error obtendo histórico. Erro: ", 119 | 120 | "Error switching branch. Error: ": "Erro mudando de branch. Erro: ", 121 | "Error syncronazing repository. \n Error: ": "Erro sincronizando o repositório. \n Erro: ", 122 | "'{cloneURL}' not appears to be a git remote URL. Let's try again!": "'{cloneURL}' não parece ser um remote git URL. Vamos tentar de novo!", 123 | "The path '{path}' is not a folder. Pick a valid directory to clone projects.": "O caminho '{path}' não é uma pasta. Escolha um diretório válido para clonar projetos.", 124 | "The path '{path}' is not a folder. Pick a valid directory to create projects.": "O caminho '{path}' não é uma pasta. Escolha um diretório válido para criar projetos", 125 | "Repository without remote": "Repositório sem remote", 126 | "Add it anyway?": "Adicionar mesmo assim?", 127 | "The repository do not have any remote": "O repositório não tenho nenhum remote", 128 | 129 | "SettingsPage": { 130 | "Preferences": "Preferências", 131 | "Font": "Fonte", 132 | "Username": "Usuário", 133 | "Email": "Email", 134 | "Merge Tool": "Ferramenta de Merge", 135 | "Put here the merge tool name. Ex: meld": "Coloque o nome da ferramenta de merge aqui. Ex: meld", 136 | "GitPie set some defaults configurations to setting up the mergetool. You can change this after": "GitPie seta algumas configurações padrões para a ferramenta de merge. Você pode trocar isso depois", 137 | "See how": "Veja como", 138 | "Repository": "Repositório", 139 | "Using ssh key": "Usando chave ssh", 140 | "About": "Sobre", 141 | "License": "Licença", 142 | "default": "padrão", 143 | "GitPie is distributed under the MIT License": "GitPie é distribuído sob a Licença MIT", 144 | "GitPie is an open source git client that have the goal to be the most simple and nice client for any project and for any people": "GitPie é um client git de código aberto, que tem o objetivo de ser o mais simples e legal client, para qualquer projeto e para qualquer pessoa", 145 | "CHANGE GLOBALS CONFIGURATIONS": "MUDAR CONFIGURAÇÕES GLOBAIS", 146 | "CHANGE {repository} CONFIGURATIONS": "MUDAR CONFIGURAÇÕES DE {repository}", 147 | "Show repositories from": "Mostrar repositórios de", 148 | "Shortcuts list": "Lista de atalhos", 149 | "Hide shortcuts": "Esconder atalhos", 150 | "Show shortcuts": "Mostrar atalhos", 151 | "Open add projects dialog": "Abrir janela para adicionar projetos", 152 | "Toggle developer tools": "Abrir/Fechar developer tools", 153 | "Hide repositories menu": "Esconder menu de repositórios", 154 | "Show repositories menu": "Mostrar menu de repositórios", 155 | "Language": "Idioma", 156 | "Navigate between repositories top to bottom": "Navega entre os repositórios de cima para baixo", 157 | "Navigate between repositories bottom to top": "Navega entre os repositórios de baixo para cima", 158 | "Add focus on the \"Search repositories\" field": "Adiciona foco no campo \"Procurar repositórios\"", 159 | "Close modal windows and header menus": "Fecha janelas modais e menus de cabeçalho", 160 | "Version": "Versão", 161 | "Toogle \"Search Commit\" Block": "Abrir/Fechar bloco de busca de commits" 162 | }, 163 | 164 | "Authentication required": "Autenticação requerida", 165 | "You're trying to make changes into a https remote": "Você está tentando fazer mudanças em um remote https", 166 | "and a username and password are required. Please type it and let us publish your changes LOL": "e um usuário e senha são requeridos. Por favor, digite eles e deixe-nos publicar suas mudanças LOL", 167 | "Password": "Senha", 168 | "SUBMIT": "SUBMETER", 169 | "CANCEL": "CANCELAR" 170 | } 171 | -------------------------------------------------------------------------------- /libraries/google-code-prettify/run_prettify.min.js: -------------------------------------------------------------------------------- 1 | var DecorationsT,JobT,SourceSpansT,IN_GLOBAL_SCOPE=!1;!function(){"use strict";function e(e){var n=s.addEventListener,t=!1,r=!0,l=n?"addEventListener":"attachEvent",i=n?"removeEventListener":"detachEvent",u=n?"":"on",c=function(n){("readystatechange"!=n.type||"complete"==s.readyState)&&(("load"==n.type?a:s)[i](u+n.type,c,!1),!t&&(t=!0)&&e.call(a,n.type||n))},d=function(){try{o.doScroll("left")}catch(e){return void a.setTimeout(d,50)}c("poll")};if("complete"==s.readyState)e.call(a,"lazy");else{if(s.createEventObject&&o.doScroll){try{r=!a.frameElement}catch(p){}r&&d()}s[l](u+"DOMContentLoaded",c,!1),s[l](u+"readystatechange",c,!1),a[l](u+"load",c,!1)}}function n(e){function n(r){if(r!==t){var a=s.createElement("link");a.rel="stylesheet",a.type="text/css",t>r+1&&(a.error=a.onerror=function(){n(r+1)}),a.href=e[r],l.appendChild(a)}}var t=e.length;n(0)}function t(){b||a.setTimeout(r,0)}function r(){f&&e(function(){var e=m.length,n=e?function(){for(var n=0;e>n;++n)!function(e){a.setTimeout(function(){a.exports[m[e]].apply(a,arguments)},0)}(n)}:void 0;w(n)})}for(var a=window,s=document,o=s.documentElement,l=s.head||s.getElementsByTagName("head")[0]||o,i="",u=s.getElementsByTagName("script"),c=u.length;--c>=0;){var d=u[c],p=d.src.match(/^[^?#]*\/run_prettify\.js(\?[^#]*)?(?:#.*)?$/);if(p){i=p[1]||"",d.parentNode.removeChild(d);break}}var f=!0,h=[],g=[],m=[];i.replace(/[?&]([^&=]+)=([^&]+)/g,function(e,n,t){t=decodeURIComponent(t),n=decodeURIComponent(n),"autorun"==n?f=!/^[0fn]/i.test(t):"lang"==n?h.push(t):"skin"==n?g.push(t):"callback"==n&&m.push(t)});for(var v="https://cdn.rawgit.com/google/code-prettify/master/loader",c=0,y=h.length;y>c;++c)(function(e){var n=s.createElement("script");n.onload=n.onerror=n.onreadystatechange=function(){!n||n.readyState&&!/loaded|complete/.test(n.readyState)||(n.onerror=n.onload=n.onreadystatechange=null,--b,t(),n.parentNode&&n.parentNode.removeChild(n),n=null)},n.type="text/javascript",n.src=v+"/lang-"+encodeURIComponent(h[c])+".js",l.insertBefore(n,l.firstChild)})(h[c]);for(var b=h.length,x=[],c=0,y=g.length;y>c;++c)x.push(v+"/skins/"+encodeURIComponent(g[c])+".css");x.push(v+"/prettify.css"),n(x);var w=function(){window.PR_SHOULD_USE_CONTINUATION=!0;var e,n;return function(){function t(e){function n(e){var n=e.charCodeAt(0);if(92!==n)return n;var t=e.charAt(1);return n=d[t],n?n:t>="0"&&"7">=t?parseInt(e.substring(1),8):"u"===t||"x"===t?parseInt(e.substring(2),16):e.charCodeAt(1)}function t(e){if(32>e)return(16>e?"\\x0":"\\x")+e.toString(16);var n=String.fromCharCode(e);return"\\"===n||"-"===n||"]"===n||"^"===n?"\\"+n:n}function r(e){var r=e.substring(1,e.length-1).match(new RegExp("\\\\u[0-9A-Fa-f]{4}|\\\\x[0-9A-Fa-f]{2}|\\\\[0-3][0-7]{0,2}|\\\\[0-7]{1,2}|\\\\[\\s\\S]|-|[^-\\\\]","g")),a=[],s="^"===r[0],o=["["];s&&o.push("^");for(var l=s?1:0,i=r.length;i>l;++l){var u=r[l];if(/\\[bdsw]/i.test(u))o.push(u);else{var c,d=n(u);i>l+2&&"-"===r[l+1]?(c=n(r[l+2]),l+=2):c=d,a.push([d,c]),65>c||d>122||(65>c||d>90||a.push([32|Math.max(65,d),32|Math.min(c,90)]),97>c||d>122||a.push([-33&Math.max(97,d),-33&Math.min(c,122)]))}}a.sort(function(e,n){return e[0]-n[0]||n[1]-e[1]});for(var p=[],f=[],l=0;lh[0]&&(h[1]+1>h[0]&&o.push("-"),o.push(t(h[1])))}return o.push("]"),o.join("")}function a(e){for(var n=e.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g")),a=n.length,l=[],i=0,u=0;a>i;++i){var c=n[i];if("("===c)++u;else if("\\"===c.charAt(0)){var d=+c.substring(1);d&&(u>=d?l[d]=-1:n[i]=t(d))}}for(var i=1;ii;++i){var c=n[i];if("("===c)++u,l[u]||(n[i]="(?:");else if("\\"===c.charAt(0)){var d=+c.substring(1);d&&u>=d&&(n[i]="\\"+l[d])}}for(var i=0;a>i;++i)"^"===n[i]&&"^"!==n[i+1]&&(n[i]="");if(e.ignoreCase&&o)for(var i=0;a>i;++i){var c=n[i],p=c.charAt(0);c.length>=2&&"["===p?n[i]=r(c):"\\"!==p&&(n[i]=c.replace(/[a-zA-Z]/g,function(e){var n=e.charCodeAt(0);return"["+String.fromCharCode(-33&n,32|n)+"]"}))}return n.join("")}for(var s=0,o=!1,l=!1,i=0,u=e.length;u>i;++i){var c=e[i];if(c.ignoreCase)l=!0;else if(/[a-z]/i.test(c.source.replace(/\\u[0-9a-f]{4}|\\x[0-9a-f]{2}|\\[^ux]/gi,""))){o=!0,l=!1;break}}for(var d={b:8,t:9,n:10,v:11,f:12,r:13},p=[],i=0,u=e.length;u>i;++i){var c=e[i];if(c.global||c.multiline)throw new Error(""+c);p.push("(?:"+a(c)+")")}return new RegExp(p.join("|"),l?"gi":"g")}function r(e,n){function t(e){var i=e.nodeType;if(1==i){if(r.test(e.className))return;for(var u=e.firstChild;u;u=u.nextSibling)t(u);var c=e.nodeName.toLowerCase();("br"===c||"li"===c)&&(a[l]="\n",o[l<<1]=s++,o[l++<<1|1]=e)}else if(3==i||4==i){var d=e.nodeValue;d.length&&(d=n?d.replace(/\r\n?/g,"\n"):d.replace(/[ \t\r\n]+/g," "),a[l]=d,o[l<<1]=s,s+=d.length,o[l++<<1|1]=e)}}var r=/(?:^|\s)nocode(?:\s|$)/,a=[],s=0,o=[],l=0;return t(e),{sourceCode:a.join("").replace(/\n$/,""),spans:o}}function a(e,n,t,r,a){if(t){var s={sourceNode:e,pre:1,langExtension:null,numberLines:null,sourceCode:t,spans:null,basePos:n,decorations:null};r(s),a.push.apply(a,s.decorations)}}function s(e){for(var n=void 0,t=e.firstChild;t;t=t.nextSibling){var r=t.nodeType;n=1===r?n?e:t:3===r&&F.test(t.nodeValue)?e:n}return n===e?void 0:n}function o(e,n){var r,s={};!function(){for(var a=e.concat(n),o=[],l={},i=0,u=a.length;u>i;++i){var c=a[i],d=c[3];if(d)for(var p=d.length;--p>=0;)s[d.charAt(p)]=c;var f=c[1],h=""+f;l.hasOwnProperty(h)||(o.push(f),l[h]=null)}o.push(/[\0-\uffff]/),r=t(o)}();var o=n.length,l=function(e){for(var t=e.sourceCode,i=e.basePos,u=e.sourceNode,c=[i,D],p=0,f=t.match(r)||[],h={},g=0,m=f.length;m>g;++g){var v,y=f[g],b=h[y],x=void 0;if("string"==typeof b)v=!1;else{var w=s[y.charAt(0)];if(w)x=y.match(w[1]),b=w[0];else{for(var C=0;o>C;++C)if(w=n[C],x=y.match(w[1])){b=w[0];break}x||(b=D)}v=b.length>=5&&"lang-"===b.substring(0,5),!v||x&&"string"==typeof x[1]||(v=!1,b=B),v||(h[y]=b)}var S=p;if(p+=y.length,v){var N=x[1],E=y.indexOf(N),_=E+N.length;x[2]&&(_=y.length-x[2].length,E=_-N.length);var L=b.substring(5);a(u,i+S,y.substring(0,E),l,c),a(u,i+S+E,N,d(L,N),c),a(u,i+S+_,y.substring(_),l,c)}else c.push(i+S,b)}e.decorations=c};return l}function l(e){var n=[],t=[];e.tripleQuotedStrings?n.push([P,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""]):e.multiLineStrings?n.push([P,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"]):n.push([P,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"]),e.verbatimStrings&&t.push([P,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null]);var r=e.hashComments;r&&(e.cStyleComments?(r>1?n.push([A,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"]):n.push([A,/^#(?:(?:define|e(?:l|nd)if|else|error|ifn?def|include|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"]),t.push([P,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h(?:h|pp|\+\+)?|[a-z]\w*)>/,null])):n.push([A,/^#[^\r\n]*/,null,"#"])),e.cStyleComments&&(t.push([A,/^\/\/[^\r\n]*/,null]),t.push([A,/^\/\*[\s\S]*?(?:\*\/|$)/,null]));var a=e.regexLiterals;if(a){var s=a>1?"":"\n\r",l=s?".":"[\\S\\s]",i="/(?=[^/*"+s+"])(?:[^/\\x5B\\x5C"+s+"]|\\x5C"+l+"|\\x5B(?:[^\\x5C\\x5D"+s+"]|\\x5C"+l+")*(?:\\x5D|$))+/";t.push(["lang-regex",RegExp("^"+G+"("+i+")")])}var u=e.types;u&&t.push([$,u]);var c=(""+e.keywords).replace(/^ | $/g,"");c.length&&t.push([R,new RegExp("^(?:"+c.replace(/[\s,]+/g,"|")+")\\b"),null]),n.push([D,/^\s+/,null," \r\n  "]);var d="^.[^\\s\\w.$@'\"`/\\\\]*";return e.regexLiterals&&(d+="(?!s*/)"),t.push([O,/^@[a-z_$][a-z_$@0-9]*/i,null],[$,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[D,/^[a-z_$][a-z_$@0-9]*/i,null],[O,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[D,/^\\[\s\S]?/,null],[I,new RegExp(d),null]),o(n,t)}function i(e,n,t){function r(e){var n=e.nodeType;if(1!=n||s.test(e.className)){if((3==n||4==n)&&t){var i=e.nodeValue,u=i.match(o);if(u){var c=i.substring(0,u.index);e.nodeValue=c;var d=i.substring(u.index+u[0].length);if(d){var p=e.parentNode;p.insertBefore(l.createTextNode(d),e.nextSibling)}a(e),c||e.parentNode.removeChild(e)}}}else if("br"===e.nodeName)a(e),e.parentNode&&e.parentNode.removeChild(e);else for(var f=e.firstChild;f;f=f.nextSibling)r(f)}function a(e){function n(e,t){var r=t?e.cloneNode(!1):e,a=e.parentNode;if(a){var s=n(a,1),o=e.nextSibling;s.appendChild(r);for(var l=o;l;l=o)o=l.nextSibling,s.appendChild(l)}return r}for(;!e.nextSibling;)if(e=e.parentNode,!e)return;for(var t,r=n(e.nextSibling,0);(t=r.parentNode)&&1===t.nodeType;)r=t;u.push(r)}for(var s=/(?:^|\s)nocode(?:\s|$)/,o=/\r\n?|\n/,l=e.ownerDocument,i=l.createElement("li");e.firstChild;)i.appendChild(e.firstChild);for(var u=[i],c=0;cc;++c)i=u[c],i.className="L"+(c+p)%10,i.firstChild||i.appendChild(l.createTextNode(" ")),d.appendChild(i);e.appendChild(d)}function u(e){var n=/\bMSIE\s(\d+)/.exec(navigator.userAgent);n=n&&+n[1]<=8;var t=/\n/g,r=e.sourceCode,a=r.length,s=0,o=e.spans,l=o.length,i=0,u=e.decorations,c=u.length,d=0;u[c]=a;var p,f;for(f=p=0;c>f;)u[f]!==u[f+2]?(u[p++]=u[f++],u[p++]=u[f++]):f+=2;for(c=p,f=p=0;c>f;){for(var h=u[f],g=u[f+1],m=f+2;c>=m+2&&u[m+1]===g;)m+=2;u[p++]=h,u[p++]=g,f=m}c=u.length=p;var v=e.sourceNode,y="";v&&(y=v.style.display,v.style.display="none");try{for(;l>i;){var b,x=(o[i],o[i+2]||a),w=u[d+2]||a,m=Math.min(x,w),C=o[i+1];if(1!==C.nodeType&&(b=r.substring(s,m))){n&&(b=b.replace(t,"\r")),C.nodeValue=b;var S=C.ownerDocument,N=S.createElement("span");N.className=u[d+1];var E=C.parentNode;E.replaceChild(N,C),N.appendChild(C),x>s&&(o[i+1]=C=S.createTextNode(r.substring(m,x)),E.insertBefore(C,N.nextSibling))}s=m,s>=x&&(i+=2),s>=w&&(d+=2)}}finally{v&&(v.style.display=y)}}function c(e,n){for(var t=n.length;--t>=0;){var r=n[t];q.hasOwnProperty(r)?g.console&&console.warn("cannot override language handler %s",r):q[r]=e}}function d(e,n){return e&&q.hasOwnProperty(e)||(e=/^\s*"+e+"",s=s.firstChild,r&&i(s,r,!0);var o={langExtension:a,numberLines:r,sourceNode:s,pre:1,sourceCode:null,basePos:null,spans:null,decorations:null};return p(o),s.innerHTML}function h(e,n){function t(e){return a.getElementsByTagName(e)}function r(){for(var n=g.PR_SHOULD_USE_CONTINUATION?h.now()+250:1/0;md;++d)u.push(l[c][d]);l=null;var h=Date;h.now||(h={now:function(){return+new Date}});var m=0,v=/\blang(?:uage)?-([\w.]+)(?!\S)/,y=/\bprettyprint\b/,b=/\bprettyprinted\b/,x=/pre|xmp/i,w=/^code$/i,C=/^(?:pre|code|xmp)$/i,S={};r()}var g=window,m=["break,continue,do,else,for,if,return,while"],v=[m,"auto,case,char,const,default,double,enum,extern,float,goto,inline,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],y=[v,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],b=[y,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,delegate,dynamic_cast,explicit,export,friend,generic,late_check,mutable,namespace,nullptr,property,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],x=[y,"abstract,assert,boolean,byte,extends,finally,final,implements,import,instanceof,interface,null,native,package,strictfp,super,synchronized,throws,transient"],w=[y,"abstract,as,async,await,base,bool,by,byte,checked,decimal,delegate,descending,dynamic,event,finally,fixed,foreach,from,group,implicit,in,interface,internal,into,is,let,lock,null,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var,virtual,where"],C="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,throw,true,try,unless,until,when,while,yes",S=[y,"debugger,eval,export,function,get,instanceof,null,set,undefined,var,with,Infinity,NaN,document,window"],N="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",E=[m,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],_=[m,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],L=[m,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],T=[b,w,x,S,N,E,_,L],k=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)\b/,P="str",R="kwd",A="com",$="typ",O="lit",I="pun",D="pln",j="tag",z="dec",B="src",M="atn",U="atv",V="nocode",G="(?:^^\\.?|[+-]|[!=]=?=?|\\#|%=?|&&?=?|\\(|\\*=?|[+\\-]=|->|\\/=?|::?|<>?>?=?|,|;|\\?|@|\\[|~|{|\\^\\^?=?|\\|\\|?=?|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*",F=/\S/,H=l({keywords:T,hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),q={};c(H,["default-code"]),c(o([],[[D,/^[^]*(?:>|$)/],[A,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[I,/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]),c(o([[D,/^[\s]+/,null," \r\n"],[U,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,"\"'"]],[[j,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[M,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[I,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]),c(o([],[[U,/^[\s\S]+/]]),["uq.val"]),c(l({keywords:b,hashComments:!0,cStyleComments:!0,types:k}),["c","cc","cpp","cxx","cyc","m"]),c(l({keywords:"null,true,false"}),["json"]),c(l({keywords:w,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:k}),["cs"]),c(l({keywords:x,cStyleComments:!0}),["java"]),c(l({keywords:L,hashComments:!0,multiLineStrings:!0}),["bash","bsh","csh","sh"]),c(l({keywords:E,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),["cv","py","python"]),c(l({keywords:N,hashComments:!0,multiLineStrings:!0,regexLiterals:2}),["perl","pl","pm"]),c(l({keywords:_,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb","ruby"]),c(l({keywords:S,cStyleComments:!0,regexLiterals:!0}),["javascript","js"]),c(l({keywords:C,hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]),c(o([],[[P,/^[\s\S]+/]]),["regex"]);var Q=g.PR={createSimpleLexer:o,registerLangHandler:c,sourceDecorator:l,PR_ATTRIB_NAME:M,PR_ATTRIB_VALUE:U,PR_COMMENT:A,PR_DECLARATION:z,PR_KEYWORD:R,PR_LITERAL:O,PR_NOCODE:V,PR_PLAIN:D,PR_PUNCTUATION:I,PR_SOURCE:B,PR_STRING:P,PR_TAG:j,PR_TYPE:$,prettyPrintOne:IN_GLOBAL_SCOPE?g.prettyPrintOne=f:e=f,prettyPrint:n=IN_GLOBAL_SCOPE?g.prettyPrint=h:n=h},Z=g.define;"function"==typeof Z&&Z.amd&&Z("google-code-prettify",[],function(){return Q})}(),n}();t()}(); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "GitPie", 3 | "version": "0.6.0", 4 | "description": "A Multiplatform Client for Git", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "npm run lint && gulp sass", 8 | "start": "gulp sass && electron .", 9 | "dev": "gulp dev", 10 | "lint": "jshint app/** Gulpfile.js index.js", 11 | "build": "gulp build", 12 | "build:linux32": "gulp build:linux32", 13 | "build:linux64": "gulp build:linux64", 14 | "build:osx64": "gulp build:osx64", 15 | "build:win32": "gulp build:win32", 16 | "build:win64": "gulp build:win64", 17 | "linux32": "npm run build:linux32 && ./build/linux/32bit/GitPie-linux-ia32/GitPie", 18 | "linux64": "npm run build:linux64 && ./build/linux/64bit/GitPie-linux-x64/GitPie", 19 | "osx64": "npm run build:osx64 && ./build/osx/64bit/GitPie-darwin-x64/GitPie.app", 20 | "win32": "npm run build:win32 && build\\windows\\32bit\\GitPie-win32-ia32\\GitPie.exe", 21 | "win64": "npm run build:win64 && build\\windows\\64bit\\GitPie-win32-x64\\GitPie.exe", 22 | "pack": "gulp pack", 23 | "pack:win64": "gulp pack:win64", 24 | "pack:win32": "gulp pack:win32", 25 | "pack:linux64": "gulp pack:linux64", 26 | "pack:linux32": "gulp pack:linux32", 27 | "pack:osx64": "gulp pack:osx64" 28 | }, 29 | "repository": { 30 | "type": "git", 31 | "url": "https://github.com/mapaiva/GitPie.git" 32 | }, 33 | "keywords": [ 34 | "GitHub", 35 | "BitBucket", 36 | "Git", 37 | "Client", 38 | "Linux", 39 | "Windows", 40 | "Mac", 41 | "GUI" 42 | ], 43 | "author": "Matheus Paiva", 44 | "license": "MIT", 45 | "bugs": { 46 | "url": "https://github.com/mapaiva/GitPie/issues" 47 | }, 48 | "homepage": "https://github.com/mapaiva/GitPie", 49 | "devDependencies": { 50 | "electron-builder": "^2.6.0", 51 | "electron-packager": "^5.2.1", 52 | "electron-prebuilt": "^0.36.7", 53 | "gitpie-util": "^0.1.0", 54 | "gulp": "^3.9.0", 55 | "gulp-sass": "^2.1.1", 56 | "jshint": "^2.9.1", 57 | "tar.gz": "^1.0.0" 58 | }, 59 | "dependencies": { 60 | "electronify": "^1.3.1", 61 | "fs-extra": "^0.26.2", 62 | "git-url-parse": "^5.0.1", 63 | "node-wos": "^0.2.3" 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /resources/fonts/Consolas/Consolas.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Consolas/Consolas.ttf -------------------------------------------------------------------------------- /resources/fonts/Consolas/consolas.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Consolas'; 3 | src: url('Consolas.ttf') format('truetype'); 4 | font-weight: normal; 5 | font-style: normal; 6 | } 7 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fonticons (https://fonticons.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/FontAwesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/FontAwesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/FontAwesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/FontAwesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/FontAwesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | .fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | .fa-icon-rotate(@degrees, @rotation) { 15 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation); 16 | -webkit-transform: rotate(@degrees); 17 | -ms-transform: rotate(@degrees); 18 | transform: rotate(@degrees); 19 | } 20 | 21 | .fa-icon-flip(@horiz, @vert, @rotation) { 22 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1); 23 | -webkit-transform: scale(@horiz, @vert); 24 | -ms-transform: scale(@horiz, @vert); 25 | transform: scale(@horiz, @vert); 26 | } 27 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | @mixin fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | @mixin fa-icon-rotate($degrees, $rotation) { 15 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); 16 | -webkit-transform: rotate($degrees); 17 | -ms-transform: rotate($degrees); 18 | transform: rotate($degrees); 19 | } 20 | 21 | @mixin fa-icon-flip($horiz, $vert, $rotation) { 22 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); 23 | -webkit-transform: scale($horiz, $vert); 24 | -ms-transform: scale($horiz, $vert); 25 | transform: scale($horiz, $vert); 26 | } 27 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /resources/fonts/FontAwesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /resources/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /resources/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto/roboto.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Include Roboto font in your project 3 | * 4 | * Download Roboto ttf files from Google Fonts and place it in the same directory of this CSS file 5 | * You can then use this font in your project by setting 6 | * font-face: "Roboto", Helvetica, Arial, sans-serif; 7 | * 8 | * @author Mattia Migliorini (deshack) 9 | * @license MIT 10 | */ 11 | 12 | /* Light */ 13 | @font-face { 14 | font-family: "Roboto"; 15 | font-style: normal; 16 | font-weight: 300; 17 | src: local('Roboto Light'), local('Roboto-Light'), url("Roboto-Light.ttf") format('truetype'); 18 | } 19 | @font-face { 20 | font-family: "Roboto"; 21 | font-style: italic; 22 | font-weight: 300; 23 | src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("Roboto-LightItalic.ttf") format('truetype'); 24 | } 25 | 26 | /* Normal */ 27 | @font-face { 28 | font-family: "Roboto"; 29 | font-style: normal; 30 | font-weight: 400; 31 | src: local('Roboto Regular'), local('Roboto-Regular'), url("Roboto-Regular.ttf") format('truetype'); 32 | } 33 | @font-face { 34 | font-family: "Roboto"; 35 | font-style: italic; 36 | font-weight: 400; 37 | src: local('Roboto Italic'), local('Roboto-Italic'), url("Roboto-Italic.ttf") format('truetype'); 38 | } 39 | 40 | /* Bold */ 41 | @font-face { 42 | font-family: "Roboto"; 43 | font-style: normal; 44 | font-weight: 700; 45 | src: local('Roboto Bold'), local('Roboto-Bold'), url("Roboto-Bold.ttf") format('truetype'); 46 | } 47 | @font-face { 48 | font-family: "Roboto"; 49 | font-style: italic; 50 | font-weight: 700; 51 | src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'), url("Roboto-BoldItalic.ttf") format('truetype'); 52 | } 53 | -------------------------------------------------------------------------------- /resources/fonts/octicons/LICENSE.txt: -------------------------------------------------------------------------------- 1 | (c) 2012-2015 GitHub 2 | 3 | When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos) 4 | 5 | Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL) 6 | Applies to all font files 7 | 8 | Code License: MIT (http://choosealicense.com/licenses/mit/) 9 | Applies to all other files 10 | -------------------------------------------------------------------------------- /resources/fonts/octicons/README.md: -------------------------------------------------------------------------------- 1 | If you intend to install Octicons locally, install `octicons-local.ttf`. It should appear as “github-octicons” in your font list. It is specially designed not to conflict with GitHub's web fonts. 2 | -------------------------------------------------------------------------------- /resources/fonts/octicons/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/octicons/octicons-local.ttf -------------------------------------------------------------------------------- /resources/fonts/octicons/octicons.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'octicons'; 3 | src: url('octicons.eot?#iefix') format('embedded-opentype'), 4 | url('octicons.woff') format('woff'), 5 | url('octicons.ttf') format('truetype'), 6 | url('octicons.svg#octicons') format('svg'); 7 | font-weight: normal; 8 | font-style: normal; 9 | } 10 | 11 | /* 12 | 13 | .octicon is optimized for 16px. 14 | .mega-octicon is optimized for 32px but can be used larger. 15 | 16 | */ 17 | .octicon, .mega-octicon { 18 | font: normal normal normal 16px/1 octicons; 19 | display: inline-block; 20 | text-decoration: none; 21 | text-rendering: auto; 22 | -webkit-font-smoothing: antialiased; 23 | -moz-osx-font-smoothing: grayscale; 24 | -webkit-user-select: none; 25 | -moz-user-select: none; 26 | -ms-user-select: none; 27 | user-select: none; 28 | } 29 | .mega-octicon { font-size: 32px; } 30 | 31 | .octicon-alert:before { content: '\f02d'} /*  */ 32 | .octicon-alignment-align:before { content: '\f08a'} /*  */ 33 | .octicon-alignment-aligned-to:before { content: '\f08e'} /*  */ 34 | .octicon-alignment-unalign:before { content: '\f08b'} /*  */ 35 | .octicon-arrow-down:before { content: '\f03f'} /*  */ 36 | .octicon-arrow-left:before { content: '\f040'} /*  */ 37 | .octicon-arrow-right:before { content: '\f03e'} /*  */ 38 | .octicon-arrow-small-down:before { content: '\f0a0'} /*  */ 39 | .octicon-arrow-small-left:before { content: '\f0a1'} /*  */ 40 | .octicon-arrow-small-right:before { content: '\f071'} /*  */ 41 | .octicon-arrow-small-up:before { content: '\f09f'} /*  */ 42 | .octicon-arrow-up:before { content: '\f03d'} /*  */ 43 | .octicon-beer:before { content: '\f069'} /*  */ 44 | .octicon-book:before { content: '\f007'} /*  */ 45 | .octicon-bookmark:before { content: '\f07b'} /*  */ 46 | .octicon-briefcase:before { content: '\f0d3'} /*  */ 47 | .octicon-broadcast:before { content: '\f048'} /*  */ 48 | .octicon-browser:before { content: '\f0c5'} /*  */ 49 | .octicon-bug:before { content: '\f091'} /*  */ 50 | .octicon-calendar:before { content: '\f068'} /*  */ 51 | .octicon-check:before { content: '\f03a'} /*  */ 52 | .octicon-checklist:before { content: '\f076'} /*  */ 53 | .octicon-chevron-down:before { content: '\f0a3'} /*  */ 54 | .octicon-chevron-left:before { content: '\f0a4'} /*  */ 55 | .octicon-chevron-right:before { content: '\f078'} /*  */ 56 | .octicon-chevron-up:before { content: '\f0a2'} /*  */ 57 | .octicon-circle-slash:before { content: '\f084'} /*  */ 58 | .octicon-circuit-board:before { content: '\f0d6'} /*  */ 59 | .octicon-clippy:before { content: '\f035'} /*  */ 60 | .octicon-clock:before { content: '\f046'} /*  */ 61 | .octicon-cloud-download:before { content: '\f00b'} /*  */ 62 | .octicon-cloud-upload:before { content: '\f00c'} /*  */ 63 | .octicon-code:before { content: '\f05f'} /*  */ 64 | .octicon-color-mode:before { content: '\f065'} /*  */ 65 | .octicon-comment-add:before, 66 | .octicon-comment:before { content: '\f02b'} /*  */ 67 | .octicon-comment-discussion:before { content: '\f04f'} /*  */ 68 | .octicon-credit-card:before { content: '\f045'} /*  */ 69 | .octicon-dash:before { content: '\f0ca'} /*  */ 70 | .octicon-dashboard:before { content: '\f07d'} /*  */ 71 | .octicon-database:before { content: '\f096'} /*  */ 72 | .octicon-device-camera:before { content: '\f056'} /*  */ 73 | .octicon-device-camera-video:before { content: '\f057'} /*  */ 74 | .octicon-device-desktop:before { content: '\f27c'} /*  */ 75 | .octicon-device-mobile:before { content: '\f038'} /*  */ 76 | .octicon-diff:before { content: '\f04d'} /*  */ 77 | .octicon-diff-added:before { content: '\f06b'} /*  */ 78 | .octicon-diff-ignored:before { content: '\f099'} /*  */ 79 | .octicon-diff-modified:before { content: '\f06d'} /*  */ 80 | .octicon-diff-removed:before { content: '\f06c'} /*  */ 81 | .octicon-diff-renamed:before { content: '\f06e'} /*  */ 82 | .octicon-ellipsis:before { content: '\f09a'} /*  */ 83 | .octicon-eye-unwatch:before, 84 | .octicon-eye-watch:before, 85 | .octicon-eye:before { content: '\f04e'} /*  */ 86 | .octicon-file-binary:before { content: '\f094'} /*  */ 87 | .octicon-file-code:before { content: '\f010'} /*  */ 88 | .octicon-file-directory:before { content: '\f016'} /*  */ 89 | .octicon-file-media:before { content: '\f012'} /*  */ 90 | .octicon-file-pdf:before { content: '\f014'} /*  */ 91 | .octicon-file-submodule:before { content: '\f017'} /*  */ 92 | .octicon-file-symlink-directory:before { content: '\f0b1'} /*  */ 93 | .octicon-file-symlink-file:before { content: '\f0b0'} /*  */ 94 | .octicon-file-text:before { content: '\f011'} /*  */ 95 | .octicon-file-zip:before { content: '\f013'} /*  */ 96 | .octicon-flame:before { content: '\f0d2'} /*  */ 97 | .octicon-fold:before { content: '\f0cc'} /*  */ 98 | .octicon-gear:before { content: '\f02f'} /*  */ 99 | .octicon-gift:before { content: '\f042'} /*  */ 100 | .octicon-gist:before { content: '\f00e'} /*  */ 101 | .octicon-gist-secret:before { content: '\f08c'} /*  */ 102 | .octicon-git-branch-create:before, 103 | .octicon-git-branch-delete:before, 104 | .octicon-git-branch:before { content: '\f020'} /*  */ 105 | .octicon-git-commit:before { content: '\f01f'} /*  */ 106 | .octicon-git-compare:before { content: '\f0ac'} /*  */ 107 | .octicon-git-merge:before { content: '\f023'} /*  */ 108 | .octicon-git-pull-request-abandoned:before, 109 | .octicon-git-pull-request:before { content: '\f009'} /*  */ 110 | .octicon-globe:before { content: '\f0b6'} /*  */ 111 | .octicon-graph:before { content: '\f043'} /*  */ 112 | .octicon-heart:before { content: '\2665'} /* ♥ */ 113 | .octicon-history:before { content: '\f07e'} /*  */ 114 | .octicon-home:before { content: '\f08d'} /*  */ 115 | .octicon-horizontal-rule:before { content: '\f070'} /*  */ 116 | .octicon-hourglass:before { content: '\f09e'} /*  */ 117 | .octicon-hubot:before { content: '\f09d'} /*  */ 118 | .octicon-inbox:before { content: '\f0cf'} /*  */ 119 | .octicon-info:before { content: '\f059'} /*  */ 120 | .octicon-issue-closed:before { content: '\f028'} /*  */ 121 | .octicon-issue-opened:before { content: '\f026'} /*  */ 122 | .octicon-issue-reopened:before { content: '\f027'} /*  */ 123 | .octicon-jersey:before { content: '\f019'} /*  */ 124 | .octicon-jump-down:before { content: '\f072'} /*  */ 125 | .octicon-jump-left:before { content: '\f0a5'} /*  */ 126 | .octicon-jump-right:before { content: '\f0a6'} /*  */ 127 | .octicon-jump-up:before { content: '\f073'} /*  */ 128 | .octicon-key:before { content: '\f049'} /*  */ 129 | .octicon-keyboard:before { content: '\f00d'} /*  */ 130 | .octicon-law:before { content: '\f0d8'} /*  */ 131 | .octicon-light-bulb:before { content: '\f000'} /*  */ 132 | .octicon-link:before { content: '\f05c'} /*  */ 133 | .octicon-link-external:before { content: '\f07f'} /*  */ 134 | .octicon-list-ordered:before { content: '\f062'} /*  */ 135 | .octicon-list-unordered:before { content: '\f061'} /*  */ 136 | .octicon-location:before { content: '\f060'} /*  */ 137 | .octicon-gist-private:before, 138 | .octicon-mirror-private:before, 139 | .octicon-git-fork-private:before, 140 | .octicon-lock:before { content: '\f06a'} /*  */ 141 | .octicon-logo-github:before { content: '\f092'} /*  */ 142 | .octicon-mail:before { content: '\f03b'} /*  */ 143 | .octicon-mail-read:before { content: '\f03c'} /*  */ 144 | .octicon-mail-reply:before { content: '\f051'} /*  */ 145 | .octicon-mark-github:before { content: '\f00a'} /*  */ 146 | .octicon-markdown:before { content: '\f0c9'} /*  */ 147 | .octicon-megaphone:before { content: '\f077'} /*  */ 148 | .octicon-mention:before { content: '\f0be'} /*  */ 149 | .octicon-microscope:before { content: '\f089'} /*  */ 150 | .octicon-milestone:before { content: '\f075'} /*  */ 151 | .octicon-mirror-public:before, 152 | .octicon-mirror:before { content: '\f024'} /*  */ 153 | .octicon-mortar-board:before { content: '\f0d7'} /*  */ 154 | .octicon-move-down:before { content: '\f0a8'} /*  */ 155 | .octicon-move-left:before { content: '\f074'} /*  */ 156 | .octicon-move-right:before { content: '\f0a9'} /*  */ 157 | .octicon-move-up:before { content: '\f0a7'} /*  */ 158 | .octicon-mute:before { content: '\f080'} /*  */ 159 | .octicon-no-newline:before { content: '\f09c'} /*  */ 160 | .octicon-octoface:before { content: '\f008'} /*  */ 161 | .octicon-organization:before { content: '\f037'} /*  */ 162 | .octicon-package:before { content: '\f0c4'} /*  */ 163 | .octicon-paintcan:before { content: '\f0d1'} /*  */ 164 | .octicon-pencil:before { content: '\f058'} /*  */ 165 | .octicon-person-add:before, 166 | .octicon-person-follow:before, 167 | .octicon-person:before { content: '\f018'} /*  */ 168 | .octicon-pin:before { content: '\f041'} /*  */ 169 | .octicon-playback-fast-forward:before { content: '\f0bd'} /*  */ 170 | .octicon-playback-pause:before { content: '\f0bb'} /*  */ 171 | .octicon-playback-play:before { content: '\f0bf'} /*  */ 172 | .octicon-playback-rewind:before { content: '\f0bc'} /*  */ 173 | .octicon-plug:before { content: '\f0d4'} /*  */ 174 | .octicon-repo-create:before, 175 | .octicon-gist-new:before, 176 | .octicon-file-directory-create:before, 177 | .octicon-file-add:before, 178 | .octicon-plus:before { content: '\f05d'} /*  */ 179 | .octicon-podium:before { content: '\f0af'} /*  */ 180 | .octicon-primitive-dot:before { content: '\f052'} /*  */ 181 | .octicon-primitive-square:before { content: '\f053'} /*  */ 182 | .octicon-pulse:before { content: '\f085'} /*  */ 183 | .octicon-puzzle:before { content: '\f0c0'} /*  */ 184 | .octicon-question:before { content: '\f02c'} /*  */ 185 | .octicon-quote:before { content: '\f063'} /*  */ 186 | .octicon-radio-tower:before { content: '\f030'} /*  */ 187 | .octicon-repo-delete:before, 188 | .octicon-repo:before { content: '\f001'} /*  */ 189 | .octicon-repo-clone:before { content: '\f04c'} /*  */ 190 | .octicon-repo-force-push:before { content: '\f04a'} /*  */ 191 | .octicon-gist-fork:before, 192 | .octicon-repo-forked:before { content: '\f002'} /*  */ 193 | .octicon-repo-pull:before { content: '\f006'} /*  */ 194 | .octicon-repo-push:before { content: '\f005'} /*  */ 195 | .octicon-rocket:before { content: '\f033'} /*  */ 196 | .octicon-rss:before { content: '\f034'} /*  */ 197 | .octicon-ruby:before { content: '\f047'} /*  */ 198 | .octicon-screen-full:before { content: '\f066'} /*  */ 199 | .octicon-screen-normal:before { content: '\f067'} /*  */ 200 | .octicon-search-save:before, 201 | .octicon-search:before { content: '\f02e'} /*  */ 202 | .octicon-server:before { content: '\f097'} /*  */ 203 | .octicon-settings:before { content: '\f07c'} /*  */ 204 | .octicon-log-in:before, 205 | .octicon-sign-in:before { content: '\f036'} /*  */ 206 | .octicon-log-out:before, 207 | .octicon-sign-out:before { content: '\f032'} /*  */ 208 | .octicon-split:before { content: '\f0c6'} /*  */ 209 | .octicon-squirrel:before { content: '\f0b2'} /*  */ 210 | .octicon-star-add:before, 211 | .octicon-star-delete:before, 212 | .octicon-star:before { content: '\f02a'} /*  */ 213 | .octicon-steps:before { content: '\f0c7'} /*  */ 214 | .octicon-stop:before { content: '\f08f'} /*  */ 215 | .octicon-repo-sync:before, 216 | .octicon-sync:before { content: '\f087'} /*  */ 217 | .octicon-tag-remove:before, 218 | .octicon-tag-add:before, 219 | .octicon-tag:before { content: '\f015'} /*  */ 220 | .octicon-telescope:before { content: '\f088'} /*  */ 221 | .octicon-terminal:before { content: '\f0c8'} /*  */ 222 | .octicon-three-bars:before { content: '\f05e'} /*  */ 223 | .octicon-thumbsdown:before { content: '\f0db'} /*  */ 224 | .octicon-thumbsup:before { content: '\f0da'} /*  */ 225 | .octicon-tools:before { content: '\f031'} /*  */ 226 | .octicon-trashcan:before { content: '\f0d0'} /*  */ 227 | .octicon-triangle-down:before { content: '\f05b'} /*  */ 228 | .octicon-triangle-left:before { content: '\f044'} /*  */ 229 | .octicon-triangle-right:before { content: '\f05a'} /*  */ 230 | .octicon-triangle-up:before { content: '\f0aa'} /*  */ 231 | .octicon-unfold:before { content: '\f039'} /*  */ 232 | .octicon-unmute:before { content: '\f0ba'} /*  */ 233 | .octicon-versions:before { content: '\f064'} /*  */ 234 | .octicon-remove-close:before, 235 | .octicon-x:before { content: '\f081'} /*  */ 236 | .octicon-zap:before { content: '\26A1'} /* ⚡ */ 237 | -------------------------------------------------------------------------------- /resources/fonts/octicons/octicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/octicons/octicons.eot -------------------------------------------------------------------------------- /resources/fonts/octicons/octicons.less: -------------------------------------------------------------------------------- 1 | @octicons-font-path: "."; 2 | @octicons-version: "675c3211eac589bbda193fdb306ce567a2c4569f"; 3 | 4 | @font-face { 5 | font-family: 'octicons'; 6 | src: ~"url('@{octicons-font-path}/octicons.eot?#iefix&v=@{octicons-version}') format('embedded-opentype')", 7 | ~"url('@{octicons-font-path}/octicons.woff?v=@{octicons-version}') format('woff')", 8 | ~"url('@{octicons-font-path}/octicons.ttf?v=@{octicons-version}') format('truetype')", 9 | ~"url('@{octicons-font-path}/octicons.svg?v=@{octicons-version}#octicons') format('svg')"; 10 | font-weight: normal; 11 | font-style: normal; 12 | } 13 | 14 | // .octicon is optimized for 16px. 15 | // .mega-octicon is optimized for 32px but can be used larger. 16 | .octicon, .mega-octicon { 17 | font: normal normal normal 16px/1 octicons; 18 | display: inline-block; 19 | text-decoration: none; 20 | text-rendering: auto; 21 | -webkit-font-smoothing: antialiased; 22 | -moz-osx-font-smoothing: grayscale; 23 | -webkit-user-select: none; 24 | -moz-user-select: none; 25 | -ms-user-select: none; 26 | user-select: none; 27 | } 28 | .mega-octicon { font-size: 32px; } 29 | 30 | .octicon-alert:before { content: '\f02d'} /*  */ 31 | .octicon-alignment-align:before { content: '\f08a'} /*  */ 32 | .octicon-alignment-aligned-to:before { content: '\f08e'} /*  */ 33 | .octicon-alignment-unalign:before { content: '\f08b'} /*  */ 34 | .octicon-arrow-down:before { content: '\f03f'} /*  */ 35 | .octicon-arrow-left:before { content: '\f040'} /*  */ 36 | .octicon-arrow-right:before { content: '\f03e'} /*  */ 37 | .octicon-arrow-small-down:before { content: '\f0a0'} /*  */ 38 | .octicon-arrow-small-left:before { content: '\f0a1'} /*  */ 39 | .octicon-arrow-small-right:before { content: '\f071'} /*  */ 40 | .octicon-arrow-small-up:before { content: '\f09f'} /*  */ 41 | .octicon-arrow-up:before { content: '\f03d'} /*  */ 42 | .octicon-beer:before { content: '\f069'} /*  */ 43 | .octicon-book:before { content: '\f007'} /*  */ 44 | .octicon-bookmark:before { content: '\f07b'} /*  */ 45 | .octicon-briefcase:before { content: '\f0d3'} /*  */ 46 | .octicon-broadcast:before { content: '\f048'} /*  */ 47 | .octicon-browser:before { content: '\f0c5'} /*  */ 48 | .octicon-bug:before { content: '\f091'} /*  */ 49 | .octicon-calendar:before { content: '\f068'} /*  */ 50 | .octicon-check:before { content: '\f03a'} /*  */ 51 | .octicon-checklist:before { content: '\f076'} /*  */ 52 | .octicon-chevron-down:before { content: '\f0a3'} /*  */ 53 | .octicon-chevron-left:before { content: '\f0a4'} /*  */ 54 | .octicon-chevron-right:before { content: '\f078'} /*  */ 55 | .octicon-chevron-up:before { content: '\f0a2'} /*  */ 56 | .octicon-circle-slash:before { content: '\f084'} /*  */ 57 | .octicon-circuit-board:before { content: '\f0d6'} /*  */ 58 | .octicon-clippy:before { content: '\f035'} /*  */ 59 | .octicon-clock:before { content: '\f046'} /*  */ 60 | .octicon-cloud-download:before { content: '\f00b'} /*  */ 61 | .octicon-cloud-upload:before { content: '\f00c'} /*  */ 62 | .octicon-code:before { content: '\f05f'} /*  */ 63 | .octicon-color-mode:before { content: '\f065'} /*  */ 64 | .octicon-comment-add:before, 65 | .octicon-comment:before { content: '\f02b'} /*  */ 66 | .octicon-comment-discussion:before { content: '\f04f'} /*  */ 67 | .octicon-credit-card:before { content: '\f045'} /*  */ 68 | .octicon-dash:before { content: '\f0ca'} /*  */ 69 | .octicon-dashboard:before { content: '\f07d'} /*  */ 70 | .octicon-database:before { content: '\f096'} /*  */ 71 | .octicon-device-camera:before { content: '\f056'} /*  */ 72 | .octicon-device-camera-video:before { content: '\f057'} /*  */ 73 | .octicon-device-desktop:before { content: '\f27c'} /*  */ 74 | .octicon-device-mobile:before { content: '\f038'} /*  */ 75 | .octicon-diff:before { content: '\f04d'} /*  */ 76 | .octicon-diff-added:before { content: '\f06b'} /*  */ 77 | .octicon-diff-ignored:before { content: '\f099'} /*  */ 78 | .octicon-diff-modified:before { content: '\f06d'} /*  */ 79 | .octicon-diff-removed:before { content: '\f06c'} /*  */ 80 | .octicon-diff-renamed:before { content: '\f06e'} /*  */ 81 | .octicon-ellipsis:before { content: '\f09a'} /*  */ 82 | .octicon-eye-unwatch:before, 83 | .octicon-eye-watch:before, 84 | .octicon-eye:before { content: '\f04e'} /*  */ 85 | .octicon-file-binary:before { content: '\f094'} /*  */ 86 | .octicon-file-code:before { content: '\f010'} /*  */ 87 | .octicon-file-directory:before { content: '\f016'} /*  */ 88 | .octicon-file-media:before { content: '\f012'} /*  */ 89 | .octicon-file-pdf:before { content: '\f014'} /*  */ 90 | .octicon-file-submodule:before { content: '\f017'} /*  */ 91 | .octicon-file-symlink-directory:before { content: '\f0b1'} /*  */ 92 | .octicon-file-symlink-file:before { content: '\f0b0'} /*  */ 93 | .octicon-file-text:before { content: '\f011'} /*  */ 94 | .octicon-file-zip:before { content: '\f013'} /*  */ 95 | .octicon-flame:before { content: '\f0d2'} /*  */ 96 | .octicon-fold:before { content: '\f0cc'} /*  */ 97 | .octicon-gear:before { content: '\f02f'} /*  */ 98 | .octicon-gift:before { content: '\f042'} /*  */ 99 | .octicon-gist:before { content: '\f00e'} /*  */ 100 | .octicon-gist-secret:before { content: '\f08c'} /*  */ 101 | .octicon-git-branch-create:before, 102 | .octicon-git-branch-delete:before, 103 | .octicon-git-branch:before { content: '\f020'} /*  */ 104 | .octicon-git-commit:before { content: '\f01f'} /*  */ 105 | .octicon-git-compare:before { content: '\f0ac'} /*  */ 106 | .octicon-git-merge:before { content: '\f023'} /*  */ 107 | .octicon-git-pull-request-abandoned:before, 108 | .octicon-git-pull-request:before { content: '\f009'} /*  */ 109 | .octicon-globe:before { content: '\f0b6'} /*  */ 110 | .octicon-graph:before { content: '\f043'} /*  */ 111 | .octicon-heart:before { content: '\2665'} /* ♥ */ 112 | .octicon-history:before { content: '\f07e'} /*  */ 113 | .octicon-home:before { content: '\f08d'} /*  */ 114 | .octicon-horizontal-rule:before { content: '\f070'} /*  */ 115 | .octicon-hourglass:before { content: '\f09e'} /*  */ 116 | .octicon-hubot:before { content: '\f09d'} /*  */ 117 | .octicon-inbox:before { content: '\f0cf'} /*  */ 118 | .octicon-info:before { content: '\f059'} /*  */ 119 | .octicon-issue-closed:before { content: '\f028'} /*  */ 120 | .octicon-issue-opened:before { content: '\f026'} /*  */ 121 | .octicon-issue-reopened:before { content: '\f027'} /*  */ 122 | .octicon-jersey:before { content: '\f019'} /*  */ 123 | .octicon-jump-down:before { content: '\f072'} /*  */ 124 | .octicon-jump-left:before { content: '\f0a5'} /*  */ 125 | .octicon-jump-right:before { content: '\f0a6'} /*  */ 126 | .octicon-jump-up:before { content: '\f073'} /*  */ 127 | .octicon-key:before { content: '\f049'} /*  */ 128 | .octicon-keyboard:before { content: '\f00d'} /*  */ 129 | .octicon-law:before { content: '\f0d8'} /*  */ 130 | .octicon-light-bulb:before { content: '\f000'} /*  */ 131 | .octicon-link:before { content: '\f05c'} /*  */ 132 | .octicon-link-external:before { content: '\f07f'} /*  */ 133 | .octicon-list-ordered:before { content: '\f062'} /*  */ 134 | .octicon-list-unordered:before { content: '\f061'} /*  */ 135 | .octicon-location:before { content: '\f060'} /*  */ 136 | .octicon-gist-private:before, 137 | .octicon-mirror-private:before, 138 | .octicon-git-fork-private:before, 139 | .octicon-lock:before { content: '\f06a'} /*  */ 140 | .octicon-logo-github:before { content: '\f092'} /*  */ 141 | .octicon-mail:before { content: '\f03b'} /*  */ 142 | .octicon-mail-read:before { content: '\f03c'} /*  */ 143 | .octicon-mail-reply:before { content: '\f051'} /*  */ 144 | .octicon-mark-github:before { content: '\f00a'} /*  */ 145 | .octicon-markdown:before { content: '\f0c9'} /*  */ 146 | .octicon-megaphone:before { content: '\f077'} /*  */ 147 | .octicon-mention:before { content: '\f0be'} /*  */ 148 | .octicon-microscope:before { content: '\f089'} /*  */ 149 | .octicon-milestone:before { content: '\f075'} /*  */ 150 | .octicon-mirror-public:before, 151 | .octicon-mirror:before { content: '\f024'} /*  */ 152 | .octicon-mortar-board:before { content: '\f0d7'} /*  */ 153 | .octicon-move-down:before { content: '\f0a8'} /*  */ 154 | .octicon-move-left:before { content: '\f074'} /*  */ 155 | .octicon-move-right:before { content: '\f0a9'} /*  */ 156 | .octicon-move-up:before { content: '\f0a7'} /*  */ 157 | .octicon-mute:before { content: '\f080'} /*  */ 158 | .octicon-no-newline:before { content: '\f09c'} /*  */ 159 | .octicon-octoface:before { content: '\f008'} /*  */ 160 | .octicon-organization:before { content: '\f037'} /*  */ 161 | .octicon-package:before { content: '\f0c4'} /*  */ 162 | .octicon-paintcan:before { content: '\f0d1'} /*  */ 163 | .octicon-pencil:before { content: '\f058'} /*  */ 164 | .octicon-person-add:before, 165 | .octicon-person-follow:before, 166 | .octicon-person:before { content: '\f018'} /*  */ 167 | .octicon-pin:before { content: '\f041'} /*  */ 168 | .octicon-playback-fast-forward:before { content: '\f0bd'} /*  */ 169 | .octicon-playback-pause:before { content: '\f0bb'} /*  */ 170 | .octicon-playback-play:before { content: '\f0bf'} /*  */ 171 | .octicon-playback-rewind:before { content: '\f0bc'} /*  */ 172 | .octicon-plug:before { content: '\f0d4'} /*  */ 173 | .octicon-repo-create:before, 174 | .octicon-gist-new:before, 175 | .octicon-file-directory-create:before, 176 | .octicon-file-add:before, 177 | .octicon-plus:before { content: '\f05d'} /*  */ 178 | .octicon-podium:before { content: '\f0af'} /*  */ 179 | .octicon-primitive-dot:before { content: '\f052'} /*  */ 180 | .octicon-primitive-square:before { content: '\f053'} /*  */ 181 | .octicon-pulse:before { content: '\f085'} /*  */ 182 | .octicon-puzzle:before { content: '\f0c0'} /*  */ 183 | .octicon-question:before { content: '\f02c'} /*  */ 184 | .octicon-quote:before { content: '\f063'} /*  */ 185 | .octicon-radio-tower:before { content: '\f030'} /*  */ 186 | .octicon-repo-delete:before, 187 | .octicon-repo:before { content: '\f001'} /*  */ 188 | .octicon-repo-clone:before { content: '\f04c'} /*  */ 189 | .octicon-repo-force-push:before { content: '\f04a'} /*  */ 190 | .octicon-gist-fork:before, 191 | .octicon-repo-forked:before { content: '\f002'} /*  */ 192 | .octicon-repo-pull:before { content: '\f006'} /*  */ 193 | .octicon-repo-push:before { content: '\f005'} /*  */ 194 | .octicon-rocket:before { content: '\f033'} /*  */ 195 | .octicon-rss:before { content: '\f034'} /*  */ 196 | .octicon-ruby:before { content: '\f047'} /*  */ 197 | .octicon-screen-full:before { content: '\f066'} /*  */ 198 | .octicon-screen-normal:before { content: '\f067'} /*  */ 199 | .octicon-search-save:before, 200 | .octicon-search:before { content: '\f02e'} /*  */ 201 | .octicon-server:before { content: '\f097'} /*  */ 202 | .octicon-settings:before { content: '\f07c'} /*  */ 203 | .octicon-log-in:before, 204 | .octicon-sign-in:before { content: '\f036'} /*  */ 205 | .octicon-log-out:before, 206 | .octicon-sign-out:before { content: '\f032'} /*  */ 207 | .octicon-split:before { content: '\f0c6'} /*  */ 208 | .octicon-squirrel:before { content: '\f0b2'} /*  */ 209 | .octicon-star-add:before, 210 | .octicon-star-delete:before, 211 | .octicon-star:before { content: '\f02a'} /*  */ 212 | .octicon-steps:before { content: '\f0c7'} /*  */ 213 | .octicon-stop:before { content: '\f08f'} /*  */ 214 | .octicon-repo-sync:before, 215 | .octicon-sync:before { content: '\f087'} /*  */ 216 | .octicon-tag-remove:before, 217 | .octicon-tag-add:before, 218 | .octicon-tag:before { content: '\f015'} /*  */ 219 | .octicon-telescope:before { content: '\f088'} /*  */ 220 | .octicon-terminal:before { content: '\f0c8'} /*  */ 221 | .octicon-three-bars:before { content: '\f05e'} /*  */ 222 | .octicon-thumbsdown:before { content: '\f0db'} /*  */ 223 | .octicon-thumbsup:before { content: '\f0da'} /*  */ 224 | .octicon-tools:before { content: '\f031'} /*  */ 225 | .octicon-trashcan:before { content: '\f0d0'} /*  */ 226 | .octicon-triangle-down:before { content: '\f05b'} /*  */ 227 | .octicon-triangle-left:before { content: '\f044'} /*  */ 228 | .octicon-triangle-right:before { content: '\f05a'} /*  */ 229 | .octicon-triangle-up:before { content: '\f0aa'} /*  */ 230 | .octicon-unfold:before { content: '\f039'} /*  */ 231 | .octicon-unmute:before { content: '\f0ba'} /*  */ 232 | .octicon-versions:before { content: '\f064'} /*  */ 233 | .octicon-remove-close:before, 234 | .octicon-x:before { content: '\f081'} /*  */ 235 | .octicon-zap:before { content: '\26A1'} /* ⚡ */ 236 | -------------------------------------------------------------------------------- /resources/fonts/octicons/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/octicons/octicons.ttf -------------------------------------------------------------------------------- /resources/fonts/octicons/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/fonts/octicons/octicons.woff -------------------------------------------------------------------------------- /resources/fonts/octicons/sprockets-octicons.scss: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'octicons'; 3 | src: font-url('octicons.eot?#iefix') format('embedded-opentype'), 4 | font-url('octicons.woff') format('woff'), 5 | font-url('octicons.ttf') format('truetype'), 6 | font-url('octicons.svg#octicons') format('svg'); 7 | font-weight: normal; 8 | font-style: normal; 9 | } 10 | 11 | // .octicon is optimized for 16px. 12 | // .mega-octicon is optimized for 32px but can be used larger. 13 | .octicon, .mega-octicon { 14 | font: normal normal normal 16px/1 octicons; 15 | display: inline-block; 16 | text-decoration: none; 17 | text-rendering: auto; 18 | -webkit-font-smoothing: antialiased; 19 | -moz-osx-font-smoothing: grayscale; 20 | -webkit-user-select: none; 21 | -moz-user-select: none; 22 | -ms-user-select: none; 23 | user-select: none; 24 | } 25 | .mega-octicon { font-size: 32px; } 26 | 27 | .octicon-alert:before { content: '\f02d'} /*  */ 28 | .octicon-alignment-align:before { content: '\f08a'} /*  */ 29 | .octicon-alignment-aligned-to:before { content: '\f08e'} /*  */ 30 | .octicon-alignment-unalign:before { content: '\f08b'} /*  */ 31 | .octicon-arrow-down:before { content: '\f03f'} /*  */ 32 | .octicon-arrow-left:before { content: '\f040'} /*  */ 33 | .octicon-arrow-right:before { content: '\f03e'} /*  */ 34 | .octicon-arrow-small-down:before { content: '\f0a0'} /*  */ 35 | .octicon-arrow-small-left:before { content: '\f0a1'} /*  */ 36 | .octicon-arrow-small-right:before { content: '\f071'} /*  */ 37 | .octicon-arrow-small-up:before { content: '\f09f'} /*  */ 38 | .octicon-arrow-up:before { content: '\f03d'} /*  */ 39 | .octicon-beer:before { content: '\f069'} /*  */ 40 | .octicon-book:before { content: '\f007'} /*  */ 41 | .octicon-bookmark:before { content: '\f07b'} /*  */ 42 | .octicon-briefcase:before { content: '\f0d3'} /*  */ 43 | .octicon-broadcast:before { content: '\f048'} /*  */ 44 | .octicon-browser:before { content: '\f0c5'} /*  */ 45 | .octicon-bug:before { content: '\f091'} /*  */ 46 | .octicon-calendar:before { content: '\f068'} /*  */ 47 | .octicon-check:before { content: '\f03a'} /*  */ 48 | .octicon-checklist:before { content: '\f076'} /*  */ 49 | .octicon-chevron-down:before { content: '\f0a3'} /*  */ 50 | .octicon-chevron-left:before { content: '\f0a4'} /*  */ 51 | .octicon-chevron-right:before { content: '\f078'} /*  */ 52 | .octicon-chevron-up:before { content: '\f0a2'} /*  */ 53 | .octicon-circle-slash:before { content: '\f084'} /*  */ 54 | .octicon-circuit-board:before { content: '\f0d6'} /*  */ 55 | .octicon-clippy:before { content: '\f035'} /*  */ 56 | .octicon-clock:before { content: '\f046'} /*  */ 57 | .octicon-cloud-download:before { content: '\f00b'} /*  */ 58 | .octicon-cloud-upload:before { content: '\f00c'} /*  */ 59 | .octicon-code:before { content: '\f05f'} /*  */ 60 | .octicon-color-mode:before { content: '\f065'} /*  */ 61 | .octicon-comment-add:before, 62 | .octicon-comment:before { content: '\f02b'} /*  */ 63 | .octicon-comment-discussion:before { content: '\f04f'} /*  */ 64 | .octicon-credit-card:before { content: '\f045'} /*  */ 65 | .octicon-dash:before { content: '\f0ca'} /*  */ 66 | .octicon-dashboard:before { content: '\f07d'} /*  */ 67 | .octicon-database:before { content: '\f096'} /*  */ 68 | .octicon-device-camera:before { content: '\f056'} /*  */ 69 | .octicon-device-camera-video:before { content: '\f057'} /*  */ 70 | .octicon-device-desktop:before { content: '\f27c'} /*  */ 71 | .octicon-device-mobile:before { content: '\f038'} /*  */ 72 | .octicon-diff:before { content: '\f04d'} /*  */ 73 | .octicon-diff-added:before { content: '\f06b'} /*  */ 74 | .octicon-diff-ignored:before { content: '\f099'} /*  */ 75 | .octicon-diff-modified:before { content: '\f06d'} /*  */ 76 | .octicon-diff-removed:before { content: '\f06c'} /*  */ 77 | .octicon-diff-renamed:before { content: '\f06e'} /*  */ 78 | .octicon-ellipsis:before { content: '\f09a'} /*  */ 79 | .octicon-eye-unwatch:before, 80 | .octicon-eye-watch:before, 81 | .octicon-eye:before { content: '\f04e'} /*  */ 82 | .octicon-file-binary:before { content: '\f094'} /*  */ 83 | .octicon-file-code:before { content: '\f010'} /*  */ 84 | .octicon-file-directory:before { content: '\f016'} /*  */ 85 | .octicon-file-media:before { content: '\f012'} /*  */ 86 | .octicon-file-pdf:before { content: '\f014'} /*  */ 87 | .octicon-file-submodule:before { content: '\f017'} /*  */ 88 | .octicon-file-symlink-directory:before { content: '\f0b1'} /*  */ 89 | .octicon-file-symlink-file:before { content: '\f0b0'} /*  */ 90 | .octicon-file-text:before { content: '\f011'} /*  */ 91 | .octicon-file-zip:before { content: '\f013'} /*  */ 92 | .octicon-flame:before { content: '\f0d2'} /*  */ 93 | .octicon-fold:before { content: '\f0cc'} /*  */ 94 | .octicon-gear:before { content: '\f02f'} /*  */ 95 | .octicon-gift:before { content: '\f042'} /*  */ 96 | .octicon-gist:before { content: '\f00e'} /*  */ 97 | .octicon-gist-secret:before { content: '\f08c'} /*  */ 98 | .octicon-git-branch-create:before, 99 | .octicon-git-branch-delete:before, 100 | .octicon-git-branch:before { content: '\f020'} /*  */ 101 | .octicon-git-commit:before { content: '\f01f'} /*  */ 102 | .octicon-git-compare:before { content: '\f0ac'} /*  */ 103 | .octicon-git-merge:before { content: '\f023'} /*  */ 104 | .octicon-git-pull-request-abandoned:before, 105 | .octicon-git-pull-request:before { content: '\f009'} /*  */ 106 | .octicon-globe:before { content: '\f0b6'} /*  */ 107 | .octicon-graph:before { content: '\f043'} /*  */ 108 | .octicon-heart:before { content: '\2665'} /* ♥ */ 109 | .octicon-history:before { content: '\f07e'} /*  */ 110 | .octicon-home:before { content: '\f08d'} /*  */ 111 | .octicon-horizontal-rule:before { content: '\f070'} /*  */ 112 | .octicon-hourglass:before { content: '\f09e'} /*  */ 113 | .octicon-hubot:before { content: '\f09d'} /*  */ 114 | .octicon-inbox:before { content: '\f0cf'} /*  */ 115 | .octicon-info:before { content: '\f059'} /*  */ 116 | .octicon-issue-closed:before { content: '\f028'} /*  */ 117 | .octicon-issue-opened:before { content: '\f026'} /*  */ 118 | .octicon-issue-reopened:before { content: '\f027'} /*  */ 119 | .octicon-jersey:before { content: '\f019'} /*  */ 120 | .octicon-jump-down:before { content: '\f072'} /*  */ 121 | .octicon-jump-left:before { content: '\f0a5'} /*  */ 122 | .octicon-jump-right:before { content: '\f0a6'} /*  */ 123 | .octicon-jump-up:before { content: '\f073'} /*  */ 124 | .octicon-key:before { content: '\f049'} /*  */ 125 | .octicon-keyboard:before { content: '\f00d'} /*  */ 126 | .octicon-law:before { content: '\f0d8'} /*  */ 127 | .octicon-light-bulb:before { content: '\f000'} /*  */ 128 | .octicon-link:before { content: '\f05c'} /*  */ 129 | .octicon-link-external:before { content: '\f07f'} /*  */ 130 | .octicon-list-ordered:before { content: '\f062'} /*  */ 131 | .octicon-list-unordered:before { content: '\f061'} /*  */ 132 | .octicon-location:before { content: '\f060'} /*  */ 133 | .octicon-gist-private:before, 134 | .octicon-mirror-private:before, 135 | .octicon-git-fork-private:before, 136 | .octicon-lock:before { content: '\f06a'} /*  */ 137 | .octicon-logo-github:before { content: '\f092'} /*  */ 138 | .octicon-mail:before { content: '\f03b'} /*  */ 139 | .octicon-mail-read:before { content: '\f03c'} /*  */ 140 | .octicon-mail-reply:before { content: '\f051'} /*  */ 141 | .octicon-mark-github:before { content: '\f00a'} /*  */ 142 | .octicon-markdown:before { content: '\f0c9'} /*  */ 143 | .octicon-megaphone:before { content: '\f077'} /*  */ 144 | .octicon-mention:before { content: '\f0be'} /*  */ 145 | .octicon-microscope:before { content: '\f089'} /*  */ 146 | .octicon-milestone:before { content: '\f075'} /*  */ 147 | .octicon-mirror-public:before, 148 | .octicon-mirror:before { content: '\f024'} /*  */ 149 | .octicon-mortar-board:before { content: '\f0d7'} /*  */ 150 | .octicon-move-down:before { content: '\f0a8'} /*  */ 151 | .octicon-move-left:before { content: '\f074'} /*  */ 152 | .octicon-move-right:before { content: '\f0a9'} /*  */ 153 | .octicon-move-up:before { content: '\f0a7'} /*  */ 154 | .octicon-mute:before { content: '\f080'} /*  */ 155 | .octicon-no-newline:before { content: '\f09c'} /*  */ 156 | .octicon-octoface:before { content: '\f008'} /*  */ 157 | .octicon-organization:before { content: '\f037'} /*  */ 158 | .octicon-package:before { content: '\f0c4'} /*  */ 159 | .octicon-paintcan:before { content: '\f0d1'} /*  */ 160 | .octicon-pencil:before { content: '\f058'} /*  */ 161 | .octicon-person-add:before, 162 | .octicon-person-follow:before, 163 | .octicon-person:before { content: '\f018'} /*  */ 164 | .octicon-pin:before { content: '\f041'} /*  */ 165 | .octicon-playback-fast-forward:before { content: '\f0bd'} /*  */ 166 | .octicon-playback-pause:before { content: '\f0bb'} /*  */ 167 | .octicon-playback-play:before { content: '\f0bf'} /*  */ 168 | .octicon-playback-rewind:before { content: '\f0bc'} /*  */ 169 | .octicon-plug:before { content: '\f0d4'} /*  */ 170 | .octicon-repo-create:before, 171 | .octicon-gist-new:before, 172 | .octicon-file-directory-create:before, 173 | .octicon-file-add:before, 174 | .octicon-plus:before { content: '\f05d'} /*  */ 175 | .octicon-podium:before { content: '\f0af'} /*  */ 176 | .octicon-primitive-dot:before { content: '\f052'} /*  */ 177 | .octicon-primitive-square:before { content: '\f053'} /*  */ 178 | .octicon-pulse:before { content: '\f085'} /*  */ 179 | .octicon-puzzle:before { content: '\f0c0'} /*  */ 180 | .octicon-question:before { content: '\f02c'} /*  */ 181 | .octicon-quote:before { content: '\f063'} /*  */ 182 | .octicon-radio-tower:before { content: '\f030'} /*  */ 183 | .octicon-repo-delete:before, 184 | .octicon-repo:before { content: '\f001'} /*  */ 185 | .octicon-repo-clone:before { content: '\f04c'} /*  */ 186 | .octicon-repo-force-push:before { content: '\f04a'} /*  */ 187 | .octicon-gist-fork:before, 188 | .octicon-repo-forked:before { content: '\f002'} /*  */ 189 | .octicon-repo-pull:before { content: '\f006'} /*  */ 190 | .octicon-repo-push:before { content: '\f005'} /*  */ 191 | .octicon-rocket:before { content: '\f033'} /*  */ 192 | .octicon-rss:before { content: '\f034'} /*  */ 193 | .octicon-ruby:before { content: '\f047'} /*  */ 194 | .octicon-screen-full:before { content: '\f066'} /*  */ 195 | .octicon-screen-normal:before { content: '\f067'} /*  */ 196 | .octicon-search-save:before, 197 | .octicon-search:before { content: '\f02e'} /*  */ 198 | .octicon-server:before { content: '\f097'} /*  */ 199 | .octicon-settings:before { content: '\f07c'} /*  */ 200 | .octicon-log-in:before, 201 | .octicon-sign-in:before { content: '\f036'} /*  */ 202 | .octicon-log-out:before, 203 | .octicon-sign-out:before { content: '\f032'} /*  */ 204 | .octicon-split:before { content: '\f0c6'} /*  */ 205 | .octicon-squirrel:before { content: '\f0b2'} /*  */ 206 | .octicon-star-add:before, 207 | .octicon-star-delete:before, 208 | .octicon-star:before { content: '\f02a'} /*  */ 209 | .octicon-steps:before { content: '\f0c7'} /*  */ 210 | .octicon-stop:before { content: '\f08f'} /*  */ 211 | .octicon-repo-sync:before, 212 | .octicon-sync:before { content: '\f087'} /*  */ 213 | .octicon-tag-remove:before, 214 | .octicon-tag-add:before, 215 | .octicon-tag:before { content: '\f015'} /*  */ 216 | .octicon-telescope:before { content: '\f088'} /*  */ 217 | .octicon-terminal:before { content: '\f0c8'} /*  */ 218 | .octicon-three-bars:before { content: '\f05e'} /*  */ 219 | .octicon-thumbsdown:before { content: '\f0db'} /*  */ 220 | .octicon-thumbsup:before { content: '\f0da'} /*  */ 221 | .octicon-tools:before { content: '\f031'} /*  */ 222 | .octicon-trashcan:before { content: '\f0d0'} /*  */ 223 | .octicon-triangle-down:before { content: '\f05b'} /*  */ 224 | .octicon-triangle-left:before { content: '\f044'} /*  */ 225 | .octicon-triangle-right:before { content: '\f05a'} /*  */ 226 | .octicon-triangle-up:before { content: '\f0aa'} /*  */ 227 | .octicon-unfold:before { content: '\f039'} /*  */ 228 | .octicon-unmute:before { content: '\f0ba'} /*  */ 229 | .octicon-versions:before { content: '\f064'} /*  */ 230 | .octicon-remove-close:before, 231 | .octicon-x:before { content: '\f081'} /*  */ 232 | .octicon-zap:before { content: '\26A1'} /* ⚡ */ 233 | -------------------------------------------------------------------------------- /resources/images/editable/gitpie-wizard-image.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | 22 | 27 | 33 | 40 | 41 | 44 | 51 | 52 | 56 | 61 | 67 | 72 | 77 | 83 | 84 | 88 | 93 | 99 | 104 | 109 | 115 | 116 | 117 | 139 | 141 | 142 | 144 | image/svg+xml 145 | 147 | 148 | 149 | 150 | 151 | 156 | 159 | 166 | 170 | 176 | 179 | 185 | 190 | 191 | 192 | 193 | 194 | 195 | -------------------------------------------------------------------------------- /resources/images/editable/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 24 | 28 | 33 | 39 | 44 | 49 | 55 | 56 | 60 | 65 | 71 | 76 | 81 | 87 | 88 | 92 | 97 | 103 | 108 | 113 | 119 | 120 | 124 | 129 | 135 | 140 | 145 | 151 | 152 | 153 | 175 | 177 | 178 | 180 | image/svg+xml 181 | 183 | 184 | 185 | 186 | 187 | 192 | 199 | 201 | 208 | 214 | 215 | 216 | 217 | -------------------------------------------------------------------------------- /resources/images/gitpie-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/images/gitpie-banner.png -------------------------------------------------------------------------------- /resources/images/gitpie-wizard-image.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/images/gitpie-wizard-image.bmp -------------------------------------------------------------------------------- /resources/images/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/images/icon.icns -------------------------------------------------------------------------------- /resources/images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/images/icon.ico -------------------------------------------------------------------------------- /resources/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitpie/GitPie/433b06179f812e9aa1eeb84047c69a3a8e099579/resources/images/icon.png -------------------------------------------------------------------------------- /resources/sass/mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin tabPanel($color, $hoverColor, $borderColor, $activeBorderColor) { 2 | 3 | nav.tabHeader { 4 | margin: 0; 5 | padding: 0; 6 | display: flex; 7 | width: 100%; 8 | box-sizing: border-box; 9 | overflow: hidden; 10 | box-shadow: 0 4px 5px -2px rgba(1, 1, 1, 0.3); 11 | 12 | div { 13 | flex: 1 1 auto; 14 | text-align: center; 15 | padding: 10px; 16 | border-bottom: $borderColor 3px solid; 17 | color: $color; 18 | cursor: default; 19 | font-weight: bold; 20 | 21 | &:hover { 22 | color: $hoverColor; 23 | } 24 | } 25 | 26 | div.active { 27 | border-color: $activeBorderColor; 28 | color: inherit; 29 | } 30 | } 31 | } 32 | 33 | @mixin basicDialog { 34 | background-color: #FFF; 35 | padding: 10px; 36 | border-radius: 3px; 37 | box-shadow: 1px 1px 10px #666; 38 | color: #333; 39 | 40 | ul { 41 | list-style: none; 42 | display: inline-block; 43 | margin: 0; 44 | padding: 0; 45 | 46 | li { 47 | padding: 15px 10px; 48 | display: block; 49 | cursor: default; 50 | text-shadow: none; 51 | background-color: #FFF; 52 | 53 | .octicon { 54 | margin-right: 10px; 55 | } 56 | 57 | &:hover { 58 | color: #000; 59 | cursor: pointer; 60 | background-color: #FFF; 61 | } 62 | } 63 | } 64 | 65 | .label { 66 | padding: 20px 0; 67 | display: block; 68 | color: #666; 69 | font-size: 0.9em; 70 | } 71 | 72 | .center { 73 | text-align: center; 74 | } 75 | 76 | header { 77 | font-weight: bold; 78 | padding-bottom: 10px; 79 | overflow: hidden; 80 | } 81 | 82 | .tabPanel { 83 | @include tabPanel(#999, #666, #FFF, #DDD); 84 | 85 | nav.tabHeader { 86 | margin-bottom: 10px; 87 | } 88 | } 89 | 90 | footer { 91 | text-align: right; 92 | padding-top: 15px; 93 | overflow: hidden; 94 | clear: both; 95 | padding-bottom: 5px; 96 | padding-right: 2px; 97 | } 98 | } 99 | 100 | @mixin navMenu { 101 | @include basicDialog; 102 | position: fixed; 103 | margin-left: 5px; 104 | text-shadow: none; 105 | min-width: 200px; 106 | z-index: 200; 107 | 108 | ul.container-list { 109 | width: 100%; 110 | overflow: auto; 111 | max-height: 400px; 112 | } 113 | 114 | // Arrow 115 | &::before { 116 | content: ''; 117 | position: absolute; 118 | width: 0; 119 | height: 0; 120 | border-left: 10px solid transparent; 121 | border-right: 10px solid transparent; 122 | border-bottom: 10px solid #FFF; 123 | top: -5px; 124 | } 125 | } 126 | 127 | @mixin thumbnail { 128 | .thumb { 129 | background-color: #bd6eca; 130 | border-radius: 50%; 131 | display: inline-block; 132 | width: 40px; 133 | color: rgba(255, 255, 255, 0.75); 134 | float: left; 135 | margin-right: 10px; 136 | height: 40px; 137 | text-align: center; 138 | line-height: 40px; 139 | text-transform: uppercase; 140 | font-weight: bold; 141 | } 142 | 143 | .a { 144 | @extend .thumb; 145 | background-color: #e06055 !important; 146 | } 147 | 148 | .b { 149 | @extend .thumb; 150 | background-color: #f06e9a !important; 151 | } 152 | 153 | .c { 154 | @extend .thumb; 155 | background-color: #bd6eca !important; 156 | } 157 | 158 | .d { 159 | @extend .thumb; 160 | background-color: #9575cd !important; 161 | } 162 | 163 | .e { 164 | @extend .thumb; 165 | background-color: #7986cb !important; 166 | } 167 | 168 | .f { 169 | @extend .thumb; 170 | background-color: #5e97f6 !important; 171 | } 172 | 173 | .g { 174 | @extend .thumb; 175 | background-color: #4fc3f7 !important; 176 | } 177 | 178 | .h { 179 | @extend .thumb; 180 | background-color: #4dd0e1 !important; 181 | } 182 | 183 | .i { 184 | @extend .thumb; 185 | background-color: #fdd835 !important; 186 | } 187 | 188 | .j { 189 | @extend .thumb; 190 | background-color: #57bb8a !important; 191 | } 192 | 193 | .k { 194 | @extend .thumb; 195 | background-color: #9ccc65 !important; 196 | } 197 | 198 | .l { 199 | @extend .thumb; 200 | background-color: #d4e157 !important; 201 | } 202 | 203 | .m { 204 | @extend .thumb; 205 | background-color: #4db6ac !important; 206 | } 207 | 208 | .n { 209 | @extend .thumb; 210 | background-color: #fdd835 !important; 211 | } 212 | 213 | .o { 214 | @extend .thumb; 215 | background-color: #ffa726 !important; 216 | } 217 | 218 | .p { 219 | @extend .thumb; 220 | background-color: #ff8a65 !important; 221 | } 222 | 223 | .q { 224 | @extend .thumb; 225 | background-color: #C2C2C2 !important; 226 | } 227 | 228 | .r { 229 | @extend .thumb; 230 | background-color: #90a4ae !important; 231 | } 232 | 233 | .s { 234 | @extend .thumb; 235 | background-color: #a1887f !important; 236 | } 237 | 238 | .t { 239 | @extend .thumb; 240 | background-color: #a3a3a3 !important; 241 | } 242 | 243 | .u { 244 | @extend .thumb; 245 | background-color: #afb6e0 !important; 246 | } 247 | 248 | .v { 249 | @extend .thumb; 250 | background-color: #b39ddb !important; 251 | } 252 | 253 | .x { 254 | @extend .thumb; 255 | background-color: #80DEEA !important; 256 | } 257 | 258 | .y { 259 | @extend .thumb; 260 | background-color: #bcaaa4 !important; 261 | } 262 | 263 | .w { 264 | @extend .thumb; 265 | background-color: #c2c2c2 !important; 266 | } 267 | 268 | .z { 269 | @extend .thumb; 270 | background-color: #AED581 !important; 271 | } 272 | } 273 | -------------------------------------------------------------------------------- /resources/sass/variables.scss: -------------------------------------------------------------------------------- 1 | // Globals 2 | $font: 'Roboto', Helvetica, Arial; 3 | $code-font: 'Consolas', monospace, consolas, sans-serif; 4 | $font-size: 14px; 5 | $border-color: #DDD; 6 | 7 | // Header 8 | $header-font-shadow: 0 1px 2px #49575d; 9 | $header-font-color: #CCCCCC; 10 | $header-background-color: #636e73; 11 | --------------------------------------------------------------------------------