[Libreoffice-bugs] [Bug 90152] Unfavorable formatting in printed comments

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90152

--- Comment #8 from Kü  ---
Still present in 6.4.4.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 127932] Printing progress dialog briefly shows the total page numbers multiplied by ten in the beginning

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127932

BogdanB  changed:

   What|Removed |Added

 CC||and...@cerentin.com

--- Comment #6 from BogdanB  ---
*** Bug 131002 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 131002] While sending prints, the number of pages about to be printed seems wrong

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131002

BogdanB  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE
 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #4 from BogdanB  ---


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

-- 
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-commits] core.git: vcl/source

2020-05-22 Thread Mike Kaganski (via logerrit)
 vcl/source/outdev/bitmap.cxx  |   15 +--
 vcl/source/outdev/polygon.cxx |3 +++
 vcl/source/outdev/polyline.cxx|9 -
 vcl/source/outdev/transparent.cxx |   20 ++--
 4 files changed, 42 insertions(+), 5 deletions(-)

New commits:
commit 9c621ee8ea41a1c53bfeca49827290826785973e
Author: Mike Kaganski 
AuthorDate: Thu May 14 14:42:24 2020 +0300
Commit: Mike Kaganski 
CommitDate: Sat May 23 07:06:35 2020 +0200

Add missing mpAlphaVDev handling

... a pre-requisite for re-implementing soft edge to use mpAlphaVDev
necessary to keep objects' transparency when applying the effect

