Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-04 | Allow inspection and revocation of permissions (#1875) | Simon Menke | |
2019-03-03 | Removed comment from tslint.json (#1878) | Lazarus Holl | |
2019-03-03 | libdeno: fix libdeno.print() unicode output on Windows | Bert Belder | |
Note that emoji are still not supported, due limitations of the Windows console. | |||
2019-03-03 | libdeno: remove `prints_newline` parameter from libdeno.print() | Bert Belder | |
2019-03-03 | Add write permissions requirement to `op_fetch_module_meta_data`. (#1874) | andy finch | |
2019-03-02 | Fix deno imports in manual (#1867) | JaePil Jung | |
2019-03-02 | manual - import.meta.main (#1868) | Bartek Iwańczuk | |
2019-03-02 | Fix example in manual (#1863) | Ryan Dahl | |
2019-03-02 | compiler_bundle should also depend on gn_args.txt (#1870) | Yoshiya Hinosawa | |
2019-03-01 | Add Deno.version.gnArgs (#1845) | Yoshiya Hinosawa | |
To display specific build args passed to GN. | |||
2019-03-01 | Permissions refactor (#1864) | andy finch | |
Refactored permissions to be assignable on a per-isolate basis, and added a fix for #1858 to op_fetch_module_meta_data. | |||
2019-03-01 | Add favicon.ico generated by deno_logo_3.svg and add link tag in every page ↵ | Jon Jee | |
(#1861) | |||
2019-02-28 | Use deno_core::JSError in deno (#1855) | Ryan Dahl | |
src/js_errors.rs takes care of source maps and color while core/js_errors.rs is just the basic struct. | |||
2019-02-27 | v0.3.1 | Ryan Dahl | |
2019-02-27 | upgrade V8 to 7.4.238 (#1849) | Ryan Dahl | |
2019-02-27 | Upgrade Node to v10 on Travis (#1850) | Ryan Dahl | |
2019-02-27 | third_party: upgrade rust crates | Bert Belder | |
2019-02-27 | Add NO_COLOR to CLI usage (#1843) | Ryan Dahl | |
2019-02-27 | Use the SVG logo everywhere. Add logo links to manual. (#1841) | Ryan Dahl | |
2019-02-26 | core: add Cargo.toml | Bert Belder | |
This aids development using Visual Studio Code. The http_bench can't be built with cargo yet because it needs to link with libdeno. | |||
2019-02-26 | deno_core (#1827) | Ryan Dahl | |
A new low-level crate with focus on speed. This doesn't yet hook into the existing code base. | |||
2019-02-26 | Add import.meta.main (#1835) | Bartek Iwańczuk | |
2019-02-26 | Add "Dino in the Rain" to manual page (#1840) | Kevin (Kun) "Kassimo" Qian | |
2019-02-26 | Updated some type assertions to work with other libc implementations. (#1837) | andy finch | |
2019-02-26 | Fix broken link to API reference (#1838) | William Fortin | |
Add missing trailing slash https://deno.land/typedoc/ | |||
2019-02-25 | Fix console.table display of Map and move tests to unit test (#1839) | Kevin (Kun) "Kassimo" Qian | |
2019-02-25 | Upgrade deno_std (#1833) | Ryan Dahl | |
2019-02-25 | Fix copyright header (#1832) | Ryan Dahl | |
2019-02-21 | Improve readme (#1822) | Ryan Dahl | |
2019-02-21 | manual: add Deno.run example (#1811) | Bartek Iwańczuk | |
2019-02-20 | Add section explaining resources and metrics to the manual (#1819) | EnokMan | |
2019-02-19 | Improve README (#1815) | Ryan Dahl | |
2019-02-19 | fix: revert http server example on the homepage (#1814) | Dmitry Teplov | |
2019-02-19 | remove global_eval.ts (#1813) | Yoshiya Hinosawa | |
2019-02-18 | v0.3.0 | Ryan Dahl | |
2019-02-18 | build: fix deps for deno_runtime_declaration | Ryan Dahl | |
2019-02-18 | Add window.location | Ryan Dahl | |
2019-02-18 | Match TypeScript & JavaScript error colors (#1793) | Bartek Iwańczuk | |
2019-02-18 | Add example of starting subprocess to docs (#1791) | Bartek Iwańczuk | |
2019-02-18 | Add back typescript version number and add Deno.version object. (#1788) | Yoshiya Hinosawa | |
2019-02-18 | Add `seek` and implement `Seeker` on `File` (#1797) | Kevin (Kun) "Kassimo" Qian | |
This patch contains a special hack that circumvents the current tokio seek problem. tokio `seek` is implemented to take ownership of the original File and emit a new one in its future, which conflicts with the design of ResourceTable. To avoid the problem, the current hack makes the FsFile resource an Option which we could `take` the value ownership out of it. We then convert the tokio File into a Rust std File, perform the seek, and then put it back into the resource. This might be able to drop this hack after https://github.com/tokio-rs/tokio/pull/785 lands. | |||
2019-02-18 | Fix http server example in homepage (#1801) | Saad Quadri | |
This fixes http server example by updating the import path as well as using respond() correctly. | |||
2019-02-18 | Update installation documentation (Fixes #1786) (#1802) | Mark Tiedemann | |
2019-02-18 | Rename welcome.js to welcome.ts (#1803) | Maxim Mazurok | |
2019-02-18 | Rationalise compiler ops (#1740) | Kitson Kelly | |
2019-02-18 | refactor: replace any in console (#1804) | Yoshiya Hinosawa | |
2019-02-17 | Add code block language decoration to StyleGuide doc (#1799) | EnokMan | |
2019-02-16 | remove dead code (#1796) | Yoshiya Hinosawa | |
2019-02-16 | Added website icon link (#1792) | Luke | |
2019-02-15 | Add execPath function (#1743) | Dmitry Sharshakov | |