[Libreoffice-bugs] [Bug 156647] ReqIF: cell padding is exported, but not imported

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156647

Mike Kaganski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
 Ever confirmed|0   |1
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

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

[Libreoffice-bugs] [Bug 156647] New: ReqIF: cell padding is exported, but not imported

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156647

Bug ID: 156647
   Summary: ReqIF: cell padding is exported, but not imported
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

Created attachment 188818
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188818=edit
Table with cell padding

The attached FODT has a table with cell padding of 1.24 cm. When exported as
ReqIF, the padding is output correctly (as 47 px); but when the  ReqIF is
imported back, the padding is lost.

Steps:
1. Open the FODT.
2. Execute this macro:

sub ReqIF_SaveAndReload
  dim doc as object, url as string
  doc = ThisComponent
  url = Replace(doc.URL, "fodt", "xhtml")

  Dim args1(6) As New com.sun.star.beans.PropertyValue
  args1(0).Name  = "FilterName"
  args1(0).Value = "HTML (StarWriter)"
  args1(1).Name  = "FilterOptions"
  args1(1).Value = "xhtmlns=reqif-xhtml"
  args1(2).Name  = "Overwrite"
  args1(2).Value = true
  args1(3).Name  = "RTFOLEMimeType"
  args1(3).Value = "text/rtf"
  args1(4).Name  = "OnMainThread"
  args1(4).Value = true
  args1(5).Name  = "ExportImagesAsOLE"
  args1(5).Value = false
  args1(6).Name  = "ShapeDPI"
  args1(6).Value = 300

  doc.storeToUrl(url, args1())

  Dim args2(2) As New com.sun.star.beans.PropertyValue
  args2(0).Name  = "FilterName"
  args2(0).Value = "HTML (StarWriter)"
  args2(1).Name  = "FilterOptions"
  args2(1).Value = "xhtmlns=reqif-xhtml"

  Dim types(1) As String
  types(0) = "text/rtf"
  types(1) = "application/oleobject"
  args2(2).Name  = "AllowedRTFOLEMimeTypes"
  args2(2).Value = types

  StarDesktop.LoadComponentFromUrl(url, "_blank", 0, args2())
end sub

=> the newly opened "table_cell_padding.xhtml" has no cell padding in the
table.
If you open the .xhtml in a text editor, the 'cellpadding' attribute is there
in the table element.

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

[Libreoffice-bugs] [Bug 156646] New: When using fonts other than pure English fonts, the font height appears to be an unintended height

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156646

Bug ID: 156646
   Summary: When using fonts other than pure English fonts, the
font height appears to be an unintended height
   Product: LibreOffice
   Version: 5.3.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: darkl...@gmail.com

Description:
>From Libreoffice 5.0.0.0 beta 1 to recent versions, it seems that the height of
characters (or the margin of the font itself) is not expressed properly in
certain fonts.

Steps to Reproduce:
1. Run Writer version 5.0.0.0 ahpha or lower.
2. Set the Font to "Malgun Gothic" and type A enter b enter. (Probably, most
fonts that support other multi-languages other than "Malgun Gothic" show the
same phenomenon.)
3. Set Line Spacing Single, Below paragraph spacing to 0.28cm (or 8 pt). (Below
paragraph spacing 0 also shows the same result.) Font size is 11pt.
4. Turn on the vertical tape measure option and check how many cm it is. (The
end of b is about 1.5~1.6cm.)
5. You can check the same length in other offices such as MS Word, Google docs,
and OpenOffice.
6. Proceed with the same test with Writer version 5.0.0.0 beta or higher.
In all versions, including the most recent version 7.6.0, only Libreoffice is
about 1 cm long.
7. The above symptoms are not seen in English-oriented fonts such as Arial or
Tahoma. (maybe)

In conclusion, it seems that the height of certain fonts is not expressed
properly from version 5.0.0.0 beta.

Actual Results:
short height

Expected Results:
same height


Reproducible: Always


User Profile Reset: No

Additional Info:
I tested some 6.X versions and most of 5.X and 7.X versions.

I'm not an English native, so please forgive me if there are any strange parts.

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

[Libreoffice-bugs] [Bug 153598] Recalculate does not recalculate all cells

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153598

--- Comment #15 from jollytall  ---
(In reply to Mark Pawelek from comment #11)
> Re: Jollytall's previous test using RAND(). That is not a sensible test. One
> is supposed to know the expected result of a formula. So any data created by
> RAND() will be pointless.

Sorry, I just now found this earlier comment.
I do not see why it was not sensible. Whatever rand numbers we add, it is
expected that the total we get is the same regardless if we add the numbers of
a table first in rows and then in columns or vice-versa. So the difference of
the two totals must be zero. That is a clear expected result.
If all cells have fixed numbers then doing recalculate many times should not
change the results, so to see the bug we need some changing cells, e.g. time()
or need manual update of cells to new values. Rand() seems the easiest way to
change many cells in one Recalculate cycle.

To the main issue:
Clearly some part of the recalculation was not done when the system had too
much to do. Unlike in Mark's case, it was not needed to have multiple sheets or
data ranges. It was enough to have too many cells to recalculate in one go.
Still, I have not seen this bug again since I upgraded to 7.5.4.2., so for me
the issue is solved.

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

[Libreoffice-bugs] [Bug 156645] New: Random Loss of Database Formats

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156645

Bug ID: 156645
   Summary: Random Loss of Database Formats
   Product: LibreOffice
   Version: 7.3.7.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dlpastew...@gmail.com

Description:
There is an intermittent problem where the DataBase tables loose their format. 
Column Widths and Currency format.  Al the data remains.  It can happen to all
the database tables at once or can be random to the tables.
I run a database with 17 Tables with some tables having over 2000 records.
Sometimes a just loose the currency format and some column widths and other
times I loose all the currency format and widths in all tables.
All the data remains.  I have tried it under Windows and Ubuntu 22.04 but makes
no difference.
Initially I thought it was related to software updates as I have been using
Open Office data base since 2007.  This problem seems to started several years
ago.
I believe the problem could be resolved that when you create a database or edit
a data base you can set the field width (minimum) and format in the edit phase
which will remain set to these parameters.
When the database resets the table edit shows the loss of format for currency.
The Table has 15 Forms (entering Data) and 13 Queries (on the tables).
Size of Database is 582kB
I reinstate the widths and formats which may last a month or two or be gone
next time I access the database.
I use word and spreadsheets and have not encountered a problem with them.
The original database was converted from MS Access bot saved in open office
formats.
I do not loose the number of decimal points.
Just now I checked one of the tables and I had lost the column width on the
first 3 columns but not the remainder, currency format was also lost on the
relevant columns.
Other times I loose the Column width on all columns with the currency format.  
Sometimes only several tables are initially effected.

Actual Results:
Cannot reproduce with actions It seems very random.

Expected Results:
Unable to reproduce other than closing database and restarting.  Sometimes okay
no change to tables the all of a sudden it reoccurs.


Reproducible: Sometimes


User Profile Reset: Yes

Additional Info:
DataBase table editor to be able to set the minimum column width and formatting
only. Or if changed within the table this is reflected back in the edit of the
table base and remains as set.

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

[Libreoffice-bugs] [Bug 116412] Bundled python fails to import bz2 on Windows

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116412

--- Comment #22 from Commit Notification 
 ---
Taichi Haradaguchi committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/5cd48b4969d25400cc6634fb64706a763528ec65

Revert "tdf#116412: include bz2 in internal python"

It will be available in 24.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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

[Libreoffice-bugs] [Bug 111841] Increase / decrease font size buttons create two undo action when clicking on them

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111841

Aron Budea  changed:

   What|Removed |Added

 CC||aron.bu...@gmail.com
Version|6.0.0.0.alpha0+ |4.1.0.4 release

--- Comment #8 from Aron Budea  ---
Already in 4.1.0.4, not in 4.0.0.3. Checked with original steps.

(In reply to Telesto from comment #3)
> Probably a little bit easier to notice
> 1. Open Impress
> 2. Select Title shape
> 3. Type something into the textbox
> 4. Apply a font color
> 5. Undo applying font (CTRL+Z) -> no effect
> 6. Undo a second time (CTRL+Z) -> working
This is already in 3.3.0, so a different issue, let's not mix up the two.

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

[Libreoffice-bugs] [Bug 156403] LO assumes fullscreen or left tiled if using dual monitor with laptop, and the second monitor disconnected inbetween

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156403

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 156408] The format painter function is abnormal when copy paragraph's retraction

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156408

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 156404] No hotkey to apply cloned formatting

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156404

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 156428] fodt format borks on git merging

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156428

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 156636] Opening any existing Libreoffice document lasts < 1 min.

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156636