Change-Id: I56f5c0f2468c32843abbc1f14e06861a22f6919d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94662
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/vcl/source/outdev/bitmap.cxx b/vcl/source/outdev/bitmap.cxx
index 44d28e15229a..401ebd6a77f2 100644
--- a/vcl/source/outdev/bitmap.cxx
+++ b/vcl/source/outdev/bitmap.cxx
@@ -1051,17 +1051,25 @@ bool OutputDevice::DrawTransformBitmapExDirect(
 const basegfx::B2DPoint aTopY(aFullTransform * basegfx::B2DPoint(0.0, 
1.0));
 SalBitmap* pSalSrcBmp = rBitmapEx.GetBitmap().ImplGetSalBitmap().get();
 SalBitmap* pSalAlphaBmp = nullptr;
+Bitmap aAlphaBitmap;
 
 if(rBitmapEx.IsTransparent())
 {
 if(rBitmapEx.IsAlpha())
 {
-pSalAlphaBmp = rBitmapEx.GetAlpha().ImplGetSalBitmap().get();
+aAlphaBitmap = rBitmapEx.GetAlpha();
 }
 else
 {
-pSalAlphaBmp = rBitmapEx.GetMask().ImplGetSalBitmap().get();
+aAlphaBitmap = rBitmapEx.GetMask();
 }
+if (!mpAlphaVDev)
+pSalAlphaBmp = aAlphaBitmap.ImplGetSalBitmap().get();
+}
+else if (mpAlphaVDev)
+{
+aAlphaBitmap = Bitmap(rBitmapEx.GetSizePixel(), 1);
+aAlphaBitmap.Erase(COL_BLACK);
 }
 
 bDone = mpGraphics->DrawTransformedBitmap(
@@ -1072,6 +1080,9 @@ bool OutputDevice::DrawTransformBitmapExDirect(
 pSalAlphaBmp,
 this);
 
+if (mpAlphaVDev)
+mpAlphaVDev->DrawTransformBitmapExDirect(aFullTransform, 
BitmapEx(aAlphaBitmap));
+
 return bDone;
 };
 
diff --git a/vcl/source/outdev/polygon.cxx b/vcl/source/outdev/polygon.cxx
index 60deaceb822c..77e0564ba16f 100644
--- a/vcl/source/outdev/polygon.cxx
+++ b/vcl/source/outdev/polygon.cxx
@@ -338,6 +338,9 @@ void 
OutputDevice::ImplDrawPolyPolygonWithB2DPolyPolygon(const basegfx::B2DPolyP
 
 if(bSuccess)
 {
+if (mpAlphaVDev)
+
mpAlphaVDev->ImplDrawPolyPolygonWithB2DPolyPolygon(rB2DPolyPoly);
+
 return;
 }
 }
diff --git a/vcl/source/outdev/polyline.cxx b/vcl/source/outdev/polyline.cxx
index d17056d58e13..672854a9ed55 100644
--- a/vcl/source/outdev/polyline.cxx
+++ b/vcl/source/outdev/polyline.cxx
@@ -342,11 +342,12 @@ bool OutputDevice::DrawPolyLineDirect(
 const basegfx::B2DHomMatrix aTransform(ImplGetDeviceTransformation() * 
rObjectTransform);
 const bool bPixelSnapHairline((mnAntialiasing & 
AntialiasingFlags::PixelSnapHairline) && rB2DPolygon.count() < 1000);
 
+const double fAdjustedTransparency = mpAlphaVDev ? 0 : fTransparency;
 // draw the polyline
 bool bDrawSuccess = mpGraphics->DrawPolyLine(
 aTransform,
 rB2DPolygon,
-fTransparency,
+fAdjustedTransparency,
 fLineWidth, // tdf#124848 use LineWidth direct, do not try to 
solve for zero-case (aka hairline)
 pStroke, // MM01
 eLineJoin,
@@ -370,6 +371,12 @@ bool OutputDevice::DrawPolyLineDirect(
 const tools::Polygon aToolsPolygon( rB2DPolygon );
 mpMetaFile->AddAction( new MetaPolyLineAction( aToolsPolygon, 
aLineInfo ) );
 }
+
+if (mpAlphaVDev)
+mpAlphaVDev->DrawPolyLineDirect(rObjectTransform, rB2DPolygon, 
fLineWidth,
+fTransparency, pStroke, 
eLineJoin, eLineCap,
+fMiterMinimumAngle, 
bBypassAACheck);
+
 return true;
 }
 }
diff --git a/vcl/source/outdev/transparent.cxx 
b/vcl/source/outdev/transparent.cxx
index e35d4dfbf959..a9e2ae080e8c 100644
--- a/vcl/source/outdev/transparent.cxx
+++ b/vcl/source/outdev/transparent.cxx
@@ -248,6 +248,7 @@ void OutputDevice::DrawTransparent(
 
 // create ObjectToDevice transformation
 const basegfx::B2DHomMatrix 
aFullTransform(ImplGetDeviceTransformation() * rObjectTransform);
+const double fAdjustedTransparency = mpAlphaVDev ? 0 : fTransparency;
 bool bDrawnOk(true);
 
 if( IsFillColor() )
@@ -255,7 +256,7 @@ void OutputDevice::DrawTransparent(
 bDrawnOk = mpGraphics->DrawPolyPolygon(
 aFullTransform,
 aB2DPolyPolygon,
-

[Libreoffice-commits] core.git: cui/source vcl/source

2020-05-22 Thread Mike Kaganski (via logerrit)
 cui/source/dialogs/about.cxx |   12 +---
 vcl/source/app/svapp.cxx |   30 +++---
 2 files changed, 20 insertions(+), 22 deletions(-)

New commits:
commit 8bc1dcf22df49fa1fb5c858a8f0f44143d41d6f7
Author: Mike Kaganski 
AuthorDate: Fri May 22 12:17:08 2020 +0200
Commit: Mike Kaganski 
CommitDate: Sat May 23 07:06:09 2020 +0200

Tidy up generation of Application::GetHWOSConfInfo

... so that it doesn't add "; " in the end unconditionally. This makes
version info in About dialog prettier.

Change-Id: I914b8bd808230681f768c9da679941c604fc5eab
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94671
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index 9dd4e108a24d..53f05d52b2e1 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -255,13 +255,11 @@ IMPL_LINK_NOARG(AboutDialog, HandleClick, weld::Button &, 
void) {
   css::datatransfer::clipboard::SystemClipboard::create(
   comphelper::getProcessComponentContext());
 
-  OUString sInfo;
-  sInfo += "Version: " + m_pVersionLabel->get_label() + "\n";
-  sInfo += "Build ID: " + GetBuildString() + "\n";
-  sInfo += m_pEnvLabel->get_label();
-  sInfo += m_pUILabel->get_label() + "\n";
-  sInfo += "Locale: " + m_pLocaleLabel->get_label() + "\n";
-  sInfo += m_pMiscLabel->get_label();
+  OUString sInfo = "Version: " + m_pVersionLabel->get_label() // version
+   + "\nBuild ID: " + GetBuildString() // build id
+   + "\n" + m_pEnvLabel->get_label() + "; " + 
m_pUILabel->get_label() // env+UI
+   + "\nLocale: " + m_pLocaleLabel->get_label() // locale
+   + "\n" + m_pMiscLabel->get_label(); // misc
 
   vcl::unohelper::TextDataObject::CopyStringTo(sInfo, xClipboard);
 }
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index fe650087d026..ea01d31c0829 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -1140,10 +1140,15 @@ OUString Application::GetHWOSConfInfo(const int 
bSelection)
 ImplSVData* pSVData = ImplGetSVData();
 OUStringBuffer aDetails;
 
+const auto appendDetails = [](const OUStringLiteral& sep, auto&& 
val) {
+if (!aDetails.isEmpty() && sep.getLength())
+aDetails.append(sep);
+aDetails.append(std::move(val));
+};
+
 if (bSelection != hwUI) {
-aDetails.append( VclResId(SV_APP_CPUTHREADS) );
-aDetails.append( 
static_cast(std::thread::hardware_concurrency()) );
-aDetails.append( "; " );
+appendDetails("; ", VclResId(SV_APP_CPUTHREADS)
++ 
OUString::number(std::thread::hardware_concurrency()));
 
 OUString aVersion;
 if ( pSVData && pSVData->mpDefInst )
@@ -1151,23 +1156,21 @@ OUString Application::GetHWOSConfInfo(const int 
bSelection)
 else
 aVersion = "-";
 
-aDetails.append( VclResId(SV_APP_OSVERSION) );
-aDetails.append( aVersion );
-aDetails.append( "; " );
+appendDetails("; ", VclResId(SV_APP_OSVERSION) + aVersion);
 }
 
 if (bSelection != hwEnv) {
-aDetails.append( VclResId(SV_APP_UIRENDER) );
+appendDetails("; ", VclResId(SV_APP_UIRENDER));
 #if HAVE_FEATURE_SKIA
 if ( SkiaHelper::isVCLSkiaEnabled() )
 {
 switch(SkiaHelper::renderMethodToUse())
 {
 case SkiaHelper::RenderVulkan:
-aDetails.append( VclResId(SV_APP_SKIA_VULKAN) );
+appendDetails("", VclResId(SV_APP_SKIA_VULKAN));
 break;
 case SkiaHelper::RenderRaster:
-aDetails.append( VclResId(SV_APP_SKIA_RASTER) );
+appendDetails("", VclResId(SV_APP_SKIA_RASTER));
 break;
 }
 }
@@ -1175,16 +1178,13 @@ OUString Application::GetHWOSConfInfo(const int 
bSelection)
 #endif
 #if HAVE_FEATURE_OPENGL
 if ( OpenGLWrapper::isVCLOpenGLEnabled() )
-aDetails.append( VclResId(SV_APP_GL) );
+appendDetails("", VclResId(SV_APP_GL));
 else
 #endif
-aDetails.append( VclResId(SV_APP_DEFAULT) );
-aDetails.append( "; " );
+appendDetails("", VclResId(SV_APP_DEFAULT));
 
 #if (defined LINUX || defined _WIN32 || defined MACOSX)
-aDetails.append( SV_APP_VCLBACKEND );
-aDetails.append( GetToolkitName() );
-aDetails.append( "; " );
+appendDetails("; ", SV_APP_VCLBACKEND + GetToolkitName());
 #endif
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 90028] Importer drops Lotus Word Pro document formatting

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90028

--- Comment #13 from Todd  ---
Dear QA Admin,

Why do you guys continue to ignore so may bugs. This was posted on 2015-03-15. 
LO is deteriorating into Open Office.

Anyway, under libreoffice6.4-writer-6.4.4.2-2.x86_64 it is EVEN WORSE!  IT
CRASHES importing an lwp.

The crash report was successfully uploaded.
You can soon find the report at:
crashreport.libreoffice.org/stats/crash_details/fac0ba91-017c-4484-b0d6-a2c86d2f5fc6

And you still can not print an envelope properly.

-T

-- 
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 133298] New: FORMATTING text case options

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133298

Bug ID: 133298
   Summary: FORMATTING text case options
   Product: LibreOffice
   Version: 6.4.3.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: so...@live.com

Unable to create a cell "ABc". So many options to enforce case but none that
just leaves it alone. It is formatted to Abc.

-- 
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-ux-advise] [Bug 133265] [UI] Please increase the 'needs save' indicator visibility

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133265

Telesto  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

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


[Libreoffice-bugs] [Bug 133265] [UI] Please increase the 'needs save' indicator visibility

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133265

Telesto  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

-- 
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 132844] new feature request and enhancement

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132844

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 132695] Explanation of "Character Background" in "Tools - Options - Load/Save - Microsoft Office" is not too clear

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132695

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 132837] Shape is not responding to any wrap except if the anchor is set to page and positioned in a table

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132837

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 132835] FILEOPEN DOCX Mail Merge filtering settings not imported

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132835

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 132833] RFE - Hide Menu/Tool/Side/Status bar in a window mode in the slideshow

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132833

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 132666] Wizard service does not refresh the browser correctly

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132666

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
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 132834] OwnCloud support for LO Remote Files

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132834

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 132737] SVG icons are installed in fixed size locolor and hicolor theme subdirectories

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132737

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 133282] That file opens not correct in LibreOffice, but one Word version on phone it open more correct

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133282

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

