[Libreoffice-bugs] [Bug 138843] UI: Show image file type/ extension inside image properties dialog

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138843

--- Comment #13 from Prince Singh Tomar  ---
(In reply to Shubham Jain from comment #11)
> (In reply to Prince Singh Tomar from comment #9)
> > can i work on this ?
> 
> I've already submitted a patch on it. I forgot to assign it to myself. Can
> you work on some other task? Thank you!

Please, attach the link of the submitted patch in this chat, so that this bug
can be marked as resolved (after merging).

-- 
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: include/editeng offapi/com sax/source starmath/source

2020-12-26 Thread dante (via logerrit)
 include/editeng/editview.hxx|2 -
 offapi/com/sun/star/xml/sax/XWriter.idl |7 -
 sax/source/expatwrap/saxwriter.cxx  |   44 ++--
 starmath/source/mathmlexport.cxx|2 +
 starmath/source/xparsmlbase.cxx |   10 +++
 starmath/source/xparsmlbase.hxx |   10 +--
 6 files changed, 69 insertions(+), 6 deletions(-)

New commits:
commit 78552cb9b167a677952bf80eb0c7af62baaf015a
Author: dante 
AuthorDate: Sat Dec 26 18:53:18 2020 +0100
Commit: Noel Grandin 
CommitDate: Sun Dec 27 08:29:27 2020 +0100

Preparations for customized xml entities on export

Change-Id: I8ad4af7e27ae5f8908f4c932242cb96abbf3de90
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108354
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/include/editeng/editview.hxx b/include/editeng/editview.hxx
index ae6ebd521a2a..debc7b6efe71 100644
--- a/include/editeng/editview.hxx
+++ b/include/editeng/editview.hxx
@@ -177,7 +177,7 @@ public:
 voidInvalidateWindow(const tools::Rectangle& rClipRect);
 voidInvalidateOtherViewWindows( const tools::Rectangle& 
rInvRect );
 voidInvalidate();
-PairScroll( tools::Long nHorzScroll, tools::Long nVertScroll, 
ScrollRangeCheck nRangeCheck = ScrollRangeCheck::NoNegative );
+::PairScroll( tools::Long nHorzScroll, tools::Long 
nVertScroll, ScrollRangeCheck nRangeCheck = ScrollRangeCheck::NoNegative );
 
 voidSetBroadcastLOKViewCursor(bool bSet);
 tools::Rectangle   GetEditCursor() const;
diff --git a/offapi/com/sun/star/xml/sax/XWriter.idl 
b/offapi/com/sun/star/xml/sax/XWriter.idl
index a79e7b156a1a..62d3d74256af 100644
--- a/offapi/com/sun/star/xml/sax/XWriter.idl
+++ b/offapi/com/sun/star/xml/sax/XWriter.idl
@@ -21,7 +21,7 @@
 
 #include 
 #include 
-
+#include 
 
 module com {  module sun {  module star {  module xml {  module sax {
 
@@ -35,6 +35,11 @@ interface XWriter
 {
 interface com::sun::star::io::XActiveDataSource;
 interface com::sun::star::xml::sax::XExtendedDocumentHandler;
+
+/** Adds support for custom entity names list
+  * @since LibreOffice 7.2
+  */
+void setCustomEntityNames( [in] sequence< 
com::sun::star::beans::Pair > replacements );
 };
 
 
diff --git a/sax/source/expatwrap/saxwriter.cxx 
b/sax/source/expatwrap/saxwriter.cxx
index 8566cab2b7e6..03ca1f765d82 100644
--- a/sax/source/expatwrap/saxwriter.cxx
+++ b/sax/source/expatwrap/saxwriter.cxx
@@ -22,6 +22,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -72,6 +73,17 @@ enum SaxInvalidCharacterError
 SAX_ERROR
 };
 
+// Stuff for custom entity names
+struct ReplacementPair
+{
+OUString name;
+OUString replacement;
+};
+inline bool operator<(const ReplacementPair& lhs, const ReplacementPair& rhs)
+{
+return lhs.replacement.compareTo(rhs.replacement) < 0;
+}
+
 class SaxWriterHelper
 {
 #ifdef DBG_UTIL
@@ -88,6 +100,8 @@ private:
 sal_uInt32  nCurrentPos;
 boolm_bStartElementFinished;
 
+std::vector m_Replacements;
+
 /// @throws SAXException
 sal_uInt32 writeSequence();
 
@@ -175,6 +189,10 @@ public:
 
 /// @throws SAXException
 void clearBuffer();
+
+// Use custom entity names
+void setCustomEntityNames(
+const ::css::uno::Sequence<::css::beans::Pair<::rtl::OUString, 
::rtl::OUString>>& replacements);
 };
 
 const bool g_bValidCharsBelow32[32] =
@@ -239,6 +257,19 @@ void SaxWriterHelper::AddBytes(sal_Int8* pTarget, 
sal_uInt32& rPos,
 AddBytes(pTarget, rPos, [nCount], nRestCount);
 }
 
+void SaxWriterHelper::setCustomEntityNames(
+const ::css::uno::Sequence<::css::beans::Pair<::rtl::OUString, 
::rtl::OUString>>& replacements)
+{
+m_Replacements.resize(replacements.size());
+for (size_t i = 0; i < replacements.size(); ++i)
+{
+m_Replacements[i].name = replacements[i].First;
+m_Replacements[i].replacement = replacements[i].Second;
+}
+if (replacements.size() > 1)
+std::sort(m_Replacements.begin(), m_Replacements.end());
+}
+
 /** Converts a UTF-16 string to UTF-8 and does XML normalization
 
 @param pTarget
@@ -300,7 +331,7 @@ bool SaxWriterHelper::convertToXML( const sal_Unicode * 
pStr,
 }
 }
 break;
-case 39: // 39 == '''
+case '\'':
 {
 if ((rPos + 6) > SEQUENCESIZE)
 AddBytes(pTarget, rPos, reinterpret_cast(""), 6);
@@ -855,7 +886,7 @@ sal_Int32 calcXMLByteLength( const OUString& rStr,
 case '>':   // 
 nOutputLength +=4;
 break;
-case 39:// 39 == ''', 
+case '\'':  // 
 case '"':   // 

[Libreoffice-commits] core.git: starmath/source

2020-12-26 Thread dante (via logerrit)
 starmath/source/xparsmlbase.cxx | 6399 +---
 starmath/source/xparsmlbase.hxx |2 
 2 files changed, 2133 insertions(+), 4268 deletions(-)

New commits:
commit a26504cb5790eff1ca8b932382f73ff3baaec50a
Author: dante 
AuthorDate: Sat Dec 26 18:34:56 2020 +0100
Commit: Noel Grandin 
CommitDate: Sun Dec 27 08:28:10 2020 +0100

List all mathml entyties.

This list replaces the old list.
It has been made using w3c documentation via refractoring in gedit and calc.

Change-Id: Ic0fbd1fd922c108f59950a6c1f280304324febf4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108333
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/starmath/source/xparsmlbase.cxx b/starmath/source/xparsmlbase.cxx
index b699e7935fbe..4c5651ae2c55 100644
--- a/starmath/source/xparsmlbase.cxx
+++ b/starmath/source/xparsmlbase.cxx
@@ -18,4276 +18,2139 @@
  */
 #include "xparsmlbase.hxx"
 
-/*
-static OUString icustomMathmlHtmlEntitiesNamesData[2125] = {
-// clang-format off
-u"AElig",
-u"AMP",
-u"Aacute",
-u"Abreve",
-u"Acirc",
-u"Acy",
-u"Afr",
-u"Agrave",
-u"Alpha",
-u"Amacr",
-u"And",
-u"Aogon",
-u"Aopf",
-u"ApplyFunction",
-u"Aring",
-u"Ascr",
-u"Assign",
-u"Atilde",
-u"Auml",
-u"Backslash",
-u"Barv",
-u"Barwed",
-u"Bcy",
-u"Because",
-u"Bernoullis",
-u"Beta",
-u"Bfr",
-u"Bopf",
-u"Breve",
-u"Bscr",
-u"Bumpeq",
-u"CHcy",
-u"COPY",
-u"Cacute",
-u"Cap",
-u"CapitalDifferentialD",
-u"Cayleys",
-u"Ccaron",
-u"Ccedil",
-u"Ccirc",
-u"Cconint",
-u"Cdot",
-u"Cedilla",
-u"CenterDot",
-u"Cfr",
-u"Chi",
-u"CircleDot",
-u"CircleMinus",
-u"CirclePlus",
-u"CircleTimes",
-u"ClockwiseContourIntegral",
-u"CloseCurlyDoubleQuote",
-u"CloseCurlyQuote",
-u"Colon",
-u"Colone",
-u"Congruent",
-u"Conint",
-u"ContourIntegral",
-u"Copf",
-u"Coproduct",
-u"CounterClockwiseContourIntegral",
-u"Cross",
-u"Cscr",
-u"Cup",
-u"CupCap",
-u"DD",
-u"DDotrahd",
-u"DJcy",
-u"DScy",
-u"DZcy",
-u"Dagger",
-u"Darr",
-u"Dashv",
-u"Dcaron",
-u"Dcy",
-u"Del",
-u"Delta",
-u"Dfr",
-u"DiacriticalAcute",
-u"DiacriticalDot",
-u"DiacriticalDoubleAcute",
-u"DiacriticalGrave",
-u"DiacriticalTilde",
-u"Diamond",
-u"DifferentialD",
-u"Dopf",
-u"Dot",
-u"DotDot",
-u"DotEqual",
-u"DoubleContourIntegral",
-u"DoubleDot",
-u"DoubleDownArrow",
-u"DoubleLeftArrow",
-u"DoubleLeftRightArrow",
-u"DoubleLeftTee",
-u"DoubleLongLeftArrow",
-u"DoubleLongLeftRightArrow",
-u"DoubleLongRightArrow",
-u"DoubleRightArrow",
-u"DoubleRightTee",
-u"DoubleUpArrow",
-u"DoubleUpDownArrow",
-u"DoubleVerticalBar",
-u"DownArrow",
-u"DownArrowBar",
-u"DownArrowUpArrow",
-u"DownBreve",
-u"DownLeftRightVector",
-u"DownLeftTeeVector",
-u"DownLeftVector",
-u"DownLeftVectorBar",
-u"DownRightTeeVector",
-u"DownRightVector",
-u"DownRightVectorBar",
-u"DownTee",
-u"DownTeeArrow",
-u"Downarrow",
-u"Dscr",
-u"Dstrok",
-u"ENG",
-u"ETH",
-u"Eacute",
-u"Ecaron",
-u"Ecirc",
-u"Ecy",
-u"Edot",
-u"Efr",
-u"Egrave",
-u"Element",
-u"Emacr",
-u"EmptySmallSquare",
-u"EmptyVerySmallSquare",
-u"Eogon",
-u"Eopf",
-u"Epsilon",
-u"Equal",
-u"EqualTilde",
-u"Equilibrium",
-u"Escr",
-u"Esim",
-u"Eta",
-u"Euml",
-u"Exists",
-u"ExponentialE",
-u"Fcy",
-u"Ffr",
-u"FilledSmallSquare",
-u"FilledVerySmallSquare",
-u"Fopf",
-u"ForAll",
-u"Fouriertrf",
-u"Fscr",
-u"GJcy",
-u"GT",
-u"Gamma",
-u"Gammad",
-u"Gbreve",
-u"Gcedil",
-u"Gcirc",
-u"Gcy",
-u"Gdot",
-u"Gfr",
-u"Gg",
-u"Gopf",
-u"GreaterEqual",
-u"GreaterEqualLess",
-u"GreaterFullEqual",
-u"GreaterGreater",
-u"GreaterLess",
-u"GreaterSlantEqual",
-u"GreaterTilde",
-u"Gscr",
-u"Gt",
-u"HARDcy",
-u"Hacek",
-u"Hat",
-u"Hcirc",
-u"Hfr",
-u"HilbertSpace",
-u"Hopf",
-u"HorizontalLine",
-u"Hscr",
-u"Hstrok",
-u"HumpDownHump",
-u"HumpEqual",
-u"IEcy",
-u"IJlig",
-u"IOcy",
-u"Iacute",
-u"Icirc",
-u"Icy",
-u"Idot",
-u"Ifr",
-u"Igrave",
-u"Im",
-u"Imacr",
-u"ImaginaryI",
-u"Implies",
-u"Int",
-u"Integral",
-u"Intersection",
-u"InvisibleComma",
-u"InvisibleTimes",
-u"Iogon",
-u"Iopf",
-u"Iota",
-u"Iscr",
-u"Itilde",
-u"Iukcy",
-u"Iuml",
-u"Jcirc",
-u"Jcy",
-u"Jfr",
-u"Jopf",
-u"Jscr",
-u"Jsercy",
-u"Jukcy",
-u"KHcy",
-u"KJcy",
-u"Kappa",
-

[Libreoffice-bugs] [Bug 138843] UI: Show image file type/ extension inside image properties dialog

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138843

Prince Singh Tomar  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW

-- 
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 138843] UI: Show image file type/ extension inside image properties dialog

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138843

Prince Singh Tomar  changed:

   What|Removed |Added

   Assignee|singhtomarprince470@gmail.c |libreoffice-b...@lists.free
   |om  |desktop.org

-- 
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: icon-themes/elementary icon-themes/elementary_svg

2020-12-26 Thread Rizal Muttaqin (via logerrit)
 icon-themes/elementary/sw/res/redline_formatted.png |binary
 icon-themes/elementary/sw/res/sc20245.png   |binary
 icon-themes/elementary_svg/sw/res/redline_formatted.svg |2 +-
 icon-themes/elementary_svg/sw/res/sc20245.svg   |2 +-
 4 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 71b2720f68ba701e7b9673a953f8235ee8f90e21
Author: Rizal Muttaqin 
AuthorDate: Sat Dec 26 22:16:54 2020 +0700
Commit: Rizal Muttaqin 
CommitDate: Sun Dec 27 08:17:40 2020 +0100

elementary: tdf#139048 update pencil to be yellow

(icon in Manage Changes dialog & Master Doc navigator icon)

Change-Id: I7119afdb8defd1d6d221794eb825f285ecbe6fa1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108328
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/elementary/sw/res/redline_formatted.png 
b/icon-themes/elementary/sw/res/redline_formatted.png
index e163539a54ea..6e0565c183fc 100644
Binary files a/icon-themes/elementary/sw/res/redline_formatted.png and 
b/icon-themes/elementary/sw/res/redline_formatted.png differ
diff --git a/icon-themes/elementary/sw/res/sc20245.png 
b/icon-themes/elementary/sw/res/sc20245.png
index c8af17cbbea2..9c491cac9d4d 100644
Binary files a/icon-themes/elementary/sw/res/sc20245.png and 
b/icon-themes/elementary/sw/res/sc20245.png differ
diff --git a/icon-themes/elementary_svg/sw/res/redline_formatted.svg 
b/icon-themes/elementary_svg/sw/res/redline_formatted.svg
index 9673db3c70c4..ead4de8093b8 100644
--- a/icon-themes/elementary_svg/sw/res/redline_formatted.svg
+++ b/icon-themes/elementary_svg/sw/res/redline_formatted.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff --git a/icon-themes/elementary_svg/sw/res/sc20245.svg 
b/icon-themes/elementary_svg/sw/res/sc20245.svg
index 9331b10ac361..e1a3729feb40 100644
--- a/icon-themes/elementary_svg/sw/res/sc20245.svg
+++ b/icon-themes/elementary_svg/sw/res/sc20245.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 107657] [META] Font effects bugs and enhancements

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107657
Bug 107657 depends on bug 135326, which changed state.

Bug 135326 Summary: FONT EFFECT: Not possible to enable "Hidden" option with ~h
https://bugs.documentfoundation.org/show_bug.cgi?id=135326

   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 127611] Writer: ~h does not toggle Hidden effect

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127611

--- Comment #3 from Gabor Kelemen  ---
*** Bug 135326 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 135326] FONT EFFECT: Not possible to enable "Hidden" option with ~h

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135326

Gabor Kelemen  changed:

   What|Removed |Added

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

--- Comment #5 from Gabor Kelemen  ---
(In reply to Ming Hua from comment #4)
> Isn't this just a duplicate of bug 127611 (by the same reporter, even), or
> am I missing something?

Indeed a duplicate!

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

-- 
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 122319] List boxes set to "input required" shouldn't offer NULL for input

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122319

--- Comment #4 from Robert Großkopf  ---
Bug is almost the same with LO 7.1.0.1 on OpenSUSE 15.2 64bit rpm Linux.

-- 
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: basic/source

2020-12-26 Thread Arnaud Versini (via logerrit)
 basic/source/inc/runtime.hxx |6 +++---
 basic/source/runtime/runtime.cxx |6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 4be5308c05d8078b20fc9b14d961c53b0ede193a
Author: Arnaud Versini 
AuthorDate: Sat Dec 26 13:46:52 2020 +0100
Commit: Noel Grandin 
CommitDate: Sun Dec 27 07:52:20 2020 +0100

BASIC : SbiRuntime static data should be const

Change-Id: If8c221a2bfb249a6625df4b466fe5247b7a8ae72
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108355
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/basic/source/inc/runtime.hxx b/basic/source/inc/runtime.hxx
index 3262dec7ce0d..1169820e753b 100644
--- a/basic/source/inc/runtime.hxx
+++ b/basic/source/inc/runtime.hxx
@@ -208,9 +208,9 @@ class SbiRuntime
 typedef void( SbiRuntime::*pStep0 )();
 typedef void( SbiRuntime::*pStep1 )( sal_uInt32 nOp1 );
 typedef void( SbiRuntime::*pStep2 )( sal_uInt32 nOp1, sal_uInt32 nOp2 );
-static pStep0 aStep0[]; // opcode-table group 0
-static pStep1 aStep1[];
-static pStep2 aStep2[];
+static const pStep0 aStep0[]; // opcode-table group 0
+static const pStep1 aStep1[];
+static const pStep2 aStep2[];
 
 StarBASIC& rBasic;   // StarBASIC instance
 SbiInstance*   pInst;// current thread
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index 3ceaf38cafc7..aecf2f7f9a3d 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -157,7 +157,7 @@ struct SbiGosub {  // GOSUB-Stack:
 nStartForLvl(nStartForLvl_) {}
 };
 
-SbiRuntime::pStep0 SbiRuntime::aStep0[] = { // all opcodes without operands
+const SbiRuntime::pStep0 SbiRuntime::aStep0[] = { // all opcodes without 
operands
 ::StepNOP,
 ::StepEXP,
 ::StepMUL,
@@ -226,7 +226,7 @@ SbiRuntime::pStep0 SbiRuntime::aStep0[] = { // all opcodes 
without operands
 ::StepBYVAL, // access TOS as array
 };
 
-SbiRuntime::pStep1 SbiRuntime::aStep1[] = { // all opcodes with one operand
+const SbiRuntime::pStep1 SbiRuntime::aStep1[] = { // all opcodes with one 
operand
 ::StepLOADNC,// loading a numeric constant (+ID)
 ::StepLOADSC,// loading a string constant (+ID)
 ::StepLOADI, // Immediate Load (+value)
@@ -255,7 +255,7 @@ SbiRuntime::pStep1 SbiRuntime::aStep1[] = { // all opcodes 
with one operand
 ::StepVBASETCLASS,// vba-like set statement
 };
 
-SbiRuntime::pStep2 SbiRuntime::aStep2[] = {// all opcodes with two operands
+const SbiRuntime::pStep2 SbiRuntime::aStep2[] = {// all opcodes with two 
operands
 ::StepRTL,   // load from RTL (+StringID+Typ)
 ::StepFIND,  // load (+StringID+Typ)
 ::StepELEM,  // load element (+StringID+Typ)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 113002] LibreOfficeCalc: Pivot Table recurring data field name will added a simple quotation marks before number

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113002

--- Comment #14 from Robert Lacroix  ---
Bug is present.

Version: 6.1.5.2
Build ID: 1:6.1.5-3+deb10u6
CPU threads: 12; OS: Linux 4.19; UI render: default; VCL: x11; 
Locale: en-CA (en_CA.utf8); Calc: group threaded

This happens with any numeric value used as a row field with the field option
"Repeat item labels" enabled. Original labels are numeric and repeated labels
are converted to text.

The problem is not merely cosmetic. Using the labels of this field in the PT as
the SearchCriterion of a VLOOKUP formula will have different results depending
on whether the particular row's item label is numeric or text.

One workaround is to convert this column in the source data to a text value.
One way to do this for computed values is to append an empty string onto the
computation. For example:  =date(1995,7,28)&""  Then all the item labels will
be text for that field.

This is an unsatisfactory workaround if you expect the field to have numeric
values, like when applying conditional formatting or when using the labels in a
numeric computation. For instance when cell A3 contains a text value  '1234 
and cell D3 contains a formula  =A3>1235  the value of cell D3 is TRUE.

-- 
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: Branch 'libreoffice-7-1' - helpcontent2

2020-12-26 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 48038c2a2bf5a6e9c49407038bb60f8900c4b58a
Author: Olivier Hallot 
AuthorDate: Sun Dec 27 07:24:41 2020 +0100
Commit: Gerrit Code Review 
CommitDate: Sun Dec 27 07:24:41 2020 +0100

Update git submodules

* Update helpcontent2 from branch 'libreoffice-7-1'
  to 99a53d675225a21337ae919e9cedc6c36ede28ed
  - Fix some "D'oh! you found a bug"

Change-Id: Idc8ad199cce6bd3c5b42b8982ad80f8155e87d7c
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/108187
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index 44783fdc08c1..99a53d675225 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 44783fdc08c17e0103c79ad4471a1c3ddc33be29
+Subproject commit 99a53d675225a21337ae919e9cedc6c36ede28ed
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Branch 'libreoffice-7-1' - source/text

2020-12-26 Thread Olivier Hallot (via logerrit)
 source/text/shared/01/01110300.xhp   |2 +-
 source/text/swriter/guide/main.xhp   |2 +-
 source/text/swriter/guide/pagestyles.xhp |2 +-
 source/text/swriter/guide/template_create.xhp|2 +-
 source/text/swriter/guide/text_direct_cursor.xhp |2 +-
 source/text/swriter/guide/using_hyphen.xhp   |2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 99a53d675225a21337ae919e9cedc6c36ede28ed
Author: Olivier Hallot 
AuthorDate: Thu Dec 24 17:11:31 2020 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Sun Dec 27 07:24:41 2020 +0100

Fix some "D'oh! you found a bug"

Change-Id: Idc8ad199cce6bd3c5b42b8982ad80f8155e87d7c
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/108187
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/source/text/shared/01/01110300.xhp 
b/source/text/shared/01/01110300.xhp
index 8f14b07c0..87e8501f6 100644
--- a/source/text/shared/01/01110300.xhp
+++ b/source/text/shared/01/01110300.xhp
@@ -45,7 +45,7 @@
 Set as default template
   The new template will be used as the default 
template.
 
-
+
 
 
 
diff --git a/source/text/swriter/guide/main.xhp 
b/source/text/swriter/guide/main.xhp
index fc73b4380..feb19e264 100644
--- a/source/text/swriter/guide/main.xhp
+++ b/source/text/swriter/guide/main.xhp
@@ -64,7 +64,7 @@
 
 
 
-
+
 
 
 Automatically Entering and Formatting 
Text
diff --git a/source/text/swriter/guide/pagestyles.xhp 
b/source/text/swriter/guide/pagestyles.xhp
index e8992bbcd..52befb21a 100644
--- a/source/text/swriter/guide/pagestyles.xhp
+++ b/source/text/swriter/guide/pagestyles.xhp
@@ -110,7 +110,7 @@
 
 
 
-
+
 
 
 
diff --git a/source/text/swriter/guide/template_create.xhp 
b/source/text/swriter/guide/template_create.xhp
index 177a93be7..d0424e7d4 100644
--- a/source/text/swriter/guide/template_create.xhp
+++ b/source/text/swriter/guide/template_create.xhp
@@ -57,7 +57,7 @@
 
 
 
-
+
 
 File - Templates - Save As Template
 
diff --git a/source/text/swriter/guide/text_direct_cursor.xhp 
b/source/text/swriter/guide/text_direct_cursor.xhp
index a24925d41..c28531c4e 100644
--- a/source/text/swriter/guide/text_direct_cursor.xhp
+++ b/source/text/swriter/guide/text_direct_cursor.xhp
@@ -59,7 +59,7 @@
   
   
   
-  
+  
   
   
 
\ No newline at end of file
diff --git a/source/text/swriter/guide/using_hyphen.xhp 
b/source/text/swriter/guide/using_hyphen.xhp
index 0f035e63c..0806e1eb8 100644
--- a/source/text/swriter/guide/using_hyphen.xhp
+++ b/source/text/swriter/guide/using_hyphen.xhp
@@ -93,7 +93,7 @@
   
   
   
-  
+  
   
   Text 
Flow

___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-12-26 Thread Chris Sherlock (via logerrit)
 vcl/source/gdi/print.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b329ff293f137770c94c882b959ed362e0cb7d95
Author: Chris Sherlock 
AuthorDate: Thu Dec 24 14:08:11 2020 +1100
Commit: Adolfo Jayme Barrientos 
CommitDate: Sun Dec 27 07:21:49 2020 +0100

vcl: 'horizontically'

Change-Id: Ied4c12f7a5abfe2728f23521d8b80f05076f71c7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108252
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/vcl/source/gdi/print.cxx b/vcl/source/gdi/print.cxx
index fb3e5de9a95b..99931441de04 100644
--- a/vcl/source/gdi/print.cxx
+++ b/vcl/source/gdi/print.cxx
@@ -702,7 +702,7 @@ void Printer::DrawDeviceMask( const Bitmap& rMask, const 
Color& rMaskColor,
 if( aMask.GetBitCount() > 1 )
 aMask.Convert( BmpConversion::N1BitThreshold );
 
-// mirrored horizontically
+// mirrored horizontally
 if( aDestSz.Width() < 0 )
 {
 aDestSz.setWidth( -aDestSz.Width() );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 127401] Release Notes button leads to English RN on Chinese system

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127401

--- Comment #29 from Commit Notification 
 ---
Ming Hua committed a patch related to this issue.
It has been pushed to "libreoffice-7-1":

https://git.libreoffice.org/core/commit/bbf7cf0da359dfdd0f6ee7516eb05a9adc8a2354

tdf#127401 Fix release notes URL for simplified Chinese (zh-CN) UI

It will be available in 7.1.0.2.

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

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

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


[Libreoffice-bugs] [Bug 127401] Release Notes button leads to English RN on Chinese system

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127401

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:7.2.0|target:7.2.0 target:7.1.0.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-commits] core.git: Branch 'libreoffice-7-1' - cui/source

2020-12-26 Thread Ming Hua (via logerrit)
 cui/source/dialogs/about.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit bbf7cf0da359dfdd0f6ee7516eb05a9adc8a2354
Author: Ming Hua 
AuthorDate: Tue Dec 22 17:22:26 2020 +0800
Commit: Adolfo Jayme Barrientos 
CommitDate: Sun Dec 27 07:20:37 2020 +0100

tdf#127401 Fix release notes URL for simplified Chinese (zh-CN) UI

Use getBcp47() instead of getLanguage() to construct release notes URL
for About dialog, just like what commit
787647b488d02be2acbbad4fa7873508dcb926c2 did for WhatsNew infobar.

Should also affect other locales using ll-CC style wiki notation with
both language and country codes, like pt-BR.

Change-Id: Ic4698946f500b5901eb0c519f1fd4e3a4b8456cb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108147
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 
(cherry picked from commit ce614dcc6d099ce14acae22b48dacf299ef470fb)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108179
Reviewed-by: Ming Hua 
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index a4701019c938..021e9e4c8856 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -122,9 +122,10 @@ AboutDialog::AboutDialog(weld::Window *pParent)
   localizeWebserviceURI(sURL);
   m_pWebsiteButton->set_uri(sURL);
 
+  // See also SID_WHATSNEW in sfx2/source/appl/appserv.cxx
   sURL = officecfg::Office::Common::Menus::ReleaseNotesURL::get() +
  "?LOvers=" + utl::ConfigManager::getProductVersion() + "=" +
- LanguageTag(utl::ConfigManager::getUILocale()).getLanguage();
+ LanguageTag(utl::ConfigManager::getUILocale()).getBcp47();
   m_pReleaseNotesButton->set_uri(sURL);
 
   // Handler
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 138881] [CALC][Comments]When copying worksheets, cell comments are duplicated

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138881

Martin Srdoš  changed:

   What|Removed |Added

   Keywords||preBibisect

-- 
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 138396] Overlapping conditional formats offered by option but not implemented

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138396

--- Comment #5 from Jim Avera  ---
My apologies!   I don't know what happened, I must have attached the wrong
file.

Please try the revised spreadsheet.  

Select A1, then do Format->Conditional->Condition

and the question dialog will appear ("Do you want to edit the existing
conditional format?").

Answer "no" (meaning you want to define a new overlapping conditional format,
as suggested in the dialog).  The window closes with no other action.

-- 
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 138396] Overlapping conditional formats offered by option but not implemented

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138396

Jim Avera  changed:

   What|Removed |Added

 Attachment #167457|0   |1
is obsolete||

--- Comment #4 from Jim Avera  ---
Created attachment 168505
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168505=edit
Revised demo spreadsheet (follow instructions using cell A1)

-- 
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 138870] Track Changes toolbar reappears after Save

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138870

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 138858] Capital letters removed from graph legend EDITING

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138858

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 138674] New Epson Printer not working with Big Sur OS

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138674

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 138863] Superordinate object of cells should be sheet, not page

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138863

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 138860] Writer bug. When I take with the mouse a field from a database to include it in a writter document it doesn't work, unless you take it really fast

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138860

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 138396] Overlapping conditional formats offered by option but not implemented

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138396

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 138859] Issue reading RTF docs.

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138859

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 138862] Calc sheet cells keep direction despite sheet direction switch

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138862

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 138855] Draw crashes if I use ALT+TAB to switch between two draw windows while the cursor focus is in a text box

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138855

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 138842] UI: Counter-intuitive "Default" context menu item for comments

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138842

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 138853] "Save remote..." tries to overwrite first file in directory

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138853

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 128391] Mouse pointer changed ...

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128391

--- Comment #5 from QA Administrators  ---
Dear Kai Zimmermann,

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-bugs] [Bug 133464] use of getSheets() in macro throws error

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133464

--- Comment #3 from QA Administrators  ---
Dear Henry Hall,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 128391] Mouse pointer changed ...

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128391

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 130361] Copy Paste causes Crashes

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130361

--- Comment #6 from QA Administrators  ---
Dear Joe Abraham,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 133330] FILESAVE

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=10

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 132669] Background-graphic/-colour disappears when I move a text box

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132669

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 133021] Formatting: Header Formatting for Left and Right Page headers do not function properly in writer for large documents

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133021

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 46950] Hebrew: Spell-checking breaks Hebrew words at intra-word single and double quotes

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46950

--- Comment #16 from QA Administrators  ---
Dear Nadav Har'El,

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 74217] FORMATTING: Chart results change after 'copy and paste' to any other LibO or MS Office applications

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=74217

--- Comment #12 from QA Administrators  ---
Dear Diego Roncoroni,

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 75567] Copying blocks from draw to writer put legend anchor in a wrong position.

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75567

--- Comment #17 from QA Administrators  ---
Dear Marco Ciampa,

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 38631] Writer IMPORT/EXPORT to doc: extra spacing gets added to an embedded table

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38631

--- Comment #16 from QA Administrators  ---
Dear Rad C.,

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 121032] Fontwork is insert behind shape instead of on top

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121032

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

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 121071] FORMATTING - Double Table Borders When Copied from Calc and Pasted in Gmail

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121071

--- Comment #3 from QA Administrators  ---
Dear James A,

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 37926] FILEOPEN FORMATTING On importing a Hebrew Word .doc file, text after page break not visible

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37926

--- Comment #17 from QA Administrators  ---
Dear Christopher M. Penalver,

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 122319] List boxes set to "input required" shouldn't offer NULL for input

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122319

--- Comment #3 from QA Administrators  ---
Dear Robert Großkopf,

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 120738] Unresponsive .odt document when switching to webview & high CPU usage, also dump VCRUNTIME140!FindMITargetTypeInstance

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120738

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

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 120688] Formula Editor cannot handle prefix of namespace

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120688

--- Comment #4 from QA Administrators  ---
Dear Regina Henschel,

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 120680] Menu entries for shapes should be disabled in protected mode

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120680

--- Comment #2 from QA Administrators  ---
Dear Xisco Faulí,

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 120531] A table gets pasted on the next line, even when paragraph is empty

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120531

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

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 120530] Table border isn't redrawn until some movement

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120530

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

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 120510] It takes 4 times longer to fully process a ODT compared to same DOC content

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120510

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

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 120416] Writer: Copy paste TABLE as Paste special - RTF changes border width from 0, 05 to 0, 75

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120416

--- Comment #5 from QA Administrators  ---
Dear Timur,

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 120352] Calc stopped prompting to link to external data after loading specific web page (see end of comment 2)

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120352

--- Comment #11 from QA Administrators  ---
Dear stefano.curiotto,

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 120348] Copy-paste of line chart to another spreadsheet results in data loss if the data-range of the chart contains cells that have value ERR:502

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120348

--- Comment #4 from QA Administrators  ---
Dear Tuomas J,

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 118896] FILEOPEN: RTF wrong font size for Hebrew Text

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118896

--- Comment #9 from QA Administrators  ---
Dear Michael Vlasenko,

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 118668] FILEOPEN: Librecalc doesn't show all sheets in XLSX modified with exceljs

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118668

--- Comment #13 from QA Administrators  ---
Dear Ilya Zubakin,

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 114656] Hebrew characters placed at excessive spaces when having certain Hebrew punctuation

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114656

--- Comment #8 from QA Administrators  ---
Dear Maxim Iorsh,

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 114619] Updating an inserted section does reset all page layouts

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114619

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

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 114432] Tangut character aligned incorrectly in vertical layout

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114432

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

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 107671] calc/writer finalized configuration items editable in UI

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107671

--- Comment #9 from QA Administrators  ---
Dear Oliver Brinzing,

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 139248] No control handles on text box

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139248

V Stuart Foote  changed:

   What|Removed |Added

 Status|REOPENED|UNCONFIRMED
 Ever confirmed|1   |0

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

-- 
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 103512] [META] AutoFilter-related bugs and enhancements

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103512
Bug 103512 depends on bug 116675, which changed state.

Bug 116675 Summary: Autofilter: Clicking on item name does not select the item 
like in Excel
https://bugs.documentfoundation.org/show_bug.cgi?id=116675

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

-- 
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 139250] A document containing picture with a caption cannot be openned by MS Word.

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139250

Frank Rowe  changed:

   What|Removed |Added

Summary|A document contained|A document containing
   |picture with caption cannot |picture with a caption
   |open by MS Word.|cannot be openned by MS
   ||Word.

-- 
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 107733] [META] Hyperlink bugs and enhancements

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107733
Bug 107733 depends on bug 138545, which changed state.

Bug 138545 Summary: Mouse Pointer view does not change to "Click Link" ("Hand") 
when hovering over hyperlink
https://bugs.documentfoundation.org/show_bug.cgi?id=138545

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
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 138545] Mouse Pointer view does not change to "Click Link" ("Hand") when hovering over hyperlink

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138545

Jim Raykowski  changed:

   What|Removed |Added

 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |rayk...@gmail.com
   |desktop.org |
 Status|NEW |RESOLVED

-- 
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 139248] No control handles on text box

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139248

Menoo  changed:

   What|Removed |Added

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

--- Comment #3 from Menoo  ---
My wording is a bit better since it shows intent more accurately.  The
duplicate item doesn't read like a bug, which it is.  It's unusable the way it
is.

-- 
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 103512] [META] AutoFilter-related bugs and enhancements

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103512
Bug 103512 depends on bug 116675, which changed state.

Bug 116675 Summary: Autofilter: Clicking on item name does not select the item 
like in Excel
https://bugs.documentfoundation.org/show_bug.cgi?id=116675

   What|Removed |Added

 Status|VERIFIED|REOPENED
 Resolution|FIXED   |---

-- 
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 138544] FORMATTING: FILESAVE: Writer compatibility setting doesn't save properly and keeps resetting unwanted option to be used

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138544

--- Comment #10 from Ernest Bywater  ---
(In reply to Justin L from comment #9)
> (In reply to Ernest Bywater from comment #8)
> > Please insert a Primal Scream of your choice here.
> The default to "on" when user settings are not loaded with the document has
> been true since at least 5.2.
> 
> I am getting very confused by looking at this. mbUseVirtualDevice seems to
> be the opposite of UsePtrMetrics (which defaults to false) - and yet
> UseVirtualDevice seems to be the variable tied to "Use printer metrics for
> document formatting".

If it confuses you who can look at such things, just imagine how it confuses us
poor users who can't get that deep into the code.

I don't know when the code change occurred, I can only comment on what I
observe of when it affected me and what I learn by checking things out. I only
noticed the issue after I had to reload my OS due to a change of motherboard,
and when I loaded LO 7 I had to rebuild all of my personal settings. It is
possible that one of the settings changed from the default ones when I reloaded
the software was done different his time, but I don't know for sure.

Why the 2 settings mentioned in 19 Dec 2020 post are interacting the way they
are is beyond me. It is something I suggest the developers try to work out as
it may have other unexpected effects elsewhere that haven't yet been noticed or
reported. I have found a way to get around the problem that concerned me, as I
noted in that post, so I'm happy to be able to get on with my story writing and
leave the head scratching to more knowledgeable persons like yourself.

-- 
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 111725] Gradient transparency settings has no effect on slide background

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111725

Gerald Pfeifer  changed:

   What|Removed |Added

 CC||ger...@pfeifer.com

--- Comment #4 from Gerald Pfeifer  ---
This is still present in LibreOffice Version: 7.2.0.0.alpha0+ as of
2020-12-15:

Build ID: 86707f3595c282f80b5e09558a23b539446daca2
CPU threads: 8; OS: Linux 5.9; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-12-25_15:39:31

-- 
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 139233] macOS : no (not-ugly) way to set global config

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139233

--- Comment #2 from Tor Lillqvist  ---
Well, adding or editing files inside the app bundle is definitely wrong. If
that works, it means that the OS apparently doesn't check the integrity of an
app bundle as well as it should. I would expect and hope that doing
modifications inside the app bundle would break its digital signature.

Anyway, I am not sure why this would be a macOS-only enhancement request. Can
the required functionality not be achieved on other platforms either by just
editing files in the user profile? Ah, but I see, is the problem, that you want
to do it for all users, perhaps for once who haven't necessarily even run
LibreOffice yet on a machine, not just yourself? It is quite possible that
there is no sane way to do that on any platform. (Where with "sane" I mean
having some place outside the app installation ("app bundle" on macOS) for such
modifications.)

-- 
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 135516] Image in Calc sheet partly rendered (MacOS)

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135516

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 Ever confirmed|0   |1
 CC||79045_79...@mail.ru
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Telesto, that file has no any images. Can you say more detail what's wrong?

-- 
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 138234] No visible cursor in document/table deleting/adding table rows with floating table toolbar under MacOS

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138234

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|
 Blocks||116143
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||79045_79...@mail.ru

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
confirm in

Version: 7.2.0.0.alpha0+
Build ID: 4e63ec27b69fa01ff610c894c9fbf05c377a6179
CPU threads: 4; OS: Mac OS X 10.16; UI render: default; VCL: osx
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
Calc: threaded


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=116143
[Bug 116143] [META] Text cursor (caret) 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 116143] [META] Text cursor (caret) bugs

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116143

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||138234


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138234
[Bug 138234] No visible cursor in document/table deleting/adding table rows
with floating table toolbar under MacOS
-- 
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 108800] [META] Print related issues

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108800

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||138674


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138674
[Bug 138674] New Epson Printer not working with Big Sur OS
-- 
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 138674] New Epson Printer not working with Big Sur OS

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138674

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||79045_79...@mail.ru
 Status|UNCONFIRMED |NEEDINFO
 Blocks||108800
 Ever confirmed|0   |1

--- Comment #4 from Roman Kuznetsov <79045_79...@mail.ru> ---
Can you print correctly from other software on your mac?


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 139073] Spreadsheet crashes when trying to save as .uos format (macOS only)

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139073

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||79045_79...@mail.ru
Summary|Spreadsheet crashes when|Spreadsheet crashes when
   |trying to save as .uos  |trying to save as .uos
   |format (macOS only?)|format (macOS only)
   Severity|normal  |major
 Status|UNCONFIRMED |NEW
   Priority|medium  |high

--- Comment #14 from Roman Kuznetsov <79045_79...@mail.ru> ---
I confirm a crach in macOS:

Version: 7.2.0.0.alpha0+
Build ID: 4e63ec27b69fa01ff610c894c9fbf05c377a6179
CPU threads: 4; OS: Mac OS X 10.16; UI render: default; VCL: osx
Locale: ru-RU (ru_RU.UTF-8); UI: 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 138879] Last paragraph of inserted text from ODT file does not retain paragraph style.

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138879

Georgy  changed:

   What|Removed |Added

  Component|Writer  |filters and storage

-- 
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 139175] Import from Apple Pages

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139175

--- Comment #8 from Roman Kuznetsov <79045_79...@mail.ru> ---
I have Pages version 8.1 (6369) here

-- 
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 57351] Calc: "Insert columns" is not available in the context menu if an autofilter to hide rows is applied

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=57351

--- Comment #27 from rpr...@gmail.com ---
I can confirm this on 7.0.3.1 (x64) win10.

-- 
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 124107] [META] Problem with Apple iWork Office Suite files

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124107

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||139175


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=139175
[Bug 139175] Import from Apple Pages
-- 
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 139175] Import from Apple Pages

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139175

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||124107
 Ever confirmed|0   |1
 CC||79045_79...@mail.ru
 Status|UNCONFIRMED |NEW

--- Comment #7 from Roman Kuznetsov <79045_79...@mail.ru> ---
I confirm in

Version: 7.2.0.0.alpha0+
Build ID: 4e63ec27b69fa01ff610c894c9fbf05c377a6179
CPU threads: 4; OS: Mac OS X 10.16; UI render: default; VCL: osx
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
Calc: threaded

try open Pages file from attach in LO, you'll get an empty Writer document
instead a table with some text

Unfortunately I can't check it in older LO versions here


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124107
[Bug 124107] [META] Problem with Apple iWork Office Suite files
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 139175] Import from Apple Pages

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139175

--- Comment #6 from Roman Kuznetsov <79045_79...@mail.ru> ---
Created attachment 168504
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168504=edit
Pages 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 139233] macOS : no (not-ugly) way to set global config

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139233

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||79045_79...@mail.ru,
   ||t...@iki.fi

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Tor, what do you think about 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-bugs] [Bug 112889] [META] Screen flickering when hovering on items or selecting text with default rendering

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112889

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||139245


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=139245
[Bug 139245] Calc: Tooltip for color selection in Format Cells… > Border
flickering
-- 
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 139245] Calc: Tooltip for color selection in Format Cells… > Border flickering

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139245

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||79045_79...@mail.ru
 Blocks||112889

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
confirm in

Version: 7.2.0.0.alpha0+
Build ID: 4e63ec27b69fa01ff610c894c9fbf05c377a6179
CPU threads: 4; OS: Mac OS X 10.16; UI render: default; VCL: osx
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
Calc: threaded


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112889
[Bug 112889] [META] Screen flickering when hovering on items or selecting text
with default rendering
-- 
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 139251] New: Black text shadow not rendered correctly in exported gif and png files.

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139251

Bug ID: 139251
   Summary: Black text shadow not rendered correctly in exported
gif and  png files.
   Product: LibreOffice
   Version: 7.0.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: treehaven2...@hotmail.com

Description:
Black shadow from white text on a blue background is rendered as light grey rgb
206,206,206 (Hex CECECE) when the page is exported as as gif file, and as a
transparent area when the page is exported as as png file. Thw same page
exported jpg file is correctly rendered. 

Checked this was not problem with the program used to examine the files by
opening them again with a different program.

Steps to Reproduce:
1.Open a new Draw document.
2.Create a text box with blue area and white text (Big text makes the problem
easier to see. I used 44pt but even bigger would be good.)
3. Toggle text shadow on while the text box is selected.
4. Export the page as a gif file.
5. Export the page as a png file.
6. Export the page as a jpg file.

6. Examine the exported files with any graphics display program. (I used
paint.net.)




Actual Results:
The black text shadow is correctly rendered in the display.
The gif file will have text shadows in light grey.
The png file will have text shadows which are transparent
The jpg file will have black text shadows. (Correct)

Expected Results:
Exported gif and png files should have had shadows rendered as black, like the
exported jpg file.


Reproducible: Always


User Profile Reset: No



Additional Info:
Tried the same test on my wife's windows laptop which is running LibreOffice
6.3.5.2 and it rendered an exported gif file correctly with black shadows. But
an exported png file had transparerent shadows, as described above.

Tried exporting to pdf and to svg (From 7.0.0.3). Both rendered the shadows
correctly as black.

-- 
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 108827] [META] Calc functions bugs and enhancements

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||138388


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138388
[Bug 138388] Calc functions ODDFPRICE and ODDFYIELD do not appear to work
correctly
-- 
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 138388] Calc functions ODDFPRICE and ODDFYIELD do not appear to work correctly

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138388

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108827


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 108827] [META] Calc functions bugs and enhancements

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||138393


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138393
[Bug 138393] Calc automatically evaluates arguments of if() function
-- 
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 138393] Calc automatically evaluates arguments of if() function

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138393

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||108827


Referenced Bugs:

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


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

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87351

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||138478


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138478
[Bug 138478] CALC: Dynamic conditional colour formatting in autofiltered arrays
-- 
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 138478] CALC: Dynamic conditional colour formatting in autofiltered arrays

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138478

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

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


Referenced Bugs:

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


[Libreoffice-ux-advise] [Bug 138478] CALC: Dynamic conditional colour formatting in autofiltered arrays

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138478

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=87351
[Bug 87351] [META] Conditional formatting bugs and enhancements
-- 
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-commits] core.git: slideshow/source

2020-12-26 Thread Gülşah Köse (via logerrit)
 slideshow/source/engine/effectrewinder.cxx |   16 
 slideshow/source/engine/effectrewinder.hxx |7 +++
 slideshow/source/engine/slideshowimpl.cxx  |1 +
 3 files changed, 24 insertions(+)

New commits:
commit a63caf49958b40e33e0d7aaedbe6424f78ecdc46
Author: Gülşah Köse 
AuthorDate: Fri Dec 25 14:08:32 2020 +0300
Commit: Gülşah Köse 
CommitDate: Sat Dec 26 23:11:36 2020 +0100

tdf#134133 Check when the eventqueue needs to be emptied.

To fix tdf#131254, forceEmpty call removed without a control.
Bug was related advance time setting. Now we control if slide has
advance time setting.

Change-Id: Ie83f4d7ff3e4bd0a744ca205173d747204918b39
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108282
Tested-by: Jenkins
Reviewed-by: Gülşah Köse 

diff --git a/slideshow/source/engine/effectrewinder.cxx 
b/slideshow/source/engine/effectrewinder.cxx
index 5a784a7fe7d0..7b4042ba2471 100644
--- a/slideshow/source/engine/effectrewinder.cxx
+++ b/slideshow/source/engine/effectrewinder.cxx
@@ -28,6 +28,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -82,6 +83,7 @@ EffectRewinder::EffectRewinder (
   mnMainSequenceEffectCount(0),
   mpAsynchronousRewindEvent(),
   mxCurrentAnimationRootNode(),
+  mxCurrentSlide(),
   mbNonUserTriggeredMainSequenceEffectSeen(false)
 {
 initialize();
@@ -154,6 +156,11 @@ void EffectRewinder::setRootAnimationNode (
 mxCurrentAnimationRootNode = xRootNode;
 }
 
+void EffectRewinder::setCurrentSlide (
+const uno::Reference& xSlide)
+{
+mxCurrentSlide = xSlide;
+}
 
 bool EffectRewinder::rewind (
 const ::std::shared_ptr& rpPaintLock,
@@ -410,6 +417,15 @@ void EffectRewinder::asynchronousRewind (
 // when the slide is shown.
 mbNonUserTriggeredMainSequenceEffectSeen = false;
 
+uno::Reference< beans::XPropertySet > xPropSet( mxCurrentSlide, 
uno::UNO_QUERY );
+sal_Int32 nChange(0);
+
+if( xPropSet.is())
+getPropertyValue( nChange, xPropSet, "Change");
+
+if (!nChange)
+mrEventQueue.forceEmpty();
+
 if (mbNonUserTriggeredMainSequenceEffectSeen)
 {
 mrUserEventQueue.callSkipEffectEventHandler();
diff --git a/slideshow/source/engine/effectrewinder.hxx 
b/slideshow/source/engine/effectrewinder.hxx
index 69891172e3c9..4844991b8333 100644
--- a/slideshow/source/engine/effectrewinder.hxx
+++ b/slideshow/source/engine/effectrewinder.hxx
@@ -25,6 +25,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 #include 
@@ -66,6 +67,11 @@ public:
 void setRootAnimationNode (
 const css::uno::Reference& xRootNode);
 
+/** Store the XDrawPage to reach specific slide properties.
+*/
+void setCurrentSlide (
+const css::uno::Reference& xSlide);
+
 /** Rewind one effect of the main effect sequence.  When the current
 slide has not effects or no main sequence effect has yet been played
 then switch to the previous slide and replay all of its main
@@ -119,6 +125,7 @@ private:
 EventSharedPtr mpAsynchronousRewindEvent;
 
 css::uno::Reference 
mxCurrentAnimationRootNode;
+css::uno::Reference mxCurrentSlide;
 ::std::shared_ptr mpPaintLock;
 
 bool mbNonUserTriggeredMainSequenceEffectSeen;
diff --git a/slideshow/source/engine/slideshowimpl.cxx 
b/slideshow/source/engine/slideshowimpl.cxx
index 3bfee3cb88ba..5647170f9c4d 100644
--- a/slideshow/source/engine/slideshowimpl.cxx
+++ b/slideshow/source/engine/slideshowimpl.cxx
@@ -1059,6 +1059,7 @@ void SlideShowImpl::displaySlide(
 return;
 
 maEffectRewinder.setRootAnimationNode(xRootNode);
+maEffectRewinder.setCurrentSlide(xSlide);
 
 // precondition: must only be called from the main thread!
 DBG_TESTSOLARMUTEX();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: icon-themes/elementary icon-themes/elementary_svg

2020-12-26 Thread Rizal Muttaqin (via logerrit)
 icon-themes/elementary/chart2/res/dataeditor_icon05.png |binary
 icon-themes/elementary/chart2/res/dataeditor_icon06.png |binary
 icon-themes/elementary/chart2/res/dataeditor_icon07.png |binary
 icon-themes/elementary/chart2/res/dataeditor_icon08.png |binary
 icon-themes/elementary/chart2/res/dataeditor_icon09.png |binary
 icon-themes/elementary/cmd/32/accepttrackedchangetonext.png |binary
 icon-themes/elementary/cmd/32/decrementindent.png   |binary
 icon-themes/elementary/cmd/32/firstpage.png |binary
 icon-themes/elementary/cmd/32/grow.png  |binary
 icon-themes/elementary/cmd/32/hangingindent.png |binary
 icon-themes/elementary/cmd/32/incrementindent.png   |binary
 icon-themes/elementary/cmd/32/ko/grow.png   |binary
 icon-themes/elementary/cmd/32/ko/shrink.png |binary
 icon-themes/elementary/cmd/32/lastpage.png  |binary
 icon-themes/elementary/cmd/32/nextannotation.png|binary
 icon-themes/elementary/cmd/32/nextpage.png  |binary
 icon-themes/elementary/cmd/32/nexttrackedchange.png |binary
 icon-themes/elementary/cmd/32/paralefttoright.png   |binary
 icon-themes/elementary/cmd/32/pararighttoleft.png   |binary
 icon-themes/elementary/cmd/32/paraspacedecrease.png |binary
 icon-themes/elementary/cmd/32/paraspaceincrease.png |binary
 icon-themes/elementary/cmd/32/previousannotation.png|binary
 icon-themes/elementary/cmd/32/previouspage.png  |binary
 icon-themes/elementary/cmd/32/previoustrackedchange.png |binary
 icon-themes/elementary/cmd/32/rejecttrackedchangetonext.png |binary
 icon-themes/elementary/cmd/32/shrink.png|binary
 icon-themes/elementary/cmd/ko/lc_grow.png   |binary
 icon-themes/elementary/cmd/ko/lc_shrink.png |binary
 icon-themes/elementary/cmd/ko/sc_grow.png   |binary
 icon-themes/elementary/cmd/ko/sc_shrink.png |binary
 icon-themes/elementary/cmd/lc_accepttrackedchangetonext.png |binary
 icon-themes/elementary/cmd/lc_decrementindent.png   |binary
 icon-themes/elementary/cmd/lc_firstpage.png |binary
 icon-themes/elementary/cmd/lc_grow.png  |binary
 icon-themes/elementary/cmd/lc_hangingindent.png |binary
 icon-themes/elementary/cmd/lc_incrementindent.png   |binary
 icon-themes/elementary/cmd/lc_lastpage.png  |binary
 icon-themes/elementary/cmd/lc_nextannotation.png|binary
 icon-themes/elementary/cmd/lc_nextpage.png  |binary
 icon-themes/elementary/cmd/lc_nexttrackedchange.png |binary
 icon-themes/elementary/cmd/lc_paralefttoright.png   |binary
 icon-themes/elementary/cmd/lc_pararighttoleft.png   |binary
 icon-themes/elementary/cmd/lc_paraspacedecrease.png |binary
 icon-themes/elementary/cmd/lc_paraspaceincrease.png |binary
 icon-themes/elementary/cmd/lc_previousannotation.png|binary
 icon-themes/elementary/cmd/lc_previouspage.png  |binary
 icon-themes/elementary/cmd/lc_previoustrackedchange.png |binary
 icon-themes/elementary/cmd/lc_rejecttrackedchangetonext.png |binary
 icon-themes/elementary/cmd/lc_shrink.png|binary
 icon-themes/elementary/cmd/sc_accepttrackedchangetonext.png |binary
 icon-themes/elementary/cmd/sc_controlcodes.png  |binary
 icon-themes/elementary/cmd/sc_decrementindent.png   |binary
 icon-themes/elementary/cmd/sc_firstpage.png |binary
 icon-themes/elementary/cmd/sc_grow.png  |binary
 icon-themes/elementary/cmd/sc_hangingindent.png |binary
 icon-themes/elementary/cmd/sc_incrementindent.png   |binary
 icon-themes/elementary/cmd/sc_lastpage.png  |binary
 icon-themes/elementary/cmd/sc_nextannotation.png|binary
 icon-themes/elementary/cmd/sc_nextpage.png  |binary
 icon-themes/elementary/cmd/sc_nexttrackedchange.png |binary
 icon-themes/elementary/cmd/sc_paralefttoright.png   |binary
 icon-themes/elementary/cmd/sc_pararighttoleft.png   |binary
 icon-themes/elementary/cmd/sc_paraspacedecrease.png |binary
 icon-themes/elementary/cmd/sc_paraspaceincrease.png |binary
 icon-themes/elementary/cmd/sc_previousannotation.png|binary
 icon-themes/elementary/cmd/sc_previouspage.png  |binary
 icon-themes/elementary/cmd/sc_previoustrackedchange.png |binary
 icon-themes/elementary/cmd/sc_rejecttrackedchangetonext.png |binary
 

[Libreoffice-bugs] [Bug 138396] Overlapping conditional formats offered by option but not implemented

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138396

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||79045_79...@mail.ru

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
first - there is no Sheet2 in your attached file
second - i can't confirm your "problem" from scratch, because I don't see that
window with question that will ask "Do you want to edit the existing
conditional format?" =(

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


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

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87351

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||137203


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=137203
[Bug 137203] Conditional Formats corrupted by save/exit/reload
-- 
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 137203] Conditional Formats corrupted by save/exit/reload

2020-12-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137203

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||87351


Referenced Bugs:

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


  1   2   >