--- Comment #3 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 156636] Opening any existing Libreoffice document lasts < 1 min.

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156636

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

--- Comment #10 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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

[Libreoffice-bugs] [Bug 156322] Provide better PDF export settings in Calc

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156322

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 156322] Provide better PDF export settings in Calc

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156322

--- Comment #6 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

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

[Libreoffice-bugs] [Bug 152915] unwanted upper by lower case replacement

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152915

--- Comment #3 from QA Administrators  ---
Dear gmildner,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 152894] random crashes in Writer (Windows)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152894

--- Comment #3 from QA Administrators  ---
Dear Bobby,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 146452] UNDO does restore changes on character level with track changes record enabled and word by word when disabled

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146452

--- Comment #6 from QA Administrators  ---
Dear Telesto,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 140418] Sheet-tab drag destination guide triangles repainting broken

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140418

--- Comment #3 from QA Administrators  ---
Dear Eyal Rozenberg,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 145510] Writer erase template files on directory setting update

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145510

--- Comment #3 from QA Administrators  ---
Dear Mirko,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

--- Comment #9 from eric li  ---
(In reply to Michael Weghorn from comment #8)
> (In reply to Michael Weghorn from comment #7)
> > (In reply to eric li from comment #6)
> > > I will try this later ,,
> > > I am build it following the below source ,any wrong with it ?
> > > https://wiki.documentfoundation.org/Development/BuildingForAndroid
> > 
> > That instruction is fine.
> 
> But it would still be interesting to know whether the issue also occurs with
> the F-Droid version, to see whether this is a general problem occuring on
> your device, or maybe somehow related to your local build.

the F-Droid version working well, it is not the phone/android issue...my
version ,I tried many different phones ,still doens't work ..I think it could
be the below issues:

1) I actually installed android studio on root ,when I realized root can't work
when building libreoffice on android..so I just simply change own/group
something...maybe this cause the issue...I may consider user a normal user and
reinstall everything later and see what happen

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

[Libreoffice-bugs] [Bug 104839] [META] Saved XLSX files that MS Excel can't open

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104839

Aron Budea  changed:

   What|Removed |Added

 Depends on||156465


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156465
[Bug 156465] save to xls and xlsx files corrupted
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156465] save to xls and xlsx files corrupted

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156465

Aron Budea  changed:

   What|Removed |Added

 Blocks||104839
 OS|Linux (All) |All
 CC||aron.bu...@gmail.com


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104839
[Bug 104839] [META] Saved XLSX files that MS Excel can't open
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156644] New: External links cascade breaks

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156644

Bug ID: 156644
   Summary: External links cascade breaks
   Product: LibreOffice
   Version: 7.5.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hugoferna...@gmail.com

Created attachment 188817
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188817=edit
Files 00.odt, 01.odt and 02.odt

Let's suppose you have a main file in writer (00.odt). In this file, we have a
section. Then, we have another file in writer (01.odt) that has another section
linked to the specific section in the file 00.odt. Now, we have a third file in
writer (02.odt) that has a section that links to the section in file 01.odt,
which happens to be linked to another section in file 00.odt.

In this scenario, the cascade of link of file 02.odt breaks, unless you uncheck
the "protected" option in the section configuration.

In my view, the cascade of links should be kept even when the section in file
02.odt is "protected".

Attached goes these three files.

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

[Libreoffice-bugs] [Bug 60700] de-cruftify ODF files ...

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60700

Aron Budea  changed:

   What|Removed |Added

 CC||aron.bu...@gmail.com
 Status|REOPENED|NEW

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

[Libreoffice-bugs] [Bug 58941] Support enabling optional smart font features

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=58941

--- Comment #90 from lisa purnellsw  ---
Merge tiles featuring mesmerizing images of Taylor Swift throughout her career,
from her early days to her record-breaking achievements.
https://taylorswift2048.io/

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

[Libreoffice-bugs] [Bug 127575] Writer ODT with embedded scanned PDF image: image does not export to PDF

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127575

Aron Budea  changed:

   What|Removed |Added

 Status|REOPENED|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 153141] bizarre upper-, lower-case

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153141

Aron Budea  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 CC||aron.bu...@gmail.com
 Resolution|--- |NOTABUG

--- Comment #6 from Aron Budea  ---
(In reply to m.a.riosv from comment #3)
> You have a direct format for 'orrens' as lowercase, which has priority over
> styles, clear it with [Ctrl+M] you see 'ORRENS'.
> What you can do it's insert the 'B', select it, and clear their lowercase
> format with [Ctrl+M]
I can only repeat m.a.riosv's analysis.

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

[Libreoffice-bugs] [Bug 154829] FILEOPEN DOCX shape "cloud" is wrongly rendered if it is on a Drawing Canvas

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154829

Aron Budea  changed:

   What|Removed |Added

 OS|Windows (All)   |All
 Blocks||104442
Version|7.6.0.0 alpha0+ |4.4.0.3 release
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||4671
 Status|REOPENED|NEW
   Hardware|x86-64 (AMD64)  |All

--- Comment #5 from Aron Budea  ---
Repro in LO 24.2.0.0.alpha0+ (46e672db8002e7aaac881bee65b5c50c4e14c666),
4.4.0.3 / Ubuntu.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104442
[Bug 104442] [META] OOXML shape (DrawingML and VML) related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 104442] [META] OOXML shape (DrawingML and VML) related issues

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104442