-- 
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 133277] FILEOPEN importing csv file results in error message and rather garbled spreadsheet

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133277

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 133264] "Help > About LibreOfficeDev" causes crash

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133264

--- 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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 133248] NEW: Page style name field is not editable

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133248

--- 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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132817] Image/anchor is deleting somewhat arbitrarily

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132817

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 132792] Crash in: mergedlo.dll

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132792

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
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 132822] Crash in: mergedlo.dll

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132822

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
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 132801] Bullets and Numbering dialog does not work in Draw

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132801

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
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 133264] "Help > About LibreOfficeDev" causes crash

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133264

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132787] Duplicate gnome icon theme installed

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132787

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 133277] FILEOPEN importing csv file results in error message and rather garbled spreadsheet

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133277

--- 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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132819] Changing anchor to character position changes shape position

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132819

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 133248] NEW: Page style name field is not editable

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133248

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132198] Slow Table lay-outing

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132198

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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


Re: Suggestion: No more language packs for macOS as they are fundamentally broken

2020-05-22 Thread Tor Lillqvist
>
> So when you
> install help to another directory, to me it seems like a small step to
> also install install the langaugepack files to another directory
> outside the app.
>

It's not *installing* the language pack wherever we want that is the
problem. (That is just a modification to one Apple Script file.) It's
*using* it from there. (All of it. Autotext, dictionaries (that for some
reason are packaged in some form of extension inside the language pack),
help, localisation in the form of .xcd files, other registry entries, and
localisation in the form of .mo files. (Possibly also presets (whatever
they are) and wizards, although those where empty in the couple of language
packs I looked id.)

>
> My version of Catalina still is happy with the app bundle, no matter
> whether I install a language pack or not (or multiple of them).


Feel free then to resolve the related bugs as NOTABUG.

--tml
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 130693] PRINTING: font or style selectively changed from Writer in PDF printout

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130693

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

-- 
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 127507] Allow choosing different alignment behavior

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127507

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

-- 
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 98474] Strange screen output in Calc cells with openGL activated

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98474

--- Comment #9 from QA Administrators  ---
Dear Ton,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 130693] PRINTING: font or style selectively changed from Writer in PDF printout

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130693

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 127507] Allow choosing different alignment behavior

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127507

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 128366] Calc very slow sometimes since the last update

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128366

--- Comment #3 from QA Administrators  ---
Dear Cyril ROUSSEL,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 127507] Allow choosing different alignment behavior

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127507

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

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


[Libreoffice-ux-advise] [Bug 127507] Allow choosing different alignment behavior

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127507

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 128366] Calc very slow sometimes since the last update

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128366

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
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 90028] Importer drops Lotus Word Pro document formatting

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90028

--- Comment #12 from QA Administrators  ---
Dear Todd,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 57477] FILESAVE as .xls with wrong info concerning collapsed grouped columns

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57477

--- Comment #7 from QA Administrators  ---
Dear Rainer Bielefeld Retired,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 63795] Examples of Russian spelling errors (with detailed description in English)

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=63795

--- Comment #7 from QA Administrators  ---
Dear Timon,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 60421] HTML: missing margin-top property on Save as

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60421

--- Comment #17 from QA Administrators  ---
Dear Ulf Zibis,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 98387] WRITER: switching cursor from a comment to text focus on Fields window

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98387

--- Comment #9 from QA Administrators  ---
Dear Orwel,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 64597] Unset PYTHONPATH when shelling to operating system.

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=64597

--- Comment #7 from QA Administrators  ---
Dear Dave Richards,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 98968] Ghost toolbar in a11y support

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98968

--- Comment #9 from QA Administrators  ---
Dear Jean-Philippe MENGUAL,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 88476] Justify changes cell height

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88476

--- Comment #10 from QA Administrators  ---
Dear Robert,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 99308] amordegrc using obsolete values for degressive amortisation

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99308

--- Comment #5 from QA Administrators  ---
Dear Richard PALO,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93540] Selection tool moves selection

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93540

--- Comment #11 from QA Administrators  ---
Dear Pau,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 101155] FILEOPEN PDF text overlaps on import

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101155

