Compare commits
83 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f8c61cfe0c | ||
![]() |
c6dd4d18f3 | ||
![]() |
dbf8072343 | ||
![]() |
d7c6231e78 | ||
![]() |
816639f51b | ||
![]() |
1015173f28 | ||
![]() |
f9823258ac | ||
![]() |
3ae5474ec0 | ||
![]() |
44aded6d40 | ||
![]() |
cf8bdc97d8 | ||
![]() |
cbb249ccdc | ||
![]() |
42c9eacf4f | ||
![]() |
37789c7a66 | ||
![]() |
e7d8bcdcc4 | ||
![]() |
abd1d24f9b | ||
![]() |
b54f83acb6 | ||
![]() |
2e93696ce7 | ||
![]() |
bf2c9f765e | ||
![]() |
6eea416121 | ||
![]() |
44645aa38c | ||
![]() |
457d1e3d62 | ||
![]() |
d711698c55 | ||
![]() |
7b625bd10c | ||
![]() |
897bfd5ac9 | ||
![]() |
7a7e619133 | ||
![]() |
d35308f1df | ||
![]() |
bbacd6d8ed | ||
![]() |
ba6f8663e3 | ||
![]() |
1aa27aeb42 | ||
![]() |
d6569f6ed3 | ||
![]() |
a0485331ae | ||
![]() |
1692822914 | ||
![]() |
e5f0197170 | ||
![]() |
992e55dec6 | ||
![]() |
18764e7d12 | ||
![]() |
b1e18d0c56 | ||
![]() |
d7102ae0bd | ||
![]() |
ef6d253896 | ||
![]() |
c9be4f9452 | ||
![]() |
978d6ef832 | ||
![]() |
2be28f4d3d | ||
![]() |
5e94b69aa0 | ||
![]() |
f589e71686 | ||
![]() |
0caacd6223 | ||
![]() |
d6608ab263 | ||
![]() |
0501123763 | ||
![]() |
24506def11 | ||
![]() |
e9a5e27266 | ||
![]() |
db9e832984 | ||
![]() |
d64a228a8b | ||
![]() |
5c44830746 | ||
![]() |
13ea6514f8 | ||
![]() |
3f130c08cb | ||
![]() |
9bdd17d456 | ||
![]() |
375c496ff9 | ||
![]() |
4537f750ca | ||
![]() |
590626fc85 | ||
![]() |
9840b54f54 | ||
![]() |
2a2cf7190f | ||
![]() |
bd7f84c8f0 | ||
![]() |
f6c72be223 | ||
![]() |
b8e96a33b1 | ||
![]() |
621173555c | ||
![]() |
16594369d8 | ||
![]() |
d98ddef0b9 | ||
![]() |
21cc6c1fdb | ||
![]() |
7c8e183cb7 | ||
![]() |
c6e90cbf9f | ||
![]() |
062d30b056 | ||
![]() |
d82981c995 | ||
![]() |
843a61b25a | ||
![]() |
69a2a76192 | ||
![]() |
6f6d2b84b3 | ||
![]() |
16dbfea134 | ||
![]() |
635eb88cdd | ||
![]() |
8cdd554db2 | ||
![]() |
d489504a88 | ||
![]() |
05edee6f3c | ||
![]() |
9e2ad39f39 | ||
![]() |
1b023a58c7 | ||
![]() |
fcb5563e29 | ||
![]() |
d4c869a442 | ||
![]() |
e6e2f20d80 |
27
.gitignore
vendored
@@ -3,35 +3,10 @@
|
|||||||
|
|
||||||
# nodejs local installs
|
# nodejs local installs
|
||||||
node_modules
|
node_modules
|
||||||
npm-debug.log
|
|
||||||
|
|
||||||
# node webkit cache
|
|
||||||
cache
|
|
||||||
|
|
||||||
# sublime text stuff (the -project should actually be shared, but then we'd have to share the same disk location)
|
# sublime text stuff (the -project should actually be shared, but then we'd have to share the same disk location)
|
||||||
*.sublime-project
|
*.sublime-project
|
||||||
*.sublime-workspace
|
*.sublime-workspace
|
||||||
|
|
||||||
# netbeans project folder
|
|
||||||
nbproject
|
|
||||||
|
|
||||||
# git stackdumps
|
# git stackdumps
|
||||||
*.stackdump
|
*.stackdump
|
||||||
|
|
||||||
|
|
||||||
# diffs
|
|
||||||
diff.txt
|
|
||||||
|
|
||||||
# build destination
|
|
||||||
dest
|
|
||||||
build/closure/closure_compiled_binary.js
|
|
||||||
|
|
||||||
# spriting artifacts
|
|
||||||
src/img/icons.png
|
|
||||||
src/css/icons.css
|
|
||||||
|
|
||||||
# plato report directory
|
|
||||||
report
|
|
||||||
|
|
||||||
# marked as private
|
|
||||||
*.private.*
|
|
75
.jscsrc
@@ -1,75 +0,0 @@
|
|||||||
{
|
|
||||||
"requireCurlyBraces": [
|
|
||||||
"if",
|
|
||||||
"else",
|
|
||||||
"for",
|
|
||||||
"while",
|
|
||||||
"do",
|
|
||||||
"try",
|
|
||||||
"catch"
|
|
||||||
],
|
|
||||||
"requireOperatorBeforeLineBreak": true,
|
|
||||||
"requireCamelCaseOrUpperCaseIdentifiers": true,
|
|
||||||
"maximumLineLength": {
|
|
||||||
"value": 80,
|
|
||||||
"allExcept": ["comments", "regex"]
|
|
||||||
},
|
|
||||||
"validateIndentation": 2,
|
|
||||||
"validateQuoteMarks": "'",
|
|
||||||
|
|
||||||
"disallowMultipleLineStrings": true,
|
|
||||||
"disallowMixedSpacesAndTabs": true,
|
|
||||||
"disallowTrailingWhitespace": true,
|
|
||||||
"disallowSpaceAfterPrefixUnaryOperators": true,
|
|
||||||
"disallowMultipleVarDecl": true,
|
|
||||||
"disallowKeywordsOnNewLine": ["else"],
|
|
||||||
|
|
||||||
"requireSpaceAfterKeywords": [
|
|
||||||
"if",
|
|
||||||
"else",
|
|
||||||
"for",
|
|
||||||
"while",
|
|
||||||
"do",
|
|
||||||
"switch",
|
|
||||||
"return",
|
|
||||||
"try",
|
|
||||||
"catch"
|
|
||||||
],
|
|
||||||
"requireSpaceBeforeBinaryOperators": [
|
|
||||||
"=", "+=", "-=", "*=", "/=", "%=", "<<=", ">>=", ">>>=",
|
|
||||||
"&=", "|=", "^=", "+=",
|
|
||||||
|
|
||||||
"+", "-", "*", "/", "%", "<<", ">>", ">>>", "&",
|
|
||||||
"|", "^", "&&", "||", "===", "==", ">=",
|
|
||||||
"<=", "<", ">", "!=", "!=="
|
|
||||||
],
|
|
||||||
"requireSpaceAfterBinaryOperators": true,
|
|
||||||
"requireSpacesInConditionalExpression": true,
|
|
||||||
"requireSpaceBeforeBlockStatements": true,
|
|
||||||
"requireSpacesInForStatement": true,
|
|
||||||
"requireLineFeedAtFileEnd": true,
|
|
||||||
"requireSpacesInFunctionExpression": {
|
|
||||||
"beforeOpeningCurlyBrace": true
|
|
||||||
},
|
|
||||||
"disallowSpacesInAnonymousFunctionExpression": {
|
|
||||||
"beforeOpeningRoundBrace": false
|
|
||||||
},
|
|
||||||
"disallowSpacesInsideObjectBrackets": "all",
|
|
||||||
"disallowSpacesInsideArrayBrackets": "all",
|
|
||||||
"disallowSpacesInsideParentheses": true,
|
|
||||||
|
|
||||||
"disallowMultipleLineBreaks": true,
|
|
||||||
"disallowNewlineBeforeBlockStatements": true,
|
|
||||||
"disallowKeywords": ["with"],
|
|
||||||
"disallowSpacesInFunctionExpression": null,
|
|
||||||
"disallowSpacesInFunctionDeclaration": null,
|
|
||||||
"disallowSpacesInCallExpression": true,
|
|
||||||
"disallowSpaceAfterObjectKeys": false,
|
|
||||||
"requireSpaceBeforeObjectValues": true,
|
|
||||||
"requireCapitalizedConstructors": true,
|
|
||||||
"requireDotNotation": true,
|
|
||||||
"requireSemicolons": true,
|
|
||||||
"validateParameterSeparator": ", ",
|
|
||||||
|
|
||||||
"jsDoc": null
|
|
||||||
}
|
|
@@ -1,3 +0,0 @@
|
|||||||
node_modules/
|
|
||||||
test/
|
|
||||||
|
|
15
.travis.yml
@@ -1,15 +0,0 @@
|
|||||||
language: node_js
|
|
||||||
node_js:
|
|
||||||
- "4.1"
|
|
||||||
before_install:
|
|
||||||
- npm update -g npm
|
|
||||||
- npm install -g grunt-cli
|
|
||||||
- git clone git://github.com/n1k0/casperjs.git ~/casperjs
|
|
||||||
- cd ~/casperjs
|
|
||||||
- git checkout tags/1.0.2
|
|
||||||
- export PATH=$PATH:`pwd`/bin
|
|
||||||
- cd -
|
|
||||||
before_script:
|
|
||||||
- phantomjs --version
|
|
||||||
- casperjs --version
|
|
||||||
sudo: false
|
|
348
Gruntfile.js
@@ -1,348 +0,0 @@
|
|||||||
module.exports = function(grunt) {
|
|
||||||
|
|
||||||
// Update this variable if you don't want or can't serve on localhost
|
|
||||||
var hostname = 'localhost';
|
|
||||||
|
|
||||||
var PORT = {
|
|
||||||
PROD : 9001,
|
|
||||||
DEV : 9901,
|
|
||||||
TEST : 9991
|
|
||||||
};
|
|
||||||
|
|
||||||
var DEV_MODE = '?debug';
|
|
||||||
|
|
||||||
// create a version based on the build timestamp
|
|
||||||
var dateFormat = require('dateformat');
|
|
||||||
var version = '-' + dateFormat(new Date(), "yyyy-mm-dd-hh-MM");
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Helper to prefix all strings in provided array with the provided path
|
|
||||||
*/
|
|
||||||
var prefixPaths = function (paths, prefix) {
|
|
||||||
return paths.map(function (path) {
|
|
||||||
return prefix + path;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
// get the list of scripts paths to include
|
|
||||||
var scriptPaths = require('./src/piskel-script-list.js').scripts;
|
|
||||||
var piskelScripts = prefixPaths(scriptPaths, "src/").filter(function (path) {
|
|
||||||
return path.indexOf('devtools') === -1;
|
|
||||||
});
|
|
||||||
|
|
||||||
// get the list of styles paths to include
|
|
||||||
var stylePaths = require('./src/piskel-style-list.js').styles;
|
|
||||||
var piskelStyles = prefixPaths(stylePaths, "src/");
|
|
||||||
|
|
||||||
var getCasperConfig = function (suiteName, delay, host) {
|
|
||||||
var testPaths = require('./test/casperjs/' + suiteName).tests;
|
|
||||||
var tests = prefixPaths(testPaths, "test/casperjs/");
|
|
||||||
|
|
||||||
return {
|
|
||||||
filesSrc : tests,
|
|
||||||
options : {
|
|
||||||
args : {
|
|
||||||
baseUrl : 'http://' + host + ':' + PORT.TEST,
|
|
||||||
mode : DEV_MODE,
|
|
||||||
delay : delay
|
|
||||||
},
|
|
||||||
async : false,
|
|
||||||
direct : false,
|
|
||||||
logLevel : 'info',
|
|
||||||
printCommand : false,
|
|
||||||
printFilePaths : true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
var getConnectConfig = function (base, port, host) {
|
|
||||||
if (typeof base === 'string') {
|
|
||||||
base = [base];
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
options: {
|
|
||||||
port: port,
|
|
||||||
hostname : host,
|
|
||||||
base: base
|
|
||||||
}
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
// load all grunt tasks
|
|
||||||
require('load-grunt-tasks')(grunt);
|
|
||||||
|
|
||||||
grunt.initConfig({
|
|
||||||
clean: {
|
|
||||||
all: ['dest', 'src/img/icons.png', 'src/css/icons.css'],
|
|
||||||
prod: ['dest/prod', 'dest/tmp'],
|
|
||||||
desktop: ['dest/desktop', 'dest/tmp'],
|
|
||||||
dev: ['dest/dev', 'dest/tmp']
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* STYLE CHECKS
|
|
||||||
*/
|
|
||||||
|
|
||||||
leadingIndent : {
|
|
||||||
options: {
|
|
||||||
indentation : "spaces"
|
|
||||||
},
|
|
||||||
css : ['src/css/**/*.css']
|
|
||||||
},
|
|
||||||
|
|
||||||
jscs : {
|
|
||||||
options : {
|
|
||||||
"config": ".jscsrc",
|
|
||||||
"maximumLineLength": 120,
|
|
||||||
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties",
|
|
||||||
"validateQuoteMarks": { "mark": "'", "escape": true },
|
|
||||||
"disallowMultipleVarDecl": "exceptUndefined",
|
|
||||||
"disallowSpacesInAnonymousFunctionExpression": null
|
|
||||||
},
|
|
||||||
js : [ 'src/js/**/*.js' , '!src/js/**/lib/**/*.js' ]
|
|
||||||
},
|
|
||||||
|
|
||||||
jshint: {
|
|
||||||
options: {
|
|
||||||
undef : true,
|
|
||||||
latedef : true,
|
|
||||||
browser : true,
|
|
||||||
trailing : true,
|
|
||||||
curly : true,
|
|
||||||
globals : {'$':true, 'jQuery' : true, 'pskl':true, 'Events':true, 'Constants':true, 'console' : true, 'module':true, 'require':true, 'Q':true}
|
|
||||||
},
|
|
||||||
files: [
|
|
||||||
'Gruntfile.js',
|
|
||||||
'package.json',
|
|
||||||
'src/js/**/*.js',
|
|
||||||
'!src/js/**/lib/**/*.js' // Exclude lib folder (note the leading !)
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* SERVERS, BROWSER LAUNCHERS
|
|
||||||
*/
|
|
||||||
|
|
||||||
connect: {
|
|
||||||
prod: getConnectConfig('dest/prod', PORT.PROD, hostname),
|
|
||||||
test: getConnectConfig(['dest/dev', 'test'], PORT.TEST, hostname),
|
|
||||||
dev: getConnectConfig(['dest/dev', 'test'], PORT.DEV, hostname)
|
|
||||||
},
|
|
||||||
|
|
||||||
open : {
|
|
||||||
prod : {
|
|
||||||
path : 'http://' + hostname + ':' + PORT.PROD + '/'
|
|
||||||
},
|
|
||||||
dev : {
|
|
||||||
path : 'http://' + hostname + ':' + PORT.DEV + '/' + DEV_MODE
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
watch: {
|
|
||||||
prod: {
|
|
||||||
files: ['src/**/*.*'],
|
|
||||||
tasks: ['build'],
|
|
||||||
options: {
|
|
||||||
spawn: false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
dev: {
|
|
||||||
files: ['src/**/*.*'],
|
|
||||||
tasks: ['build-dev'],
|
|
||||||
options: {
|
|
||||||
spawn: false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* BUILD STEPS
|
|
||||||
*/
|
|
||||||
|
|
||||||
sprite:{
|
|
||||||
all : {
|
|
||||||
src: 'src/img/icons/**/*.png',
|
|
||||||
dest: 'src/img/icons.png',
|
|
||||||
destCss: 'src/css/icons.css'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
concat : {
|
|
||||||
js : {
|
|
||||||
options : {
|
|
||||||
separator : ';'
|
|
||||||
},
|
|
||||||
src : piskelScripts,
|
|
||||||
dest : 'dest/prod/js/piskel-packaged' + version + '.js'
|
|
||||||
},
|
|
||||||
css : {
|
|
||||||
src : piskelStyles,
|
|
||||||
dest : 'dest/prod/css/piskel-style-packaged' + version + '.css'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
uglify : {
|
|
||||||
options : {
|
|
||||||
mangle : true
|
|
||||||
},
|
|
||||||
js : {
|
|
||||||
files : {
|
|
||||||
'dest/tmp/js/piskel-packaged-min.js' : ['dest/prod/js/piskel-packaged' + version + '.js']
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
includereplace: {
|
|
||||||
all: {
|
|
||||||
src: 'src/index.html',
|
|
||||||
dest: 'dest/tmp/index.html',
|
|
||||||
options : {
|
|
||||||
globals : {
|
|
||||||
'version' : version
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
replace: {
|
|
||||||
// main-partial.html is used when embedded in piskelapp.com
|
|
||||||
mainPartial: {
|
|
||||||
options: {
|
|
||||||
patterns: [{
|
|
||||||
match: /^(.|[\r\n])*<!--body-main-start-->/,
|
|
||||||
replacement: "{% raw %}",
|
|
||||||
description : "Remove everything before body-main-start comment"
|
|
||||||
},{
|
|
||||||
match: /<!--body-main-end-->(.|[\r\n])*$/,
|
|
||||||
replacement: "{% endraw %}",
|
|
||||||
description : "Remove everything after body-main-end comment"
|
|
||||||
},{
|
|
||||||
match: /([\r\n]) /g,
|
|
||||||
replacement: "$1",
|
|
||||||
description : "Decrease indentation by one"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
files: [
|
|
||||||
// src/index.html should already have been moved by the includereplace task
|
|
||||||
{src: ['dest/tmp/index.html'], dest: 'dest/prod/piskelapp-partials/main-partial.html'}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
// remove the fake header from the desktop build
|
|
||||||
desktop: {
|
|
||||||
options: {
|
|
||||||
patterns: [{
|
|
||||||
match: /<!--standalone-start-->(?:.|[\r\n])*<!--standalone-end-->/,
|
|
||||||
replacement: "",
|
|
||||||
description : "Remove everything between standalone-start & standalone-end"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
files: [
|
|
||||||
{src: ['dest/prod/index.html'], dest: 'dest/prod/index.html'}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
copy: {
|
|
||||||
prod: {
|
|
||||||
files: [
|
|
||||||
// dest/js/piskel-packaged-min.js should have been created by the uglify task
|
|
||||||
{src: ['dest/tmp/js/piskel-packaged-min.js'], dest: 'dest/prod/js/piskel-packaged-min' + version + '.js'},
|
|
||||||
{src: ['dest/tmp/index.html'], dest: 'dest/prod/index.html'},
|
|
||||||
{src: ['src/logo.png'], dest: 'dest/prod/logo.png'},
|
|
||||||
{src: ['src/js/lib/gif/gif.ie.worker.js'], dest: 'dest/prod/js/lib/gif/gif.ie.worker.js'},
|
|
||||||
{expand: true, src: ['img/**'], cwd: 'src/', dest: 'dest/prod/', filter: 'isFile'},
|
|
||||||
{expand: true, src: ['css/fonts/**'], cwd: 'src/', dest: 'dest/prod/', filter: 'isFile'}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
dev: {
|
|
||||||
files: [
|
|
||||||
// in dev copy everything to dest/dev
|
|
||||||
{src: ['dest/tmp/index.html'], dest: 'dest/dev/index.html'},
|
|
||||||
{src: ['src/piskel-script-list.js'], dest: 'dest/dev/piskel-script-list.js'},
|
|
||||||
{src: ['src/piskel-style-list.js'], dest: 'dest/dev/piskel-style-list.js'},
|
|
||||||
{expand: true, src: ['js/**'], cwd: 'src/', dest: 'dest/dev/', filter: 'isFile'},
|
|
||||||
{expand: true, src: ['css/**'], cwd: 'src/', dest: 'dest/dev/', filter: 'isFile'},
|
|
||||||
{expand: true, src: ['img/**'], cwd: 'src/', dest: 'dest/dev/', filter: 'isFile'},
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* TESTING
|
|
||||||
*/
|
|
||||||
|
|
||||||
karma: {
|
|
||||||
unit: {
|
|
||||||
configFile: 'karma.conf.js'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
ghost : {
|
|
||||||
'travis' : getCasperConfig('TravisTestSuite.js', 10000, hostname),
|
|
||||||
'local' : getCasperConfig('LocalTestSuite.js', 50, hostname)
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DESKTOP BUILDS
|
|
||||||
*/
|
|
||||||
|
|
||||||
nwjs: {
|
|
||||||
windows : {
|
|
||||||
options: {
|
|
||||||
version : "0.12.3",
|
|
||||||
build_dir: './dest/desktop/', // destination folder of releases.
|
|
||||||
win: true,
|
|
||||||
linux32: true,
|
|
||||||
linux64: true
|
|
||||||
},
|
|
||||||
src: ['./dest/prod/**/*', "./package.json", "!./dest/desktop/"]
|
|
||||||
},
|
|
||||||
macos : {
|
|
||||||
options: {
|
|
||||||
osx64: true,
|
|
||||||
version : "0.12.3",
|
|
||||||
build_dir: './dest/desktop/'
|
|
||||||
},
|
|
||||||
src: ['./dest/prod/**/*', "./package.json", "!./dest/desktop/"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Validate
|
|
||||||
grunt.registerTask('lint', ['jscs:js', 'leadingIndent:css', 'jshint']);
|
|
||||||
|
|
||||||
// karma/unit-tests task
|
|
||||||
grunt.registerTask('unit-test', ['karma']);
|
|
||||||
|
|
||||||
// Validate & Test
|
|
||||||
grunt.registerTask('test-travis', ['lint', 'unit-test', 'build-dev', 'connect:test', 'ghost:travis']);
|
|
||||||
// Validate & Test (faster version) will NOT work on travis !!
|
|
||||||
grunt.registerTask('test-local', ['lint', 'unit-test', 'build-dev', 'connect:test', 'ghost:local']);
|
|
||||||
grunt.registerTask('test-local-nolint', ['unit-test', 'build-dev', 'connect:test', 'ghost:local']);
|
|
||||||
|
|
||||||
grunt.registerTask('test', ['test-travis']);
|
|
||||||
grunt.registerTask('precommit', ['test-local']);
|
|
||||||
|
|
||||||
grunt.registerTask('build-index.html', ['includereplace']);
|
|
||||||
grunt.registerTask('merge-statics', ['concat:js', 'concat:css', 'uglify']);
|
|
||||||
grunt.registerTask('build', ['clean:prod', 'sprite', 'merge-statics', 'build-index.html', 'replace:mainPartial', 'copy:prod']);
|
|
||||||
grunt.registerTask('build-dev', ['clean:dev', 'sprite', 'build-index.html', 'copy:dev']);
|
|
||||||
|
|
||||||
// Validate & Build
|
|
||||||
grunt.registerTask('default', ['lint', 'build']);
|
|
||||||
|
|
||||||
// Build stand alone app with nodewebkit
|
|
||||||
grunt.registerTask('desktop', ['clean:desktop', 'default', 'replace:desktop', 'nwjs:windows']);
|
|
||||||
grunt.registerTask('desktop-mac', ['clean:desktop', 'default', 'replace:desktop', 'nwjs:macos']);
|
|
||||||
|
|
||||||
// Start webserver and watch for changes
|
|
||||||
grunt.registerTask('serve', ['build', 'connect:prod', 'open:prod', 'watch:prod']);
|
|
||||||
// Start webserver on src folder, in debug mode
|
|
||||||
grunt.registerTask('serve-dev', ['build-dev', 'connect:dev', 'open:dev', 'watch:dev']);
|
|
||||||
|
|
||||||
grunt.registerTask('serve-debug', ['serve-dev']);
|
|
||||||
grunt.registerTask('play', ['serve-dev']);
|
|
||||||
};
|
|
202
LICENSE
@@ -1,202 +0,0 @@
|
|||||||
|
|
||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
APPENDIX: How to apply the Apache License to your work.
|
|
||||||
|
|
||||||
To apply the Apache License to your work, attach the following
|
|
||||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
||||||
replaced with your own identifying information. (Don't include
|
|
||||||
the brackets!) The text should be enclosed in the appropriate
|
|
||||||
comment syntax for the file format. We also recommend that a
|
|
||||||
file or class name and description of purpose be included on the
|
|
||||||
same "printed page" as the copyright notice for easier
|
|
||||||
identification within third-party archives.
|
|
||||||
|
|
||||||
Copyright [yyyy] [name of copyright owner]
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
89
README.md
@@ -1,89 +0,0 @@
|
|||||||
Piskel
|
|
||||||
======
|
|
||||||
|
|
||||||
[](https://travis-ci.org/juliandescottes/piskel) [](http://gruntjs.com/)
|
|
||||||
|
|
||||||
A simple web-based tool for Spriting and Pixel art.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
You can try the standalone editor at **http://juliandescottes.github.io/piskel** or see it integrated in **http://piskelapp.com**.
|
|
||||||
|
|
||||||
Piskel is mainly developped by :
|
|
||||||
|
|
||||||
* **[@juliandescottes](https://github.com/juliandescottes)**
|
|
||||||
* **[@grosbouddha](https://github.com/grosbouddha)**
|
|
||||||
|
|
||||||
## What's the point ?
|
|
||||||
|
|
||||||
You can use Piskel to do two things :
|
|
||||||
* **spriting** : create retro-style sprites for games
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
* **pixelart** : create crazy/pretty pixelart animations for fun !
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
Integrated in **[piskelapp.com](http://piskelapp.com)**, you can share everything you work on with others as easily as you share a link.
|
|
||||||
|
|
||||||
## Requirements
|
|
||||||
|
|
||||||
Piskel supports the following browsers :
|
|
||||||
* **Chrome** (latest)
|
|
||||||
* **Firefox** (latest)
|
|
||||||
* **Internet Explorer** 11+
|
|
||||||
|
|
||||||
... and a fairly recent computer.
|
|
||||||
|
|
||||||
We don't plan/want/could be forced into supporting older IEs. For Opera and Safari, we've never tested them but the gap shouldn't be huge.
|
|
||||||
|
|
||||||
## Offline version
|
|
||||||
|
|
||||||
Offline builds are available. More details in the [dedicated wiki page](https://github.com/juliandescottes/piskel/wiki/Desktop-applications).
|
|
||||||
|
|
||||||
## Built with
|
|
||||||
|
|
||||||
The Piskel editor is purely built in **JavaScript, HTML and CSS**. It uses Canvas extensively for displaying all them pretty sprites.
|
|
||||||
|
|
||||||
We also use the following **libraries** :
|
|
||||||
* [spectrum](https://github.com/bgrins/spectrum) : awesome standalone colorpicker
|
|
||||||
* [gifjs](http://jnordberg.github.io/gif.js/) : generate animated GIFs in javascript, using webworkers
|
|
||||||
* [supergif](https://github.com/buzzfeed/libgif-js) : modified version of SuperGif to parse and import GIFs
|
|
||||||
* [jszip](https://github.com/Stuk/jszip) : create, read and edit .zip files with Javascript
|
|
||||||
* [canvas-toBlob](https://github.com/eligrey/canvas-toBlob.js/) : shim for canvas toBlob
|
|
||||||
* [jquery](http://jquery.com/) : used sporadically in the application
|
|
||||||
* [bootstrap-tooltip](http://getbootstrap.com/javascript/#tooltips) : nice tooltips
|
|
||||||
|
|
||||||
As well as some **icons** from the [Noun Project](http://thenounproject.com/) :
|
|
||||||
* Folder by Simple Icons from The Noun Project
|
|
||||||
* (and probably one or two others)
|
|
||||||
|
|
||||||
|
|
||||||
## Contributing ?
|
|
||||||
|
|
||||||
Help is always welcome !
|
|
||||||
|
|
||||||
* **Issues** : Found a problem when using the application, want to request a feature, [open an issue](https://github.com/juliandescottes/piskel/issues).
|
|
||||||
* **Participate** : Have a look at the [wiki](https://github.com/juliandescottes/piskel/wiki) to set up the development environment
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
Copyright 2016 Julian Descottes
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
|
|
||||||
## Mobile/Tablets
|
|
||||||
|
|
||||||
There is no support for mobile for now.
|
|
||||||
|
|
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
4293
chromebook_alert/css/piskel-style-packaged-2017-07-17-12-59.css
Normal file
Before Width: | Height: | Size: 222 B After Width: | Height: | Size: 222 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 255 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 255 B |
Before Width: | Height: | Size: 254 B After Width: | Height: | Size: 254 B |
BIN
chromebook_alert/img/cursors/circle.png
Normal file
After Width: | Height: | Size: 766 B |
Before Width: | Height: | Size: 209 B After Width: | Height: | Size: 209 B |
BIN
chromebook_alert/img/cursors/dither.png
Normal file
After Width: | Height: | Size: 702 B |
Before Width: | Height: | Size: 543 B After Width: | Height: | Size: 543 B |
Before Width: | Height: | Size: 656 B After Width: | Height: | Size: 656 B |
Before Width: | Height: | Size: 672 B After Width: | Height: | Size: 672 B |
BIN
chromebook_alert/img/cursors/lighten.png
Normal file
After Width: | Height: | Size: 606 B |
Before Width: | Height: | Size: 557 B After Width: | Height: | Size: 557 B |
Before Width: | Height: | Size: 707 B After Width: | Height: | Size: 707 B |
Before Width: | Height: | Size: 450 B After Width: | Height: | Size: 450 B |
Before Width: | Height: | Size: 660 B After Width: | Height: | Size: 660 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
BIN
chromebook_alert/img/cursors/stroke.png
Normal file
After Width: | Height: | Size: 617 B |
Before Width: | Height: | Size: 603 B After Width: | Height: | Size: 603 B |
Before Width: | Height: | Size: 570 B After Width: | Height: | Size: 570 B |
Before Width: | Height: | Size: 177 B After Width: | Height: | Size: 177 B |
BIN
chromebook_alert/img/icons.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
chromebook_alert/img/icons/common/common-keyboard-gold.png
Normal file
After Width: | Height: | Size: 340 B |
BIN
chromebook_alert/img/icons/common/common-keyboard-gold@2x.png
Normal file
After Width: | Height: | Size: 570 B |
After Width: | Height: | Size: 565 B |
After Width: | Height: | Size: 960 B |
BIN
chromebook_alert/img/icons/common/common-warning-red.png
Normal file
After Width: | Height: | Size: 446 B |
BIN
chromebook_alert/img/icons/common/common-warning-red@2x.png
Normal file
After Width: | Height: | Size: 851 B |
BIN
chromebook_alert/img/icons/frame/frame-dragndrop-white.png
Normal file
After Width: | Height: | Size: 324 B |
BIN
chromebook_alert/img/icons/frame/frame-dragndrop-white@2x.png
Normal file
After Width: | Height: | Size: 537 B |
BIN
chromebook_alert/img/icons/frame/frame-duplicate-white.png
Normal file
After Width: | Height: | Size: 387 B |
BIN
chromebook_alert/img/icons/frame/frame-duplicate-white@2x.png
Normal file
After Width: | Height: | Size: 664 B |
BIN
chromebook_alert/img/icons/frame/frame-plus-white.png
Normal file
After Width: | Height: | Size: 210 B |
BIN
chromebook_alert/img/icons/frame/frame-plus-white@2x.png
Normal file
After Width: | Height: | Size: 262 B |
BIN
chromebook_alert/img/icons/frame/frame-recyclebin-white.png
Normal file
After Width: | Height: | Size: 319 B |
BIN
chromebook_alert/img/icons/frame/frame-recyclebin-white@2x.png
Normal file
After Width: | Height: | Size: 539 B |
After Width: | Height: | Size: 301 B |
After Width: | Height: | Size: 367 B |
After Width: | Height: | Size: 246 B |
After Width: | Height: | Size: 357 B |
BIN
chromebook_alert/img/icons/settings/settings-export-white.png
Normal file
After Width: | Height: | Size: 589 B |
BIN
chromebook_alert/img/icons/settings/settings-export-white@2x.png
Normal file
After Width: | Height: | Size: 1016 B |
BIN
chromebook_alert/img/icons/settings/settings-gear-white.png
Normal file
After Width: | Height: | Size: 668 B |
BIN
chromebook_alert/img/icons/settings/settings-gear-white@2x.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 587 B |
After Width: | Height: | Size: 1008 B |
BIN
chromebook_alert/img/icons/settings/settings-resize-white.png
Normal file
After Width: | Height: | Size: 392 B |
BIN
chromebook_alert/img/icons/settings/settings-resize-white@2x.png
Normal file
After Width: | Height: | Size: 656 B |
BIN
chromebook_alert/img/icons/settings/settings-save-white.png
Normal file
After Width: | Height: | Size: 381 B |
BIN
chromebook_alert/img/icons/settings/settings-save-white@2x.png
Normal file
After Width: | Height: | Size: 652 B |
BIN
chromebook_alert/img/icons/tools/tool-circle.png
Normal file
After Width: | Height: | Size: 495 B |
BIN
chromebook_alert/img/icons/tools/tool-circle@2x.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
chromebook_alert/img/icons/tools/tool-colorpicker.png
Normal file
After Width: | Height: | Size: 563 B |
BIN
chromebook_alert/img/icons/tools/tool-colorpicker@2x.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
chromebook_alert/img/icons/tools/tool-colorswap.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
chromebook_alert/img/icons/tools/tool-colorswap@2x.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
chromebook_alert/img/icons/tools/tool-dithering.png
Normal file
After Width: | Height: | Size: 245 B |
BIN
chromebook_alert/img/icons/tools/tool-dithering@2x.png
Normal file
After Width: | Height: | Size: 393 B |
BIN
chromebook_alert/img/icons/tools/tool-eraser.png
Normal file
After Width: | Height: | Size: 524 B |
BIN
chromebook_alert/img/icons/tools/tool-eraser@2x.png
Normal file
After Width: | Height: | Size: 963 B |
BIN
chromebook_alert/img/icons/tools/tool-lasso-select.png
Normal file
After Width: | Height: | Size: 827 B |
BIN
chromebook_alert/img/icons/tools/tool-lasso-select@2x.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
chromebook_alert/img/icons/tools/tool-lighten.png
Normal file
After Width: | Height: | Size: 690 B |
BIN
chromebook_alert/img/icons/tools/tool-lighten@2x.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
chromebook_alert/img/icons/tools/tool-move.png
Normal file
After Width: | Height: | Size: 547 B |
BIN
chromebook_alert/img/icons/tools/tool-move@2x.png
Normal file
After Width: | Height: | Size: 1015 B |
BIN
chromebook_alert/img/icons/tools/tool-paint-bucket.png
Normal file
After Width: | Height: | Size: 741 B |
BIN
chromebook_alert/img/icons/tools/tool-paint-bucket@2x.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
chromebook_alert/img/icons/tools/tool-pen.png
Normal file
After Width: | Height: | Size: 670 B |
BIN
chromebook_alert/img/icons/tools/tool-pen@2x.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
chromebook_alert/img/icons/tools/tool-rectangle-select.png
Normal file
After Width: | Height: | Size: 276 B |
BIN
chromebook_alert/img/icons/tools/tool-rectangle-select@2x.png
Normal file
After Width: | Height: | Size: 425 B |
BIN
chromebook_alert/img/icons/tools/tool-rectangle.png
Normal file
After Width: | Height: | Size: 245 B |
BIN
chromebook_alert/img/icons/tools/tool-rectangle@2x.png
Normal file
After Width: | Height: | Size: 395 B |
BIN
chromebook_alert/img/icons/tools/tool-shape-select.png
Normal file
After Width: | Height: | Size: 580 B |
BIN
chromebook_alert/img/icons/tools/tool-shape-select@2x.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
chromebook_alert/img/icons/tools/tool-stroke.png
Normal file
After Width: | Height: | Size: 802 B |
BIN
chromebook_alert/img/icons/tools/tool-stroke@2x.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
chromebook_alert/img/icons/tools/tool-vertical-mirror-pen.png
Normal file
After Width: | Height: | Size: 744 B |
BIN
chromebook_alert/img/icons/tools/tool-vertical-mirror-pen@2x.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
chromebook_alert/img/icons/transform/tool-center.png
Normal file
After Width: | Height: | Size: 297 B |
BIN
chromebook_alert/img/icons/transform/tool-center@2x.png
Normal file
After Width: | Height: | Size: 457 B |
BIN
chromebook_alert/img/icons/transform/tool-clone.png
Normal file
After Width: | Height: | Size: 621 B |
BIN
chromebook_alert/img/icons/transform/tool-clone@2x.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
chromebook_alert/img/icons/transform/tool-crop.png
Normal file
After Width: | Height: | Size: 393 B |