Aron Budea  changed:

   What|Removed |Added

 Depends on||154829


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154829
[Bug 154829] FILEOPEN DOCX shape "cloud" is wrongly rendered if it is on a
Drawing Canvas
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 104671] FILEOPEN DOCX: Cloud shape isn't rendered correctly (showing 'artifacts')

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104671

Aron Budea  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||4829

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

[Libreoffice-bugs] [Bug 154829] FILEOPEN DOCX shape "cloud" is wrongly rendered if it is on a Drawing Canvas

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154829

Aron Budea  changed:

   What|Removed |Added

 Attachment #186689|application/zip |application/vnd.openxmlform
  mime type||ats-officedocument.wordproc
   ||essingml.document

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

[Libreoffice-bugs] [Bug 154829] FILEOPEN DOCX shape "cloud" is wrongly rendered if it is on a Drawing Canvas

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154829

Aron Budea  changed:

   What|Removed |Added

 CC||aron.bu...@gmail.com
 Attachment #186688|application/zip |application/vnd.openxmlform
  mime type||ats-officedocument.wordproc
   ||essingml.document

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

[Libreoffice-bugs] [Bug 79717] EDITING: Overwriting selected text doesn't always maintain formatting

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79717

Aron Budea  changed:

   What|Removed |Added

 CC||aron.bu...@gmail.com
 Status|REOPENED|NEW

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

[Libreoffice-bugs] [Bug 153598] Recalculate does not recalculate all cells

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153598

Aron Budea  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 CC||aron.bu...@gmail.com
 Status|REOPENED|RESOLVED

--- Comment #14 from Aron Budea  ---
Mark, please open a separate bug report with your issue with detailed
reproduction steps, and a sample spreadsheet (if needed).

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

[Libreoffice-bugs] [Bug 156465] save to xls and xlsx files corrupted

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156465

--- Comment #15 from Gabor Kelemen (allotropia)  ---
Created attachment 188816
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188816=edit
Minimized example file

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

[Libreoffice-bugs] [Bug 147906] Use hypot function for Pythagorean addition

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147906

--- Comment #25 from Commit Notification 
 ---
sahil committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/6e12b7f296930c6f37e036407e9fb832d9a9f027

tdf#147906 used std::hypot for Pythagorean addition

It will be available in 24.2.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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

[Libreoffice-bugs] [Bug 147906] Use hypot function for Pythagorean addition

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147906

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:7.4.0 reviewed:2022  |target:7.4.0 reviewed:2022
   |target:7.5.0 target:7.6.0   |target:7.5.0 target:7.6.0
   ||target:24.2.0

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

[Libreoffice-bugs] [Bug 75057] [META] OOXML Chart object issues

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75057

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Depends on||156465


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156465
[Bug 156465] save to xls and xlsx files corrupted
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156465] save to xls and xlsx files corrupted

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156465

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Blocks||75057
 Status|UNCONFIRMED |NEW
Version|24.2.0.0 alpha0+ Master |7.3.0.3 release
 CC||dennisfrancis...@gmail.com,
   ||kelem...@ubuntu.com
   Keywords||bibisected, bisected,
   ||regression
 Ever confirmed|0   |1

--- Comment #14 from Gabor Kelemen (allotropia)  ---
Confirming in 

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 34387332173782498acd4998c7c665d04ebc3c7d
CPU threads: 15; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: hu-HU (hu_HU); UI: en-US
Calc: threaded

that ODS attachment 188553 saved to xlsx and opened in Excel gives unreadable
content error and repairs it with message: 

Removed Part: /xl/drawings/drawing2.xml part.  (Drawing shape)
Repaired Part: /xl/worksheets/sheet1.xml part. 

The sheet1.xml issue seems to be reproducible by saving either the original
xlsx or the ods, with any LO version to xlsx. Tried 3.3, 4.0, 5.0, 6.0, 7.x to
24.2master - all seems to be bad (maybe not for the same reason from Excels
point of view, but that's irrelevant in the end). Let's set that aside for a
separate report.

The issue with the Drawing shape (there is a chart on a hidden sheet, that
seems to be the culprit) begun in 7.3 with:

https://git.libreoffice.org/core/+log/f547cf17a179ebd7de5c2b4dd2d00d0027a25429

author  Dennis Francis  Thu Sep 02 14:33:55
2021 +0530
committer   Miklos Vajna Mon Sep 06 08:47:50
2021 +0200

[API CHANGE] oox: fix import of chart date categories

Adding CC to: Dennis Francis


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=75057
[Bug 75057] [META] OOXML Chart object issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 143389] PDF-Export: Content of a date field in a form won't be shown in exported document

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143389

Aron Budea  changed:

   What|Removed |Added

Version|unspecified |6.1.5.2 release

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

[Libreoffice-bugs] [Bug 139408] FILEOPEN DOCX: Vertical position of image in footer changes

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139408

Aron Budea  changed:

   What|Removed |Added

 CC||aron.bu...@gmail.com
Version|unspecified |Inherited From OOo

--- Comment #9 from Aron Budea  ---
Adjusting oldest version, since it was never OK.

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

[Libreoffice-bugs] [Bug 126449] Tables in DOC document are overlapping (one floating multipage table-in-table-in-table)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126449

Aron Budea  changed:

   What|Removed |Added

 CC||aron.bu...@gmail.com
Version|unspecified |Inherited From OOo

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

[Libreoffice-bugs] [Bug 156643] Difference between Pages document converted using CLI (--convert-to) and GUI (Save As)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156643

--- Comment #4 from Patrick  ---
Created attachment 188815
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188815=edit
Results of command-line-convert

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

[Libreoffice-bugs] [Bug 156643] Difference between Pages document converted using CLI (--convert-to) and GUI (Save As)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156643

--- Comment #2 from Patrick  ---
Created attachment 188813
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188813=edit
Results of export from Apple pages

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

[Libreoffice-bugs] [Bug 156643] Difference between Pages document converted using CLI (--convert-to) and GUI (Save As)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156643

--- Comment #3 from Patrick  ---
Created attachment 188814
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188814=edit
Results of "Save As" from Apple Pages

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

[Libreoffice-bugs] [Bug 156572] tbillyield() calculation returns incorrect yields for some dates

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156572

Aron Budea  changed:

   What|Removed |Added

 CC||aron.bu...@gmail.com
Version|unspecified |Inherited From OOo

--- Comment #2 from Aron Budea  ---
Already in OO 3.3.0.

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

[Libreoffice-bugs] [Bug 156643] Difference between Pages document converted using CLI (--convert-to) and GUI (Save As)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156643

--- Comment #1 from Patrick  ---
Created attachment 188812
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188812=edit
Apple Pages source document

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

[Libreoffice-bugs] [Bug 70481] Difference between DOCX document converted using CLI (--convert-to) and GUI (Save As)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70481

Patrick  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||6643

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

[Libreoffice-bugs] [Bug 67005] Other: DOCX Table of Contents is not converted when using --convert-to command

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67005

Patrick  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||6643

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

[Libreoffice-bugs] [Bug 156643] Difference between Pages document converted using CLI (--convert-to) and GUI (Save As)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156643

Patrick  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=67
   ||005,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=70
   ||481

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

