[Libreoffice-bugs] [Bug 107249] Rendering of system font vertically cramped in 5.3+

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107249

--- Comment #27 from Dale  ---
See my Bug 108710 for Writer - which I suspect is a directly related problem.
In Writer I observed a significant line spacing reduction from version 5.3 
BUT ONLY when in Web View.
Also the line spacing there changes significantly as the zoom is changed. 100%
seems to have the smallest line spacing.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108559] Pasting direct formatted text in cell edit mode doesn' t always retain the original direct formatting

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108559

--- Comment #9 from Kevin  ---

> Yes your initial control+B applies bold to the cell and not to the 'B', but
> if you press F2, then followed your sequence, it would work correctly.
> 
> I tested your sequence in excel 2010 and it did result with the same
> behaviour.


Oh God - you're right. So instead of something that's right in Excel and wrong
in Calc, it's something that's wrong in both. This is a painful reminder of why
I switched to Libre Calc in the first place. 


I tried the same sequence in both Word and Writer, in both tables and in normal
paragraphs, and it worked logically in all cases. What you copy should be what
you paste. Am I wrong? Can you describe any logical reason why you would want a
hidden attribute of a cell to override what you've copied onto the clipboard? 

In any case, thanks for showing the workaround. I'll try to adapt my work flow
to hit F2 before typing anything.

NOTE: This doesn't invalidate the initial report as represented by 108559.ods.
If you open that in Excel, the bug doesn't occur.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 105860] VIEWING: line spacing is too small compared to older versions and other programs

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105860

--- Comment #19 from Dale  ---
More details: Changing the zoom affects the line spacing - quite significantly
between 100% and 110%.

This zoom effect is plainly evident in the multi-line entry of the test file
provided with this bug (Comment 2) - look at the vertical fit of the row 1 text
within that row as the zoom is changed.

This I believe is the same issue as described in my Bug 108710 for Writer.

Word and Excel do not exhibit this problem when viewing these files.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108563] Remove global variable gArchiveReader in onlineupdater

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108563

Chris  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |christian.ba...@zoho.com
   |desktop.org |

--- Comment #4 from Chris  ---
Moved the global variable to local one:
https://gerrit.libreoffice.org/#/c/39243/

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108710] Line spacing is too small in web view, varies with zoom

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108710

--- Comment #1 from Dale  ---
This looks to be to be the same problem as reported in Bug 105860 for Calc.
Examining that Calc problem, it too exhibits the same behaviour in that 
(a) the line spacing at 100% zoom reduced in LibO 5.3.0.3 compared to previous
(b) the line spacing changes depending on the zoom
(c) 100% zoom seems to have the smallest line spacing

Depending on the document and font, the visual difference between 5.3.0.3 and
previous is very obvious. A document that once had nicely spaced lines now
looks cramped.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100233] Wrong Windows version reported in the About window in Windows 10

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100233

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||implementationError,
   ||needsDevAdvice

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100233] Wrong Windows version reported in the About window in Windows 10

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100233

--- Comment #13 from V Stuart Foote  ---
No, we seem to have an implementation problem here with the Windows version
idents [1]. Microsoft deprecated the GetVersionEx() call in current SDKs, but
we've not fully adjusted.

Michael S. tests the generic Windows > Vista with [2][3], and we make the OS
Version query here:
http://opengrok.libreoffice.org/xref/core/vcl/source/app/svapp.cxx#1173
http://opengrok.libreoffice.org/xref/core/vcl/win/app/salinst.cxx#1012

Unfortunately, IIUC since our builds remain targeted at Windows XP and do not
manifest for later releases, I think the version returns major 6 minor 2.

Seems that to identify Windows details we probably need to pull major and minor
version ID from OSVERSIONINFO [4], similar to what is being done for OpenGL
support. 
http://opengrok.libreoffice.org/xref/core/vcl/opengl/win/WinDeviceInfo.cxx#185

For the Help -> About dialog if we want to provide more than major minor and
want to include the build version--we could pull from the OSVERSIONINFOEX
struct [5] rather than OSVERSIONINFO.

Also, there are some legacy calls that probably need to be cleaned up:
http://opengrok.libreoffice.org/xref/core/vcl/win/app/salinst.cxx?a=true#415
for example where we've hard coded only through Windows 7--with no handling of
8, 8.1 or 10.

=-refs-=
[1] https://msdn.microsoft.com/en-us/library/ms724832(v=vs.85).aspx

[2] https://msdn.microsoft.com/en-us/library/ms724451(v=vs.85).aspx
[3] https://gerrit.libreoffice.org/#/c/14020/

[4] https://msdn.microsoft.com/en-us/library/ms724834(VS.85).aspx

[5] https://msdn.microsoft.com/en-us/library/ms724833(v=vs.85).aspx

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108781] DOC password protection lost upon roundtrip

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108781

