| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-26 | feat(ngAnimate): complete rewrite of animations | Matias Niemelä | |
| - ngAnimate directive is gone and was replaced with class based animations/transitions - support for triggering animations on css class additions and removals - done callback was added to all animation apis - $animation and $animator where merged into a single $animate service with api: - $animate.enter(element, parent, after, done); - $animate.leave(element, done); - $animate.move(element, parent, after, done); - $animate.addClass(element, className, done); - $animate.removeClass(element, className, done); BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions | |||
| 2013-07-26 | chore(ngdocs): replace showdown.js with marked.js | Matias Niemelä | |
| 2013-07-24 | docs(minErr): Build minErr doc site | Ken Sheedlo | |
| 2013-07-12 | chore(ngdoc): wrap all pages inside of a container tag for easy styling | Matias Niemelä | |
| 2013-07-11 | feat(ngDocs): add links to source for API | Julien Bouquillon | |
| - add tests - the link points to the gruntUtil.getVersion().number tree on github | |||
| 2013-06-17 | feat(ngdocs): provide support for user to jump between different versions of ↵ | Matias Niemelä | |
| the angularjs documentation | |||
| 2013-06-17 | feat(ngdocs): support popover, foldouts and foldover annotations | Matias Niemelä | |
| 2013-06-06 | fix(ngdoc): fix the node warnings that show up during build | Matias Niemelä | |
| 2013-06-06 | chore(ngdoc): fix deprecated node api path.existsSync -> fs.existsSync | Igor Minar | |
| 2013-05-30 | feat(ngdocs): provide support for inline variable hinting | Matias Niemelä | |
| 2013-05-20 | fix(ngdocs): fix gen_docs.sh | Matias Niemelä | |
| 2013-05-13 | feat(ngdocs): external links to github, plunkr and jsfiddle available for ↵ | Matias Niemelä | |
| code examples | |||
| 2013-05-08 | feat(ngdocs): add variable type hinting with colors | Matias Niemelä | |
| 2013-04-29 | feat(ngdocs): support for HTML table generation from docs code | Matias Niemelä | |
| 2013-04-19 | chore(ngDoc): fix a typo with IE warning | Tyler Akins | |
| 2013-04-03 | docs: add animations into docs and directive examples | Matias Niemelä | |
| 2013-04-02 | feat(ngdocs): added functionality to import and extract contents of external ↵ | Matias Niemelä | |
| files inside docs comment code | |||
| 2013-04-02 | feat(ngAnimate): add support for animation | Misko Hevery | |
| 2013-03-15 | feat(docs): Add Improve this doc link in each doc page, which links to the ↵ | Shyam Seshadri | |
| edit mode of that file in github | |||
| 2013-03-05 | chore(Grunt): switch from Rake to Grunt | Dave 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 | |||
| 2013-02-11 | chore(docs): improve docs parser type | Igor Minar | |
| previously we barfed on function type definition with optional arguments like {function(number=)} this fixes it I also added a bunch of code that helps to debug incorrectly parsed docs. | |||
| 2012-08-27 | fix(ngdoc): failing test | Misko Hevery | |
| 2012-08-10 | chore(ngDoc): add support for custom @usage metadata | Brian Ford | |
| 2012-07-02 | fix(docs): fix broken ng-docs specs | Igor Minar | |
| 2012-06-12 | docs(*): simplify doc urls | Igor Minar | |
| we now have two types of namespaces: - true namespace: angular.* - used for all global apis - virtual namespace: ng.*, ngMock.*, ... - used for all DI modules the virual namespaces have services under the second namespace level (e.g. ng.) and filters and directives prefixed with filter: and directive: respectively (e.g. ng.filter:orderBy, ng.directive:ngRepeat) this simplifies urls and makes them a lot shorter while still avoiding name collisions | |||
| 2012-06-02 | doc(ngdoc): clean up doc generation and add missing documentation links | Misko Hevery | |
| 2012-06-02 | docs(overview): updated overview guide | Misko Hevery | |
| 2012-06-02 | fix(docs): include short words in keywords | Misko Hevery | |
| Short words like $q are now searchable. Closes #967 | |||
| 2012-05-24 | fix(docs): accept return in addition to returns | Misko Hevery | |
| documentation used @return but parser expected @returns, which made the generated documentation incomplete. | |||
| 2012-05-04 | chore(docs): re-skin main documentation | Misko Hevery | |
| 2012-04-09 | fix(docs): change all directive references to use the normalized names | Igor Minar | |
| 2012-03-23 | doc(guide): order topic list in guide sidebar in accordance with overview | Manuel Woelker | |
| Closes #405 | |||
| 2012-03-13 | docs(links): corrected borken links | Misko Hevery | |
| 2012-03-13 | fix(docs): properly close the optional ] in directive signatures | Igor Minar | |
| 2012-03-13 | doc(search): include method names in corpus | Misko Hevery | |
| 2012-03-11 | doc(fixes): to better support ng-directive notation | Misko Hevery | |
| 2012-03-11 | Mostly Revert "fix(docs): directive events + cleanup" | Misko Hevery | |
| This reverts commit 8fb34f008eca4d1e15e6fa63902aaa36d199c4af. | |||
| 2012-03-08 | fix(docs): directive events + cleanup | Igor Minar | |
| 2012-03-08 | fix(docs): add a header for the directive info section | Igor Minar | |
| 2012-03-08 | chore(compiler): change default restriction to attribute only for directives | Misko Hevery | |
| 2012-02-22 | docs(scope): show which directives create scopes | Misko Hevery | |
| 2012-02-21 | fix(ngdoc): extract keywords from properties/methods. | Misko Hevery | |
| 2012-01-25 | docs(compiler): update the compiler docs | Misko Hevery | |
| 2012-01-13 | fix(ngdocs): add '=' to type signatures with optional arguments | Igor Minar | |
| 2012-01-10 | feat(ngdocs): support for interface documentation | Misko Hevery | |
| 2011-11-14 | style(docs): make jslint happy - fix some warnings | Vojta Jina | |
| 2011-11-14 | fix(doc) cleanup all api doc link warnings | Misko Hevery | |
| 2011-11-14 | refactor(docs): improved the visual rendering of the documentation pages | Misko Hevery | |
| 2011-11-14 | doc($filter): added $filter documentation | Misko Hevery | |
| 2011-11-14 | doc(AUTO, NG_MOCK): Documenting the AUTO and NG_MOCK module | Misko Hevery | |