[Libreoffice-bugs] [Bug 156643] New: Difference between Pages document converted using CLI (--convert-to) and GUI (Save As)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156643

Bug ID: 156643
   Summary: Difference between Pages document converted using CLI
(--convert-to) and GUI (Save As)
   Product: LibreOffice
   Version: 7.5.5.2 release
  Hardware: ARM
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: patrick.m...@gmail.com

Description:
There seem to be difference between an Apple Pages document generated using
command-line and through GUI . 

When I generate the file using the command-line, the table of contents is
missing.

I expect that the file generated through the command line should also include
the table of contents.

I used the following command to generate the PDF:

/Applications/LibreOffice.app/Contents/MacOS/soffice --headless --convert-to
pdf:"writer_pdf_Export" --infilter="Apple Pages" "Untitled.pages" 


Steps to Reproduce:
1. Download Untitled.pages

2. Run the following command in the folder with Untitled.pages. Notice that the
table of contents is missing on page 2.

/Applications/LibreOffice.app/Contents/MacOS/soffice --headless --convert-to
pdf:"writer_pdf_Export" --infilter="Apple Pages" "Untitled.pages" 

3. Open Untitled.pages in Apple Pages, File > Export to > PDF then click Save.
Notice that the table of contents is not missing.

4. Open Untitled.pages in Apple Pages, File > Print, click the pdf button,
click the save button. Notice that the table of contents is not missing.

Actual Results:
The table of contents is missing in the command-line-generated file.

Expected Results:
I expect the table of contents to be present in the command-line-generated
file.


Reproducible: Always


User Profile Reset: No

Additional Info:
% /Applications/LibreOffice.app/Contents/MacOS/soffice --version 
LibreOffice 7.5.5.2 ca8fe7424262805f223b9a2334bc7181abbcbf5e
%

% sw_vers
ProductName:macOS
ProductVersion: 13.4.1
ProductVersionExtra:(c)
BuildVersion:   22F770820d
% 

I am running a Macbook pro M2.

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

[Libreoffice-bugs] [Bug 156543] [Feature Request] "Mono" feature for the Asian Phonetic Guide

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156543

Aron Budea  changed:

   What|Removed |Added

 OS|macOS (All) |All
   Severity|normal  |enhancement

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

[Libreoffice-bugs] [Bug 156630] Regression: Opaque parts of APNGs don't seem to be drawn

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156630

--- Comment #15 from Patrick Luby  ---
(In reply to Patrick Luby from comment #14)
> Created attachment 188811 [details]
> Example of broken export to PDF rendering

I am also seeing drawing problems when using Skia/Raster on macOS.

Interestingly, the following change fixes all rendering problems in a document
window and export to PDF (but not slideshow) for Skia/Metal and Skia/disabled.
I don't want to commit the following diff but it really amplifies the
Skia/Raster problems so next I will see if I can figure out why Skia/Raster is
different than Skia/Metal:

diff --git a/drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx
b/drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx
index f3c4cf69911c..5a765c1fdd16 100644
--- a/drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx
+++ b/drawinglayer/source/primitive2d/graphicprimitivehelper2d.cxx
@@ -104,6 +104,8 @@ namespace drawinglayer::primitive2d
 maVirtualDeviceMask->EnableMapMode(false);
 maVirtualDevice->SetOutputSizePixel(aTarget);
 maVirtualDeviceMask->SetOutputSizePixel(aTarget);
+maVirtualDevice->SetBackground(COL_BLACK);
+maVirtualDeviceMask->SetBackground(COL_ALPHA_TRANSPARENT);
 }

 maVirtualDevice->Erase();

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

[Libreoffice-bugs] [Bug 156642] I just downloaded Libre office 7.4.7.2 but it would not open

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156642

Dieter  changed:

   What|Removed |Added

  Component|Writer  |LibreOffice

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

[Libreoffice-bugs] [Bug 156630] Regression: Opaque parts of APNGs don't seem to be drawn

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156630

--- Comment #14 from Patrick Luby  ---
Created attachment 188811
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188811=edit
Example of broken export to PDF rendering

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

[Libreoffice-bugs] [Bug 156636] Opening any existing Libreoffice document lasts < 1 min.

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156636

--- Comment #2 from Volker Zipp  ---
Thank you for your quick response.
Upgrade to 7.5.5.2 carried out + reboot. Also tested both alternatives with
Open CL on and off (no improvement). Conclusion:  bug 156636 unfortunately
persits.
Regards Volker Zipp

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

[Libreoffice-bugs] [Bug 156642] I just downloaded Libre office 7.4.7.2 but it would not open

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156642

Kate  changed:

   What|Removed |Added

Version|unspecified |7.4.7.2 release

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

[Libreoffice-bugs] [Bug 156642] New: I just downloaded Libre office 7.4.7.2 but it would not open

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156642

Bug ID: 156642
   Summary: I just downloaded Libre office 7.4.7.2 but it would
not open
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: akhar...@btinternet.com

Description:
Opened libre office to work on document. Alert flashed up to say update was
available. Downloaded v 7.4.7.2 and installed but it did not open. Downloaded a
second time and the wizard offered to repair, clicked on this, still did not
open.  Tried Writer and Calc.
I then uninstalled and reinstalled previous version 7.4.6.2 which is thankfully
working. Running windows 11 on Lenovo ideapad 64 bit. I am not in any way a
computer expert

Steps to Reproduce:
1.install 7.4.7.2
2.
3.

Actual Results:
see above

Expected Results:
see above


Reproducible: Always


User Profile Reset: No

Additional Info:
opened!

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

[Libreoffice-bugs] [Bug 156630] Regression: Opaque parts of APNGs don't seem to be drawn

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156630

--- Comment #13 from Telesto  ---
Created attachment 188810
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188810=edit
Screenshot

FWIW: There also rendering glitches for the APNG in impress presentation mode
(with Skia enabled). But maybe a different bug belonging to a new bug report

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

[Libreoffice-bugs] [Bug 156634] REPORTBUILDER: Crash in: rptxml::ORptExport::exportSectionAutoStyle(com::sun::star::uno::Reference const &)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156634