--- Comment #5 from QA Administrators  ---
Dear E.Mi,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56580] logarithmic graph Y error shows as a diagonal line when apply negative error values

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=56580

--- Comment #9 from QA Administrators  ---
Dear stephanfrye,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 57363] FILESAVE: MS Word Legacy form control content not saved when saving as HTML

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57363

--- Comment #8 from QA Administrators  ---
Dear lowds,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 55355] Writer PRINTING, PDF, FILEOPEN DOCX: Embedded image imported from docx file print at wrong size

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=55355

--- Comment #10 from QA Administrators  ---
Dear Ian Miller,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 35459] EDITING second title page gets wrong page style

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35459

--- Comment #11 from QA Administrators  ---
Dear StefanW,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 38093] Add an Outline View layout and editing mode to Writer

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38093

--- Comment #85 from Jim Raykowski  ---
Created attachment 161179
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161179=edit
Toggle button in the margin less out of the way

demo of button in margin less out of the way.

-- 
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 38093] Add an Outline View layout and editing mode to Writer

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38093

--- Comment #84 from Jim Raykowski  ---
Created attachment 161178
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161178=edit
Toggle button in the margin way out of the way

Here is an out of the way button that may be too out of the way.

-- 
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 68695] EDITING: Comments cannot be resized while editing - missing squares around the comment/note

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68695

--- Comment #45 from joe  ---
Thanks!

This is still present in 7.0 alpha FYI...

-- 
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 133260] FILEOPEN XLSX: Calc doesn't handle SUMIFS() with array as the third parameter correctly

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133260

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Created attachment 161177
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161177=edit
Edited sample file

For me:
=SUMIFS(D8:D14;C8:C14;{"li"|"liu"}) => 9812

{=SUMIFS(D8:D14;C8:C14;{"li"|"liu"})}  => 9812   5689

=SUM(SUMIFS(D8:D14;C8:C14;{"li"|"liu"})) => 9812

{=SUM(SUMIFS(D8:D14;C8:C14;{"li"|"liu"}))} => 15501

I have not excel to test but I think you need to enter it as array
[Ctrl+Shift+Enter]

-- 
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 122361] Tabbed NB left edge of 'File' Tab lacks edge decoration (Win 10 WDM only) so looks odd against the NB print button, when unselected

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122361

V Stuart Foote  changed:

   What|Removed |Added

Summary|Tabbed NB left edge of  |Tabbed NB left edge of
   |'File' Tab lacks edge   |'File' Tab lacks edge
   |decoration so looks odd |decoration (Win 10 WDM
   |against the NB print|only) so looks odd against
   |button, when unselected |the NB print button, when
   ||unselected

-- 
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 107191] [META] Notebookbar theming issues

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107191
Bug 107191 depends on bug 125224, which changed state.

Bug 125224 Summary: Notebookbar File Tab missing vertical line
https://bugs.documentfoundation.org/show_bug.cgi?id=125224

   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 122361] Tabbed NB left edge of 'File' Tab lacks edge decoration so looks odd against the NB print button, when unselected

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122361

--- Comment #16 from V Stuart Foote  ---
*** Bug 125224 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 125224] Notebookbar File Tab missing vertical line

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125224

V Stuart Foote  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED
 CC||vstuart.fo...@utsa.edu

--- Comment #4 from V Stuart Foote  ---


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

-- 
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 133297] FILEOPEN: Images incorrectly scaled/cropped and text items misplaced in imported MS Publisher 2007 file in DRAW

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133297

--- Comment #4 from Andrea Giudiceandrea  ---
Created attachment 161176
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161176=edit
TEST_DIFFERENCE_LO7DRAW-PUBLISHER.png

Difference between TEST_LO7DRAW (in red) and TEST_PUBLISHER (in blue)

-- 
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 133297] FILEOPEN: Images incorrectly scaled/cropped and text items misplaced in imported MS Publisher 2007 file in DRAW

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133297

--- Comment #3 from Andrea Giudiceandrea  ---
Created attachment 161175
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161175=edit
TEST_PUBLISHER.png

Sample Publisher document exported in PNG format from Microsoft Publisher

-- 
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 133292] Get Malwarebytes premium support on this number

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133292

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
 Status|RESOLVED|CLOSED

-- 
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 133297] FILEOPEN: Images incorrectly scaled/cropped and text items misplaced in imported MS Publisher 2007 file in DRAW

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133297

Andrea Giudiceandrea  changed:

   What|Removed |Added

 Attachment #161174|Sample Publisher document   |TEST_LO7DRAW.png
description|exported in PNG format from |
   |DRAW|

-- 
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 133297] FILEOPEN: Images incorrectly scaled/cropped and text items misplaced in imported MS Publisher 2007 file in DRAW

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133297

--- Comment #2 from Andrea Giudiceandrea  ---
Created attachment 161174
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161174=edit
Sample Publisher document exported in PNG format from DRAW

Sample Publisher document exported in PNG format from DRAW

-- 
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 133297] FILEOPEN: Images incorrectly scaled/cropped and text items misplaced in imported MS Publisher 2007 file in DRAW

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133297

--- Comment #1 from Andrea Giudiceandrea  ---
Created attachment 161173
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161173=edit
TEST.pub

Sample Publisher document

-- 
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 133297] New: FILEOPEN: Images incorrectly scaled/cropped and text items misplaced in imported MS Publisher 2007 file in DRAW

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133297

Bug ID: 133297
   Summary: FILEOPEN: Images incorrectly scaled/cropped and text
items misplaced in imported MS Publisher 2007 file in
DRAW
   Product: LibreOffice
   Version: 7.0.0.0.alpha1+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: andreaer...@libero.it

Description:
Images in imported MS Publisher 2007 document are incorrectly scaled or cropped
when visualized in DRAW.
Same text items are also slightly incorrectly positioned in the page.

Basically, images in the original Publisher file, are cropped and scaled.
When the original Publisher file is imported in DRAW, the images are only
shrinked/squeezed/stretched to stay in the rectangular dimension.

