summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2023-04-06Fix Layout/FirstHashElementIndentation offenseGeremia Taglialatela
``` rubocop --only Layout/FirstHashElementIndentation ``` Manually fixed
2023-04-06Fix Layout/CommentIndentation offensesGeremia Taglialatela
``` rubocop --only Layout/CommentIndentation -a ```
2023-04-06Fix Layout/EmptyLineBetweenDefs offensesGeremia Taglialatela
``` rubocop --only Layout/EmptyLineBetweenDefs -a ```
2023-04-06Fix Layout/EmptyLines offensesGeremia Taglialatela
``` rubocop --only Layout/EmptyLines -a ```
2023-04-06Fix Layout/InitialIndentation offenseGeremia Taglialatela
``` rubocop --only Layout/InitialIndentation -a ```
2023-04-06Fix Style/Encoding offensesGeremia Taglialatela
``` rubocop --only Style/Encoding -a ```
2023-04-06Fix Layout/LeadingEmptyLines offensesGeremia Taglialatela
``` rubocop --only Layout/LeadingEmptyLines -a ```
2023-04-06Fix Layout/TrailingEmptyLines offensesGeremia Taglialatela
``` rubocop --only Layout/TrailingEmptyLines -a ```
2023-04-06Remove Layout/TrailingWhitespace offensesGeremia Taglialatela
``` rubocop --only Layout/TrailingWhitespace -a ```
2023-04-06Fix Layout/EndOfLine offensesGeremia Taglialatela
``` rubocop --only Layout/EndOfLine ``` Manually fixed
2023-04-06Add RuboCopGeremia Taglialatela
2023-04-06Add a default editor configGeremia Taglialatela
EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs. Ref: https://editorconfig.org/
2023-03-13Use stale@v2 to fix autoclosing issuesZsolt Kozaroczy
2023-03-09Do not close stale PRs and issues automatically [skip-ci]Koza
2023-03-01Fix download badge [skip-ci]Noel Peden
2022-12-05Switch to https where possibleGeremia Taglialatela
Update http links to https [ci skip]
2022-11-23Merge pull request #172 from westonganger/fix_border_creator_edges_bugNoel Peden
Fix bug in BorderCreator when second arg is nil
2022-11-02Improve BorderCreator argsWeston Ganger
2022-10-22Fix bug in BorderCreator when second arg is nilWeston Ganger
2022-10-21Merge pull request #170 from kiskoza/masterNoel Peden
Version bump to 3.3.0 [skip ci]
2022-10-21Version bump to 3.3.0 [skip ci]Koza
2022-10-21Merge pull request #156 from basefarm/pivot_multiple_data_columnsNoel Peden
Prevent Excel from crashing when multiple data columns added to PivotTable
2022-10-21Merge pull request #168 from westonganger/merge_axlsx_stylerNoel Peden
Merge axlsx_styler gem into caxlsx
2022-10-20Remove axlsx_styler gem from readmeWeston Ganger
2022-10-12Add example images, Fix axlsx_styler checkWeston Ganger
2022-10-12Resolve all TODOsWeston Ganger
2022-10-09Cleanup serialize calls from axlsx_styler testsWeston Ganger
2022-10-09ImprovementsWeston Ganger
2022-10-09Cleanup Stylesheet#add_stylesWeston Ganger
2022-10-09Remove active_support dependency from axlsx_stylerWeston Ganger
2022-09-29Merge axlsx_styler gem into caxlsxWeston Ganger
2022-09-26Make sure all examples and docs use binary mode for reading / writing XLSX filesStefan
Not using binary mode can cause encoding issues, see #138.
2022-09-23Improve documentation for `Worksheet#styles`Stefan Daschek
Closes #166
2022-09-21Update lib/axlsx/util/constants.rbStefan Daschek
Co-authored-by: Geremia Taglialatela <[email protected]>
2022-09-21Update lib/axlsx/workbook/worksheet/worksheet.rbStefan Daschek
Co-authored-by: Geremia Taglialatela <[email protected]>
2022-09-21Move worksheet name forbidden chars to a constantGeremia Taglialatela
2022-09-21Add worksheet name max length to a constantGeremia Taglialatela
Close #163
2022-09-17Clarify Hyperlinks Example for Internal LinksWeston Ganger
2022-07-22Update changelogKnut Stenmark
2022-07-21Prevent Excel from crashing when multiple data columns are added to PivotTableKnut Stenmark
Excel will crash unless both `colFields` and `colItems` are declared in the PivotTable xml. First `field` of `colFields` needs to be set to -2 to tell Excel that the value columns comes from individual columns and not groups. I do not know why `colItems` are needed, but when set, the Excel document opens without crashing.
2022-07-12Add `hideDropDown` alias for `showDropDown` setting, as the latter is ↵Koza
confusing to use (because its logic seems inverted).
2022-07-12Move "capture warning" test helper to its own moduleKoza
2022-07-09Add pivot table option to sort headers (#143)James Lam
2022-07-09Improve font exampleStefan Daschek
2022-07-09Update changelog, add missing PRs and IssuesKoza
2022-07-09Add a pull request template to make contributions easierKoza
2022-07-09Improve list validation exampleStefan Daschek
2022-06-05Add example for defining print area (#134)Stefan
2022-06-05Update changelogStefan
2022-06-05Implement “rounded corners” setting for chartsStefan
Until now this setting was not present in the generated XML. According to the ECMA spec the setting defaults to true, so charts always had rounded corners. Now rounded corners can be disabled explicitly.