Aron Budea  changed:

   What|Removed |Added

Version|5.2.0.4 release |5.3.0.3 release

--- Comment #1 from Aron Budea  ---
This is the commit that implemented import support:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=4f07175cd03bf0fa42992a06d51aed5b421adcf2
author  Caolán McNamara 2016-10-22 20:08:07
(GMT)
committer   Caolán McNamara 2016-10-22 20:09:59
(GMT)

implement CryptoAPI RC4+SHA1 encryption scheme for doc import

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108781] New: DOC password protection lost upon roundtrip

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108781

Bug ID: 108781
   Summary: DOC password protection lost upon roundtrip
   Product: LibreOffice
   Version: 5.2.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:doc
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
Blocks: 104527

Created attachment 134283
  --> https://bugs.documentfoundation.org/attachment.cgi?id=134283=edit
Password protected DOC

The attached document was created with Word 2013, and is protected with a
password. Password is: 1234

Open document in Writer using the password, then save it.
Reopen document either in Writer or in Word.

=> Document is not protected with password anymore, and can be opened without
one.

Observed using LO 5.4beta2 & 5.3.0.3 / Windows 7.
In 5.2.0.4 this kind of password protection is not yet supported for DOC files.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104527
[Bug 104527] [META] DOC bug tracker
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104527] [META] DOC bug tracker

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104527

Aron Budea  changed:

   What|Removed |Added

 Depends on||108781


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108781
[Bug 108781] DOC password protection lost upon roundtrip
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108645] louno.ini will be read more than a 1000 times in 2 seconds when starting typing after launch

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108645

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
Version|5.4.0.0.beta2   |Inherited From OOo
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #1 from Aron Budea  ---
This is definitely related to spell checker initialization, as it doesn't occur
if automatic spell checking is turned off.

Reproduced with 3.5.0.3, but I assume it's inherited.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 99623] Copy-paste freezes LibreOffice when CLCL is running

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99623

Konstantin Vlasov  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from Konstantin Vlasov  ---
Yes, I update LO from time to time but the issue is still there. Just
reproduced it in 5.3.3.2 x64.

The problem is, it cannot be reproduced reliably (like, do this, do that, and
here you've got it). Sometimes it may work flawlessly for half an hour,
sometimes it hangs at the very first attempt on any clipboard operation.
Sometimes it's LO that hangs, sometimes it's CLCL that hangs, or even the
target application I tried to paste the copied text into (it could be CLCL hook
that hangs the target application, though).

Another thing I completely forgot about is that I'm using not a downloadable
binary from the official CLCL site but compiled it from sources (with minor
changes to make it more Unicode-friendly by default), so it might also affect
the behavior. I need to re-check with the stock CLCL but I keep forgetting to
do that...

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100233] Wrong Windows version reported in the About window in Windows 10

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100233

--- Comment #12 from Marco A.G.Pinto  ---
Created attachment 134282
  --> https://bugs.documentfoundation.org/attachment.cgi?id=134282=edit
screenshot - Thunderbird shows Windows 10 in the debug window

Again, I believe Microsoft changed the version number.

Are you sure you can't get "10.0" from the properties code?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100233] Wrong Windows version reported in the About window in Windows 10

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100233

--- Comment #11 from Aron Budea  ---
(In reply to Yousuf Philips (jay) from comment #10)

> Without rounding, you cant change 6.3 from 6.29.

Yes, but how does it become 6.29 in the first place?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 95505] Dump usage stats to text file in user profile rather than std error

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95505

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||107636


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107636
[Bug 107636] [META] User profile bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 98365] Crash on first run of 64-bit build with no user profile

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98365

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||107636


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107636
[Bug 107636] [META] User profile bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 101907] Crash on startup with new profile

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101907

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||107636


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107636
[Bug 107636] [META] User profile bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107636] [META] User profile bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107636

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||79299, 95505, 98365, 101907


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=79299
[Bug 79299] Easy means of removing user profile
https://bugs.documentfoundation.org/show_bug.cgi?id=95505
[Bug 95505] Dump usage stats to text file in user profile rather than std error
https://bugs.documentfoundation.org/show_bug.cgi?id=98365
[Bug 98365] Crash on first run of 64-bit build with no user profile
https://bugs.documentfoundation.org/show_bug.cgi?id=101907
[Bug 101907] Crash on startup with new profile
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 79299] Easy means of removing user profile

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79299

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||107636


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107636
[Bug 107636] [META] User profile bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100225] crash when extending area

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100225

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||107636


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107636
[Bug 107636] [META] User profile bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107636] [META] User profile bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107636

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||97162, 100225, 100039,
   ||101461


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97162
[Bug 97162] Problem customising toolbars
https://bugs.documentfoundation.org/show_bug.cgi?id=100039
[Bug 100039] while editing calc crashes, repeatedly.
https://bugs.documentfoundation.org/show_bug.cgi?id=100225
[Bug 100225] crash when extending area
https://bugs.documentfoundation.org/show_bug.cgi?id=101461
[Bug 101461] No font color names when using toolbar in Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100039] while editing calc crashes, repeatedly.

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100039

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||107636


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107636
[Bug 107636] [META] User profile bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 101461] No font color names when using toolbar in Writer

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101461

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||107636


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107636
[Bug 107636] [META] User profile bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 97162] Problem customising toolbars

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97162

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||107636


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107636
[Bug 107636] [META] User profile bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107636] [META] User profile bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107636

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||108763


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108763
[Bug 108763] non visible items in menu Styles in Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 105702] Allow the saving of multiple authors into file meta data

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105702

