| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-08-26 | Merge pull request #4671 from shuujii/fix-Array-sample-with-MRB_INT32 | Yukihiro "Matz" Matsumoto | |
| Fix `Array#sample` with `MRB_INT32` | |||
| 2019-08-26 | Fix `Array#sample` with `MRB_INT32` | KOBAYASHI Shuji | |
| Array index became potentially negative because `uint32_t` is cast to `mrb_int`. | |||
| 2019-08-26 | Merge pull request #4635 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-wrong-argument-for-fprintf-in-mruby-bin-mrbc Fix wrong argument for `fprintf` in `mruby-bin-mrbc` | |||
| 2019-08-26 | Merge pull request #4670 from shuujii/remove-unused-random.h | Yukihiro "Matz" Matsumoto | |
| Remove unused `random.h` | |||
| 2019-08-26 | Remove unused `random.h` | KOBAYASHI Shuji | |
| 2019-08-26 | Merge pull request #4669 from davidsiaw/doxygen | Yukihiro "Matz" Matsumoto | |
| Fixes for Doxygen docs | |||
| 2019-08-26 | fix lots of warnings and make logo not so big | David Siaw | |
| 2019-08-26 | change doc directory and reduce warnings | David Siaw | |
| 2019-08-25 | Merge pull request #4668 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/defer-several-build-libraries-loading-until-needed Defer several build libraries loading until needed | |||
| 2019-08-25 | Defer several build libraries loading until needed | KOBAYASHI Shuji | |
| 2019-08-25 | Merge pull request #4667 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-Range-max-test-TypeError-is-raised-on-32-bit-mode Fix `Range#max` test (`TypeError` is raised) on 32-bit mode | |||
| 2019-08-25 | Merge pull request #4666 from dearblue/warn-str_new_capa | Yukihiro "Matz" Matsumoto | |
| Suppress warning by gcc with `-Wmaybe-uninitialized` | |||
| 2019-08-25 | Merge pull request #4665 from dearblue/fix-4642 | Yukihiro "Matz" Matsumoto | |
| Create a symbolic link in the temporary directory; fix #4642 | |||
| 2019-08-25 | Merge pull request #4664 from shuujii/remove-unused-constant-in-Rakefile | Yukihiro "Matz" Matsumoto | |
| Remove unused constant in `Rakefile`; ref e312842a | |||
| 2019-08-24 | Fix `Range#max` test (`TypeError` is raised) on 32-bit mode | KOBAYASHI Shuji | |
| 2019-08-24 | Suppress warning by gcc with `-Wmaybe-uninitialized` | dearblue | |
| 2019-08-24 | Remove unused constant in `Rakefile`; ref e312842a | KOBAYASHI Shuji | |
| 2019-08-24 | Create a symbolic link in the temporary directory; fix #4642 | dearblue | |
| Because the linker gives a warning on FreeBSD 12.0. ``` warning: mktemp() possibly used unsafely; consider using mkstemp() ``` | |||
| 2019-08-23 | Merge pull request #4662 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-RBreak-exceeding-6-words-on-32-bit-mode-w-o-boxing-and-MRB_USE_FLOAT Fix `RBreak` exceeding 6 words on 32-bit mode w/o boxing and `MRB_USE_FLOAT` | |||
| 2019-08-23 | Fix `RBreak` exceeding 6 words on 32-bit mode w/o boxing and `MRB_USE_FLOAT` | KOBAYASHI Shuji | |
| ref: https://github.com/mruby/mruby/pull/4483#issuecomment-498001736 In this configuration, `tt` of `RBreak::val` is set into `RBreak::flags`. | |||
| 2019-08-23 | Merge pull request #4656 from shuujii/refine-processing-for-gem-lock-file | Yukihiro "Matz" Matsumoto | |
| Refine processing for gem lock file | |||
| 2019-08-22 | Refine processing for gem lock file | KOBAYASHI Shuji | |
| - Defer YAML library and lock file loading until needed. - Don't write empty parts into lock file. - Extract code to read/write lock file to `MRuby::Lockfile`. - `MRuby::Lockfile.disable` disables the use of lock file. | |||
| 2019-08-22 | Merge pull request #4655 from yamori813/master | Yukihiro "Matz" Matsumoto | |
| make clean error workaround | |||
| 2019-08-22 | workaround error | yamori813 | |
| 2019-08-22 | Add lock files to `.gitignore`; #4180 | Yukihiro "Matz" Matsumoto | |
| 2019-08-22 | Merge pull request #4654 from take-cheeze/mruby_version_lock | Yukihiro "Matz" Matsumoto | |
| Take commit hash of mruby too | |||
| 2019-08-22 | Merge pull request #4653 from take-cheeze/sep_repo_build | Yukihiro "Matz" Matsumoto | |
| Separate repos directory and build directory | |||
| 2019-08-22 | Take commit hash of mruby too | take-cheeze | |
| 2019-08-22 | Separate repos directory and build directory | take-cheeze | |
| closes #4652 | |||
| 2019-08-21 | Merge pull request #4180 from take-cheeze/lock_file | Yukihiro "Matz" Matsumoto | |
| Support lock file for git. | |||
| 2019-08-21 | Merge pull request #4651 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/prioritize-embedded-string-over-nofree-or-normal-string Prioritize embedded string over nofree (or normal) string | |||
| 2019-08-21 | Prioritize embedded string over nofree (or normal) string | KOBAYASHI Shuji | |
| Prioritize embedded string in the following functions: - `str_new_static` - `str_new` - `mrb_str_new_capa` - `mrb_str_pool` The reasons are as follows: - Consistency with `mrb_str_byte_subseq` and `str_replace`. - Memory locality increases and may be slightly faster. - No conversion cost to embedded string when modifying the string. | |||
| 2019-08-21 | Merge pull request #4650 from take-cheeze/patch-5 | Yukihiro "Matz" Matsumoto | |
| Remove deprecated iij stuffs | |||
| 2019-08-21 | Merge pull request #4649 from take-cheeze/patch-4 | Yukihiro "Matz" Matsumoto | |
| Fix link of mruby-io | |||
| 2019-08-21 | Merge pull request #4648 from take-cheeze/patch-3 | Yukihiro "Matz" Matsumoto | |
| Use mruby-onig-regexp instead in example | |||
| 2019-08-21 | Merge pull request #4647 from take-cheeze/patch-2 | Yukihiro "Matz" Matsumoto | |
| Add note about checksum_hash in mrbgem doc | |||
| 2019-08-20 | Remove deprecated iij stuffs | Takeshi Watanabe | |
| 2019-08-20 | Fix link of mruby-io | Takeshi Watanabe | |
| 2019-08-20 | Use mruby-onig-regexp instead in example | Takeshi Watanabe | |
| 2019-08-20 | Add note about checksum_hash in mrbgem doc | Takeshi Watanabe | |
| 2019-08-20 | Avoid C++ strict aliasing warning. | Yukihiro "Matz" Matsumoto | |
| Based on code proposed by @dearblue to avoid the warning: `dereferencing type-punned pointer will break strict-aliasing rules`. | |||
| 2019-08-20 | Fixed a bug in the `OP_JMPNOT` optimization (13eaff4); fix #4644 | Yukihiro "Matz" Matsumoto | |
| 2019-08-20 | Merge pull request #4646 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/use-RBasic-padding-for-embedded-string-on-64-bit-CPU Use `RBasic` padding for embedded string on 64-bit CPU | |||
| 2019-08-20 | Use `RBasic` padding for embedded string on 64-bit CPU | KOBAYASHI Shuji | |
| On 64-bit CPU, there is padding in `RBasic`, so reorder the fields and use it as buffer of embedded string. This change allows 4 more bytes to be embedded on 64-bit CPU. However, an incompatibility will occur if `RString::as::ary` is accessed directly because `RString` structure has changed. | |||
| 2019-08-19 | Merge pull request #4645 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/move-mrb_str_pool-to-src-string.c-to-use-str_init-family Move `mrb_str_pool` to `src/string.c` to use `str_init` family | |||
| 2019-08-19 | Move `mrb_str_pool` to `src/string.c` to use `str_init` family | KOBAYASHI Shuji | |
| 2019-08-19 | Merge pull request #4643 from lopopolo/externally-define-MRB_API | Yukihiro "Matz" Matsumoto | |
| Allow external definition of MRB_API macro | |||
| 2019-08-18 | Allow external definition of MRB_API macro | Ryan Lopopolo | |
| When building WebAssembly targets with clang (e.g. wasm32-unknown-unknown), all symbols are hidden by default. To export a symbol, it must be marked with __attribute__((visibility(default))) Rather than detecting this exotic target in mruby, allow MRB_API to be defined externally. | |||
| 2019-08-19 | Merge pull request #4639 from dearblue/suppress-Wstringop-truncation | Yukihiro "Matz" Matsumoto | |
| Suppress warnings for `strncat()` | |||
| 2019-08-19 | Merge pull request #4638 from dearblue/simplify-get-args | Yukihiro "Matz" Matsumoto | |
| Simplify get arguments | |||
