spreadsheet 1.1.4 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/Manifest.txt +1 -0
- data/bin/bundle +114 -0
- data/bin/bundler +17 -0
- data/bin/oletool +29 -0
- data/bin/rake +29 -0
- data/bin/sow +17 -0
- data/bin/xlsopcodes +12 -0
- data/lib/spreadsheet/excel/internals.rb +1 -1
- data/lib/spreadsheet/excel/reader/biff8.rb +1 -1
- data/lib/spreadsheet/excel/reader.rb +12 -10
- data/lib/spreadsheet/excel/workbook.rb +1 -2
- data/lib/spreadsheet/excel/writer/n_worksheet.rb +0 -75
- data/lib/spreadsheet/excel/writer/workbook.rb +5 -92
- data/lib/spreadsheet/excel/writer/worksheet.rb +3 -81
- data/lib/spreadsheet/excel.rb +0 -6
- data/lib/spreadsheet/format.rb +2 -2
- data/lib/spreadsheet/version.rb +7 -0
- data/lib/spreadsheet/workbook.rb +1 -1
- data/lib/spreadsheet/worksheet.rb +23 -13
- data/lib/spreadsheet.rb +2 -4
- data/test/data/test_compact_format_date.xls +0 -0
- data/test/data/test_compact_many_rows.xls +0 -0
- data/test/data/test_missing_format.xls +0 -0
- data/test/data/test_sizes.xls +0 -0
- data/test/excel/reader.rb +13 -0
- data/test/format.rb +2 -0
- data/test/integration.rb +36 -12
- data/test/suite.rb +2 -0
- data/test/worksheet.rb +26 -4
- metadata +48 -46
- data/.gitignore +0 -2
- data/.travis.yml +0 -35
- data/Excel97-2007BinaryFileFormatSpecification.pdf +0 -0
- data/GUIDE.md +0 -339
- data/Gemfile +0 -10
- data/Gemfile.lock +0 -23
- data/History.md +0 -746
- data/README.md +0 -113
- data/Rakefile +0 -24
- data/excelfileformat.pdf +0 -0
- data/spreadsheet.gemspec +0 -25
data/History.md
DELETED
@@ -1,746 +0,0 @@
|
|
1
|
-
### 1.1.3 / 06.08.2016
|
2
|
-
|
3
|
-
Author: Alexandre Balon-Perin <abalonperin@gilt.jp>
|
4
|
-
Date: Fri Aug 5 17:19:29 2016 +0900
|
5
|
-
|
6
|
-
* Fix issue with iconv on Ubuntu 12.04
|
7
|
-
* This fix is related to a bug in the iconv implementation packaged in libc6 on Ubuntu 12.04
|
8
|
-
* For some reasons, the encoding options //TRANSLIT//IGNORE are improperly applied.
|
9
|
-
* When //TRANSLIT is specified, instead of rescuing errors related to //TRANSLIT and checking if the //IGNORE is set, the code simply crashes.
|
10
|
-
|
11
|
-
### 1.1.2 / 29.03.2016
|
12
|
-
Author: Aleksandr Boykov <aleksandr.boykov@parelio.com>
|
13
|
-
Date: Mon Mar 28 14:07:35 2016 -0400
|
14
|
-
|
15
|
-
fixes compact! method when the excel document has dates
|
16
|
-
|
17
|
-
### 1.1.1 / 03.01.2016
|
18
|
-
|
19
|
-
Author: ChouAndy <chouandy@ecoworkinc.com>
|
20
|
-
Date: Sun Jan 3 17:26:18 2016 +0800
|
21
|
-
|
22
|
-
Fixed Unknown Codepage 0x5212
|
23
|
-
|
24
|
-
### 1.1.0 / 08.12.2015
|
25
|
-
|
26
|
-
Author: Matthew Boeh <matt@crowdcompass.com>
|
27
|
-
Date: Mon Dec 7 11:18:55 2015 -0800
|
28
|
-
|
29
|
-
* Disregard locale indicators when determining whether a cell contains a date/time.
|
30
|
-
|
31
|
-
### 1.0.9 / 18.11.2015
|
32
|
-
|
33
|
-
Author: 545ch4 <s@rprojekt.org>
|
34
|
-
Date: Mon Nov 16 10:26:27 2015 +0100
|
35
|
-
|
36
|
-
* Add smart method compact! to worksheet
|
37
|
-
* Use compact! to reduce the number of rows and columns by striping empty one at both ends.
|
38
|
-
|
39
|
-
### 1.0.8 / 20.10.2015
|
40
|
-
|
41
|
-
commit e9bd1dd34998803b63460f4951e9aa34e569bd8f
|
42
|
-
Author: Pierre Laprée <pilap82@users.noreply.github.com>
|
43
|
-
Date: Tue Oct 20 03:12:22 2015 +0200
|
44
|
-
|
45
|
-
* Remove stray `puts`
|
46
|
-
* A `puts` instruction pollutes the log and doesn't serve any purpose. As such, we propose its removal.
|
47
|
-
|
48
|
-
### 1.0.7 / 23.09.2015
|
49
|
-
|
50
|
-
Author: Leopoldo Lee Agdeppa III <leopoldo.agdeppa@gmail.com>
|
51
|
-
Date: Wed Sep 23 08:24:16 2015 +0800
|
52
|
-
|
53
|
-
* Update worksheet.rb
|
54
|
-
* Adding Test for Freeze panels
|
55
|
-
* Update worksheet.rb
|
56
|
-
* Added freeze (freeze panel) functionality
|
57
|
-
* Update worksheet.rb
|
58
|
-
* Freeze (freeze window) functionality added to worksheet
|
59
|
-
|
60
|
-
### 1.0.6 / 14.09.2015
|
61
|
-
|
62
|
-
Author: Yann Plancqueel <yplancqueel@gmail.com>
|
63
|
-
Date: Sat Sep 12 15:32:49 2015 +0200
|
64
|
-
|
65
|
-
* bugfix opening a spreadsheet with missing format
|
66
|
-
|
67
|
-
### 1.0.5 / 01.09.2015
|
68
|
-
|
69
|
-
Author: kunashir <kunashir@list.ru>
|
70
|
-
Date: Tue Sep 1 13:12:49 2015 +0300
|
71
|
-
|
72
|
-
* add format for nubmer with out #
|
73
|
-
|
74
|
-
### 1.0.4 / 18.07.2015
|
75
|
-
|
76
|
-
Author: Edmund Mai <edmundm@crowdtap.com>
|
77
|
-
Date: Fri Jul 17 15:32:47 2015 -0400
|
78
|
-
|
79
|
-
* Fixes slow Spreadsheet.open response in console
|
80
|
-
|
81
|
-
### 1.0.3 / 10.03.2015
|
82
|
-
|
83
|
-
Author: Robert Eshleman <c.robert.eshleman@gmail.com>
|
84
|
-
Date: Mon Mar 9 09:47:59 2015 -0400
|
85
|
-
|
86
|
-
* Update `ruby-ole` to `1.2.11.8`
|
87
|
-
** `ruby-ole` <= `1.2.11.7` throws a duplicated key warning in Ruby 2.2.
|
88
|
-
** This commit updates `ruby-ole` to `1.2.11.8`, which fixes this warning.
|
89
|
-
** Related discussion: [aquasync/ruby-ole#15] - [aquasync/ruby-ole#15]: https://github.com/aquasync/ruby-ole/issues/15
|
90
|
-
|
91
|
-
### 1.0.2 / 05.03.2015
|
92
|
-
|
93
|
-
Author: cantin <cantin2010@gmail.com>
|
94
|
-
Date: Thu Mar 5 16:13:59 2015 +0800
|
95
|
-
|
96
|
-
* add Rational support
|
97
|
-
* add rational requirement
|
98
|
-
* use old rational syntax in test
|
99
|
-
|
100
|
-
### 1.0.1 / 22.01.2015
|
101
|
-
|
102
|
-
Author: Sergey Konotopov <lalalalalala@gmail.com>
|
103
|
-
Date: Wed Jan 21 13:19:56 2015 +0300
|
104
|
-
|
105
|
-
* Fixing Excel::Worksheet#dimensions
|
106
|
-
|
107
|
-
### 1.0.0 / 29.08.2014
|
108
|
-
|
109
|
-
* added spreadsheet/errors.rb to Manifest.txt
|
110
|
-
|
111
|
-
### 0.9.9 / 28.08.2014
|
112
|
-
|
113
|
-
Author: PikachuEXE <pikachuexe@gmail.com>
|
114
|
-
Date: Wed Aug 27 09:55:41 2014 +0800
|
115
|
-
|
116
|
-
* Add custom error classes
|
117
|
-
* Raise custom error for unknown code page or unsupported encoding
|
118
|
-
|
119
|
-
### 0.9.8 / 19.08.2014
|
120
|
-
|
121
|
-
Author: PikachuEXE <pikachuexe@gmail.com>
|
122
|
-
Date: Tue Aug 19 09:54:30 2014 +0800
|
123
|
-
|
124
|
-
* Fix Encoding for MRI 2.1.0
|
125
|
-
|
126
|
-
### 0.9.7 / 04.02.2014
|
127
|
-
|
128
|
-
* Avoid exception when reading text objects
|
129
|
-
* Add test for drawings with text (currenty broken)
|
130
|
-
* Restore xlsopcodes script which had been mangled in previous commits
|
131
|
-
* Remove ruby 1.9 from roadmap, it's already working fine
|
132
|
-
* Fix excel file format documentation which had been mangled in previous commits
|
133
|
-
|
134
|
-
### 0.9.6 / 02.12.2013
|
135
|
-
|
136
|
-
Author: Malcolm Blyth <trashbat@co.ck>
|
137
|
-
Date: Mon Dec 2 11:44:25 2013 +0000
|
138
|
-
|
139
|
-
* Fixed issue whereby object author being null caused a gross failure.
|
140
|
-
* Now returns object author as an empty string
|
141
|
-
|
142
|
-
### 0.9.5 / 20.11.2013
|
143
|
-
|
144
|
-
Author: Malcolm Blyth <trashbat@co.ck>
|
145
|
-
Date: Tue Nov 19 15:14:31 2013 +0000
|
146
|
-
|
147
|
-
* Bumped revision
|
148
|
-
* Fixed author stringname error (damn this 1 based counting)
|
149
|
-
* Updating integration test to check for comments contained within the cells.
|
150
|
-
* Checking also for multiple comments in a sheet
|
151
|
-
|
152
|
-
### 0.9.4 / 12.11.2013
|
153
|
-
|
154
|
-
* Updated Manifest.txt
|
155
|
-
|
156
|
-
### 0.9.3 / 12.11.2013
|
157
|
-
|
158
|
-
commit e15d8b45d7587f7ab78c7b7768de720de9961341 (refs/remotes/gguerrero/master)
|
159
|
-
Author: Guillermo Guerrero <g.guerrero.bus@gmail.com>
|
160
|
-
Date: Tue Nov 12 11:50:30 2013 +0100
|
161
|
-
|
162
|
-
* Refactor update_format for cloning format objects
|
163
|
-
* Added lib/spreadsheet/note.rb to Manifest.txt file
|
164
|
-
* 'update_format' methods now receive a hash of key => values to update
|
165
|
-
|
166
|
-
Author: Przemysław Ciąćka <przemyslaw.ciacka@gmail.com>
|
167
|
-
Date: Tue Nov 12 00:07:57 2013 +0100
|
168
|
-
|
169
|
-
* Added lib/spreadsheet/note.rb to Manifest.txt file
|
170
|
-
|
171
|
-
### 0.9.2 / 11.11.2013
|
172
|
-
|
173
|
-
commit e70dc0dbbc966ce312b45b0d44d0c3b1dc10aad6
|
174
|
-
Author: Malcolm Blyth <trashbat@co.ck>
|
175
|
-
Date: Mon Nov 11 15:53:58 2013 +0000
|
176
|
-
|
177
|
-
*Corrected compressed string formatting - *U (UTF-8) should have been *S (16-bit string)
|
178
|
-
*Completed addition of notes hash to worksheet
|
179
|
-
*Bumped revision
|
180
|
-
*Updated reader and note
|
181
|
-
Note class no longer extends string for simplicity and debug of class (pp now works a bit more easily)
|
182
|
-
Reader has had loads of changes (still WIP) to allow objects of class
|
183
|
-
Note and NoteObject to be created and combined in the postread_worksheet function
|
184
|
-
*Adding noteObject to deal with the Object (and ultimately text comment field) created by excel's madness
|
185
|
-
|
186
|
-
### 0.9.1 / 24.10.2013
|
187
|
-
|
188
|
-
* Author: Matti Lehtonen <matti.lehtonen@puujaa.com>
|
189
|
-
Date: Thu Oct 24 09:41:50 2013 +0300
|
190
|
-
|
191
|
-
* Add support for worksheet visibility
|
192
|
-
|
193
|
-
### 0.9.0 / 16.09.2013
|
194
|
-
|
195
|
-
* Author: Pavel <pavel.evst@gmail.com>
|
196
|
-
Date: Mon Sep 16 14:02:49 2013 +0700
|
197
|
-
|
198
|
-
* Test cases for Worksheet#margins, Worksheet#pagesetup, Workbook#delete_worksheet. Fix bugs related to it.
|
199
|
-
* Page margins reader/writter
|
200
|
-
* Markdownify GUIDE
|
201
|
-
* Add page setup options (landscape or portrait and adjust_to)
|
202
|
-
|
203
|
-
### 0.8.9 / 24.08.2013
|
204
|
-
|
205
|
-
Author: Doug Renn <renn@nestegg.com>
|
206
|
-
Date: Fri Aug 23 17:10:24 2013 -0600
|
207
|
-
|
208
|
-
* Work around to handle number formats that are being mistaken time formats
|
209
|
-
|
210
|
-
### 0.8.8 / 02.08.2013
|
211
|
-
|
212
|
-
Author: Nathan Colgate <nathancolgate@gmail.com>
|
213
|
-
Date: Thu Aug 1 15:01:57 2013 -0500
|
214
|
-
|
215
|
-
* Update excel/internals.rb to reference a valid Encoding type
|
216
|
-
* Encoding.find("MACINTOSH") was throwing an error. Encoding.find("MACROMAN") does not.
|
217
|
-
|
218
|
-
### 0.8.7 / 24.07.2013
|
219
|
-
|
220
|
-
Author: Yasuhiro Asaka <yasaka@ywesee.com>
|
221
|
-
Date: Wed Jul 24 11:31:12 2013 +0900
|
222
|
-
|
223
|
-
* Remove warnings for test suite
|
224
|
-
* warning: mismatched indentations at 'end' with 'class' at xxx
|
225
|
-
* warning: method redefined; discarding old xxx
|
226
|
-
* warning: assigned but unused variable xxx
|
227
|
-
* warning: previous definition of xxx was here
|
228
|
-
* The source :rubygems is deprecated because HTTP
|
229
|
-
* requests are insecure. (Gemfile)
|
230
|
-
|
231
|
-
### 0.8.6 / 11.07.2013
|
232
|
-
|
233
|
-
Author: Arjun Anand and Robert Stern <dev+arjuna+rstern@reenhanced.com>
|
234
|
-
Date: Wed Jul 10 13:45:30 2013 -0400
|
235
|
-
|
236
|
-
* Allow editing of an existing worksheet.
|
237
|
-
|
238
|
-
### 0.8.5 / 24.04.2013
|
239
|
-
|
240
|
-
* Applied Patch by Joao Almeida: When editing an existing sheet, cells merge was not working.
|
241
|
-
* https://github.com/voraz/spreadsheet/pull/14.patch
|
242
|
-
|
243
|
-
### 0.8.4 / 20.04.2013
|
244
|
-
|
245
|
-
* Applied Patch by boss@airbladesoftware.com
|
246
|
-
* https://groups.google.com/d/msg/rubyspreadsheet/73IoEwSx69w/barE7uVnIzwJ
|
247
|
-
|
248
|
-
### 0.8.3 / 12.03.2013
|
249
|
-
|
250
|
-
Author: Keith Walsh <keith.walsh@adtegrity.com>
|
251
|
-
Date: Mon Mar 11 16:48:25 2013 -0400
|
252
|
-
|
253
|
-
* Typo correction in guide example.
|
254
|
-
|
255
|
-
### 0.8.2 / 28.02.2013
|
256
|
-
|
257
|
-
Author: Roque Pinel <roque.pinel@infotechfl.com>
|
258
|
-
Date: Wed Feb 27 12:10:29 2013 -0500
|
259
|
-
|
260
|
-
* Requiring BigDecimal for checking.
|
261
|
-
* Made API friendly to BigDecimal precision.
|
262
|
-
* Changes introduced by the user 'valeriusjames'.
|
263
|
-
|
264
|
-
### 0.8.1 / 18.02.2013
|
265
|
-
|
266
|
-
* Updated Manifest.txt to include lib/spreadsheet/excel/rgb.rb
|
267
|
-
|
268
|
-
### 0.8.0 / 18.02.2013
|
269
|
-
|
270
|
-
* Adding support for converting color palette values to RGB values (not vice-versa..yet)
|
271
|
-
* by https://github.com/dancaugherty/spreadsheet/compare/master...rgb
|
272
|
-
|
273
|
-
### 0.7.9 / 06.02.2013
|
274
|
-
|
275
|
-
Author: Eugeniy Belyaev (zhekanax)
|
276
|
-
|
277
|
-
* You can merge if you are interested in perl-like Workbook.set_custom_color
|
278
|
-
implementation. I know it is not really a proper way to deal with custom colors, but
|
279
|
-
nevertheless it makes it possible.
|
280
|
-
* https://github.com/zdavatz/spreadsheet/pull/27
|
281
|
-
|
282
|
-
### 0.7.8 / 06.02.2013
|
283
|
-
|
284
|
-
Author: Kenichi Kamiya <kachick1@gmail.com>
|
285
|
-
Date: Wed Feb 6 11:23:35 2013 +0900
|
286
|
-
|
287
|
-
* Link to Travis CI on README
|
288
|
-
* Remove warnings "assigned but unused variable" in test
|
289
|
-
* Remove warnings "assigned but unused variable"
|
290
|
-
* Enable $VERBOSE flag when running test
|
291
|
-
|
292
|
-
### 0.7.7 / 22.01.2013
|
293
|
-
|
294
|
-
Author: DeTeam <timur.deteam@gmail.com>
|
295
|
-
Date: Tue Jan 22 19:11:52 2013 +0400
|
296
|
-
|
297
|
-
* Make tests pass
|
298
|
-
* Readme updated
|
299
|
-
* RuntimeError when file is empty
|
300
|
-
* Hoe in dev deps
|
301
|
-
* Finish with bundler
|
302
|
-
* Add a Gemfile
|
303
|
-
|
304
|
-
also see: https://github.com/zdavatz/spreadsheet/pull/24
|
305
|
-
|
306
|
-
### 0.7.6 / 15.01.2013
|
307
|
-
|
308
|
-
Author: Kenichi Kamiya <kachick1@gmail.com>
|
309
|
-
Date: Tue Jan 15 15:52:58 2013 +0900
|
310
|
-
|
311
|
-
* Remove warnings "method redefined; discarding old default_format"
|
312
|
-
* Remove warnings "`*' interpreted as argument prefix"
|
313
|
-
* Remove warnings "instance variable @{ivar} not initialized"
|
314
|
-
* Remove warnings "assigned but unused variable"
|
315
|
-
|
316
|
-
also see: https://github.com/zdavatz/spreadsheet/pull/21
|
317
|
-
|
318
|
-
### 0.7.5 / 06.12.2012
|
319
|
-
|
320
|
-
* Add error tolerant values for Iconv when writing spreadsheet
|
321
|
-
* by andrea@spaghetticode.it
|
322
|
-
|
323
|
-
### 0.7.4 / 06.10.2012
|
324
|
-
|
325
|
-
* Adds Spreadsheet::Excel::Row#to_a method to properly decode Date and DateTime data.
|
326
|
-
* patches by https://github.com/mdgreenfield/spreadsheet
|
327
|
-
|
328
|
-
### 0.7.3 / 26.06.2012
|
329
|
-
|
330
|
-
* Fix Format borders
|
331
|
-
* see https://github.com/zdavatz/spreadsheet/pull/6 for full details.
|
332
|
-
* patches by uraki66@gmail.com
|
333
|
-
|
334
|
-
### 0.7.2 / 14.06.2012
|
335
|
-
|
336
|
-
* many changes by Mina Naguib <mina.git@naguib.ca>
|
337
|
-
* see git log for full details
|
338
|
-
|
339
|
-
### 0.7.1 / 08.05.2012
|
340
|
-
|
341
|
-
* Author: Artem Ignatiev <zazubrik@gmail.com>
|
342
|
-
* remove require and rake altogether
|
343
|
-
* gem build and rake gem both work fine without those requires,
|
344
|
-
* and requiring 'rake' broke bundler
|
345
|
-
* add rake as development dependency
|
346
|
-
* Somehow it broken rake on my other project
|
347
|
-
|
348
|
-
### 0.7.0 / 07.05.2012
|
349
|
-
|
350
|
-
* Author: Artem Ignatiev <zazubrik@gmail.com>
|
351
|
-
* use both ruby 1.8 and 1.9 compatible way of getting character code when hashing
|
352
|
-
* Fix syntax for ruby-1.9
|
353
|
-
* return gemspec so that bundler can find it
|
354
|
-
When bundler loads gemspec, it evaluates it, and if the return value is
|
355
|
-
not a gem specification built, refuses to load the gem.
|
356
|
-
* Testing worksheet protection
|
357
|
-
|
358
|
-
### 0.6.9 / 28.04.2012
|
359
|
-
|
360
|
-
* Yield is more simple here too.
|
361
|
-
* No need to capture the block in Spreadsheet.open
|
362
|
-
* Rather than extending a core class, let's just use #rcompact from a helper module
|
363
|
-
|
364
|
-
### 0.6.8 / 20.01.2012
|
365
|
-
|
366
|
-
* adds the fix to allow the writing of empty rows, by ClemensP.
|
367
|
-
* Test also by ClemensP.
|
368
|
-
|
369
|
-
### 0.6.7 / 18.01.2012
|
370
|
-
|
371
|
-
* http://dev.ywesee.com/wiki.php/Gem/Spreadsheet points point 2.
|
372
|
-
* Tests by Michal
|
373
|
-
* Patches by Timon
|
374
|
-
|
375
|
-
### 0.6.6 / 18.01.2012
|
376
|
-
|
377
|
-
* http://dev.ywesee.com/wiki.php/Gem/Spreadsheet points 8 and 9.
|
378
|
-
* Fixes byjsaak@napalm.hu
|
379
|
-
* Patches by Vitaly Klimov
|
380
|
-
|
381
|
-
### 0.6.5.9 / 7.9.2011
|
382
|
-
|
383
|
-
* Fixed a frozen string bug thanks to dblock (Daniel Doubrovkine),
|
384
|
-
* dblock@dblock.org
|
385
|
-
|
386
|
-
* https://github.com/dblock/spreadsheet/commit/164dcfbb24097728f1a7453702c270107e725b7c
|
387
|
-
|
388
|
-
### 0.6.5.8 / 30.8.2011
|
389
|
-
|
390
|
-
* This patch is about adding a sheet_count method to workbook so that it returns
|
391
|
-
* the total no of worksheets for easy access. Please check. By
|
392
|
-
* tamizhgeek@gmail.com
|
393
|
-
|
394
|
-
* https://gist.github.com/1180625
|
395
|
-
|
396
|
-
### 0.6.5.7 / 20.7.2011
|
397
|
-
|
398
|
-
* Fixed the bug introduced by Roel van der Hoorn and updated the test cases.
|
399
|
-
|
400
|
-
* https://github.com/vanderhoorn/spreadsheet/commit/c79ab14dcf40dee1d6d5ad2b174f3fe31414ca28
|
401
|
-
|
402
|
-
### 0.6.5.6 / 20.7.2011
|
403
|
-
|
404
|
-
* Added a fix from Roel van der Hoorn to sanitize_worksheets if 'sheets' is empty.
|
405
|
-
|
406
|
-
* https://github.com/vanderhoorn/spreadsheet/commit/c109f2ac5486f9a38a6d93267daf560ab4b9473e
|
407
|
-
|
408
|
-
### 0.6.5.5 / 24.6.2011
|
409
|
-
|
410
|
-
* updated the color code for orange to 0x0034 => :orange, thanks to the hint of Jonty
|
411
|
-
|
412
|
-
* https://gist.github.com/1044700
|
413
|
-
|
414
|
-
### 0.6.5.4 / 18.4.2011
|
415
|
-
|
416
|
-
* Updated worksheet.rb according to the Patch of Björn Andersson.
|
417
|
-
|
418
|
-
* https://gist.github.com/925007#file_test.patch
|
419
|
-
* http://url.ba/09p9
|
420
|
-
|
421
|
-
### 0.6.5.3 / 23.3.2011
|
422
|
-
|
423
|
-
* Updated Txt lib/spreadsheet/excel/writer/biff8.rb with a Patch from Alexandre Bini
|
424
|
-
|
425
|
-
* See this for full detail: http://url.ba/6r1z
|
426
|
-
|
427
|
-
### 0.6.5.2 / 14.2.2011
|
428
|
-
|
429
|
-
* Updated test/integration.rb to work with Ruby ruby 1.9.2p136 (2010-12-25 revision 30365) [i686-linux]
|
430
|
-
|
431
|
-
* Thanks for the hint tomiacannondale@gmail.com
|
432
|
-
|
433
|
-
### 0.6.5.1 / 17.1.2011
|
434
|
-
|
435
|
-
* One enhancement thanks to Qiong Peng, Moo Yu, and Thierry Thelliez
|
436
|
-
|
437
|
-
* http://dev.ywesee.com/wiki.php/Gem/Spreadsheet
|
438
|
-
|
439
|
-
### 0.6.5 / 07.12.2010
|
440
|
-
|
441
|
-
* 2 Enhancements courtesy to ISS AG.
|
442
|
-
|
443
|
-
* Outlining (Grouping) of lines and columns is now possible. The outlining
|
444
|
-
maximum is 8. This means you can do 8 subgroups in a group.
|
445
|
-
|
446
|
-
* Hiding and Unhiding of lines and columns is now possible.
|
447
|
-
|
448
|
-
* Both of above two points is now possible by creating a new Excel File from
|
449
|
-
scratch or editing an existing XLS and adding groups or hiding lines to it.
|
450
|
-
|
451
|
-
### 0.6.4.1 / 2009-09-17
|
452
|
-
|
453
|
-
* 3 Bugfixes
|
454
|
-
|
455
|
-
* Fixes the issue reported by Thomas Preymesser and tracked down most of the
|
456
|
-
way by Hugh McGowan in
|
457
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=26647&group_id=678&atid=2677
|
458
|
-
where reading the value of the first occurrence of a shared formula
|
459
|
-
failed.
|
460
|
-
|
461
|
-
* Fixes the issue reported by Anonymous in
|
462
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=26546&group_id=678&atid=2677
|
463
|
-
where InvalidDate was raised for some Dates.
|
464
|
-
|
465
|
-
* Fixes the issue reported by John Lee in
|
466
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=27110&group_id=678&atid=2677
|
467
|
-
which is probably a duplicate of the Bug previously reported by Kadvin XJ in
|
468
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=26182&group_id=678&atid=2677
|
469
|
-
where unchanged rows were marked as changed in the Excel-Writer while the
|
470
|
-
File was being written, triggering an Error.
|
471
|
-
|
472
|
-
* 1 minor enhancement
|
473
|
-
|
474
|
-
* Detect row offsets from Cell data if Row-Ops are missing
|
475
|
-
This fixes a bug reported by Alexander Logvinov in
|
476
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=26513&group_id=678&atid=2677
|
477
|
-
|
478
|
-
|
479
|
-
### 0.6.4 / 2009-07-03
|
480
|
-
|
481
|
-
* 5 Bugfixes
|
482
|
-
|
483
|
-
* Fixes the issue reported by Harley Mackenzie in
|
484
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=24119&group_id=678&atid=2677
|
485
|
-
where in some edge-cases numbers were stored incorrectly
|
486
|
-
|
487
|
-
* Fixes the issue reported and fixed by someone23 in
|
488
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=25732&group_id=678&atid=2677
|
489
|
-
where using Row-updater methods with blocks caused LocalJumpErrors
|
490
|
-
|
491
|
-
* Fixes the issue reported and fixed by Corey Burrows in
|
492
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=25784&group_id=678&atid=2677
|
493
|
-
where "Setting the height of a row, either in Excel directly, or via the
|
494
|
-
Spreadsheet::Row#height= method results in a row that Excel displays with
|
495
|
-
the maximum row height (409)."
|
496
|
-
|
497
|
-
* Fixes the issue reported by Don Park in
|
498
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=25968&group_id=678&atid=2677
|
499
|
-
where some Workbooks could not be parsed due to the OLE-entry being all
|
500
|
-
uppercase
|
501
|
-
|
502
|
-
* Fixes the issue reported by Iwan Buetti in
|
503
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=24414&group_id=678&atid=2677
|
504
|
-
where parsing some Workbooks failed with an Invalid date error.
|
505
|
-
|
506
|
-
|
507
|
-
* 1 major enhancement
|
508
|
-
|
509
|
-
* Spreadsheet now runs on Ruby 1.9
|
510
|
-
|
511
|
-
### 0.6.3.1 / 2009-02-13
|
512
|
-
|
513
|
-
* 3 Bugfixes
|
514
|
-
|
515
|
-
* Only selects the First Worksheet by default
|
516
|
-
This deals with an issue reported by Biörn Andersson in
|
517
|
-
http://rubyforge.org/tracker/?func=detail&atid=2677&aid=23736&group_id=678
|
518
|
-
where data-edits in OpenOffice were propagated through all selected
|
519
|
-
sheets.
|
520
|
-
|
521
|
-
* Honors Row, Column, Worksheet and Workbook-formats
|
522
|
-
and thus fixes a Bug introduced in
|
523
|
-
http://scm.ywesee.com/?p=spreadsheet;a=commit;h=52755ad76fdda151564b689107ca2fbb80af3b78
|
524
|
-
and reported in
|
525
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=23875&group_id=678&atid=2678
|
526
|
-
and by Joachim Schneider in
|
527
|
-
http://rubyforge.org/forum/forum.php?thread_id=31056&forum_id=2920
|
528
|
-
|
529
|
-
* Fixes a bug reported by Alexander Skwar in
|
530
|
-
http://rubyforge.org/forum/forum.php?thread_id=31403&forum_id=2920
|
531
|
-
where the user-defined formatting of Dates and Times was overwritten with
|
532
|
-
a default format, and other issues connected with writing Dates and Times
|
533
|
-
into Spreadsheets.
|
534
|
-
|
535
|
-
* 1 minor enhancements
|
536
|
-
|
537
|
-
* Spreadsheet shold now be completely warning-free,
|
538
|
-
as requested by Eric Peterson in
|
539
|
-
http://rubyforge.org/forum/forum.php?thread_id=31346&forum_id=2920
|
540
|
-
|
541
|
-
### 0.6.3 / 2009-01-14
|
542
|
-
|
543
|
-
* 1 Bugfix
|
544
|
-
|
545
|
-
* Fixes the issue reported by Corey Martella in
|
546
|
-
http://rubyforge.org/forum/message.php?msg_id=63651
|
547
|
-
as well as other issues engendered by the decision to always shorten
|
548
|
-
Rows to the last non-nil value.
|
549
|
-
|
550
|
-
* 2 minor enhancements
|
551
|
-
|
552
|
-
* Added bin/xlsopcodes, a tool for examining Excel files
|
553
|
-
|
554
|
-
* Documents created by Spreadsheet can now be Printed in Excel and
|
555
|
-
Excel-Viewer.
|
556
|
-
This issue was reported by Spencer Turner in
|
557
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=23287&group_id=678&atid=2677
|
558
|
-
|
559
|
-
### 0.6.2.1 / 2008-12-18
|
560
|
-
|
561
|
-
* 1 Bugfix
|
562
|
-
|
563
|
-
* Using Spreadsheet together with 'jcode' could lead to broken Excel-Files
|
564
|
-
Thanks to Eugene Mikhailov for tracking this one down in:
|
565
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=23085&group_id=678&atid=2677
|
566
|
-
|
567
|
-
### 0.6.2 / 2008-12-11
|
568
|
-
|
569
|
-
* 14 Bugfixes
|
570
|
-
|
571
|
-
* Fixed a bug where #<boolean>! methods did not trigger a call to
|
572
|
-
#row_updated
|
573
|
-
|
574
|
-
* Corrected the Row-Format in both Reader and Writer (was Biff5 for some
|
575
|
-
reason)
|
576
|
-
|
577
|
-
* Populates Row-instances with @default_format, @height, @outline_level
|
578
|
-
and @hidden attributes
|
579
|
-
|
580
|
-
* Fixed a Bug where Workbooks deriving from a Template-Workbook without
|
581
|
-
SST could not be saved
|
582
|
-
Reported in
|
583
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=22863&group_id=678&atid=2678
|
584
|
-
|
585
|
-
* Improved handling of Numeric Values (writes a RK-Entry for a Float
|
586
|
-
only if it can be encoded with 4 leading zeroes, and a Number-Entry for an
|
587
|
-
Integer only if it cannot be encoded as an RK)
|
588
|
-
|
589
|
-
* Fixes a bug where changes to a Row were ignored if they were
|
590
|
-
outside of an existing Row-Block.
|
591
|
-
|
592
|
-
* Fixes a bug where MULRK-Entries sometimes only contained a single RK
|
593
|
-
|
594
|
-
* Fixes a bug where formatting was ignored if it was applied to empty Rows
|
595
|
-
Reported by Zomba Lumix in
|
596
|
-
http://rubyforge.org/forum/message.php?msg_id=61985
|
597
|
-
|
598
|
-
* Fixes a bug where modifying a Row in a loaded Workbook could lead to Rows
|
599
|
-
with smaller indices being set to nil.
|
600
|
-
Reported by Ivan Samsonov in
|
601
|
-
http://rubyforge.org/forum/message.php?msg_id=62816
|
602
|
-
|
603
|
-
* Deals with rounding-problems when calculating Time
|
604
|
-
Reported by Bughunter extraordinaire Bjørn Hjelle
|
605
|
-
|
606
|
-
* Correct splitting of wide characters in SST
|
607
|
-
Reported by Michel Ziegler and by Eugene Mikhailov in
|
608
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=23085&group_id=678&atid=2677
|
609
|
-
|
610
|
-
* Fix an off-by-one error in write_mulrk that caused Excel to complain that
|
611
|
-
'Data may be lost', reported by Emma in
|
612
|
-
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/321979
|
613
|
-
and by Chris Lowis in
|
614
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=22892&group_id=678&atid=2677
|
615
|
-
|
616
|
-
|
617
|
-
* Read formats correctly in read_mulrk
|
618
|
-
Reported by Ivan Samsonov
|
619
|
-
Fixes that part of http://rubyforge.org/forum/message.php?msg_id=62821
|
620
|
-
which is a bug. Does nothing for the disappearance of Rich-Text
|
621
|
-
formatting, which will not be addressed until 0.7.0
|
622
|
-
|
623
|
-
* Fixes a (benign?) bug, where adding text to a template-file resulted in
|
624
|
-
a duplicate extsst-record.
|
625
|
-
|
626
|
-
* 2 minor enhancements
|
627
|
-
|
628
|
-
* Improved recognition of Time-Formats
|
629
|
-
|
630
|
-
* Improvement to Robustness: allow Spreadsheet::Workbook.new
|
631
|
-
Takes care of http://rubyforge.org/forum/message.php?msg_id=62941
|
632
|
-
Reported by David Chamberlain
|
633
|
-
|
634
|
-
### 0.6.1.9 / 2008-11-07
|
635
|
-
|
636
|
-
* 1 Bugfix
|
637
|
-
|
638
|
-
* Fixes a precision-issue in Excel::Row#datetime: Excel records Time-Values
|
639
|
-
with more significant bits (but not necessarily more precise) than
|
640
|
-
DateTime can handle.
|
641
|
-
(Thanks to Bjørn Hjelle for the Bugreport)
|
642
|
-
|
643
|
-
* 1 minor enhancement
|
644
|
-
|
645
|
-
* Added support for appending Worksheets to a Workbook
|
646
|
-
(Thanks to Mohammed Rabbani for the report)
|
647
|
-
|
648
|
-
### 0.6.1.8 / 2008-10-31
|
649
|
-
|
650
|
-
* 1 Bugfix
|
651
|
-
|
652
|
-
* Fixes a bug where out-of-sequence reading of multiple Worksheets could
|
653
|
-
lead to data from the wrong Sheet being returned.
|
654
|
-
(Thanks to Bugreporter extraordinaire Bjørn Hjelle)
|
655
|
-
|
656
|
-
### 0.6.1.7 / 2008-10-30
|
657
|
-
|
658
|
-
* 1 Bugfix
|
659
|
-
|
660
|
-
* Fixes a bug where all Formulas were ignored.
|
661
|
-
(Thanks to Bjørn Hjelle for the report)
|
662
|
-
|
663
|
-
* 1 minor enhancement
|
664
|
-
|
665
|
-
* Allow the substitution of an IO object with a StringIO.
|
666
|
-
(Thanks to luxor for the report)
|
667
|
-
|
668
|
-
### 0.6.1.6 / 2008-10-28
|
669
|
-
|
670
|
-
* 2 Bugfixes
|
671
|
-
|
672
|
-
* Fixed encoding and decoding of BigNums, negative and other large Numbers
|
673
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=22581&group_id=678&atid=2677
|
674
|
-
* Fix a bug where modifications to default columns weren't stored
|
675
|
-
http://rubyforge.org/forum/message.php?msg_id=61567
|
676
|
-
|
677
|
-
* 1 minor enhancement
|
678
|
-
|
679
|
-
* Row#enriched_data won't return a Bogus-Date if the data isn't a Numeric
|
680
|
-
value
|
681
|
-
(Thanks to Bjørn Hjelle for the report)
|
682
|
-
|
683
|
-
### 0.6.1.5 / 2008-10-24
|
684
|
-
|
685
|
-
* 2 Bugfixes
|
686
|
-
|
687
|
-
* Removed obsolete code which triggered Iconv::InvalidEncoding
|
688
|
-
on Systems with non-gnu Iconv:
|
689
|
-
http://rubyforge.org/tracker/index.php?func=detail&aid=22541&group_id=678&atid=2677
|
690
|
-
* Handle empty Worksheets
|
691
|
-
(Thanks to Charles Lowe for the Patches)
|
692
|
-
|
693
|
-
### 0.6.1.4 / 2008-10-23
|
694
|
-
|
695
|
-
* 1 Bugfix
|
696
|
-
|
697
|
-
* Biff8#wide now works properly even if $KCODE=='UTF-8'
|
698
|
-
(Thanks to Bjørn Hjelle for the Bugreport)
|
699
|
-
|
700
|
-
* 1 minor enhancement
|
701
|
-
|
702
|
-
* Read/Write functionality for Links (only URLs can be written as of now)
|
703
|
-
|
704
|
-
### 0.6.1.3 / 2008-10-21
|
705
|
-
|
706
|
-
* 2 Bugfixes
|
707
|
-
|
708
|
-
* Renamed UTF8 to UTF-8 to support freebsd
|
709
|
-
(Thanks to Jacob Atzen for the Patch)
|
710
|
-
* Fixes a Bug where only the first Rowblock was read correctly if there were
|
711
|
-
no DBCELL records terminating the Rowblocks.
|
712
|
-
(Thanks to Bjørn Hjelle for the Bugreport)
|
713
|
-
|
714
|
-
### 0.6.1.2 / 2008-10-20
|
715
|
-
|
716
|
-
* 2 Bugfixes
|
717
|
-
|
718
|
-
* Corrected the Font-Encoding values in Excel::Internals
|
719
|
-
(Thanks to Bjørn Hjelle for the Bugreport)
|
720
|
-
* Spreadsheet now skips Richtext-Formatting runs and Asian Phonetic
|
721
|
-
Settings when reading the SST, fixing a problem where the presence of
|
722
|
-
Richtext could lead to an incomplete SST.
|
723
|
-
|
724
|
-
### 0.6.1.1 / 2008-10-20
|
725
|
-
|
726
|
-
* 1 Bugfix
|
727
|
-
|
728
|
-
* Corrected the Manifest - included column.rb
|
729
|
-
|
730
|
-
### 0.6.1 / 2008-10-17
|
731
|
-
|
732
|
-
* 3 minor enhancements
|
733
|
-
|
734
|
-
* Adds Column formatting and Worksheet#format_column
|
735
|
-
* Reads and writes correct Fonts (Font-indices > 3 appear to be 1-based)
|
736
|
-
* Reads xf data
|
737
|
-
|
738
|
-
### 0.6.0 / 2008-10-13
|
739
|
-
|
740
|
-
* 1 major enhancement
|
741
|
-
|
742
|
-
* Initial upload of the shiny new Spreadsheet Gem after three weeks of
|
743
|
-
grueling labor in the dark binary mines of Little-Endian Biff and long
|
744
|
-
hours spent polishing the surfaces of documentation.
|
745
|
-
|
746
|
-
|