forked from unixsam/phpoffice.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpexcel_news.html
More file actions
273 lines (273 loc) · 18.2 KB
/
phpexcel_news.html
File metadata and controls
273 lines (273 loc) · 18.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>PHPOffice</title>
<link href="statics/css/bootstrap.min.css" rel="stylesheet">
<link href="statics/css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="statics/css/gh-fork-ribbon.css" rel="stylesheet" />
<!--[if IE]>
<link href="statics/css/gh-fork-ribbon.ie.css" rel="stylesheet" />
<![endif]-->
<link href="statics/css/style.css" rel="stylesheet">
</head>
<body>
<div class="github-fork-ribbon-wrapper right">
<div class="github-fork-ribbon">
<a href="https://github.com/PHPOffice/PHPExcel">Fork me on GitHub</a>
</div>
</div>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="brand" href="index.html">PHPOffice</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="phpexcel_features.html">PHPExcel</a></li>
<li><a href="#">PHPPowerPoint</a></li>
<li><a href="#">PHPProject</a></li>
<li><a href="#">PHPVisio</a></li>
<li><a href="phpword_features.html">PHPWord</a></li>
</ul>
</div><!-- /.nav-collapse -->
</div>
</div><!-- /navbar-inner -->
</div><!-- /navbar -->
<div class="container-fluid">
<div class="row-fluid">
<div class="span2">
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="team.html">Team</a></li>
<li class="nav-header">PHPExcel</li>
<li class="active"><a href="phpexcel_news.html">News</a></li>
<li><a href="phpexcel_features.html">Features</a></li>
<li><a href="phpexcel_requirements.html">Requirements</a></li>
<li><a href="phpexcel_faq.html">FAQ</a></li>
<li><a href="phpexcel_contribute.html">Contribute</a></li>
<li><a href="phpexcel_roadmap.html">Roadmap</a></li>
<li><a href="phpexcel_resources.html">Resources</a></li>
<li><a href="phpexcel_credits.html">Credits</a></li>
</ul>
</div><!--/.well -->
</div><!--/span-->
<div class="span10">
<h1>News</h1>
<h2>2012</h2>
<div class="well">
<strong>2012-10-12 <em>Release 1.7.8 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/96183">PHPExcel 1.7.8</a>. check the changelog for details!
</div>
<div class="well">
<strong>2012-06-19 <em>PHPExcel Moves to GitHub!</em></strong><br />
<p>The source repository for PHPExcel, together with its sister projects PHPWord and PHPPowerPoint under the auspices of PHPOffice. The repository can be found at <a href="https://github.com/PHPOffice/PHPExcel">https://github.com/PHPOffice/PHPExcel</a>, and the latest working development code is in the develop branch.</p>
<p>This is the first part of series of changes in our development process which we believe will make it easier for us to do more frequent releases of better quality code. The next step will be CI integration for running automated unit testing against PHP 5.2, 5.3 and 5.4 using TravisCI.</p>
<p>We shall be maintaining the CodePlex SVN Source repository in parallel for a time, but the github repository should be considered the definitive source.</p>
</div>
<div class="well">
<strong>2012-05-19 <em>Release 1.7.7 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/88098">PHPExcel 1.7.7</a>. check the changelog for details!
</div>
<div class="well">
<strong>2012-05-06 <em>Ruby/PHP Bridge: accessing PHPExcel from Ruby!</em></strong><br />
<p>Kasper Johansen has written a Ruby PHP Bridge, allowing the use of PHPExcel from within Ruby.</p>
<p>More details available from the code repository is at <a href="https://github.com/kaspernj/php_process">https://github.com/kaspernj/php_process</a> for any Ruby coders wanting to try it. You can find a working example using PHPExcel to generate an Excel file at <a href="https://github.com/kaspernj/php_process/blob/master/examples/example_phpexcel.rb">https://github.com/kaspernj/php_process/blob/master/examples/example_phpexcel.rb</a>.</p>
</div>
<div class="well">
<strong>2012-01-02 <em><a href="http://phpexcel.codeplex.com/discussions/284725">PHPExcel Roadmap for 2012</a></em></strong><br />
</div>
<h2>2011</h2>
<div class="well">
<strong>2011-02-28 <em>Release 1.7.6 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/45412">PHPExcel 1.7.6 Production</a>. check the changelog for details!
</div>
<h2>2010</h2>
<div class="well">
<strong>2010-12-10 <em>Release 1.7.5 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/26479">PHPExcel 1.7.5 Production</a>. check the changelog for details!
</div>
<div class="well">
<strong>2010-10-22 <em>PHPExcel ported to Python!</em></strong><br />
<p>Eric Gazoni has just released the first version of a port of PHPExcel to Python... openpyxl/</p>
<p>More details available from his blog at <a href="http://ericgazoni.wordpress.com/2010/04/10/openpyxl-python-xlsx/">http://ericgazoni.wordpress.com/2010/04/10/openpyxl-python-xlsx/</a>. and the code repository is at <a href="http://bitbucket.org/ericgazoni/openpyxl/">http://bitbucket.org/ericgazoni/openpyxl/</a> for any Python coders wanting to try it</p>
</div>
<div class="well">
<strong>2010-08-26 <em>Release 1.7.4 out now!</em></strong><br />
<p>Current release <a href="http://phpexcel.codeplex.com/releases/view/26478">PHPExcel 1.7.4 Production</a>. check the changelog for details!</p>
<p>We now also have a full PEAR channel! Here's how to use it:</p>
<p>New installation:</p>
<pre>pear channel-discover pear.pearplex.net
pear install pearplex/PHPExcel</pre>
<p>Or if you've already installed PHPExcel before/p>
<pre>pear upgrade pearplex/PHPExcel</pre>
<p>The official page can be found at <a href="http://pearplex.net">http://pearplex.net</a>.</p>
</div>
<div class="well">
<strong>2010-05-31 <em>Release 1.7.3c out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/46345">PHPExcel 1.7.3c Production</a>, check the changelog for details!
</div>
<div class="well">
<strong>2010-05-31 <em>Release 1.7.3b out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/46240">PHPExcel 1.7.3b Production</a>, check the changelog for details!
</div>
<div class="well">
<strong>2010-05-17 <em>Release 1.7.3 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/26477">PHPExcel 1.7.3 Production</a>, check the changelog for details!
</div>
<div class="well">
<strong>2010-01-11 <em>Release 1.7.2 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/10719">PHPExcel 1.7.2 Production</a>, check the changelog for details!
</div>
<h2>2009</h2>
<div class="well">
<strong>2009-11-02 <em>Release 1.7.1 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/10718">PHPExcel 1.7.1 Production</a>, check the changelog for details!
</div>
<div class="well">
<strong>2009-08-10 <em>Release 1.7.0 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/10717">PHPExcel 1.7.0 Production</a>, check the changelog for details!
</div>
<div class="well">
<strong>2009-05-07 <em>New PHPExcel tutorial available</em></strong><br />
There is a new PHPExcel tutorial available over at <a href="http://openxmldeveloper.org/articles/4606.aspx">OpenXmlDeveloper.org</a>. If you are just starting working with PHPExcel, this is a good read!
</div>
<div class="well">
<strong>2009-04-27 <em>Create PowerPoint 2007 files from PHP</em></strong><br />
PHPExcel has a new sister project: <a href="http://www.phppowerpoint.net/">PHPPowerPoint</a>. Just like with PHPExcel, PHPPowerPoint can be used to generate PPTX files from a PHP application. This can be done by creating an in-memory presentation that consists of slides and different shapes, which can then be written to disk using a writer (of which there's currently only one for PowerPoint 2007).
</div>
<div class="well">
<strong>2009-04-22 <em>Release 1.6.7 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/10717">PHPExcel 1.6.7 Production</a>, check the changelog for details!
</div>
<div class="well">
<strong>2009-03-02 <em>Release 1.6.6 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/10715">PHPExcel 1.6.6 Production</a>, check the changelog for details!
</div>
<div class="well">
<strong>2009-02-03 <em>Blog post: Saving a PHPExcel spreadsheet to Google Documents</em></strong><br />
<p>As you may know, PHPExcel is built using an extensible model, supporting different input and output formats. The PHPExcel core class library features a spreadsheet engine, which is supported by IReader and IWriter instances used for reading and writing a spreadsheet to/from a file. Currently, PHPExcel supports writers for Excel2007, Excel5 (Excel 97+), CSV, HTML and PDF. Wouldnt it be nice if we could use PHPExcel to store a spreadsheet on Google Documents? </p>
<p>Read the entire blog post on <a href="http://blog.maartenballiauw.be/post/2009/02/03/Saving-a-PHPExcel-spreadsheet-to-Google-Documents.aspx">Maarten Balliauw's blog</a>.</p>
</div>
<div class="well">
<strong>2009-01-05 <em>Release 1.6.5 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/10714">PHPExcel 1.6.5 Production</a>, check the changelog for details!
</div>
<h2>2008</h2>
<div class="well">
<strong>2008-12-01 <em>PHPExcel featured in php|architect / November 2008</em></strong><br />
Including graph support! Check my blog at <a href="http://blog.maartenballiauw.be/post/2008/12/01/PHPExcel-featured-in-php7carchitect-November-2008.aspx">http://blog.maartenballiauw.be/post/2008/12/01/PHPExcel-featured-in-php7carchitect-November-2008.aspx</a>
</div>
<div class="well">
<strong>2008-10-27 <em>Release 1.6.4 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/10713">PHPExcel 1.6.4 Production</a>, check the changelog for details!
</div>
<div class="well">
<strong>2008-03-27 <em>Use Excel business logic in PHP</em></strong><br />
<p>In many companies, business logic resides in Excel. This business logic is sometimes created by business analysts and sometimes by business users who want to automate parts of their everyday job using Excel. This same Excel-based business logic is often copied into an application (i.e. a website) and is maintained on 2 places: if the Excel logic changes, the application should also be modified.</p>
<p>On his blog, <a href="http://blog.maartenballiauw.be/">Maarten Balliauw</a> tells you how you can <a href="http://blog.maartenballiauw.be/post/2008/03/Reuse-Excel-business-logic-with-PHPExcel.aspx">use PHPExcel to take advantage of the Excel-based business logic</a> without having to worry about duplicate business logic.</p>
</div>
<div class="well">
<strong>2008-08-25 <em>Release 1.6.3 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/10712">PHPExcel 1.6.3 Production</a>, check the changelog for details!
</div>
<div class="well">
<strong>2008-06-23 <em>Release 1.6.2 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/9402">PHPExcel 1.6.2 Production</a>, check the changelog for details!
</div>
<div class="well">
<strong>2008-04-28 <em>Release 1.6.1 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/9401">PHPExcel 1.6.1 Production</a>, check the changelog for details!
</div>
<div class="well">
<strong>2008-02-14 <em>Release 1.6.0 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/5969">PHPExcel 1.6.0 Production</a>, checkout the changelog for details!
</div>
<h2>2007</h2>
<div class="well">
<strong>2007-12-23 <em>Release 1.5.5 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/5968">PHPExcel 1.5.5 Production</a>, checkout the changelog for details!
</div>
<div class="well">
<strong>2007-11-19 <em>Code snapshots available!</em></strong><br />
Can't wait untill the next release is finished? Want a (possibly unstable) code snapshot? Check the "Source Code" tab or <a href="http://www.codeplex.com/PHPExcel/SourceControl/ListDownloadableCommits.aspx">http://www.codeplex.com/PHPExcel/SourceControl/ListDownloadableCommits.aspx</a>.
</div>
<div class="well">
<strong>2007-10-23 <em>Release 1.5.0 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/5967">PHPExcel 1.5.0 Production</a>, checkout the changelog for details!
</div>
<div class="well">
<strong>2007-08-23 <em>Release 1.4.5 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/5135">PHPExcel 1.4.5 Production</a>, checkout the changelog for details!
</div>
<div class="well">
<strong>2007-07-23 <em>Typo3 features PHPExcel module</em></strong><br />
<p>Typo3, one of the most feature-rich and free Content Management Frameworks built with PHP, features a PHPExcel module: <a href="http://typo3.org/extensions/repository/view/phpexcel_library/1.0.1/">http://typo3.org/extensions/repository/view/phpexcel_library/1.0.1/</a>.</p>
<p>People working with Typo3 can now download this module and start creating PHPExcel spreadsheets right away!</p>
</div>
<div class="well">
<strong>2007-07-23 <em>Release 1.4.0 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/4661">PHPExcel 1.4.0 Production</a>, checkout the changelog for details!
</div>
<div class="well">
<strong>2007-06-27 <em>Release 1.3.5 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/4415">PHPExcel 1.3.5 Production</a>, checkout the changelog for details!
</div>
<div class="well">
<strong>2007-06-18 <em>First draft of documentation finished</em></strong><br />
A first draft of documentation has been released with <a href="http://phpexcel.codeplex.com/releases/view/3560">PHPExcel 1.3.0 Production</a>.
</div>
<div class="well">
<strong>2007-06-04 <em>Release 1.3.0 out now!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/3560">PHPExcel 1.3.0 Production</a>, checkout the changelog for details!
</div>
<div class="well">
<strong>2007-05-17 <em>New project members!</em></strong><br />
We wish to welcome Morgan Davis and Sorin Stoiana as developer to the PHPExcel project.
</div>
<div class="well">
<strong>2007-05-03 <em>PEAR package also available</em></strong><br />
A package for use with the PEAR installer is now also available in the release <a href="http://phpexcel.codeplex.com/releases/view/2585">PHPExcel 1.2.0 Production</a>. These packages will be provided with every release from now on. Please note that the PEAR package does not contain example code or documentation!
</div>
<div class="well">
<strong>2007-04-26 <em>php|architect magazine features PHPExcel!</em></strong><br />
Check <a href="http://www.phparch.com/">http://www.phparch.com</a>, the April issue contains an article on PHP and SpreadsheetML.
</div>
<div class="well">
<strong>2007-04-23 <em>Release 1.2.0 out now!</em></strong><br />
<p>Current release <a href="http://phpexcel.codeplex.com/releases/view/2585">PHPExcel 1.2.0 Production</a>, checkout the changelog for details!</p>
<p>This release is the first release licensed as LGPL instead op GPL. This allows proprietary software developers to also include PHPExcel in their code.</p>
</div>
<div class="well">
<strong>2007-04-10 <em>News on the upcoming release</em></strong><br />
The upcoming 1.2.0 release will support lots of new <a href="http://phpexcel.codeplex.com/wikipage?title=Features&referringTitle=News%20archive">Features</a>, check the issue tracker for a full list of completed work items on this release.
</div>
<div class="well">
<strong>2007-03-26 <em>New release!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/2678">PHPExcel 1.1.1 Production</a>, which fixes some small non-critical bugs.
</div>
<div class="well">
<strong>2007-03-22 <em>New release!</em></strong><br />
<p>Current release <a href="http://phpexcel.codeplex.com/releases/view/2177">PHPExcel 1.1.0 Production</a>, checkout the changelog for details!</p>
<p>Version 1.0.0 has been downloaded 1250 times, a nice user base. If you created a cool application using PHPExcel, and want to share a testimonial, please <a href="http://phpexcel.codeplex.com/wikipage?title=Contact&referringTitle=News%20archive">Contact me</a>.</p>
</div>
<div class="well">
<strong>2007-03-08 <em>Date for next release</em></strong><br />
Version 1.1.0, which contains new features and bugfixes, will be released by 2007-03-22
</div>
<div class="well">
<strong>2007-02-22 <em>New release!</em></strong><br />
Current release <a href="http://phpexcel.codeplex.com/releases/view/1980">PHPExcel 1.0.0 Production</a>, checkout the changelog for details!
</div>
<div class="well">
<strong>2007-02-14 <em>We have a new team member!</em></strong><br />
We have a new team member, Jakub Vrana. Jakub is working on a Excel2007 reader... Stay tuned! Welcome Jakub!
</div>
</div><!--/span-->
</div><!--/row-->
</div><!--/.fluid-container-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="statics/js/bootstrap.min.js"></script>
</body>
</html>