LibreOffice 3.5 Released
First time accepted submitter wrldwzrd89 writes "The Document Foundation, the team behind the free and open-source office suite called LibreOffice, has released their latest and greatest version. As is typical with major releases of LibreOffice, there are significant new features making their debut in this version. The component with the biggest upgrade is Calc, which now has support for up to 10,000 sheets per workbook among its new features. Also noteworthy among the new features is support for importing Microsoft Visio files in Impress and Draw. The full feature list is available in a PDF hosted on Dropbox; LibreOffice itself can be downloaded here."
http://www.libreoffice.org/download/3-5-new-features-and-fixes/
i find when i get up to about 100 sheets of no more than a screen full of data each, it takes so long to save the workbook, i just start a fresh one to break it into manageable chunks. 10000 would probably take longer than the heat death of the universe to save.
(1.21 gigawatts) / (88 miles per hour) = 30 757 874 newtons
Libreoffice basically shed its skin and left openoffice behind in the dust.
The new features already put libreoffice ahead of openoffice, but I think the changes that were most significant were under the hood.
It has been going under a massive cleanup effort making it easier for new devs to contribute and for existing bugs to get squashed.
And actually, looks like they DID add version checking at long last. They just didn't tell anyone about it. Nifty.
"Have you ever thought about just turning off the TV, sitting down with your kids, and hitting them?"
The .docx support is good enough that I am writing a book in collaboration with MS Office users, including change tracking and comments, and they don't know that I'm using LibreOffice 3.4. If you find any bugs in .docx compatibility, you can contact me here and we will file bugs:
http://dotancohen.com/eng/message.php
Thanks.
It is dangerous to be right when the government is wrong.
Visio .vsd import .msi Windows Installer - I understand that .msi is a big deal for corporate installs somehow.
Native PostgreSQL driver
Java 7 support
AES encryption
Anyway is it just me or is Libreoffice really really awesome. There seems like a tremendous amount of energy behind the project, and it's all headed in the right direction.
You've apparently not used LibreOffice, which actually gets this right - though certainly OpenOffice.org did not, backspace on the other hand pops up the dialog you hate ;-) c'est la vie.
It's a question of speed and simplicity. How do you index worksheets? If people usually create small numbers of them (say, 1-10), then an array of 100 pointers to worksheets is fine. The tab just needs to store an index, and you can find the one before and after trivially by just walking the array. If you keep this approach, you can have a thousand, or possibly ten thousand, without a particularly noticeable memory increase in memory usage (especially for something as big as an office suite), but if you really want flexibility then you need to do something like a tree or a skip list that can be dynamically resized. For small numbers, this just complicates the code and adds overhead for no benefit.
I am TheRaven on Soylent News