For example, the first image at the top of the page, in the original Publisher
document, has the following properties:
- position x: 2,6 cm
- position y: 2 cm
- height: 8,712 cm
- width: 8,824 cm
- scaling height: 50 %
- scaling width: 50 %
- left crop: 1,806 cm
- right crop: 1,639 cm
- top crop: 5,933 cm
- bottom crop: 6,433 cm

while the same image, when the Publisher document is imported in DRAW, has the
following properties:
- position x: 2,60 cm
- position y: 1,99 cm
- height: 8,73 cm
- width: 8,83 cm



Steps to Reproduce:
1. Open attached TEST.pub with DRAW

Actual Results:
Images are incorrectly scaled and not cropped and some items are slightly
incorrectly positioned (text items A a, B b, C c, D d)
See:
Exported in PNG format from DRAW
TEST_LO7DRAW.png

Expected Results:
Images are correctly scaled and cropped and items are correctly positioned
See:
Exported in PNG format from Microsoft Publisher
TEST_PUBLISHER.png

See also:
Difference between TEST_LO7DRAW (in red) and TEST_PUBLISHER (in blue)
TEST_DIFFERENCE_LO7DRAW-PUBLISHER.png




Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 7.0.0.0.alpha1+ (x64)
Build ID: 9a7c5d38a7a43c75c0f3d2f0c725196e916d0260
Thread CPU: 4; SO: Windows 10.0 Build 18362; Resa interfaccia: Skia/Raster;
VCL: win;

-- 
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 122361] Tabbed NB left edge of 'File' Tab lacks edge decoration so looks odd against the NB print button, when unselected

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122361

--- Comment #15 from andreas_k  ---
I think it's an duplicate of BUG 125224 the vertical line of the tab is
missing.

-- 
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 133094] UI: Tabbed toolbar: The table border color picker expands on every color change

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133094

andreas_k  changed:

   What|Removed |Added

 CC||kain...@gmail.com

--- Comment #3 from andreas_k  ---
I don't get the 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


Re: Suggestion: No more language packs for macOS as they are fundamentally broken

2020-05-22 Thread Christian Lohmaier
On Fri, May 22, 2020 at 4:03 PM Tor Lillqvist  wrote:
>>
>> Selecting "good" languages is a minefield, you will surely annoy lots
>> of translators/native language speakers.
>
> And it is better to have it impossible to install language packs? OK.

Languagepacks are not impossible to install. open the dmg, double-lick
the icon and follow a few steps. People could do that for the last
years, it is not too hard.

>> Both complains of "why do I have to download language xy that I never
>> use/never heard of" and "why is my language not included, but language
>> xy is".
>
> Whiners will whine whenever something changes, film at 11.

Seems I really hurt your feelings when I mentioned that one of your
patches broke signing for me with BUILDDIR != SRCDIR. I'm terribly
sorry if spoiled your mood with that so much. It might also just be
Friday and I'm reading way too much into the tone of the mail..

>> Solving the help-issue would also solve the langaugepack-in-app-folder
>> issue, so I don't see one happening without the other.
>
> How so? Aren't they completely unrelated?

Probably too terse. I meant solving the help issue → installing the
help into a different directory and dealing with what you would have
to deal with languagepacks, meaning handling the different versions of
main LO, providing some uninstallation or similar, etc. So when you
install help to another directory, to me it seems like a small step to
also install install the langaugepack files to another directory
outside the app.
And similarly the current case is that the help files are installed
along with the UI translation (and dictionaries), so they are related
currently, both are put into the .app folder.

> The help issue apparently is that Safari doesn't want to open a .html file 
> from the LibreOffice app bundle (regardless whether the app bundle has been 
> broken by installing a language pack or not),

That's an additional effect of having it in the app-bundle, that's
right. And indeed it is regardless whether the signatures were
invalidated by adding them post-installation of the main LO package or
whether the files were installed right from the beginning.

> and the language pack issue is that installing a language pack in  the app 
> bundle breaks it.

My version of Catalina still is happy with the app bundle, no matter
whether I install a language pack or not (or multiple of them). So
what exactly do you mean with "breaking it" in this context? Just that
post-gatekeeper attempts show signature validation errors? Those don't
affect the usage of LO in any way/having the language files in the app
from the start wouldn't help with any Gatekeeper issues on first
launch.
For what it's worth: I just went through the hassle of creating a
fresh Catalina install, and not only does LO 6.4.4 pass Gatekeeper
just fine, including the proper notarization info (Apple checked for
malware and couldn't find any), Trying to save e.g. to Desktop instead
of Documents folder gives the prompt whether you want to allow it or
not. Languagepack installs fine and I can save as without any problem.

> But yeah, whatever, let's keep doing things as before.

Let's not just do whatever comes to mind first just because you don't
care about other opinions.
Let's first /hear/ the opinions, after all you asked for feedback, and
/then/ decide whether you want to listen or not.
Surely asking for forgiveness is much easier than asking for
"permission"/consensus. You can always go ahead and commit your
predetermined way to handle this and then wait out whether other
people care enough to tackle the problem in a different way. I
certainly wouldn't find that nice to do, but surely saves the
discussion beforehand.

Current situation is ugly, I fully agree, and I only have a veto
against the subset-of-languages solution. I might not like dumping
everything onto the users' drives, and definitely would prefer if the
users had a choice, be it via an installer like on windows or by
separate packages like on linux/mac.

ciao
Christian
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 133296] NEW: LibreOffice doesn't print emojis in PDF export

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133296

--- Comment #1 from mathieu.tar...@protonmail.com ---
Created attachment 161172
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161172=edit
ODT document containing emoji

-- 
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 133296] New: NEW: LibreOffice doesn't print emojis in PDF export

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133296

Bug ID: 133296
   Summary: NEW: LibreOffice doesn't print emojis in PDF export
   Product: LibreOffice
   Version: 6.4.3.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mathieu.tar...@protonmail.com

Description:
When exporting an ODT file to PDF, the emojis are absent from the final
document.

