Re: We aren't in the middle of a build are we?

2016-10-03 Thread Dominik Stadler
It's just the next release, there is no planned date yet.

Dominik

On Oct 4, 2016 5:16 AM, "Mark Murphy"  wrote:

> I am getting ready to do a commit, and wanted to make sure the jenkins task
> would run to completion, and noticed it is trying to create 3.16-beta 1, is
> that just because it is the next release, or are we rolling 3.16 beta 1
> already?
>


Re: We aren't in the middle of a build are we?

2016-10-03 Thread Javen O'Neal
The next release is targeting 3.16 beta 1, but we are probably 2 months
away. Go ahead and make your commits.

On Oct 4, 2016 05:16, "Mark Murphy"  wrote:

> I am getting ready to do a commit, and wanted to make sure the jenkins task
> would run to completion, and noticed it is trying to create 3.16-beta 1, is
> that just because it is the next release, or are we rolling 3.16 beta 1
> already?
>


We aren't in the middle of a build are we?

2016-10-03 Thread Mark Murphy
I am getting ready to do a commit, and wanted to make sure the jenkins task
would run to completion, and noticed it is trying to create 3.16-beta 1, is
that just because it is the next release, or are we rolling 3.16 beta 1
already?


[Bug 60197] setSheetOrder doesn't update names scope

2016-10-03 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60197

Aurelien JOLY  changed:

   What|Removed |Added

 OS||All
 CC||joly.aurel...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 60197] New: setSheetOrder doesn't update names scope

2016-10-03 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60197

Bug ID: 60197
   Summary: setSheetOrder doesn't update names scope
   Product: POI
   Version: 3.15-FINAL
  Hardware: PC
Status: NEW
  Severity: normal
  Priority: P2
 Component: XSSF
  Assignee: dev@poi.apache.org
  Reporter: joly.aurel...@gmail.com

Created attachment 34321
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=34321=edit
Java test case

When setSheetOrder is called, and a sheet is moved, the scope of the name in
the document stays on the old sheet.

Ex :
 I have document with 3 sheets. I have defined a name on sheet3, when I move
sheet3 using setSheetOrder, the scope of the name is still the third sheet
which is now sheet2

cf attachement for the reproduction case

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 60184] Saved file that uses a XSSFFont without a specifically set FontFamily won't open in Excel

2016-10-03 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60184

--- Comment #5 from a...@vaadin.com ---
Not-so-nice workaround:

Copy over StylesTable.java to local projet, change writeTo to contain

for (XSSFFont f : fonts) {
if (FontFamily.NOT_APPLICABLE.getValue() == f.getFamily()) {
f.setFamily(FontFamily.SWISS);
}
ctfnt[idx++] = f.getCTFont();
}

instead of

for(XSSFFont f : fonts) ctfnt[idx++] = f.getCTFont();

and do that again every time you update the version.

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org