--- Comment #6 from Marco A.G.Pinto  ---
Created attachment 134281
  --> https://bugs.documentfoundation.org/attachment.cgi?id=134281=edit
screenshot of Word 2016 and LO 5.3 explaining how to do it

See the screenshot.

One just needs to add stringgadgets, one for each author, and create an "Add
author" button that adds a new stringgadget.

Then just save the odt with a ";" separating each author.

Just don't allow users to use the ";" in each author stringgadget.

This is a very simple way of solving the problem.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108763] non visible items in menu Styles in Writer

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108763

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||107636

--- Comment #7 from Yousuf Philips (jay)  ---
(In reply to kompilainenn from comment #6)
> ps: but, 5.4.0.1 and 5.3.3.2 installed parallel on Linux and use one user
> profile?

Just another reason why each version should have its own user profile (check
bug 57466 comment 15 for more info).


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107636
[Bug 107636] [META] User profile bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108780] LO54rc1: localized Chapter Numbering dialog displays numbering options in English

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108780

mi...@filmsi.net changed:

   What|Removed |Added

Summary|LO54rc1: localized Chapter  |LO54rc1: localized Chapter
   |Numbering dialog lists  |Numbering dialog displays
   |numbering options in|numbering options in
   |English |English

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108780] New: LO54rc1: localized Chapter Numbering dialog lists numbering options in English

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108780

Bug ID: 108780
   Summary: LO54rc1: localized Chapter Numbering dialog lists
numbering options in English
   Product: LibreOffice
   Version: 5.4.0.0.beta2
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mi...@filmsi.net

Description:
When opening the new/renamed "Chapter Numbering" dialog (via Tools - Chapter
Numbering ...), the dialog lists "Number:" options, but they are in English.

These numbering schemes are already localized in LO, so the translations should
be reused.

Steps to Reproduce:
1. Open LO Writer with a document.
2. Select Tools - Chapter Numbering ...


Actual Results:  
The drop-down list in the Number: section displays word "None" and all list
contents is in English.

Expected Results:
The existing localization of numbering schemes should be reused and it should
display "Brez" (translation of "None" in Slovenian).


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:54.0)
Gecko/20100101 Firefox/54.0

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108697] New default set of bullet characters

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108697

--- Comment #8 from Yousuf Philips (jay)  ---
(In reply to Khaled Hosny from comment #7)
> No to both questions, but be aware that there is code somewhere that depends
> on the exact code points in the font and will have to be fixed first.

So any idea how to get in touch with the maintainer? Well we could always copy
the glyphs to the new location and not disturb the other code. ;D

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100233] Wrong Windows version reported in the About window in Windows 10

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100233

--- Comment #10 from Yousuf Philips (jay)  ---
(In reply to Aron Budea from comment #9)
> I'd be happier to have the underlying issue found and eliminated.

Yes solving the issue for Windows 10 definitely is the issue that should be
focused on here.

> Those
> numbers should be single digit decimals in the first place, without any kind
> of rounding.

Without rounding, you cant change 6.3 from 6.29.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108559] Pasting direct formatted text in cell edit mode doesn' t always retain the original direct formatting

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108559

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||bu...@bubli.org

--- Comment #8 from Yousuf Philips (jay)  ---
(In reply to Kevin from comment #7)
> 1. type: control+B, B, spacebar, control+B, R (this gives you a bold B and a
> regular R

Yes your initial control+B applies bold to the cell and not to the 'B', but if
you press F2, then followed your sequence, it would work correctly.

I tested your sequence in excel 2010 and it did result with the same behaviour.

There isnt much left to discuss here until a dev looks at the issue and give
his/her input, so lets see what happens.

Bubli: Any thoughts on this issue?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108779] SIDEBAR: Text Attributes content panels in Properties tab

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108779

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||phil.j...@free.fr

--- Comment #2 from Yousuf Philips (jay)  ---
*** Bug 91892 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103428] [META] Properties deck/tab of the sidebar

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103428
Bug 103428 depends on bug 91892, which changed state.