Steps to Reproduce:
1. insert emoji ✅
2. export to PDF
3. open PDF: emoji is absent

Actual Results:
emoji is absent from PDF

Expected Results:
emoji should have been included in the PDF


Reproducible: Always


User Profile Reset: No



Additional Info:
Version : 6.4.3.2
Build ID : 1:6.4.3-0ubuntu0.20.04.1
Threads CPU : 12; OS : Linux 5.4; UI Render : par défaut; VCL: x11; 
Locale : fr-FR (fr_FR.UTF-8); Langue IHM : fr-FR
Calc: threaded

-- 
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 99956] In formulas with circular references are not always showed the Error 522 with all calc functions. (Deactivated Iterations option)

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99956

--- Comment #16 from b.  ---
i'm lacking an instrument to inspect *.xls files, 

saving the file as *.ods unveils one thing, 

additional to the definitions of the named ranges: 






there are additional 'definitions'? style assignments? for '_Items' and
'_Rows': 


   Named Range _Items =
$Login.$B$24:$B33
   
  
   



   Named Range _Rows = $Login.$B37


in the file, observe that they are defined without the second $-absolute-marker
... 

i - assume - there's something with theese definitions affecting the correct
interpretation of the named references as soon as you change their range
address to the same ... 

maybe someone with more knowledge about the file and data structures can shed
some light?

-- 
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 133251] cannot change application color

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133251

--- Comment #3 from tor...@yahoo.com ---
It appears that the program must be closed, then reopened for the new
application background colour to take effect.
But the change in document background is immediate —as expected.

-- 
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 133288] Gatau

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133288

Aron Budea  changed:

   What|Removed |Added

 Attachment #161161|0   |1
is obsolete||

-- 
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 132792] Crash in: mergedlo.dll

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132792

Bhavesh Patel  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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132792] Crash in: mergedlo.dll

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132792

--- Comment #2 from Bhavesh Patel  ---
Sorry, Xisco. It's been a while but here is what I was doing from what I
remember and since then I can't reproduce the bug.

On fresh install of LO, I changed the toolbar interface to tabbed from view
menu. On the to right, clicking on "view" button changed to "home" button.
Somewhere around then the program crashed. I hate to provide incomplete
information but since I can't reliably reproduce the bug, you can ignore the
bug report or discard it.

-- 
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-commits] online.git: 2 commits - cypress_test/Makefile.am cypress_test/README

2020-05-22 Thread Tamás Zolnai (via logerrit)
 cypress_test/Makefile.am |   49 +++
 cypress_test/README  |   30 ++--
 2 files changed, 48 insertions(+), 31 deletions(-)

New commits:
commit c3c9f25954ff0102139358a4b4f17894446310a3
Author: Tamás Zolnai 
AuthorDate: Fri May 22 22:55:18 2020 +0200
Commit: Tamás Zolnai 
CommitDate: Fri May 22 23:41:26 2020 +0200

cypress: deduplicate config related code in make file.

And break commands to multiple lines for better readability.

Change-Id: I5ee25bb34e69f80346a0dbfd3cf5b81329cc8438
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/94711
Tested-by: Jenkins
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Tamás Zolnai 

diff --git a/cypress_test/Makefile.am b/cypress_test/Makefile.am
index 529ccae7c..0baa0a5f5 100644
--- a/cypress_test/Makefile.am
+++ b/cypress_test/Makefile.am
@@ -155,27 +155,36 @@ define start_Xvfb
@echo
 endef
 
-DESKTOP_CONFIG = --config 
integrationFolder=$(DESKTOP_TEST_FOLDER),supportFile=$(SUPPORT_FILE),userAgent=$(DESKTOP_USER_AGENT)
 --env 
DATA_FOLDER=$(DESKTOP_DATA_FOLDER),WORKDIR=$(DESKTOP_WORKDIR),WSD_VERSION_HASH=$(WSD_VERSION_HASH),SERVER_PORT=$(FREE_PORT)
+DESKTOP_CONFIG = \
+   --config 
integrationFolder=$(DESKTOP_TEST_FOLDER),supportFile=$(SUPPORT_FILE),userAgent=$(DESKTOP_USER_AGENT)
 \
+   --env 
DATA_FOLDER=$(DESKTOP_DATA_FOLDER),WORKDIR=$(DESKTOP_WORKDIR),WSD_VERSION_HASH=$(WSD_VERSION_HASH),SERVER_PORT=$(FREE_PORT)
 
-MOBILE_CONFIG = --config 
integrationFolder=$(MOBILE_TEST_FOLDER),supportFile=$(SUPPORT_FILE),userAgent=$(MOBILE_USER_AGENT)
 --env 
DATA_FOLDER=$(MOBILE_DATA_FOLDER),WORKDIR=$(MOBILE_WORKDIR),WSD_VERSION_HASH=$(WSD_VERSION_HASH),SERVER_PORT=$(FREE_PORT)
+MOBILE_CONFIG = \
+   --config 
integrationFolder=$(MOBILE_TEST_FOLDER),supportFile=$(SUPPORT_FILE),userAgent=$(MOBILE_USER_AGENT)
 \
+   --env 
DATA_FOLDER=$(MOBILE_DATA_FOLDER),WORKDIR=$(MOBILE_WORKDIR),WSD_VERSION_HASH=$(WSD_VERSION_HASH),SERVER_PORT=$(FREE_PORT)
 
 define run_interactive_test
$(if $(2),\
-   $(CYPRESS_BINARY) run --browser $(CHROME) --headed --no-exit \
+   $(CYPRESS_BINARY) run \
+   --browser $(CHROME) \
+   --headed --no-exit \
$(if $(findstring DESKTOP,$(1)),\
-   $(DESKTOP_CONFIG) 
--spec=$(abs_dir)/integration_tests/desktop/$(2),\
-   $(MOBILE_CONFIG) 
--spec=$(abs_dir)/integration_tests/mobile/$(2)),\
-   $(CYPRESS_BINARY) open $(if $(findstring 
DESKTOP,$(1)),$(DESKTOP_CONFIG),$(MOBILE_CONFIG)))
+   $(DESKTOP_CONFIG) \
+   
--spec=$(abs_dir)/integration_tests/desktop/$(2),\
+   $(MOBILE_CONFIG) \
+   
--spec=$(abs_dir)/integration_tests/mobile/$(2)),\
+   $(CYPRESS_BINARY) open \
+   $(if $(findstring 
DESKTOP,$(1)),$(DESKTOP_CONFIG),$(MOBILE_CONFIG)))
 endef
 
 define run_desktop_tests
