aboutsummaryrefslogtreecommitdiffstats
path: root/images
AgeCommit message (Collapse)Author
2013-03-05chore(Grunt): switch from Rake to GruntDave Geddes
Migrates the Angular project from Rake to Grunt. Benefits: - Drops Ruby dependency - Lowers barrier to entry for contributions from JavaScript ninjas - Simplifies the Angular project setup and build process - Adopts industry-standard tools specific to JavaScript projects - Support building angular.js on Windows platform (really?!? why?!?) BREAKING CHANGE: Rake is completely replaced by Grunt. Below are the deprecated Rake tasks and their Grunt equivalents: rake --> grunt rake package --> grunt package rake init --> N/A rake clean --> grunt clean rake concat_scenario --> grunt build:scenario rake concat --> grunt build rake concat_scenario --> grunt build:scenario rake minify --> grunt minify rake version --> grunt write:version rake docs --> grunt docs rake webserver --> grunt webserver rake test --> grunt test rake test:unit --> grunt test:unit rake test:<jqlite|jquery|modules|e2e> --> grunt test:<jqlite|jquery|modules|end2end|e2e> rake test[Firefox+Safari] --> grunt test --browsers Firefox,Safari rake test[Safari] --> grunt test --browsers Safari rake autotest --> grunt autotest NOTES: * For convenience grunt test:e2e starts a webserver for you, while grunt test:end2end doesn't. Use grunt test:end2end if you already have the webserver running. * Removes duplicate entry for Describe.js in the angularScenario section of angularFiles.js * Updates docs/src/gen-docs.js to use #done intead of the deprecated #end * Uses grunt-contrib-connect instead of lib/nodeserver (removed) * Removes nodeserver.sh, travis now uses grunt webserver * Built and minified files are identical to Rake's output, with the exception of one less character for git revisions (using --short) and a couple minor whitespace differences Closes #199
2012-08-27doc(guide): add conceptsMisko Hevery
2012-06-21chore(logos): fix shield logo exportsIgor Minar
the previous version is clipped at the top
2012-06-21fix(logo): center A in the shieldIgor Minar
2012-06-11chore(logos): adding AngularJS and shield logosIgor Minar
2012-04-20chore(logo): added angular shield logoMisko Hevery
2012-04-12docs(tutorial): update step-04 to v1.0Igor Minar
2012-04-04docs(tutorial): update tutorial intro + steps 0-3Igor Minar
also contains all kinds of fixes that I had to make in the docs app to get the tutorial to render correctly
2012-01-17docs(guide): update the diagramVojta Jina
2011-10-13chore(logo): add hi-res ng logoIgor Minar
2011-10-11feat(forms): new and improved formsMisko Hevery
2011-09-08doc($location): $location docs + using $location guideVojta Jina
2011-06-06remove test img fileKenneth R. Culp
2011-06-06di diagram changeIgor Minar
2011-06-06adding all omnigraffle files for tutorial and guide imagesKenneth R. Culp
2011-02-22Rewrite of the overview section of the dev guideKenneth R. Culp
2011-02-09added omingrafle file for docsMisko Hevery
2010-10-18inline all images into cssIgor Minar
* embedded images as data URIs * rake task to generate multipart js file with embeded images for IE * move images into a separate directory outside of src or css and keep them there for reference * clean up Rakefile and ruby code * .gitignore update * don't penalize IE 8+ with an extra request to the ie-compat.js file