Bug 91892 Summary: Impress sidebar missing button for Word Wrap Text in Shape
https://bugs.documentfoundation.org/show_bug.cgi?id=91892

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91892] Impress sidebar missing button for Word Wrap Text in Shape

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91892

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #5 from Yousuf Philips (jay)  ---
Closing this as an entire content panel is needed for text attributes
properties.

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108779] SIDEBAR: Text Attributes content panels in Properties tab

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108779

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC|libreoffice-ux-advise@lists |c...@nouenoff.nl,
   |.freedesktop.org|tietze.he...@gmail.com,
   ||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #1 from Yousuf Philips (jay)  ---
Does anyone have any suggestions of additional settings in the Text Attributes
dialog that should have quick access to from the sidebar?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108778] [META] Text attributes bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108778

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108772] Last paragraph in DOC not shown/ hardly accessible in Word after roundtrip

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108772

--- Comment #3 from Aron Budea  ---
If the third paragraph is a couple of lines long, it's displayed fine in Word
after roundtrip.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108779] New: SIDEBAR: Text Attributes content panels in Properties tab

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108779

Bug ID: 108779
   Summary: SIDEBAR: Text Attributes content panels in Properties
tab
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org
Blocks: 103438, 108778

When in a textbox or text edit mode of a shape, the Sidebar properties deck/tab
needs to have some additional text properties found in the Text Attributes
dialog.

Spacing: combobox with presets
Word Wrap Text in Shape: checkbox
Resize shape to fit text: checkbox


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103438
[Bug 103438] [META] Sidebar new content panels for Properties deck
https://bugs.documentfoundation.org/show_bug.cgi?id=108778
[Bug 108778] [META] Text attributes bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103438] [META] Sidebar new content panels for Properties deck

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103438

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||108779


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108779
[Bug 108779] SIDEBAR: Text Attributes content panels in Properties tab
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108778] [META] Text attributes bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108778

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||108779


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108779
[Bug 108779] SIDEBAR: Text Attributes content panels in Properties tab
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108778] New: [META] Text attributes bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108778

Bug ID: 108778
   Summary: [META] Text attributes bugs and enhancements
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Depends on: 108776


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108776
[Bug 108776] [META] Text attributes dialog bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 106179] [META] Writer comment bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106179

Aron Budea  changed:

   What|Removed |Added

 Depends on|108772  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108772
[Bug 108772] Last paragraph in DOC not shown/hardly accessible in Word after
roundtrip
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108776] [META] Text attributes dialog bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108776

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||108778


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108778
[Bug 108778] [META] Text attributes bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108772] Last paragraph in DOC not shown/ hardly accessible in Word after roundtrip

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108772

Aron Budea  changed:

   What|Removed |Added

 Blocks|106179  |104527
Summary|Tiny sample DOC almost  |Last paragraph in DOC not
   |impossible to edit in Word  |shown/hardly accessible in
   |after deleting comment in   |Word after roundtrip
   |Writer  |
 Whiteboard||interoperability


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104527
[Bug 104527] [META] DOC bug tracker
https://bugs.documentfoundation.org/show_bug.cgi?id=106179
[Bug 106179] [META] Writer comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104527] [META] DOC bug tracker

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104527

Aron Budea  changed:

   What|Removed |Added

 Depends on||108772


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108772
[Bug 108772] Last paragraph in DOC not shown/hardly accessible in Word after
roundtrip
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108772] Tiny sample DOC almost impossible to edit in Word after deleting comment in Writer

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108772

Aron Budea  changed:

   What|Removed |Added

 Attachment #134277|0   |1
is obsolete||

--- Comment #2 from Aron Budea  ---
Created attachment 134280
  --> https://bugs.documentfoundation.org/attachment.cgi?id=134280=edit
Sample DOC (new)

Turns out it's got nothing to do with comments.
See the new sample, a doc that contains three one-line paragraphs. Opening it
in Word after a roundtrip in Writer doesn't show the last paragraph.
Double-clicking where it should be displays it, but it disappears again after
clicking away.

I'm using Word 2013 for testing.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108776] [META] Text attributes dialog bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108776

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||108777


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108777
[Bug 108777] Undo doesnt work after setting 'Resize shape to fit text'
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108777] New: Undo doesnt work after setting 'Resize shape to fit text '

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108777

Bug ID: 108777
   Summary: Undo doesnt work after setting 'Resize shape to fit
text'
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 105948, 108776

Steps:
1. Open Writer
2. Draw a shape
3. Double-click on shape to enter edit mode and type some words
4. Right-click > Text Attributes or Format > Text Box and Shape > Text
Attributes
5. Check 'Resize shape to fit text' and click 'OK'
6. Click outside of the shape to leave edit mode
7. Press undo
8. Text gets removed, shape doesnt return to original size, and 'Resize shape
to fit text' is still enabled

