| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-02-04 | Added docs for Axlsx#range_to_a | Randy Morgan | |
| 2013-02-04 | Extracted type based cell serializers | Randy Morgan | |
| 2013-01-23 | Updated README as pre-release prep | Randy Morgan | |
| 2013-01-23 | Updated chart vary_colors | Randy Morgan | |
| This sets the proper default for each chart type and lets us change it as we need. | |||
| 2013-01-20 | Merge pull request #163 from ngpestelos/master | Randy Morgan (@morgan_randy) | |
| Update comments to reflect new usage of add_row | |||
| 2013-01-21 | Update comments to reflect new usage of #add_row method | Nestor Pestelos and Ramon Tayag | |
| 2013-01-15 | Refactored relationship management for drawings | Randy Morgan | |
| This should fix #160 | |||
| 2013-01-15 | Added support for iso 8601 data types. | Randy Morgan | |
| Not really sure what excel is going to do with these data types, but hooking it up is the first step ;) | |||
| 2013-01-15 | added tests for trust_input | Randy Morgan | |
| 2013-01-10 | added documentation for trust_input and gemspec update. | Randy Morgan | |
| 2013-01-10 | Merge branch 'master' of https://github.com/randym/axlsx | Randy Morgan | |
| 2013-01-10 | update outline_level_rows and outline_level_columns example. | Randy Morgan | |
| 2013-01-10 | reduced processing of 3000 rows from 3+ seconds to just under 2 | Randy Morgan | |
| 2013-01-10 | Update axlsx.gemspec | Randy Morgan (@morgan_randy) | |
| rewording of gem description | |||
| 2013-01-07 | Merge pull request #155 from nilbus/name-validation | Randy Morgan (@morgan_randy) | |
| Fixes related to validating worksheet name uniqueness | |||
| 2013-01-02 | Worksheet name uniqueness doesn't apply to itself | Edward Anderson | |
| This constraint would prevent you from creating a new worksheet with the name that it would have gotten by default. | |||
| 2013-01-02 | Don't add worksheets to the workbook when initialize fails | Edward Anderson | |
| Creating a worksheet with an invalid name would still add it to the workbook, despite raising an exception. | |||
| 2012-12-21 | removed typo space | Randy Morgan | |
| 2012-12-21 | Applied patches for 1.8.7 | Randy Morgan | |
| 2012-12-20 | Removed validation for col#width | Randy Morgan | |
| This needs to be smarter and only validate when the user supplies a value directly. 10% performance increase just by removing the validataion as this gets updated every time we set a single cell value. | |||
| 2012-12-20 | Simplified to_xml_string serialization | Randy Morgan | |
| Spit out cell type based serializers and got rid of the case statement. | |||
| 2012-12-19 | Removed unused relationships_index_of method in pivot_table | Randy Morgan | |
| 2012-12-19 | Updated readme to include outine_level_rows and outline_level_columns change | Randy Morgan | |
| 2012-12-19 | changed outline_row to outline_level_row to minimize confusion with borders | Randy Morgan | |
| 2012-12-15 | Added methods to simplify outlining with specs | Randy Morgan | |
| worksheet#outline_rows worksheet#outline_columns | |||
| 2012-12-14 | Added formula_values options and specs for sheet format pr. | Randy Morgan | |
| This lets cache formula values and specify the default row height so that iOS and Max OSX previews render properly | |||
| 2012-12-14 | Updated readme and version for next release | Randy Morgan | |
| 2012-12-12 | Merge pull request #153 from ball-hayden/master | Randy Morgan (@morgan_randy) | |
| Test for invalid characters in the sheet name | |||
| 2012-12-12 | Test for invalid characters in the sheet name. | Hayden Ball | |
| With thanks to http://stackoverflow.com/a/451488/1322410 for providing the list of characters | |||
| 2012-12-04 | Created ios preview example | Randy Morgan | |
| This shows that shared_strings are required. Formula parsing is still outstanding. https://github.com/randym/axlsx/issues/149 | |||
| 2012-12-04 | Added sheet_format_pr to help iOS/OSX preview renderers look nice | Randy Morgan | |
| This is part of https://github.com/randym/axlsx/issues/149 | |||
| 2012-12-04 | Added unsigned_int and float attr_accessor helpers | Randy Morgan | |
| These need to be added to existing classes to replace all the repeated accessor method validation. | |||
| 2012-12-04 | Moved defined names in workbook to be serialized before pivot tables | Randy Morgan | |
| This fixes https://github.com/randym/axlsx/issues/150 | |||
| 2012-11-28 | Commented out defined_name test | Randy Morgan | |
| Seems the validation crashes on this, and it should not. Need to dig in and work it out. | |||
| 2012-11-28 | Added example of overriding data types | Randy Morgan | |
| 2012-11-28 | Uncommented named parts package serialization validation testing | Randy Morgan | |
| 2012-11-27 | Merge pull request #148 from alexrothenberg/pivot_table | Randy Morgan (@morgan_randy) | |
| Create a simple Pivot Table | |||
| 2012-11-27 | Merge pull request #147 from raiis/master | Randy Morgan (@morgan_randy) | |
| Different left/right border style | |||
| 2012-11-28 | Better way hot to override borders style. | raiis | |
| 2012-11-27 | Can configure a pivot table when creating it | Alex Rothenberg | |
| see examples/pivot_table.rb wb.add_worksheet(:name => "Data Sheet") do |sheet| sheet.add_row ['Month', 'Year', 'Type', 'Sales', 'Region'] 30.times { sheet.add_row [month, year, type, sales, region] } sheet.add_pivot_table 'G4:L17', "A1:E31" do |pivot_table| pivot_table.rows = ['Month', 'Year'] pivot_table.columns = ['Type'] pivot_table.data = ['Sales'] pivot_table.pages = ['Region'] end end | |||
| 2012-11-27 | Create a simple Pivot Table | Alex Rothenberg | |
| * an example can be run with `ruby examples/pivot_table.rb` * right now you cannot set options on the pivot table to make it useful (coming soon...) | |||
| 2012-11-27 | reverted changes to travis.yml | Randy Morgan | |
| 2012-11-27 | updated travis.yml | Randy Morgan | |
| 2012-11-26 | Added individual border override options. | raiis | |
| 2012-11-25 | Added note for ::CGI.escapeHTML performance issue | Randy Morgan | |
| 2012-11-25 | Updated profiler to use the standard 'no shared strings, autowith on' options | Randy Morgan | |
| 2012-11-25 | Removed row data type validation for cells | Randy Morgan | |
| This gives us a 24% increase in speed. Ill take that tradeoff against the risk that a user will be manually hacking cells and making a mess of it. | |||
| 2012-11-25 | moved sheet view example into examples.rb | Randy Morgan | |
| 2012-11-25 | Cleaned up examples directory | Randy Morgan | |
| 2012-11-25 | Cleaned up gemspec and removed pdf export example | Randy Morgan | |
