| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-06-11 | Change “needs triage / known bug” links to also include closed tickets. | Stefan Daschek | |
| 2020-06-10 | Add section about known bugs, and link to Slack channel | Stefan Daschek | |
| 2020-06-10 | Add section about known bugs. | Stefan Daschek | |
| 2020-02-13 | Improve cell string_autowidth calculations (#44) | Weston Ganger | |
| Previously, cells with autowidth sometimes were too narrow for the content to fit. The original width calculation tried to take the difference between narrow and wide chars into account, but it didn’t work out very well. The new calculation is simpler. Compared to the previous implementation it results in cells being slightly wider in most cases. | |||
| 2020-02-07 | Remove global variables from example #32 (#41) | Zsolt Kozaroczy | |
| 2020-02-06 | Add slack channel [skip ci] | Noel Peden | |
| 2020-02-07 | Improve Readme Links to Examples (#45) | Weston Ganger | |
| 2020-01-28 | Fix typo in documentation (#42) | 延 | |
| 2019-12-29 | Escape special characters in charts (#40) | Zsolt Kozaroczy | |
| Fixes #37 | |||
| 2019-12-20 | Add option to protect against formula injection attacks (#34) | Gabriel Morcote | |
| Caxlsx used to treat cell values beginning with an equal sign as formula by default. This can be dangerous if the input data is user generated or coming from other untrusted sources (see https://www.owasp.org/index.php/CSV_Injection for details). This commit adds a new option `escape_formulas` that can be used with `#add_row` and on instances of `Cell`. If set to true, cell values beginning with an equal sign are treated as normal strings (and will be displayed literally by Excel and co.) | |||
| 2019-12-18 | README link fixes [skip ci] | Noel Peden | |
| 2019-12-18 | Merge branch 'master' of https://github.com/caxlsx/axlsx | Noel Peden | |
| 2019-12-18 | Rename axlsx_rails to caxlsx_rails [skip ci] | Noel Peden | |
| 2019-12-17 | Fix typos in BarChart comments | Koza | |
| 2019-12-17 | Check size in bytes as opposed to string size | Ian Clarkson | |
| - `size` returns length in characters, but doesn't factor in multibyte Unicode characters. By switching to `bytesize`, we check the relevant measure of how many bytes the worksheet name is. - Fixes https://github.com/randym/axlsx/issues/588 - Copy of PR against original axlsx (https://github.com/randym/axlsx/pull/589) | |||
| 2019-12-15 | Fix rdoc for BarSeries#shape | Stefan Daschek | |
| 2019-12-15 | Fix typo | Stefan Daschek | |
| See https://github.com/randym/axlsx/pull/606 | |||
| 2019-12-15 | Fix typo. | Stefan Daschek | |
| See https://github.com/randym/axlsx/pull/635 | |||
| 2019-12-15 | Fix typo. | Stefan Daschek | |
| See https://github.com/randym/axlsx/pull/617 | |||
| 2019-12-15 | Mention axslx_styler in related gems section | Stefan Daschek | |
| 2019-12-15 | Add changelog entry for 2.0.2 | Stefan Daschek | |
| 2019-12-14 | Add GitHub action for closing stale issues | Stefan Daschek | |
| 2019-12-03 | Remove unused / stubbed code related to parsing xlsx files | Stefan Daschek | |
| This code was added in 3def8f8895 (back in 2011). It has never been worked on further since; `Axlsx::Parser` is not used anywhere in the whole codebase. Currently there are no plans to support parsing xlsx file anytime soon, so let‘s remove all of this dead code. | |||
| 2019-11-23 | Add section about where to (not) post questions and find answers. | Stefan Daschek | |
| 2019-11-23 | Add link to FAQ | Stefan Daschek | |
| 2019-10-31 | Add link to contribution guidelines | Stefan Daschek | |
| 2019-10-31 | Create CONTRIBUTING.md | Stefan Daschek | |
| 2019-10-29 | Delete appveyor.yml | Weston Ganger | |
| 2019-10-29 | Improve README | Weston Ganger | |
| 2019-10-29 | Remove a typo from comment | vzvu3k6k | |
| Fixnum is removed by 12d6433, but this typo was remained. | |||
| 2019-10-29 | fix validate document with font option underline | Ali Mujtaba | |
| 2019-10-29 | Add Style Reference | Weston Ganger | |
| 2019-10-29 | Remove rubima.md | Weston Ganger | |
| 2019-10-29 | Use CHANGELOG.md instead of README for changelog | Weston Ganger | |
| 2019-10-04 | Fix rake reference [skip ci] | Noel Peden | |
| 2019-10-04 | Readme title fixes [skip ci] | Noel Peden | |
| 2019-10-04 | Version 3.0.1 bump [skip ci] | Noel Peden | |
| 2019-10-04 | Remove ruby 2.1 and 2.2 from Travis | Noel Peden | |
| 2019-10-02 | Merge pull request #10 from marshall-lee/caxlsx-fix_relationship_cache | Noel Peden | |
| Fix Relationship.instances cache | |||
| 2019-10-02 | Merge pull request #2 from inopinatus/master | Noel Peden | |
| Bump dependencies for nokogiri, ruby, and rubyzip. | |||
| 2019-10-02 | Cache relationship in Hash rather than in Array. | Vladimir Kochnev | |
| Also cacle only ids, not entire instances. | |||
| 2019-10-02 | Fix Relationship.instances cache. | Vladimir Kochnev | |
| This PR aims to fix several issues with Relationship cache: 1) It's not threadsafe, so I propose to use a TLS variable for this. 2) Memory obtained by cache remains non-freed before the next run of `serialize`. I think it should be freed immediately. 3) Memory should be freed in `ensure` block to prevent memory bloating in case of exception. *There are only two hard things in Computer Science: cache invalidation and naming things.* | |||
| 2019-09-30 | Fix github links / repo names [skip ci] | Noel Peden | |
| 2019-09-30 | Merge pull request #3 from kiskoza/fix-rails-auto-require | Noel Peden | |
| Add caxlsx.rb to make auto require work | |||
| 2019-09-29 | Bump dependencies for nokogiri, rubyzip, and Ruby. | Josh Goodall | |
| nokogiri <1.10.4 and rubyzip < 1.3.0 had CVEs and/or regressions, and whilst we're here, signal that it's okay to use Ruby 2.3 syntax and methods and later. | |||
| 2019-09-26 | Update gem install instructions to use caxlsx | Stefan Daschek | |
| 2019-09-26 | Update README.md to show Travis CI status of this fork. | Josef Šimánek | |
| 2019-09-26 | add some ruby versions | takkanm | |
| 2019-09-26 | add and update some ruby versions | takkanm | |
| 2019-09-26 | Fix URL in README (#6) | Paul McMahon | |