Version: 6.0.0.0.alpha0+
Build ID: 1f4d7fc8618828222d7f4447daed4c3361edeea6
CPU threads: 2; OS: Linux 4.4; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.UTF-8); Calc: group


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=105948
[Bug 105948] [META] Undo/Redo bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108776
[Bug 108776] [META] Text attributes dialog bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 105948] [META] Undo/Redo bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105948

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||108777


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108777
[Bug 108777] Undo doesnt work after setting 'Resize shape to fit text'
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107289] Conditional formatting breaks on adding then deleting a new sheet

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107289

Markus Mohrhard  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |markus.mohrhard@googlemail.
   |desktop.org |com

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107289] Conditional formatting breaks on adding then deleting a new sheet

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107289

--- Comment #16 from Markus Mohrhard  ---
Actually there are two independent issues that cause the update problem. The
commit identified through bibisecting misses the updates to conditional format
position (as handled by aSrcPos) and a later commit missed that formula
listeners are updated independently after the conditional format update and
therefore updated twice.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103494] [META] Textbox bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103494

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||108776


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108776
[Bug 108776] [META] Text attributes dialog bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108776] [META] Text attributes dialog bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108776

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||c...@nouenoff.nl,
   ||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107753] Contextual UNO command for modifying a shape/ textbox text attributes

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107753

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||108776


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108776
[Bug 108776] [META] Text attributes dialog bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 102019] [META] Dialog bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102019

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||108776


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108776
[Bug 108776] [META] Text attributes dialog bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108741] [META] Shapes bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108741

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||108776


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108776
[Bug 108776] [META] Text attributes dialog bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108776] New: [META] Text attributes dialog bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108776

Bug ID: 108776
   Summary: [META] Text attributes dialog bugs and enhancements
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Depends on: 107753
Blocks: 102019, 103494, 108741


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102019
[Bug 102019] [META] Dialog bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=103494
[Bug 103494] [META] Textbox bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=107753
[Bug 107753] Contextual UNO command for modifying a shape/textbox text
attributes
https://bugs.documentfoundation.org/show_bug.cgi?id=108741
[Bug 108741] [META] Shapes bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 105702] Allow the saving of multiple authors into file meta data

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105702

--- Comment #5 from Regina Henschel  ---
There are the "sender" elements in "7.3.6 Subsequent Author Fields".
In UI it is referenced by the field Insert > Field > More Fielss > tab Document
> item "sender". Is has a check box to fix the content. So when the next author
save the file, the value of the previous author is not overwritten. But that
information is only in the content.xml, not in the meta.xml. LibreOffice gets
this information from the user data in Tools > Option of the current user,
unless you disable it.

The original author is a different information. It is referenced in tab
DocInformation > Created. In file format this field is text:initial-creator.
And the current author is referenced in DocInformation > Modified. The current
author is always updated. In file format this field is the element
text:creator. These two information are stored in attribute
meta:initial-creator and dc:creator of element office:meta in file meta.xml.
You cannot have several "dc:creator" or "meta:initial-creator" attributes,
because that in not possible for attributes. 

Besides that you can always create a Custom Property in the Properties dialog
of the file and  elements in file format, as Heiko already
mentioned.

Or you can use arbitrary custom metadate elements inside the . But
they are implementation-defined and only allowed in "extended ODF 1.2". Foreign
application need not handle those elements at all, besides preserving them. For
these elements you need a macro, there is no UI. And I have not tested, whether
LibreOffice indeed "preserve" them.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108720] Do not render previews of symbol fonts

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108720

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu,
   ||gulsah.1...@gmail.com

--- Comment #5 from Yousuf Philips (jay)  ---
Gulsah, Aron: Maybe one for the weekend. ;D

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 106923] Media player "View" disabled, videos too small in Slideshow

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106923