@echo $(if $(1),"Running cypress desktop test: $(1)","Running cypress 
desktop tests...")
@echo
$(eval RUN_COMMAND = \
-   $(CYPRESS_BINARY) run --browser $(CHROME) \
-   --config 
integrationFolder=$(DESKTOP_TEST_FOLDER),supportFile=$(SUPPORT_FILE),userAgent=$(DESKTOP_USER_AGENT)
 \
+   $(CYPRESS_BINARY) run \
+   --browser $(CHROME) \
--headless \
-   --env 
DATA_FOLDER=$(DESKTOP_DATA_FOLDER),WORKDIR=$(DESKTOP_WORKDIR),WSD_VERSION_HASH=$(WSD_VERSION_HASH),SERVER_PORT=$(FREE_PORT)
 \
+   $(DESKTOP_CONFIG) \
$(if $(1), 
--spec=$(abs_dir)/integration_tests/desktop/$(1)) \
$(if $(PARALLEL_BUILD),,|| ($(KILL_COMMAND) && false)))
$(if $(PARALLEL_BUILD),\
@@ -189,10 +198,10 @@ define run_mobile_tests
@echo $(if $(1),"Running cypress mobile test: $(1)","Running cypress 
mobile tests...")
@echo
$(eval RUN_COMMAND = \
-   $(CYPRESS_BINARY) run --browser $(CHROME) \
-   --config 
integrationFolder=$(MOBILE_TEST_FOLDER),supportFile=$(SUPPORT_FILE),userAgent=$(MOBILE_USER_AGENT)
 \
+   $(CYPRESS_BINARY) run \
+   --browser $(CHROME) \
--headless \
-   --env 
DATA_FOLDER=$(MOBILE_DATA_FOLDER),WORKDIR=$(MOBILE_WORKDIR),WSD_VERSION_HASH=$(WSD_VERSION_HASH),SERVER_PORT=$(FREE_PORT)
 \
+   $(MOBILE_CONFIG) \
$(if $(1), 
--spec=$(abs_dir)/integration_tests/mobile/$(1)) \
$(if $(PARALLEL_BUILD),,|| ($(KILL_COMMAND) && false)))
$(if $(PARALLEL_BUILD),\
commit 015beba2074f5ee78dc799b91a922a35931ccc40
Author: Tamás Zolnai 
AuthorDate: Fri May 22 22:47:10 

[Libreoffice-bugs] [Bug 133223] Freeze/ layout loop after moving images

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133223

Durgapriyanka  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #5 from Durgapriyanka  ---
Thank you for reporting the bug. I can confirm the bug present in

Version: 6.4.0.0.alpha1+ (x86)
Build ID: ec7374ff84c71edfbb30d6e4dc5b486b6df7107f
CPU threads: 2; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-11-10_21:37:30
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded

-- 
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 133290] Export to PDF large documents is very slow

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133290

--- Comment #1 from Telesto  ---
Place attach a sample file illustrating the issue (the file will be public)

-- 
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 133158] LO Writer form controls tab order is broken

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133158

--- Comment #8 from peterpqa  ---
Sorry, I spoke too soon on the copy & paste workaround. It did not fix the tab
order problem in my other form. (Unfortunately, it is proprietary and I can't
provide a sanitized version.)

I downloaded Mac v6.2.8.2, and both forms perform perfectly in that version.
Even row 1 field 4.

-- 
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 130693] PRINTING: font or style selectively changed from Writer in PDF printout

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130693

--- Comment #3 from Nick Levinson  ---
You say printed "to" PDF. Do you mean you exported to PDF or that you printed
from the PDF onto paper? I don't see the wrong font or style in the PDF but I
do get the wrong font or style on the paper from the PDF (the various printers
I use are in commercial establishments for public use and won't print from the
.odt file).

-- 
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 133243] Formatting cause random generated letters to be regenerated

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133243

Durgapriyanka  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Durgapriyanka  ---
Thank you for reporting the bug. I can confirm the bug present in

Version: 6.4.0.0.alpha1+ (x86)
Build ID: ec7374ff84c71edfbb30d6e4dc5b486b6df7107f
CPU threads: 2; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-11-10_21:37:30
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded


and in

LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

-- 
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 133251] cannot change application color

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133251

--- Comment #2 from Durgapriyanka  ---
Thank you for reporting the bug. I can not reproduce this bug in

Version: 6.4.0.0.alpha1+ (x86)
Build ID: ec7374ff84c71edfbb30d6e4dc5b486b6df7107f
CPU threads: 2; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-11-10_21:37:30
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded


and in

LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

-- 
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 130445] Toolbar created at Document Scope does not save associated icons.

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130445

--- Comment #4 from Jean-Michel COSTE  ---
Me too on version 6.3.6.2

-- 
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 123972] UI menu disapppears before submenu can open

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123972

--- Comment #15 from Nick Levinson  ---
I didn't answer earlier, due to Covid-19 restrictions.

Comment 13:

Your menubar may be open all the time. I doubt the File menu is open all the
time on anyone's setup. To have the File menu open all the time would mean
you're ready to select a menu command (menu item) such as Open or Close but
without ever selecting any command in that menu, and in that case I doubt you'd
ever get any work done.

The menu is not hidden when you don't see it, it's closed. If you select a 
menu command, the menu then closes while it carries out your command. So, if
you select the Print command, the menu closes and the Print dialog opens. You
might hide the menubar (and I don't know how to do that except perhaps by using
Tools > Customize > Menus and deleting every command from every menu, if you
have any reason to do that), but I'm not talking about the menubar. I'm
interested only in each menu (and its submenus).