--- Comment #4 from Julien Nabet  ---
(In reply to Michael from comment #3)
> It appeared in Base. Report Builder. I was in the middle of defining a
> report and pressed 'Execute Report'.

Does it happen at random or you can reproduce this any time? In the last case,
could you be more specific about how to do this?

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

[Libreoffice-bugs] [Bug 156630] Regression: Opaque parts of APNGs don't seem to be drawn

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156630

--- Comment #12 from Telesto  ---
(In reply to Telesto from comment #9)
> Created attachment 188808 [details]
> Screenshot Windows
> 
> It looks even worse on Windows (build 9 days ago)
> Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
> Build ID: e26aeb882dd236adf19679d5df9b7ba5da1ed226
> CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: default; VCL: win
> Locale: nl-NL (nl_NL); UI: en-US
> Calc: CL threaded

Note: I somewhat overlooked that Skia being disabled here. So this only happens
on Windows in GDI mode. It looks OK with Skia/Raster (unable to test Vulkan on
my Windows machine)

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

[Libreoffice-bugs] [Bug 156322] Provide better PDF export settings in Calc

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156322

--- Comment #5 from M-Rick  ---
I forgot to my previous comment, export to PDF is the only way to build a
signed PDF. So if we want to build a certain page layout in Calc with the
different available settings, like the print zones, we have the choice to have
a signed PDF with a no settings available, or to have a layout matching
perfectly well all the settings, but with an unsigned document.

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

--- Comment #8 from Michael Weghorn  ---
(In reply to Michael Weghorn from comment #7)
> (In reply to eric li from comment #6)
> > I will try this later ,,
> > I am build it following the below source ,any wrong with it ?
> > https://wiki.documentfoundation.org/Development/BuildingForAndroid
> 
> That instruction is fine.

But it would still be interesting to know whether the issue also occurs with
the F-Droid version, to see whether this is a general problem occuring on your
device, or maybe somehow related to your local build.

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

--- Comment #7 from Michael Weghorn  ---
(In reply to eric li from comment #3)
> I just used git and pull download from github as following the instructions
> of how to build android libreoffice from the official website...it is around
> 2 months ago ,,and I don't know how to check the version exactly from source
> project..

I'd suggest to update to the latest development version from that, with a `git
pull`. Then you can see the current commit (= "version" of the development
branch) with a `git log -n1` for example.

(In reply to eric li from comment #6)
> I will try this later ,,
> I am build it following the below source ,any wrong with it ?
> https://wiki.documentfoundation.org/Development/BuildingForAndroid

That instruction is fine.

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

[Libreoffice-bugs] [Bug 156322] Provide better PDF export settings in Calc

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156322

--- Comment #4 from M-Rick  ---
There is this long standing bug on macOS making Print to PDF almost unusable as
I wrote above.
https://bugs.documentfoundation.org/show_bug.cgi?id=155124
Plus the paper size is related to the papers supported by the printer itself.
So If I want a A3 or even a A0, while the printer only handle 14, you cannot
export your document. While having a direct PDF export wouldn't limit this.


Plus, in the case of Calc, having better page settings features would improve
the experience with building digital documents, because Calc is not only a
table with cells. It's a whole documents with tons of functions and settings
that as you interactions features. And since the OLE doesn't work properly to
embed Calc pages in other documents in order to achieve this.

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

[Libreoffice-bugs] [Bug 156641] New: Improving image escale options and copy/paste image in Writer

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156641

Bug ID: 156641
   Summary: Improving image escale options and copy/paste image in
Writer
   Product: LibreOffice
   Version: 7.5.4.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafaell...@gmail.com

Description:
Hello, I don't know if this is the best place to comment on it, but I would
like to indicate a couple of aspects that I think could be improved in Writer:
1.- In a multi-page document, if I try to paste two or more images at the same
time on the same page, the first image stays on the page where I perform the
action, but the rest of the images appear at the end of the document, in
instead of staying on the same page, even if they partially overlap each other,
so I have to relocate them one by one to the desired place.
2.- In image properties – crop: there is no way to maintain the proportion of
the scale if only the width or height is modified, even if the option maintain
scale is checked. In other processors such as MSWord, the scale is maintained
even if only one of the parameters is modified, as long as the option is
checked.
Greetings and thanks.

Steps to Reproduce:
1.Propiedades de imagen - Escala
2.Marco mantener escala
3.Modifico ancho y no mantiene la escala para el largo y viceversa.

Otro:
1.- Copio y pego varias imágenes al principio del documento (Writer)
2.- Si el documento consta de varias páginas solo se pega en la página
seleccionada la primera imagen, el resto aparece al final del documento.

Actual Results:
1.- No mantiene escala de imagen aunque se marque la opción "mantener escala"

2.- No se pegan varias imágenes en una misma página

Expected Results:
1.- Debería mantener la escala de ambos parámetros (alto - ancho) si se marca
la opción "mantener escala"

2.- Si se pegan varias imágenes en una misma página, todas deberían quedar en
esa página y no aparecer al final del documento.


Reproducible: Always


User Profile Reset: No

Additional Info:
Ninguna

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

[Libreoffice-bugs] [Bug 156634] REPORTBUILDER: Crash in: rptxml::ORptExport::exportSectionAutoStyle(com::sun::star::uno::Reference const &)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156634

--- Comment #3 from Michael  ---
It appeared in Base. Report Builder. I was in the middle of defining a report
and pressed 'Execute Report'.

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

[Libreoffice-bugs] [Bug 156640] REPORTBUILDER: Blank Window after change of Data Field Type

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156640

--- Comment #1 from Michael  ---
Created attachment 188809
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188809=edit
Screenshot

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

[Libreoffice-bugs] [Bug 156640] New: REPORTBUILDER: Blank Window after change of Data Field Type

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156640

Bug ID: 156640
   Summary: REPORTBUILDER: Blank Window after change of Data Field
Type
   Product: LibreOffice
   Version: 7.5.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: od2...@solnet.ch

Description:
Window contents disappears / window turn black, when I change Data Field type
in Report Builder. 

Steps to Reproduce:
1. Open a Base document
2. Open a Report for editing
3. Select a Formatted field
4. In Properties|Data : Change Combo-Box 'Data Field Type' from 'Field or
Formula' to 'Function'


Actual Results:
Most of the window turns black. Only poperties are partly visible.  
see attached screenshot
The rest of the window content will re-appear after the window gets resized. 

Expected Results:
Window content should not be affected by change of combo-box.


Reproducible: Always


User Profile Reset: No

Additional Info:
Module: ReportDefinition
Version: 7.5.5.2 (X86_64) / LibreOffice Community
Build ID: ca8fe7424262805f223b9a2334bc7181abbcbf5e
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: de-CH (de_CH); UI: en-GB
Calc: threaded

also seen on Windows 11 Home 22H2, 64bit, x64 Processor

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

[Libreoffice-bugs] [Bug 156632] [PRINTING] Print right after Replace All tries to prints an empty selection

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156632

LeroyG  changed:

   What|Removed |Added

 OS|Windows (All)   |All
Version|7.4.7.2 release |7.4.3.2 release

--- Comment #2 from LeroyG  ---
Reproducible with:

Version: 7.4.3.2 / LibreOffice Community
Build ID: 40(Build:2)
CPU threads: 1; OS: Linux 5.14; UI render: default; VCL: gtk3
Locale: es-MX (en_US.UTF-8); UI: en-US
Calc: threaded

Same behavior if text is in a table or frame, or simultaneously in a table and
in the document body.

There is no issue if the replaced text were at the header or footer, or
simultaneously in a frame and in the document body.

Pressing Escape key after Replace All is a workaround, also there is no issue
if the cursor position is changed by keyboard input or mouse click.

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

[Libreoffice-bugs] [Bug 156630] Regression: Opaque parts of APNGs don't seem to be drawn

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156630

--- Comment #11 from Patrick Luby  ---
(In reply to Paris Oplopoios from comment #10)
> APNG support didn't exist in 7.6, I added it recently.

That is good to know. I found the following patch of yours which should save me
a ton of time trying to find which code controls the drawing:

https://gerrit.libreoffice.org/c/core/+/153556

My first guess is that the transparency->alpha patch in master will now require
an AlphaMask.Invert() to be added or removed from some in the drawing calls
like was needed to fix the following slideshow animation bug:

https://bugs.documentfoundation.org/show_bug.cgi?id=156540

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

[Libreoffice-bugs] [Bug 156633] Access keys unavailable in tabbed UI

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156633

Robert Großkopf  changed:

   What|Removed |Added

  Component|Base|LibreOffice

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

[Libreoffice-bugs] [Bug 156630] Regression: Opaque parts of APNGs don't seem to be drawn

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156630

--- Comment #10 from Paris Oplopoios  ---
(In reply to Telesto from comment #9)
> Created attachment 188808 [details]
> Screenshot Windows
> 
> It looks even worse on Windows (build 9 days ago)
> Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
> Build ID: e26aeb882dd236adf19679d5df9b7ba5da1ed226
> CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: default; VCL: win
> Locale: nl-NL (nl_NL); UI: en-US
> Calc: CL threaded

FYI that's the bug I'm talking about that I get on linux as well

(In reply to Patrick Luby from comment #5)
> (In reply to Patrick Luby from comment #4)
> > Created attachment 188802 [details]
> > Screen snapshot of drawing artifacts near trunk and tail
> 
> I rebuilt master with the latest code this morning on macOS and what I see
> is normal animation of the .png image. The only bug that I still see is that
> there are drawing artifacts left over near the elephant's trunk and tail
> (see
> https://bug-attachments.documentfoundation.org/attachment.cgi?id=188802).
> 
> The artifacts get cleared about every second or so maybe clipping and
> clearing is the issue. Interestingly, in LibreOffice RC 7.6.0.2, there is no
> animation at all when I open the .apng image in Draw. So maybe the "animate
> in place" is a new feature on master?

APNG support didn't exist in 7.6, I added it recently.

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

[Libreoffice-bugs] [Bug 156630] Regression: Opaque parts of APNGs don't seem to be drawn

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156630

--- Comment #9 from Telesto  ---
Created attachment 188808
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188808=edit
Screenshot Windows

It looks even worse on Windows (build 9 days ago)
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: e26aeb882dd236adf19679d5df9b7ba5da1ed226
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: default; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

--- Comment #6 from eric li  ---
(In reply to Michael Weghorn from comment #1)
> Since you've set the "Version" field to 7.4.7.2: Is that the git tag/tarball
> from which you're building?
> 
> What happens when you use the version from F-Droid instead?
> https://f-droid.org/en/packages/org.documentfoundation.libreoffice/
> 
> Does it also crash when you build with current git master or the
> libreoffice-7-6 branch?

I will try this later ,,
I am build it following the below source ,any wrong with it ?
https://wiki.documentfoundation.org/Development/BuildingForAndroid

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

--- Comment #5 from eric li  ---
below is the libosettings.gradle

apply plugin: 'com.android.application'
// buildhost settings - paths and the like
apply from: 'liboSettings.gradle'

allprojects {
repositories {
mavenCentral()
maven {
url "https://ipv6.repo1.maven.org/maven2;
}
google()
}
}
//build-time dependencies - android plugin for gradle
buildscript {
repositories {
mavenCentral()
maven {
url "https://ipv6.repo1.maven.org/maven2;
}
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
}
}

// compile-time dependencies
dependencies {
implementation fileTree(dir: "${liboInstdir}/${liboUREJavaFolder}",
include: [
"java_uno.jar",
"libreoffice.jar",
"unoloader.jar"
])
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation "androidx.multidex:multidex:2.0.1"
}

android {
namespace 'org.libreoffice'
compileSdkVersion 33
// uses non-conventional source layout, so need to reconfigure accordingly
// ToDo move to conventional layout, so stuff can be stripped down.

sourceSets {
main.manifest.srcFile 'AndroidManifest.xml'
main.assets.srcDirs = ['assets']
main.res.srcDirs = ['res', 'res_generated']
main.java.srcDirs = ['../Bootstrap/src', 'src/java']
main.jniLibs.srcDirs = ["${liboJniLibsdir}"]
   // main.jniLibs.srcDirs =
['/home/eric/libreoffice/android/jniLibs/armeabi-v7a/']
// the configuration data that might be stripped or not
fullUI.assets.srcDirs 'assets_fullUI'
strippedUI.assets.srcDirs 'assets_strippedUI'
strippedUIEditing.assets.srcDirs 'assets_strippedUI'
}
defaultConfig {
// minSdkVersion is set in liboSettings.gradle
targetSdkVersion 33
// multidex needed when > 65,536 methods referenced with minSdKVersion
< 21
// s. https://developer.android.com/studio/build/multidex
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
ndk {
abiFilters "armeabi-v7a"
}
externalNativeBuild {
cmake {
arguments "-DANDROID_STL=none"
cppFlags ""
}
}
}
buildTypes {
debug {
// make android studio happy...
jniDebuggable true
// would work just fine with external, but setting emulator up is a
little more work
manifestPlaceholders = [installLocation: "auto"]
}
release {
manifestPlaceholders = [installLocation: "preferExternal"]
}
}

flavorDimensions "default"
productFlavors {
strippedUI {
dimension "default"
buildConfigField 'boolean', 'ALLOW_EDITING', 'false'
}
strippedUIEditing {
dimension "default"
buildConfigField 'boolean', 'ALLOW_EDITING', 'true'
versionNameSuffix "-editing"
}
fullUI.dimension "default"
}
lint {
// don't error-out on missing translations
warning 'MissingTranslation'
}
}

/* remark inherited from makefile:
Then "assets". Let the directory structure under assets mimic
that under solver for now.

Please note that I have no idea what all of this is really necessary and for
much of this stuff being copied, no idea whether it makes any sense at all.
Much of this is copy-pasted from android/qa/sc/Makefile (where a couple of
unit tests for sc are built, and those do seem to mostly work) and
android/qa/desktop/Makefile (mmeeks's desktop demo, also works to some
extent)
 */

// Assets that are unpacked at run-time into the app's data directory. These
// are files read by non-LO code, fontconfig and freetype for now, that doesn't
// understand "/assets" paths.
task copyUnpackAssets(type: Copy) {
description "copies assets that need to be extracted on the device"
into 'assets/unpack'
into('program') {
from("${liboInstdir}/${liboEtcFolder}/types") {
includes = [
"offapi.rdb",
"oovbaapi.rdb"
]
}
from("${liboInstdir}/${liboUreMiscFolder}") {
includes = ["types.rdb"]
rename 'types.rdb', 'udkapi.rdb'
}
}
into('user/fonts') {
from "${liboInstdir}/share/fonts/truetype"
// Note: restrict list of fonts due to size considerations - no
technical reason anymore
// ToDo: fonts would be good candidate for using Expansion Files
instead
includes = [
"Liberation*.ttf",
"Caladea-*.ttf",
"Carlito-*.ttf",
"Gen*.ttf",
"opens___.ttf"
]
}

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

--- Comment #4 from eric li  ---
(In reply to Michael Weghorn from comment #1)
> Since you've set the "Version" field to 7.4.7.2: Is that the git tag/tarball
> from which you're building?
> 
> What happens when you use the version from F-Droid instead?
> https://f-droid.org/en/packages/org.documentfoundation.libreoffice/
> 
> Does it also crash when you build with current git master or the
> libreoffice-7-6 branch?

the build.gradle file in source is belowed:
apply plugin: 'com.android.application'
// buildhost settings - paths and the like
apply from: 'liboSettings.gradle'

allprojects {
repositories {
mavenCentral()
maven {
url "https://ipv6.repo1.maven.org/maven2;
}
google()
}
}
//build-time dependencies - android plugin for gradle
buildscript {
repositories {
mavenCentral()
maven {
url "https://ipv6.repo1.maven.org/maven2;
}
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
}
}

// compile-time dependencies
dependencies {
implementation fileTree(dir: "${liboInstdir}/${liboUREJavaFolder}",
include: [
"java_uno.jar",
"libreoffice.jar",
"unoloader.jar"
])
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation "androidx.multidex:multidex:2.0.1"
}

android {
namespace 'org.libreoffice'
compileSdkVersion 33
// uses non-conventional source layout, so need to reconfigure accordingly
// ToDo move to conventional layout, so stuff can be stripped down.

sourceSets {
main.manifest.srcFile 'AndroidManifest.xml'
main.assets.srcDirs = ['assets']
main.res.srcDirs = ['res', 'res_generated']
main.java.srcDirs = ['../Bootstrap/src', 'src/java']
main.jniLibs.srcDirs = ["${liboJniLibsdir}"]
   // main.jniLibs.srcDirs =
['/home/eric/libreoffice/android/jniLibs/armeabi-v7a/']
// the configuration data that might be stripped or not
fullUI.assets.srcDirs 'assets_fullUI'
strippedUI.assets.srcDirs 'assets_strippedUI'
strippedUIEditing.assets.srcDirs 'assets_strippedUI'
}
defaultConfig {
// minSdkVersion is set in liboSettings.gradle
targetSdkVersion 33
// multidex needed when > 65,536 methods referenced with minSdKVersion
< 21
// s. https://developer.android.com/studio/build/multidex
multiDexEnabled true
vectorDrawables.useSupportLibrary = true
ndk {
abiFilters "armeabi-v7a"
}
externalNativeBuild {
cmake {
arguments "-DANDROID_STL=none"
cppFlags ""
}
}
}
buildTypes {
debug {
// make android studio happy...
jniDebuggable true
// would work just fine with external, but setting emulator up is a
little more work
manifestPlaceholders = [installLocation: "auto"]
}
release {
manifestPlaceholders = [installLocation: "preferExternal"]
}
}

flavorDimensions "default"
productFlavors {
strippedUI {
dimension "default"
buildConfigField 'boolean', 'ALLOW_EDITING', 'false'
}
strippedUIEditing {
dimension "default"
buildConfigField 'boolean', 'ALLOW_EDITING', 'true'
versionNameSuffix "-editing"
}
fullUI.dimension "default"
}
lint {
// don't error-out on missing translations
warning 'MissingTranslation'
}
}

/* remark inherited from makefile:
Then "assets". Let the directory structure under assets mimic
that under solver for now.

Please note that I have no idea what all of this is really necessary and for
much of this stuff being copied, no idea whether it makes any sense at all.
Much of this is copy-pasted from android/qa/sc/Makefile (where a couple of
unit tests for sc are built, and those do seem to mostly work) and
android/qa/desktop/Makefile (mmeeks's desktop demo, also works to some
extent)
 */

// Assets that are unpacked at run-time into the app's data directory. These
// are files read by non-LO code, fontconfig and freetype for now, that doesn't
// understand "/assets" paths.
task copyUnpackAssets(type: Copy) {
description "copies assets that need to be extracted on the device"
into 'assets/unpack'
into('program') {
from("${liboInstdir}/${liboEtcFolder}/types") {
includes = [
"offapi.rdb",
"oovbaapi.rdb"
]
}
from("${liboInstdir}/${liboUreMiscFolder}") {
includes = ["types.rdb"]
rename 'types.rdb', 'udkapi.rdb'
}
}
into('user/fonts') {
from 

[Libreoffice-bugs] [Bug 156636] Opening any existing Libreoffice document lasts < 1 min.

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156636

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Julien Nabet  ---
Could you try these:
- upgrade to LO 7.5.5
- apply https://wiki.documentfoundation.org/QA/FirstSteps
?

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

[Libreoffice-bugs] [Bug 156634] REPORTBUILDER: Crash in: rptxml::ORptExport::exportSectionAutoStyle(com::sun::star::uno::Reference const &)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156634

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1

--- Comment #2 from Julien Nabet  ---
Could you provide minimum step by step process to reproduce this?

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

[Libreoffice-bugs] [Bug 156634] REPORTBUILDER: Crash in: rptxml::ORptExport::exportSectionAutoStyle(com::sun::star::uno::Reference const &)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156634

Julien Nabet  changed:

   What|Removed |Added

Version|7.5.2.2 release |7.5.5.2 release

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

--- Comment #3 from eric li  ---
(In reply to Michael Weghorn from comment #1)
> Since you've set the "Version" field to 7.4.7.2: Is that the git tag/tarball
> from which you're building?
> 
> What happens when you use the version from F-Droid instead?
> https://f-droid.org/en/packages/org.documentfoundation.libreoffice/
> 
> Does it also crash when you build with current git master or the
> libreoffice-7-6 branch?

I just used git and pull download from github as following the instructions of
how to build android libreoffice from the official website...it is around 2
months ago ,,and I don't know how to check the version exactly from source
project..

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

[Libreoffice-bugs] [Bug 156635] REPORTBUILDER: Crash in: rptxml::ORptExport::exportSectionAutoStyle(com::sun::star::uno::Reference const &)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156635

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Julien Nabet  ---


*** This bug has been marked as a duplicate of bug 156634 ***

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

[Libreoffice-bugs] [Bug 156634] REPORTBUILDER: Crash in: rptxml::ORptExport::exportSectionAutoStyle(com::sun::star::uno::Reference const &)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156634

--- Comment #1 from Julien Nabet  ---
*** Bug 156635 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 156639] New: Spell check does not note inserted digits

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156639

Bug ID: 156639
   Summary: Spell check does not note inserted digits
   Product: LibreOffice
   Version: 7.5.2.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Linguistic
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jens.d...@live.de
CC: so...@libreoffice.org

When writing texts I sometimes push onto the false character and spelling
errors occur. The spell check recognizes most of them, but does not recognize
digits which are inserted into correct words. I just stumbled again over the
bug and repeated it deliberatly, but spell check did not notice the error. Here
are some examples from a German text:

wer4den
ge2nau
Erfin7dung

which is only right after removal of the digits.

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

[Libreoffice-bugs] [Bug 156446] extremely long loading or not loading at all using Linux Mint Mate desktop environment

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156446

Dieter  changed:

   What|Removed |Added

  Component|Writer  |LibreOffice

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

[Libreoffice-bugs] [Bug 107431] [META] Comment bugs and enhancements

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107431

Dieter  changed:

   What|Removed |Added

   Keywords|accessibility   |

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

[Libreoffice-bugs] [Bug 107431] [META] Comment bugs and enhancements

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107431

Dieter  changed:

   What|Removed |Added

URL|https://christiancadre.org/ |

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

[Libreoffice-bugs] [Bug 136456] Epub Ebook Export in Writer Overlines all table data when Hebrew, Greek and English used in cells

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136456

--- Comment #5 from Dieter  ---
Still present in

Version: 7.6.0.2 (X86_64) / LibreOffice Community
Build ID: 41d6f628ba3f046f16b5fa9fa8db8d4c2ab3b582
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL threaded

Steps:
1. Open attachment 165128
2. File -> Export AS -> Export Directly As EPUB
3. Compare EPUB with odt-file

Actual result
Every text in cells is overlined

Expected
The Table should appear as it is in Writer: NO overlining.

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

[Libreoffice-bugs] [Bug 133148] Epub Export in Writer removes the first row from Tables with headings

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133148

--- Comment #6 from Dieter  ---
Still present in

Version: 7.6.0.2 (X86_64) / LibreOffice Community
Build ID: 41d6f628ba3f046f16b5fa9fa8db8d4c2ab3b582
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL threaded

Steps:
1. In a writer document: Table -> Insert Table
2. Insert 3x3 table with heading option active
3. Write some content to table cells
5. File -> Export As -> Export directly as EPUB

Result:
Heading row is missing in exported EPUB

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

[Libreoffice-bugs] [Bug 108372] Inserting references using Zotero and Writer results in single line spacing

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108372

--- Comment #7 from Dieter  ---
Tested with
Version: 7.6.0.2 (X86_64) / LibreOffice Community
Build ID: 41d6f628ba3f046f16b5fa9fa8db8d4c2ab3b582
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL threaded

and with extension Zotero LibreOffice Integration 6.0.3


Steps:
1. Open a new document an add a paragraph with two or three lines of text
2. Change line spacing to double.
3. Place cursor inside the text.
4. In Zotero toolbar press button "Add/Edit citation"

Result:
Sometimes line spacing changes to single (wrong) and sometimes line spacing it
still double (expected). I couldn't find out what causes the different results.

So bug is still present (under unknown condition).

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

[Libreoffice-bugs] [Bug 156638] Export to HTML results in a number of issues

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156638

rob...@prino.org changed:

   What|Removed |Added

 CC||rob...@prino.org

--- Comment #1 from rob...@prino.org ---
Created attachment 188807
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188807=edit
Just the spreadsheet I'm using to report on all my Calc issues

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

[Libreoffice-bugs] [Bug 156638] New: Export to HTML results in a number of issues

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156638

Bug ID: 156638
   Summary: Export to HTML results in a number of issues
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rob...@prino.org

When the attached ODS file is saved in HTML format, there are at least these
issues:

1) Excessive bloat 
The resulting HTML file has a size in excess of 10Mb, and part of this is
caused by

a) Excessive indentation of the generated HTML - there should be a setting to
manage this, IN THE SAVE-AS DIALOGUE, and not is some obscure settings dialogue
that your average Tammy, Danny, or Harriet will never look at

b) Inclusion of utterly useless data, in casu the "sdval" and "sdnum"
attributes. They serve abso-(strong expletive)-ingly no purpose in a html
document, and in my case the 2057 is quite likely something Windoze specific,
even worse...

c) Lack of additional CSS, even just three selectors, .l, .c, and .r for
"text-align: left/center/right" would save considerable space, 'class="l"'
saves three chars over 'align="left"' Setting a default alignment for *all*
tables would result in (potentially) substantial additional savings.

2) Navigation
a) Given that each sheet ends up in a sequentially numbered table, how hard
would it be to add backward and forward links to each of them, and an "up" link
to get back to the index?

b) If the top-row of a sheet is (a) frozen (heading), why not add something
like

 .sticky {
position: sticky;
top: 0;
width: fit-content;
  }

  html {
scroll-padding-top: 3rem;
  }

to it, so that the same effect is achieved in the html

3) Why are the html anchor tags in UPPERCASE???

4) How hard would it be to use the name of the ODS file in the  tag,
when the create and modified dates are already used in (what are essentially)
useless meta tags?

5) What the flippin' 'ell are the colgroup tags for? They do not stop some
cells from flowing into the next row, or let me rephrase that, THEY ACTUALLY
CAUSE CELLS TO WRAP! 

And as I've mentioned before: Bloat is not a technical issue, but verily a way
of thinking, a "state of mind". Its cure is a simple refusal to accept, and a
well directed, resounding "clean up your act and clean up your code!" - and no,
don't suggest that I get involved, I only work in PL/I, Pascal, REXX and
assembler.

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

[Libreoffice-bugs] [Bug 107431] [META] Comment bugs and enhancements

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107431

--- Comment #9 from Juliusarrell  ---
Created attachment 188806
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188806=edit
Slot777 adalah situs game slot online terpercaya yang menawarkan slot 777
paling asyik dengan RTP tertinggi untuk slot gacor saat ini di Indonesia.

Slot777 adalah situs game slot online terpercaya yang menawarkan slot 777
paling asyik dengan RTP tertinggi untuk slot gacor saat ini di Indonesia.

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

[Libreoffice-bugs] [Bug 156637] New: UI: the dotted line to make menu floating is out of theming (macOS)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156637

Bug ID: 156637
   Summary: UI: the dotted line to make menu floating is out of
theming (macOS)
   Product: LibreOffice
   Version: 24.2.0.0 alpha0+ Master
  Hardware: All
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
UI: the dotted line to make menu floating is out of theming (macOS)

Steps to Reproduce:
1. Open Draw
2. expand line styles in left drawing toolbar

Actual Results:
Grayish dotted line

Expected Results:
Black


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b3053b63c65372627c5fb4df6b4ddcd5e12e16f7
CPU threads: 8; OS: Mac OS X 13.4.1; UI render: Skia/Metal; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 156637] UI: the dotted line to make menu floating is out of theming (macOS)

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156637

--- Comment #1 from Telesto  ---
Created attachment 188805
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188805=edit
Screenshot

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

[Libreoffice-bugs] [Bug 156630] Regression: Opaque parts of APNGs don't seem to be drawn

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156630

--- Comment #8 from Patrick Luby  ---
(In reply to Telesto from comment #7)
> 1. The white area around the elephant should be transparent, or at least it
> was before
> 2. The APNG is animating, however the tail shows artifacts

I now see what you describe. I'll look at the filled white background first as
I am guessing that fixing that might also eliminate the trunk and tail drawing
artifacts.

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

[Libreoffice-bugs] [Bug 107431] [META] Comment bugs and enhancements

2023-08-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107431

Juliusarrell  changed:

   What|Removed |Added

 Whiteboard|https://www.paintcutpaste.c |
   |om/ |

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

  1   2   >