--- Comment #8 from Kara  ---
I am absolutely positive it has worked before, albeit I wouldn't be too sure in
which 4er version exactly. I am using Impress professionally, and the media
player was used in my presentations (I now have a workaround), and my OS is
Ubuntu since ages ago. But I won't be installing virtual environments and
testing old versions to pinpoint where exactly it stopped working. It would be
nice if it worked in the latest version on Linux. My reporting pertained to
this not being the case, which seems by now confirmed. I rest my case.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104527] [META] DOC bug tracker

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104527

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|92524   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=92524
[Bug 92524] FILESAVE from .doc to .docx - white highlight and white color fill
added to paragraph style
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108760] [META] DOCX style bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108760

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||92524


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=92524
[Bug 92524] FILESAVE from .doc to .docx - white highlight and white color fill
added to paragraph style
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 92524] FILESAVE from .doc to .docx - white highlight and white color fill added to paragraph style

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92524

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks|104527  |108760


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104527
[Bug 104527] [META] DOC bug tracker
https://bugs.documentfoundation.org/show_bug.cgi?id=108760
[Bug 108760] [META] DOCX style bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108760] [META] DOCX style bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108760

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||107287


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107287
[Bug 107287] FILESAVE DOCX Default style and Text body get white background
color upon saving ODT to DOCX
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107287] FILESAVE DOCX Default style and Text body get white background color upon saving ODT to DOCX

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107287

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||108760


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108760
[Bug 108760] [META] DOCX style bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103100

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||107428


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107428
[Bug 107428] Opening .docx gets textbox at bottom not editable
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107428] Opening .docx gets textbox at bottom not editable

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107428

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||103100


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103100
[Bug 103100] [META] Writer table bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108503] In HTML pastes some colours are lost

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108503

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||102593


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102593
[Bug 102593] [META] Paste bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 102593] [META] Paste bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102593

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||108503


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108503
[Bug 108503] In HTML pastes some colours are lost
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100047] Addition of new rows in document table (word table) in not inheriting previous row attributes in .docx but inheriting in .doc

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100047

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #4 from Xisco Faulí  ---
Could you please try to reproduce it with the latest version of LibreOffice
from https://www.libreoffice.org/download/libreoffice-fresh/ ?
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the bug is still present in the latest version.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107181] Page numbers wizard

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107181

--- Comment #7 from Yousuf Philips (jay)  ---
(In reply to RGB from comment #6)
> Right now when you define a page style you can set all its properties,
> including if they have a header or a footer BUT it is not possible to define
> in the same way the header/footer CONTENT: that needs to be manually added
> on an actual page and that can be confusing. Maybe the header/footer tab on
> the page style definition should be extended to get some kind of "editor"
> where you pick what needs to be inserted and when (which fields, tab stops,
> which paragraph or even character style needs to be used on each part, etc.).

This would be a complicated feature to achieve and wouldnt be a good workflow.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104543] soffice.bin wants to install fonts Central Khmer and Burmese

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104543

tsalmo...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108773] Exit on first command

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108773

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Thank you for reporting the bug. To be certain the reported issue is not
related to corruption in the user profile, could you please reset your
Libreoffice profile ( https://wiki.documentfoundation.org/UserProfile ) and
re-test?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the issue is still present

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 85932] Change case group button

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85932

--- Comment #16 from Yousuf Philips (jay)  ---
(In reply to Marco A.G.Pinto from comment #15)
> @Yousuf: There is enough space for one more button.

The first factor of whether its visible by default in toolbars is how used the
button is and unfortunately this button wouldnt be, which is why the lowercase
and uppercase buttons are hidden in the same toolbar. The space issue is the
secondary issue and we have to limit the number of buttons so that it fits well
in our base resolution of 1280x768 and also not to overload the toolbars, which
would make it more difficult to find features.

Users who would use the button often will be able to make it visible and the
button will be visible in the tabbed notebookbar, when its created.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104543] soffice.bin wants to install fonts Central Khmer and Burmese

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104543

tsalmo...@gmail.com changed:

   What|Removed |Added

 CC||tsalmo...@gmail.com

--- Comment #8 from tsalmo...@gmail.com ---
Created attachment 134279
  --> https://bugs.documentfoundation.org/attachment.cgi?id=134279=edit
soffice.bin wants to install fonts, Bengali,Amharic,Arabic,Central
Khmer,Burmese,Russian

When I click on a cell and then 'Format Cells ...' in calc, 
Seems freezing, after a while continue, and after a while attach window appears

still with

Version: 5.3.3.2
Build ID: 3d9a8b4b4e538a85e0782bd6c2d430bafe583448
CPU Threads: 8; OS Version: Linux 3.9; UI Render: default; VCL: gtk2; Layout
Engine: new; 
Locale: fr-BE (en_US); Calc: group

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108733] openning a calc doc crash with segmentation fault

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108733

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||haveBacktrace

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107425] Conditional formatting is applied as direct format rather than a style

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107425