In other words: One menu is called File. Another menu is called Edit. They're
in the same menubar, but, in that menubar, File and Edit are separate menus.

To see a submenu, open the File menu (alt-f) and select New. Then another menu
will open, offering Text Document, Spreadsheet, and so on. That's a submenu.

F10 opens the File menu. As far as I know, it's just like clicking "File" or
typing alt-f. F10 is not the issue in this bug report.

Comment 14: Your attachment's top shows a menubar, not a menu. I'm talking
about a menu, such as the File menu. You see the menu when you open it, such as
by mouse-clicking "File" or typing alt-f.

-- 
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 133267] Undo inserting a row above extremely slow

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133267

--- Comment #6 from Telesto  ---
@Durgapriyanka
Thanks for all the testing.. Appreciated. However, if possible, could you
update your alpha build sometime? Getting slightly old. I sometimes post rather
new bugs..

-- 
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 133295] OFFSET.NV and INDIRECT.NV non-volatile functions in Calc

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133295

kouka...@gmail.com changed:

   What|Removed |Added

 CC||kouka...@gmail.com

--- Comment #1 from kouka...@gmail.com ---
Created attachment 161171
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161171=edit
volatile_functions_test

-- 
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 133295] New: OFFSET.NV and INDIRECT.NV non-volatile functions in Calc

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133295

Bug ID: 133295
   Summary: OFFSET.NV and INDIRECT.NV non-volatile functions in
Calc
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kouka...@gmail.com

Description:
While it is obvious to everyone that RAND() is volatile, many users are not
aware that OFFSET() and INDIRECT() are volatile as well. This can absolutely
kill the performance of a spreadsheet, without even realizing the reason why
this is happening, due to recalculating everything.
This is a correct behaviour and the same behaviour happens on msoffice.
While an experienced user can get around this issue by using the INDEX()
function which is non-volatile, this is not possible on all cases. In some of
these cases the user may responsibly want to absolutely avoid the volatility.
Would you please create two functions OFFSET.NV() and INDIRECT.NV() ?
This would work just like the RAND.NV() and RANDBETWEEN.NV() functions
introduced on lo7.0.0 .
This would be a great feature and it will also work as a reminder/informer that
OFFSET() and INDIRECT() are volatile and should be avoided in case performance
is important.
I am attaching a lo7.0.0 spreadsheet sample that shows how one can test whether
a function is volatile. The volatile cells refresh with every change or by
simple "recalculate", while the non-volatile ones with "recalculate hard" .

Actual Results:
-

Expected Results:
-


Reproducible: Always


User Profile Reset: No



Additional Info:
-

-- 
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 133267] Undo inserting a row above extremely slow

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133267

--- Comment #5 from Durgapriyanka  ---
Thank you for reporting the bug. I can confirm the bug present in

Version: 6.4.0.0.alpha1+ (x86)
Build ID: ec7374ff84c71edfbb30d6e4dc5b486b6df7107f
CPU threads: 2; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 
TinderBox: Win-x86@42, Branch:master, Time: 2019-11-10_21:37:30
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded


But, not in

LibreOffice 3.3.0 
OOO330m19 (Build:6)
tag libreoffice-3.3.0.4

-- 
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


Re: Suggestion: No more language packs for macOS as they are fundamentally broken

2020-05-22 Thread julien2412
Hello Tor,

I supposed you tried hard to fix this and contact every person who may help
here.
IMHO, it means we don't have the capacity to provide a localized version of
LO for MacOs correctly.
Doing an English version + all languages versions or doing 95% languages
version, etc. is just a poor bandaid.

So what about stopping MacOs release as long as the problem isn't fixed?
Of course it might take several weeks or months (hope no more) to solve the
pb but if we have so few people able to hack on MacOs, no need to pretend
to.

Don't misunderstand me, I think you do a great job like other LO expert devs
but we obviously reached the limit here. This thread, after this other one
http://document-foundation-mail-archive.969070.n3.nabble.com/MacOS-support-agenda-item-ESC-tt4277980.html#a4278060,
shows there's a real pb concerning MacOs support.

The only solution here seems to pay the price (yes I suppose there would be
several "0" in it but let's hope less than 6!) to find MacOs expert(s) to
fix this properly.

Julien




--
Sent from: 
http://document-foundation-mail-archive.969070.n3.nabble.com/Dev-f1639786.html
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 133284] Cursor keys don't work anymore in calc on iOS

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133284

Aron Budea  changed:

   What|Removed |Added

   Keywords||notBibisectable, regression

-- 
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 133249] NEW: LibreOffice Writer performance drops significantly after inserting emoji

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133249

Telesto  changed:

   What|Removed |Added

 OS|All |Linux (All)

--- Comment #5 from Telesto  ---
Can't reproduce this on Windows.. lets assume Linux only
Version: 7.0.0.0.alpha1+ (x64)
Build ID: 9a7c5d38a7a43c75c0f3d2f0c725196e916d0260
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win; 
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

-- 
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 133294] FILESAVE EPUB Enhancement for styles with page breaks

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133294

--- Comment #4 from Dave  ---
Created attachment 161170
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161170=edit
EPUB with stylesheet.css manually modified to correct behavior

This EPUB export was unzipped and had lines added to stylesheet.css. There is a
screenshot and explanation of the modifications in the example document.

-- 
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 133294] FILESAVE EPUB Enhancement for styles with page breaks

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133294

--- Comment #3 from Dave  ---
Created attachment 161169
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161169=edit
EPUB export to show how page breaks are ignored.

-- 
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 133294] FILESAVE EPUB Enhancement for styles with page breaks

2020-05-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133294

--- Comment #2 from Dave  ---
Created attachment 161168
  --> https://bugs.documentfoundation.org/attachment.cgi?id=161168=edit
PDF export showing what I would expect it to look like.

The PDF is only included for comparison to the EPUB. PDF renders exactly as
expected.

-- 
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   4   5   6   >