Markus Mohrhard  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #5 from Markus Mohrhard  ---
(In reply to Heiko Tietze from comment #4)
> (In reply to m.a.riosv from comment #3)
> > I don't know if I understand right the question, but if it is that the style
> > showed on the side bar it's still the one that cells have without the CF,
> > not the applied by CF, I can confirm the issue.
> 
> CF pretends to 'apply a style' but does format directly. Ordinary users do
> not exactly understand what styles are so we make this crystal clear
> wherever we can.
> 
> Solution A: Apply a style per cell
> Solution B: Change the text to "Apply formatting", or the like (suboptimal
> since it offers styles)

This is a misconception on your side. Conditional format should exactly not
change the existing style of the cell. A conditional format only applies its
own style if the condition is met. The existing cell style is still retained
and will be applied again when the condition is not met any more.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87351] [META] Conditional formatting bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87351
Bug 87351 depends on bug 107425, which changed state.

Bug 107425 Summary: Conditional formatting is applied as direct format rather 
than a style
https://bugs.documentfoundation.org/show_bug.cgi?id=107425

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |NOTABUG

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 94587] [META] ODF features missing or incorrectly imported

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94587

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||107584


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107584
[Bug 107584] Background transparency not preserved over FILESAVE
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107584] Background transparency not preserved over FILESAVE

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107584

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||94587


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94587
[Bug 94587] [META] ODF features missing or incorrectly imported
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 86349] [META] Context menu bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86349

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||108752


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108752
[Bug 108752] non visible item in context submenu Styles for Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108752] non visible item in context submenu Styles for Writer

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108752

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||momonas...@gmail.com,
   ||xiscofa...@libreoffice.org
 Blocks||86349, 108014, 85940

--- Comment #4 from Yousuf Philips (jay)  ---
(In reply to kompilainenn from comment #2)
> Jay, did you implement this submenu?

Yes noticed this a few days back and thought it would resolve itself with
future updates but it hasnt.

Maxim: Any idea why
.uno:StyleApply?Style:string=CitationFamilyName:string=CharacterStyles is
working fine in the menu bar but not in the context menu.

Xisco: We may need to revert your patch for 5.4 if we cant find a quick fix. :(

https://cgit.freedesktop.org/libreoffice/core/commit/?id=60954fc67a022565741c4ccb4667581a5a790a10


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=85940
[Bug 85940] Accessing paragraph and character styles from context menu
https://bugs.documentfoundation.org/show_bug.cgi?id=86349
[Bug 86349] [META] Context menu bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108014
[Bug 108014] [META] Writer character style bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108014] [META] Writer character style bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108014

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||108752


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108752
[Bug 108752] non visible item in context submenu Styles for Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108763] non visible items in menu Styles in Writer

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108763

kompilainenn <79045_79...@mail.ru> changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #6 from kompilainenn <79045_79...@mail.ru> ---
(In reply to Yousuf Philips (jay) from comment #5)
> Cant repo it. Would suggest you test beta 2 and if that still doesnt fix it,
> clear your user profile.
> 
> Version: 5.4.0.0.beta2+
> Build ID: 81e7ef8d3941de527f21c1508389c9e09518680b
> CPU threads: 2; OS: Linux 4.4; UI render: default; VCL: gtk2; 
> TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:libreoffice-5-4, Time:
> 2017-06-08_04:31:09
> Locale: en-US (en_US.UTF-8); Calc: group

clear user profile -> solved my problem

status -> NOTABUG

ps: but, 5.4.0.1 and 5.3.3.2 installed parallel on Linux and use one user
profile?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108775] New: bug when using a colon with numbers as if in trying to type a time stamp as text

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108775

Bug ID: 108775
   Summary: bug when using a colon with numbers as if in trying to
type a time stamp as text
   Product: LibreOffice
   Version: 5.2.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bugrepor...@gmail.com

Terms Defined: For this discussion "digit" means any digit 0 through 9. "Colon"
means ":".

Desired Outcome: Let's say I wanted to type in "1:10:15" into an LO Writer
file.

If I type "1:10" in LO Writer, it looks and behaves normally. So far, no bug
shows up. 

However, as soon as I type a second colon after the digit 0, the second colon
never shows up, the digit zero and the second digit 1 and the first colon all
disappear. 

This occurs and is reproducible if the second and third digit are "10", "11",
and "12".

However, if the second and third digits are "13", the number behaves normally.

I have not tested all digits to see when it shows up and when it doesn't, other
than these few.





This may not be relevant to the bug-fix but it is how I've been able to work
around the bug so far:
The only way I've been able to get around the bug, so I can type in what I want
into a file, is to type a space after the second set of digits before typing
the  second colon and then using backspace to close the gap. If I do that, I do
not have digits or colons disappear.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108774] Linking to data in files with filenames with apostrophes

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108774

--- Comment #1 from ThierryT  ---
Version: 5.3.4.2 (x64)
Build ID: f82d347ccc0be322489bf7da61d7e4ad13fe2ff3
Threads CPU : 4; Version de l'OS :Windows 6.29; UI Render : par défaut; Moteur
de mise en page : nouveau; 
Locale : fr-FR (fr_FR); Calc: group

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108774] New: Linking to data in files with filenames with apostrophes

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108774

Bug ID: 108774
   Summary: Linking to data in files with filenames with
apostrophes
   Product: LibreOffice
   Version: 5.3.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: thierry.trinqu...@orange.fr

1) Create an ods filename. Example : Mum's Stuff.ods
2) Populate some cells with data
3) Open a new spreadsheet, Y.ods
4) Link to data in first file from Y using the '=' operator (click the target
cell in Y, type '=' in the formula bar and click the source cell in first file)

Calc will return an error : ERR 509
The apostrophe in the filename is not doubled in the link.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 106383] Find toolbar should always say number of hits

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106383

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---
Summary|Find should always say  |Find toolbar should always
   |number of hits  |say number of hits

--- Comment #7 from Yousuf Philips (jay)  ---
We open separate bugs for separate issues as both and something that needs to
be fixed in the toolbar is a separate fix than something that needs to be fixed
in the dialog.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108743] [META] Find toolbar bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108743
Bug 108743 depends on bug 106383, which changed state.

Bug 106383 Summary: Find toolbar should always say number of hits
https://bugs.documentfoundation.org/show_bug.cgi?id=106383

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108743] [META] Find toolbar bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108743

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|84583   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=84583
[Bug 84583] EDITING: Find & replace should include "Match X of Y"
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84583] EDITING: Find & replace should include "Match X of Y"

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84583

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||philip...@hotmail.com
 Blocks|108743  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108743
[Bug 108743] [META] Find toolbar bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108733] openning a calc doc crash with segmentation fault

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108733

--- Comment #6 from Xavier Van Wijmeersch  ---
I did reset the user profile, but the crashes are frequently

Version: 6.0.0.0.alpha0+
Build ID: ab27953d9ef2076e0acd43ed4ba6652732794777
CPU threads: 8; OS: Linux 4.9; UI render: default; VCL: kde4; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2017-06-23_09:18:15
Locale: en-US (en_US.UTF-8); Calc: group

and i attach a new gdbtrace.log

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108733] openning a calc doc crash with segmentation fault

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108733

--- Comment #5 from Xavier Van Wijmeersch  ---
Created attachment 134278
  --> https://bugs.documentfoundation.org/attachment.cgi?id=134278=edit
new gdbtrace.log

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108763] non visible items in menu Styles in Writer

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108763

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||91781

--- Comment #5 from Yousuf Philips (jay)  ---
Cant repo it. Would suggest you test beta 2 and if that still doesnt fix it,
clear your user profile.

Version: 5.4.0.0.beta2+
Build ID: 81e7ef8d3941de527f21c1508389c9e09518680b
CPU threads: 2; OS: Linux 4.4; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:libreoffice-5-4, Time:
2017-06-08_04:31:09
Locale: en-US (en_US.UTF-8); Calc: group


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=91781
[Bug 91781] [META] Reorganization of the menu bar for Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108770] [META] DOCX (OOXML) bullet and numbering list-related issues

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108770

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||103369
Summary|[META] DOCX (OOXML) |[META] DOCX (OOXML) bullet
   |bullet/numbering|and numbering list-related
   |list-related issues |issues
  Alias|DOCX-List   |DOCX-Bullet-Number-Lists


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103369
[Bug 103369] [META] Bullet, numbered, and outline list bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103369] [META] Bullet, numbered, and outline list bugs and enhancements

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103369

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||108770


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108770
[Bug 108770] [META] DOCX (OOXML) bullet and numbering list-related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108767] --terminate_after_init interrupt registrymodifications.xcu to be fully generated

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108767

--- Comment #5 from Markus Mohrhard  ---
(In reply to David Hedlund from comment #4)
> No, the window states should have been initiated before the command
> terminates LO.

That makes absolutely no sense. Terminate after init just generates a minimal
user profile. I suppose many people would actually complain if that option
suddenly started showing a window.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108773] New: Exit on first command

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108773

Bug ID: 108773
   Summary: Exit on first command
   Product: LibreOffice
   Version: 5.1.6.2 release
  Hardware: x86 (IA32)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: guidoguerr...@gmail.com

I recently updated from Linux Mint 18.1 Xfce Linux kernel 4.4.0.79 to kernel
4.4.0.81. Since then after opening LibreOffice-base version 5.1.6.2, the
software exit at the first click to select an option.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108766] Navigator should highlight headings/ objects according to the cursor position

2017-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108766

--- Comment #4 from Marco A.G.Pinto  ---
(In reply to RGB from comment #2)
> If you select "Content Navigation View" (first icon to the left of the
> second line of icons on the Navigator) the right heading is highlighted in
> real time.

A... I found it...

But, it doesn't kind of work out of the box.

I have been using LO for years and never spotted the button.

I would like to suggest if the button could be removed in LO 6 and
automatically highlight the topics as one moves the cursor in the documents.

Either that, or have it enabled by default.

A child should be able to use LO, right?

:)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   3   >