[Bug 159157] FILEOPEN DOCX: image offset in opposite direction of TEXT_LINE what vertical offset specifies

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159157

--- Comment #3 from Commit Notification 
 ---
Justin Luth committed a patch related to this issue.
It has been pushed to "libreoffice-24-2":

https://git.libreoffice.org/core/commit/8132f0eb48d1b1601b690c43bcd4991c86dd1217

tdf#139915 tdf#159157 writerfilter: fix image position with TEXT_LINE

It will be available in 24.2.1.

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.

[Bug 159157] FILEOPEN DOCX: image offset in opposite direction of TEXT_LINE what vertical offset specifies

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159157

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:24.8.0   |target:24.8.0 target:24.2.1

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

core.git: Branch 'libreoffice-24-2' - sw/qa writerfilter/source

2024-01-14 Thread Justin Luth (via logerrit)
 sw/qa/extras/ooxmlexport/ooxmlexport8.cxx |6 ++
 writerfilter/source/dmapper/GraphicImport.cxx |7 +++
 2 files changed, 9 insertions(+), 4 deletions(-)

New commits:
commit 8132f0eb48d1b1601b690c43bcd4991c86dd1217
Author: Justin Luth 
AuthorDate: Fri Jan 12 16:17:03 2024 -0500
Commit: Miklos Vajna 
CommitDate: Mon Jan 15 08:51:39 2024 +0100

tdf#139915 tdf#159157 writerfilter: fix image position with TEXT_LINE

This is an IMAGE followup to vmiklos' shape/textbox fix in
LO 7.2 commit 2f21e4f357ec60450df84ddd858c3cf0a4711b02

Images follow a different code path, but needed the same treatment.

Change-Id: I974944c7fbb4e0fa6aa52ac239c6a16ec7f927e6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161986
Tested-by: Jenkins
Reviewed-by: Justin Luth 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161988

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
index 2463534dd8ba..0ea69e698807 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
@@ -174,10 +174,8 @@ after they are loaded.
 CPPUNIT_ASSERT_EQUAL( OUString( "Red" ), descr2 );
 CPPUNIT_ASSERT_EQUAL( OUString( "Green" ), descr3 );
 
-//FIXME: MS Word shows the image below the line of text, not above it.
-// tdf#139915 This was 826, but it should be -826
-if (isExported())
-CPPUNIT_ASSERT_EQUAL(sal_Int32(-826), getProperty(image1, 
"VertOrientPosition"));
+// tdf#139915/tdf#159157 This was 826, but it should be -826
+CPPUNIT_ASSERT_EQUAL(sal_Int32(-826), getProperty(image1, 
"VertOrientPosition"));
 sal_Int16 nExpected = text::RelOrientation::TEXT_LINE;
 CPPUNIT_ASSERT_EQUAL(nExpected, getProperty(image1, 
"VertOrientRelation"));
 
diff --git a/writerfilter/source/dmapper/GraphicImport.cxx 
b/writerfilter/source/dmapper/GraphicImport.cxx
index 63330c477cbd..eebd1b822897 100644
--- a/writerfilter/source/dmapper/GraphicImport.cxx
+++ b/writerfilter/source/dmapper/GraphicImport.cxx
@@ -1850,6 +1850,13 @@ uno::Reference 
GraphicImport::createGraphicObject(uno::Refer
 m_pImpl->m_nLeftPosition = 0;
 }
 
+if (m_pImpl->m_nVertRelation == 
text::RelOrientation::TEXT_LINE)
+{
+// Word's "line" is "below the bottom of the line", our 
TEXT_LINE is
+// "towards top, from the bottom of the line", so invert 
the vertical position.
+m_pImpl->m_nTopPosition *= -1;
+}
+
 m_pImpl->applyPosition(xGraphicObjectProperties);
 m_pImpl->applyRelativePosition(xGraphicObjectProperties);
 if( !m_pImpl->m_bOpaque )


core.git: Branch 'libreoffice-24-2' - sw/qa sw/source

2024-01-14 Thread Justin Luth (via logerrit)
 sw/qa/extras/ooxmlexport/ooxmlexport19.cxx |1 +
 sw/qa/extras/ooxmlexport/ooxmlexport8.cxx  |8 
 sw/source/filter/ww8/docxsdrexport.cxx |5 +
 3 files changed, 14 insertions(+)

New commits:
commit 54ad2fd256224804181050f60c0668aa24cc82f7
Author: Justin Luth 
AuthorDate: Fri Jan 12 09:34:51 2024 -0500
Commit: Miklos Vajna 
CommitDate: Mon Jan 15 08:51:12 2024 +0100

tdf#139915 DOCX export: fix anchored obj position with TEXT_LINE

The position of objects was waffling back and forth
between "above" or "below" every round-trip.
For example, the unit test was alternating between 410 and 3951.

make CppunitTest_sw_ooxmlexport19 CPPUNIT_TEST_NAME=testTdf97371

This is an export followup to vmiklos' import fix in
LO 7.2 commit 2f21e4f357ec60450df84ddd858c3cf0a4711b02

I noticed that import still does not correctly position images:
make CppunitTest_sw_ooxmlexport8 CPPUNIT_TEST_NAME=testN747461
so I created tdf#159157 and tdf#159158 as follow-up bugs for that.

Change-Id: I29864d53f3b5e2fc9830793275f17a11eac0516f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161985
Tested-by: Jenkins
Reviewed-by: Justin Luth 
(cherry picked from commit c45bf5f4ae858d5d0532ee9b58fcbf23e94e2d75)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161996
Tested-by: Justin Luth 

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport19.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport19.cxx
index 0c1d1a25fb35..d6193305e96c 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport19.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport19.cxx
@@ -609,6 +609,7 @@ DECLARE_OOXMLEXPORT_TEST(testTdf97371, "tdf97371.docx")
 tools::Long nDiff = std::abs(pShape->GetSnapRect().Top() - 
pTextBox->GetSnapRect().Top());
 // The top of the two shapes were 410 and 3951, now it should be 3950 and 
3951.
 CPPUNIT_ASSERT(nDiff < 10);
+CPPUNIT_ASSERT_DOUBLES_EQUAL(tools::Long(3900), 
pShape->GetSnapRect().Top(), 100);
 }
 
 CPPUNIT_TEST_FIXTURE(Test, testTdf99140)
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
index 10fd87ebec2c..2463534dd8ba 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport8.cxx
@@ -173,6 +173,14 @@ after they are loaded.
 CPPUNIT_ASSERT_EQUAL( OUString( "Black" ), descr1 );
 CPPUNIT_ASSERT_EQUAL( OUString( "Red" ), descr2 );
 CPPUNIT_ASSERT_EQUAL( OUString( "Green" ), descr3 );
+
+//FIXME: MS Word shows the image below the line of text, not above it.
+// tdf#139915 This was 826, but it should be -826
+if (isExported())
+CPPUNIT_ASSERT_EQUAL(sal_Int32(-826), getProperty(image1, 
"VertOrientPosition"));
+sal_Int16 nExpected = text::RelOrientation::TEXT_LINE;
+CPPUNIT_ASSERT_EQUAL(nExpected, getProperty(image1, 
"VertOrientRelation"));
+
 }
 
 DECLARE_OOXMLEXPORT_TEST(testN750255, "n750255.docx")
diff --git a/sw/source/filter/ww8/docxsdrexport.cxx 
b/sw/source/filter/ww8/docxsdrexport.cxx
index 0c42d28fc6ad..5c746f6afe6e 100644
--- a/sw/source/filter/ww8/docxsdrexport.cxx
+++ b/sw/source/filter/ww8/docxsdrexport.cxx
@@ -939,6 +939,11 @@ void DocxSdrExport::startDMLAnchorInline(const 
SwFrameFormat* pFrameFormat, cons
 relativeFromV = "paragraph";
 break;
 case text::RelOrientation::TEXT_LINE:
+relativeFromV = "line";
+// Word's "line" is "below the bottom of the line", our 
TEXT_LINE is
+// "towards top, from the bottom of the line", so invert the 
vertical position.
+aPos.Y *= -1;
+break;
 default:
 relativeFromV = "line";
 break;


core.git: .gitignore

2024-01-14 Thread Noel Grandin (via logerrit)
 .gitignore |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit de09bd97f01ff9f27eb2d02dea0ced3f1485e252
Author: Noel Grandin 
AuthorDate: Mon Jan 15 07:54:29 2024 +0200
Commit: Noel Grandin 
CommitDate: Mon Jan 15 08:48:52 2024 +0100

add secmod.db files to .gitignore

sometimes the xml security tests will leave these lying around,
and we don't want them committed

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

diff --git a/.gitignore b/.gitignore
index 2655822709cd..7bd30210ad5a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -196,3 +196,6 @@ gdbtrace.log
 # Android builds
 /android/jniLibs/
 /android/obj/
+
+# xml unit tests sometimes leave these lying around
+**/secmod.db


Re: Crosscompiling LO

2024-01-14 Thread Miklos Vajna
Hi Joachim,

On Sun, Jan 14, 2024 at 05:51:20PM +0100, drei97  wrote:
> Nevertheless, I am wondering if there is documentation about
> crosscompiling. My main system is Ubuntu and I probably need a LO build
> for windows. That's why I am running a VM.

README.cross has some documentation on cross-compiling in general.

For building on Linux for Windows: we tried that in the past (mingw) and
it didn't really work out, see core.git commit
8646ab97dc37c0606b19057686bf3d610f9c15ee (Remove MinGW support,
2017-02-10) for more details.

Regards,

Miklos


core.git: 2 commits - configure.ac external/openssl

2024-01-14 Thread Andras Timar (via logerrit)
 configure.ac|2 +-
 external/openssl/ExternalProject_openssl.mk |4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

New commits:
commit a2fb7ac13e6e1cc27559871f0455342bdcccaa40
Author: Andras Timar 
AuthorDate: Mon May 24 20:15:14 2021 +0200
Commit: Andras Timar 
CommitDate: Mon Jan 15 08:31:52 2024 +0100

FreeBSD: fix OPENSSL_PLATFORM

Change-Id: I0f48d572edaed7e996be7a75d524c7d540a76ecd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162064
Tested-by: Jenkins
Reviewed-by: Andras Timar 

diff --git a/external/openssl/ExternalProject_openssl.mk 
b/external/openssl/ExternalProject_openssl.mk
index d197721d024a..048158700f84 100644
--- a/external/openssl/ExternalProject_openssl.mk
+++ b/external/openssl/ExternalProject_openssl.mk
@@ -26,7 +26,9 @@ OPENSSL_PLATFORM := \
 $(if $(filter GNU/kFreeBSD,$(shell uname)),\
   debian-kfreebsd-amd64\
 ,\
-  $(if $(filter TRUE, $(ENABLE_DBGUTIL)), debug-linux-generic64, 
linux-generic64) no-asm\
+  $(if $(filter FreeBSD,$(shell uname)), BSD-x86_64,\
+$(if $(filter TRUE, $(ENABLE_DBGUTIL)), debug-linux-generic64, 
linux-generic64) no-asm\
+  )\
 )\
   ,\
 $(if $(filter TRUE, $(ENABLE_DBGUTIL)), debug-linux-generic32, 
linux-generic32)\
commit 29df00696393c63be1071357e7d404610dc71ba8
Author: Andras Timar 
AuthorDate: Mon May 24 20:12:36 2021 +0200
Commit: Andras Timar 
CommitDate: Mon Jan 15 08:31:42 2024 +0100

FreeBSD: evaluate --with-gnu-patch

Change-Id: I41e2cc8dc74022c840dac6355ed29cc0c4c40b17
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162063
Tested-by: Jenkins
Reviewed-by: Andras Timar 

diff --git a/configure.ac b/configure.ac
index b8ddf562d6c7..859b404d287a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11656,7 +11656,7 @@ if test -z "$PATCH"; then
 fi
 
 dnl On Solaris or macOS, check if --with-gnu-patch was used
-if test "$_os" = "SunOS" -o "$_os" = "Darwin"; then
+if test "$_os" = "SunOS" -o "$_os" = "Darwin" -o "$_os" = "FreeBSD"; then
 if test -z "$with_gnu_patch"; then
 GNUPATCH=$PATCH
 else


[Bug 159187] New: libreoffice-write cause corrupted memory that mess up your document and my have sec issue

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159187

Bug ID: 159187
   Summary: libreoffice-write cause corrupted memory that mess up
your document and my have sec issue
   Product: LibreOffice
   Version: 7.6.4.1 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: christian.gro...@posteo.de

Description:
(This bug has been also filed on fedoras buglist)

I am trying to write a document with libreoffice-writer, in order to create a
pdf document with embedded hyperlinks, that contains hyperlinks like this:

   file:///document/.../sheet.ods#tabname!E12   

Later, the created document will be saved on a cdrom or usb-stick. The end-user
will open this device and can open PDF and will also be able to use the links,
in order to jump to the target document.

When i put these hyperlinks into a table inside my document, the contents of
the table gets messed up. Part of the cells will be deleted or overwritten with
other crippeld cells. Your document becomes unsusable.


Steps to Reproduce:
1.create a odt docuemnt and insert a table
2.put hyperlinks into a row of cells that use the following format
file:///document/.../sheet.ods#tabname!E12
3.continue to insert hyperlinks and wait a bit to see how your table gets
messed up

Actual Results:
The documente becomes broken.

Expected Results:
I expect a stable office applicaiton!




Reproducible: Always


User Profile Reset: No

Additional Info:
See same ticket on RedHatBuzilla (Fedora) Bug 2258410

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

[Bug 159185] Expert config dialog accepts letters in numeric keys edit fields

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159185

Samuel Mehrbrodt (allotropia)  changed:

   What|Removed |Added

 CC||caolan.mcnamara@collabora.c
   ||om

--- Comment #3 from Samuel Mehrbrodt (allotropia) 
 ---
That's a side effect of converting the widget to a proper number dialog.
The number dialog accepts non-numeric input, probably because one could also
enter units.

Not sure how/if this is fixable.

@Caolan: Any idea here?

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

[Bug 159186] Editing string lists in expert config dialogs does not reload changed value

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159186

Samuel Mehrbrodt (allotropia)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |samuel.mehrbrodt@allotropia
   |desktop.org |.de
 Ever confirmed|0   |1

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

core.git: download.lst external/xmlsec xmlsecurity/Library_xsec_xmlsec.mk

2024-01-14 Thread Miklos Vajna (via logerrit)
 download.lst   |4 ++--
 external/xmlsec/old-nss.patch.1|   20 ++--
 xmlsecurity/Library_xsec_xmlsec.mk |1 +
 3 files changed, 21 insertions(+), 4 deletions(-)

New commits:
commit 8ce222753a43d46e94d351069ce19cc3e2db333c
Author: Miklos Vajna 
AuthorDate: Fri Jan 12 08:30:53 2024 +0100
Commit: Miklos Vajna 
CommitDate: Mon Jan 15 08:09:21 2024 +0100

Update libxmlsec to 1.3.3

Extend external/xmlsec/old-nss.patch.1, our bundled NSS in debug builds
has some assert failure in relatively new xmlsec code, just disable it
for now till it's clarified with upstream how to sort that out properly.

E.g. CppunitTest_filter_svg fails like this:

#1  0x777503e5 in abort () at /lib64/libc.so.6
#2  0x7679ca90 in PR_Assert (s=0x744fbfe5 "oidmechhash 
!= NULL", file=0x744fbfb6 "secoid.c", ln=2140) at 
../../../../pr/src/io/prlog.c:571
#3  0x744eaae0 in SECOID_FindOIDByMechanism (mechanism=307) 
at secoid.c:2140
#4  0x76660c65 in PK11_MechanismToAlgtag (type=307) at 
pk11mech.c:1745
#5  0x7fffe874e4ea in xmlSecNssCryptoCheckMechanism (type=307) 
at crypto.c:68
#6  0x7fffe874ec44 in xmlSecNssUpdateAvailableCryptoTransforms 
(functions=0x7fffe87ffbc0 ) at crypto.c:401
#7  0x7fffe874f13d in xmlSecNssInit () at crypto.c:552
#8  0x7fffe86b2c36 in initXmlSec() () at 
/home/vmiklos/git/libreoffice/core/xmlsecurity/source/xmlsec/xmlsec_init.cxx:42
#9  0x7fffdf3c54f2 in DocumentSignatureManager::init() 
(this=0x7fff3970) at 
/home/vmiklos/git/libreoffice/core/xmlsecurity/source/helper/documentsignaturemanager.cxx:79
#10 0x7fffdf43e3da in (anonymous 
namespace)::DocumentDigitalSignatures::ImplVerifySignatures(com::sun::star::uno::Reference
 const&, com::sun::star::uno::Reference 
const&, DocumentSignatureMode)
 (this=0x1c07ac0, rxStorage=uno::Reference to (OStorage *) 
0x1944e18, xSignStream=empty uno::Reference, 
eMode=DocumentSignatureMode::Macros)
at 
/home/vmiklos/git/libreoffice/core/xmlsecurity/source/component/documentdigitalsignatures.cxx:486
#11 0x7fffdf43da17 in (anonymous 
namespace)::DocumentDigitalSignatures::verifyScriptingContentSignatures(com::sun::star::uno::Reference
 const&, com::sun::star::uno::Reference 
const&) (this=0x1c07ac0, rxStorage=uno::Reference to (OStorage *) 0x1944e18, 
xSignInStream=empty uno::Reference)
at 
/home/vmiklos/git/libreoffice/core/xmlsecurity/source/component/documentdigitalsignatures.cxx:373
#12 0x7fffe6fa06df in 
SfxObjectShell::GetDocumentSignatureInformation(bool, 
com::sun::star::uno::Reference
 const&)
 (this=0x188c280, bScriptingContent=true, xSigner=empty 
uno::Reference) at 
/home/vmiklos/git/libreoffice/core/sfx2/source/doc/objserv.cxx:1847

Change-Id: I36dee0d2b128a6931875572aa4acc9df940ab623
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161951
Tested-by: Jenkins
Reviewed-by: Miklos Vajna 

diff --git a/download.lst b/download.lst
index 8921f425cc67..0b20f2be83d0 100644
--- a/download.lst
+++ b/download.lst
@@ -419,8 +419,8 @@ LIBWEBP_TARBALL := libwebp-1.3.2.tar.gz
 # three static lines
 # so that git cherry-pick
 # will not run into conflicts
-XMLSEC_SHA256SUM := 
4003c56b3d356d21b1db7775318540fad6bfedaf5f117e8f7c010811219be3cf
-XMLSEC_TARBALL := xmlsec1-1.3.2.tar.gz
+XMLSEC_SHA256SUM := 
ab5b9a9ffd6960f46f7466d9d91f174ec37e8c31989237ba6b9eacdd816464f2
+XMLSEC_TARBALL := xmlsec1-1.3.3.tar.gz
 # three static lines
 # so that git cherry-pick
 # will not run into conflicts
diff --git a/external/xmlsec/old-nss.patch.1 b/external/xmlsec/old-nss.patch.1
index b46453586351..19ac8ffe6c5a 100644
--- a/external/xmlsec/old-nss.patch.1
+++ b/external/xmlsec/old-nss.patch.1
@@ -39,18 +39,19 @@ diff --git a/src/nss/crypto.c b/src/nss/crypto.c
 index 429d209f..e0296bda 100644
 --- a/src/nss/crypto.c
 +++ b/src/nss/crypto.c
-@@ -131,9 +131,11 @@ xmlSecCryptoGetFunctions_nss(void) {
+@@ -162,10 +162,12 @@ xmlSecCryptoGetFunctions_nss(void) {
  gXmlSecNssFunctions->transformAes192CbcGetKlass = 
xmlSecNssTransformAes192CbcGetKlass;
  gXmlSecNssFunctions->transformAes256CbcGetKlass = 
xmlSecNssTransformAes256CbcGetKlass;
  
 +#if 0
+ /* gcm */
  gXmlSecNssFunctions->transformAes128GcmGetKlass = 
xmlSecNssTransformAes128GcmGetKlass;
  gXmlSecNssFunctions->transformAes192GcmGetKlass = 
xmlSecNssTransformAes192GcmGetKlass;
  gXmlSecNssFunctions->transformAes256GcmGetKlass = 
xmlSecNssTransformAes256GcmGetKlass;
 +#endif
  
+ /* kw: uses AES ECB */
  gXmlSecNssFunctions->transformKWAes128GetKlass  = 
xmlSecNssTransformKWAes128GetKlass;
- gXmlSecNssFunctions->transformKWAes192GetKlass  = 
xmlSecNssTransformKWAes192GetKlass;
 diff --git 

core.git: cui/source

2024-01-14 Thread Thorsten Behrens (via logerrit)
 cui/source/options/optupdt.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 261f758b650cf1c5c16acdad8f4a2dc86616f9e2
Author: Thorsten Behrens 
AuthorDate: Mon Jan 15 00:29:20 2024 +0100
Commit: Stephan Bergmann 
CommitDate: Mon Jan 15 07:57:24 2024 +0100

Make MAR-based LibreOffice updater non-experimental

Change-Id: I7623e983e14ab7de3948921ca1223488fa2049a2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162067
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/cui/source/options/optupdt.cxx b/cui/source/options/optupdt.cxx
index e3b855b15d1d..2686f8dfb277 100644
--- a/cui/source/options/optupdt.cxx
+++ b/cui/source/options/optupdt.cxx
@@ -507,7 +507,7 @@ bool 
SvxOnlineUpdateTabPage::isTraditionalOnlineUpdateAvailable() {
 
 bool SvxOnlineUpdateTabPage::isMarOnlineUpdateAvailable() {
 #if HAVE_FEATURE_UPDATE_MAR
-return officecfg::Office::Common::Misc::ExperimentalMode::get();
+return true;
 #else
 return false;
 #endif


[Bug 147565] Browsing comments in the navigation pane also browses hidden solved comments

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147565

--- Comment #42 from gamlumurti  ---
The newest anime films are available to stream online on WCOstream, complete
with dubbing and English subtitles. WCOstream offers free online streaming of
the greatest anime. https://wcostream.me/

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

[Bug 159151] The default label for a Table Control in a form is "Table Control 1" with 2 blank spaces

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159151

Adolfo Jayme Barrientos  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

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

[Bug 130699] Assert on undo/redo table captions SwIndexReg::~SwIndexReg(

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130699

--- Comment #7 from Jim Raykowski  ---
(In reply to Tex2002ans from comment #6)
> I DO NOT reproduce in:
> 
> Version: 7.6.4.1 (X86_64) / LibreOffice Community
> Build ID: e19e193f88cd6c0525a17fb7a176ed8e6a3e2aa1
> CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL:
> win
> Locale: en-US (en_US); UI: en-US
> Calc: CL threaded
> 
> I followed the instructions in the ODT (reproduced below).
> 
> After Step 6, nothing happened.
Thanks for testing. I think asserts are only active in debug builds. That is
probably why nothing happened for you.

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

[Bug 126910] CRASH: pasting and undoing a few times

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126910

--- Comment #7 from Tex2002ans  ---
DID NOT reproduce in:

Version: 7.6.4.1 (X86_64) / LibreOffice Community
Build ID: e19e193f88cd6c0525a17fb7a176ed8e6a3e2aa1
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

Followed Comment #5 exactly, and even tried Comment #0 a few times too.

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

[Bug 145374] Crash: swlo!SwNode::FindTableNode

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145374

--- Comment #5 from Tex2002ans  ---
NO CRASH in:

Version: 7.6.4.1 (X86_64) / LibreOffice Community
Build ID: e19e193f88cd6c0525a17fb7a176ed8e6a3e2aa1
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

I followed Comment 0 exactly. Nothing happened after Step 7.

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

[Bug 137869] Crash after undo they modifications made by track & changes (document comparison)

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137869

Tex2002ans  changed:

   What|Removed |Added

Crash report or|["ac96378d-583e-452a-906d-a |["BigPtrArray::Index2Block(
crash signature|fa95049754f"]   |long)"]

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

[Bug 137869] Crash after undo they modifications made by track & changes (document comparison)

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137869

Tex2002ans  changed:

   What|Removed |Added

Crash report or|["https://crashreport.libre |["ac96378d-583e-452a-906d-a
crash signature|office.org/stats/crash_deta |fa95049754f"]
   |ils/ac96378d-583e-452a-906d |
   |-afa95049754f"] |

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

[Bug 137869] Crash after undo they modifications made by track & changes (document comparison)

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137869

Tex2002ans  changed:

   What|Removed |Added

Crash report or|https://crashreport.libreof |["https://crashreport.libre
crash signature|fice.org/stats/crash_detail |office.org/stats/crash_deta
   |s/ac96378d-583e-452a-906d-a |ils/ac96378d-583e-452a-906d
   |fa95049754f |-afa95049754f"]

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

[Bug 137869] Crash after undo they modifications made by track & changes (document comparison)

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137869

Tex2002ans  changed:

   What|Removed |Added

Crash report or||https://crashreport.libreof
crash signature||fice.org/stats/crash_detail
   ||s/ac96378d-583e-452a-906d-a
   ||fa95049754f

--- Comment #15 from Tex2002ans  ---
I followed the exact steps in Comment #9.

I was able to reproduce CRASH:

-
https://crashreport.libreoffice.org/stats/crash_details/ac96378d-583e-452a-906d-afa95049754f

using:

Version: 7.6.4.1 (X86_64) / LibreOffice Community
Build ID: e19e193f88cd6c0525a17fb7a176ed8e6a3e2aa1
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

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

[Bug 133682] Crash in: SwUndoFlyBase::InsFly(sw::UndoRedoContext &,bool)

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133682

--- Comment #5 from Tex2002ans  ---
Created attachment 191940
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191940=edit
GIF showing difference between ODT and DOCX

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

[Bug 133682] Crash in: SwUndoFlyBase::InsFly(sw::UndoRedoContext &,bool)

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133682

--- Comment #4 from Tex2002ans  ---
NO CRASH in:

Version: 7.6.4.1 (X86_64) / LibreOffice Community
Build ID: e19e193f88cd6c0525a17fb7a176ed8e6a3e2aa1
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

I followed steps in Comment 0.

After Step 10, 11, 12 the document looks "fine".

- - -

The only difference I can see is...

After steps:

2. File > Save As > DOCX
   - Word 2010–365 Document
3. File > Reload

then the:

1. ODT has longer rectangle around each image.
--- DOCX has slightly shorter.
2. ODT has a small gap between the 2 rows.
--- DOCX has no gap.

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

[Bug 159182] Feature request: Calc - quicker changing of move selection direction

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159182

--- Comment #4 from Ralpho  ---
Thanks, ady.
The Tab key probably will work better for me, since using the Right arrow key
requires that I move my whole hand about 6 inches (15 cm) from the home
position.  I can use the arrow keys and return to the home position without
looking down at the keyboard because I have friction tape on the F and J keys,
but repeating the movement becomes distracting.  

If I enter numbers via the numeric keypad, it is convenient to use the Enter
key on that keypad.  Using the Tab key instead would be more comfortable than
leaving my left hand on the arrow keys.

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

[Bug 132913] Crash in: swlo.dll

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132913

--- Comment #5 from Tex2002ans  ---
I DO NOT reproduce crash in:

Version: 7.6.4.1 (X86_64) / LibreOffice Community
Build ID: e19e193f88cd6c0525a17fb7a176ed8e6a3e2aa1
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

I followed steps in Comment 0. After Step 6, nothing happened.

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

[Bug 130699] Assert on undo/redo table captions SwIndexReg::~SwIndexReg(

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130699

--- Comment #6 from Tex2002ans  ---
I DO NOT reproduce in:

Version: 7.6.4.1 (X86_64) / LibreOffice Community
Build ID: e19e193f88cd6c0525a17fb7a176ed8e6a3e2aa1
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

I followed the instructions in the ODT (reproduced below).

After Step 6, nothing happened.

- - -

0. Open attachment 157915.

1) Open F5 Navigator
2) Right click on first table, select Insert Caption… and enter a caption
3) Right click on second table, select Insert Caption… and enter a caption
4) Undo Undo Redo Redo
5) Double click on Table1 in Navigator
6) Undo Undo Redo Redo

Result: sw/source/core/bastyp/index.cxx:226: virtual SwIndexReg::~SwIndexReg():
Assertion `!m_pFirst && !m_pLast && "There are still indices registered"'
failed.

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

[Bug 159168] Character style: "No Character Style" won't be shown when "Applied Styles" is chosen.

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159168

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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

[Bug 158943] Feature request: ability to make LO use a specific plasma-colorscheme (Plasma kf5/kf6)

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158943

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 159129] Cross Reference not working in LO 2.6.4 Writer

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159129

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

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

[Bug 158939] share/config themes : a few svg files are simply wrapped around a huge png image

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158939

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 155894] column sum problem left below

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155894

QA Administrators  changed:

   What|Removed |Added

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

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

[Bug 155894] column sum problem left below

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155894

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

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.

[Bug 155892] Bug

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155892

QA Administrators  changed:

   What|Removed |Added

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

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

[Bug 159116] Translation problem in Calc - Portuguese PT

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159116

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

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

[Bug 155892] Bug

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155892

--- Comment #3 from QA Administrators  ---
Dear guibernao-charles,

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.

[Bug 156148] Unattended Windows command line convert (headless) has inconsistant results

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156148

--- Comment #2 from QA Administrators  ---
Dear michael,

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.

[Bug 146553] Can't insert AutoText into "Editable in read-only document" section

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146553

--- Comment #2 from QA Administrators  ---
Dear Gabor Kelemen (allotropia),

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 129653] Adjust table size on iOS

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129653

--- Comment #5 from QA Administrators  ---
Dear Andreas Gruhler,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 129400] X overlined with a bar that in latex is written \bar{x} is not correctly translated from Word

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129400

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 103562] FILESAVE: Hyperlinks in most objects not persist when you export a presentation to PDF

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103562

--- Comment #13 from QA Administrators  ---
Dear Bastián Díaz,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 159182] Feature request: Calc - quicker changing of move selection direction

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159182

--- Comment #3 from ady  ---
If you are introducing data for the first time in an empty cell (as opposed to
introducing a formula), the arrow keys should also work to move to the next
cell (with the direction depending on which arrow key you use).

Arrow keys will also work for moving to the next cell if you are replacing the
entire content of the cell (i.e. not just when the cell is empty).

Arrow keys won't work for moving to the next cell when you are editing cell's
content, whether within the input box in the formula bar or in-cell editing
(double click or F2). That's because the arrow keys in such cell's edit mode
will move the cursor within the same cell, as part of the edition.

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

[Bug 159182] Feature request: Calc - quicker changing of move selection direction

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159182

--- Comment #2 from Ralpho  ---
ady, thanks for your reply.
I had been hoping to use the Enter key for both Down and Right (after setting
the direction) because the Enter key is closer to my keyboard "home position,"
and use of the Enter key has become integrated with my muscle memory.  However,
I could adapt to leaving the move selection direction on Down and using the Tab
key to move to the right.

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

[Bug 158936] Writer extremely sluggish on larger docx-files converted from .pdf. Appears to max out single cpu core

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158936

--- Comment #17 from Paul  ---
Actually, I'm concerned about IP matters with the file in question, and am not
sure I should upload it publicly.

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

[Bug 158936] Writer extremely sluggish on larger docx-files converted from .pdf. Appears to max out single cpu core

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158936

--- Comment #16 from Paul  ---
Created attachment 191939
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191939=edit
Original .pdf for reference purposes

I did not try to open this with LO. Rather, I used ILovePDF.com and Adobe.com
to convert it to a .docx file, which I did try to open in LO.

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

[Bug 159186] Editing string lists in expert config dialogs does not reload changed value

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159186

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
 CC||samuel.mehrbrodt@allotropia
   ||.de
  Regression By||Samuel Mehrbrodt

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

[Bug 159186] Editing string lists in expert config dialogs does not reload changed value

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159186

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Attachment #191938|After making some changes   |After making some changes
description|to a key|to a key and reopening the
   ||Edit List dialog

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

[Bug 120063] [META] Options dialog's expert configuration bugs and enhancements

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120063

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Depends on||159186


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=159186
[Bug 159186] Editing string lists in expert config dialogs does not reload
changed value
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159186] Editing string lists in expert config dialogs does not reload changed value

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159186

--- Comment #1 from Gabor Kelemen (allotropia)  ---
Created attachment 191938
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191938=edit
After making some changes to a key

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

[Bug 159186] New: Editing string lists in expert config dialogs does not reload changed value

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159186

Bug ID: 159186
   Summary: Editing string lists in expert config dialogs does not
reload changed value
   Product: LibreOffice
   Version: 24.2.0.0 alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com
Blocks: 120063

Created attachment 191937
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191937=edit
Before editing the string list

When a string list type key is edited in the Expert config dialog, the changes
are not reloaded if the Edit List dialog is reopened.

1. Go to Tools - Options - Advanced
2. Press the Open Expert Configuration button
3. Press the Edit button of any key with a type of string-list
4. In the Edit list dialog do some add/edit/remove work, press OK
-> the Expert Configuration dialog shows the list with changed values, good
5. Press Edit again
-> the Edit List dialog shows the original values, press OK and the previous
changes are lost

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 84a3401c28135735c7bbe324eb3642b31c7f26f5
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: hu-HU (hu_HU.UTF-8); UI: en-US
Calc: threaded

Seems to have started with:

https://git.libreoffice.org/core/+/1597968f5cd2534fb6e0be40fafecc305a004f4e

author  Samuel MehrbrodtMon Dec 04
16:00:21 2023 +0100
committer   Samuel MehrbrodtMon Dec
04 17:43:34 2023 +0100

tdf#155676 Properly support editing string lists


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120063
[Bug 120063] [META] Options dialog's expert configuration bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108568] [META] Footnote and endnote properties and settings

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108568
Bug 108568 depends on bug 125876, which changed state.

Bug 125876 Summary: More centralized endnote/footnote settings
https://bugs.documentfoundation.org/show_bug.cgi?id=125876

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Bug 159185] Expert config dialog accepts letters in numeric keys edit fields

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159185

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

  Regression By||Samuel Mehrbrodt
   Keywords||bibisected, regression

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

[Bug 108037] CRASH: Huge memory usage (2.800 MB in 64-bit), additionally crash (on 1.400 MB in 32-bit) when exporting 58-pages ODP to PDF

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108037

--- Comment #15 from Matt K  ---
I'm able to repro the large memory usage on export, and it looks like the
memory is not deallocated even after the PDF export is finished.  Closing the
presentation file deallocates a large portion of the memory.

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: ef6ff2df2e1286974da2f344aa3b8e3ae9093a79
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

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

[Bug 159185] Expert config dialog accepts letters in numeric keys edit fields

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159185

--- Comment #2 from Gabor Kelemen (allotropia)  ---
Created attachment 191936
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191936=edit
After moving focus the letters become 0

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

[Bug 159185] Expert config dialog accepts letters in numeric keys edit fields

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159185

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Attachment #191935|Ttyping |Typing letters is accepted
description||

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

[Bug 159185] Expert config dialog accepts letters in numeric keys edit fields

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159185

--- Comment #1 from Gabor Kelemen (allotropia)  ---
Created attachment 191935
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191935=edit
Ttyping

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

[Bug 159185] New: Expert config dialog accepts letters in numeric keys edit fields

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159185

Bug ID: 159185
   Summary: Expert config dialog accepts letters in numeric keys
edit fields
   Product: LibreOffice
   Version: 24.2.0.0 alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com
CC: samuel.mehrbr...@allotropia.de
Blocks: 120063

Created attachment 191934
  --> https://bugs.documentfoundation.org/attachment.cgi?id=191934=edit
Before editing some int type keys value

If the value of an int type key is edited, the edit box accepts non-numeric
input and resets it to 0 value.
In 7.6 only numbers were accepted.

1. Go to Tools - Options - Advanced
2. Press the Open Expert Configuration button
3. Edit any key with a type of int
4. Type some letters into the Edit box, press TAB to focus out of the field
-> value changes to 0, this can be acknowledged by the OK button

In 7.6, letters were not accepted int such cases.

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 84a3401c28135735c7bbe324eb3642b31c7f26f5
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: hu-HU (hu_HU.UTF-8); UI: en-US
Calc: threaded

Seems to have started in:

https://git.libreoffice.org/core/+/ee4eb828fbf7ead62fca85239d78c48003bbc41e

author  Samuel MehrbrodtThu Nov 09
12:56:30 2023 +0100
committer   Samuel MehrbrodtMon Nov
13 10:38:37 2023 +0100

Use SvxNameDialog for editing config values


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120063
[Bug 120063] [META] Options dialog's expert configuration bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 120063] [META] Options dialog's expert configuration bugs and enhancements

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120063

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Depends on||159185


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=159185
[Bug 159185] Expert config dialog accepts letters in numeric keys edit fields
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159119] Convert docx file to pdf using libreoffice, checkbox and drop-down selection contents are lost

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159119

--- Comment #5 from pengyk  ---
(In reply to m_a_riosv from comment #4)
> Sorry, I'm used to working with CLI.
> 
> Have you tried opening with LO and export to PDF, to see if it works as
> expected?, to know with what options it works fine.
> 

Thank you,I have tried using libreoffice to open the word document and the
preview is normal, but exporting it directly to PDF, no matter what options are
used, it seems that the export cannot be displayed normally.


There is still a problem when exporting pdf using the following parameters. Is
it possible that this is a bug?
When exporting pdf using version 7.3.2, the display is normal, but the checkbox
is invalid.

> There is another one that can affect:
> https://help.libreoffice.org/latest/he/text/shared/guide/pdf_params.
> html?=SHARED=WIN#:~:
> text=specifies%20whether%20multiple%20form%20fields%20exported%20are%20allowe
> d%20to%20have%20the%20same%20field%20name.

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

[Bug 159151] The default label for a Table Control in a form is "Table Control 1" with 2 blank spaces

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159151

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

https://git.libreoffice.org/core/commit/83c1df8e524cc74c6d1afcadb3cccba5ef2eb123

tdf#159151 Fix double space in Tree Control

It will be available in 24.8.0.

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

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

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

[Bug 159151] The default label for a Table Control in a form is "Table Control 1" with 2 blank spaces

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159151

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.8.0

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

core.git: extensions/inc include/svx

2024-01-14 Thread Rafael Lima (via logerrit)
 extensions/inc/strings.hrc |2 +-
 include/svx/strings.hrc|2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 83c1df8e524cc74c6d1afcadb3cccba5ef2eb123
Author: Rafael Lima 
AuthorDate: Fri Jan 12 14:56:40 2024 +0100
Commit: Mike Kaganski 
CommitDate: Mon Jan 15 02:17:15 2024 +0100

tdf#159151 Fix double space in Tree Control

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

diff --git a/extensions/inc/strings.hrc b/extensions/inc/strings.hrc
index e124f4a635be..a14f66ef78a2 100644
--- a/extensions/inc/strings.hrc
+++ b/extensions/inc/strings.hrc
@@ -283,7 +283,7 @@
 #define RID_STR_PROPTITLE_NUMERICFIELD  
NC_("RID_STR_PROPTITLE_NUMERICFIELD", "Numeric Field")
 #define RID_STR_PROPTITLE_CURRENCYFIELD 
NC_("RID_STR_PROPTITLE_CURRENCYFIELD", "Currency Field")
 #define RID_STR_PROPTITLE_PATTERNFIELD  
NC_("RID_STR_PROPTITLE_PATTERNFIELD", "Pattern Field")
-#define RID_STR_PROPTITLE_DBGRID
NC_("RID_STR_PROPTITLE_DBGRID", "Table Control ")
+#define RID_STR_PROPTITLE_DBGRID
NC_("RID_STR_PROPTITLE_DBGRID", "Table Control")
 
 #define STR_DETAIL_FORM NC_("STR_DETAIL_FORM", "Sub 
Form")
 #define STR_MASTER_FORM NC_("STR_MASTER_FORM", "Master 
Form")
diff --git a/include/svx/strings.hrc b/include/svx/strings.hrc
index bc42cae37ea4..2630cc98a5e9 100644
--- a/include/svx/strings.hrc
+++ b/include/svx/strings.hrc
@@ -1230,7 +1230,7 @@
 #define RID_STR_PROPTITLE_IMAGEBUTTON   
NC_("RID_STR_PROPTITLE_IMAGEBUTTON", "Image Button")
 #define RID_STR_PROPTITLE_IMAGECONTROL  
NC_("RID_STR_PROPTITLE_IMAGECONTROL", "Image Control")
 #define RID_STR_PROPTITLE_FILECONTROL   
NC_("RID_STR_PROPTITLE_FILECONTROL", "File Selection")
-#define RID_STR_PROPTITLE_DBGRID
NC_("RID_STR_PROPTITLE_DBGRID", "Table Control ")
+#define RID_STR_PROPTITLE_DBGRID
NC_("RID_STR_PROPTITLE_DBGRID", "Table Control")
 #define RID_STR_PROPTITLE_SCROLLBAR 
NC_("RID_STR_PROPTITLE_SCROLLBAR", "Scrollbar")
 #define RID_STR_PROPTITLE_SPINBUTTON
NC_("RID_STR_PROPTITLE_SPINBUTTON", "Spin Button")
 #define RID_STR_PROPTITLE_NAVBAR
NC_("RID_STR_PROPTITLE_NAVBAR", "Navigation Bar")


[Bug 158936] Writer extremely sluggish on larger docx-files converted from .pdf. Appears to max out single cpu core

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158936

--- Comment #15 from Dave Gilbert  ---
I don't think anyone can debug without it.
It would be good to add the pdf as well - a separate task would be seeing how
our PDF converter handles it.
(I wouldn't be surprised if some services use some of the same code)

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

[Bug 153922] memory leak in dedicated memory of graphics card (geforce gt1030), can lead to crash

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153922

--- Comment #14 from Matt K  ---
I'm not able to repro this with the following:

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: ef6ff2df2e1286974da2f344aa3b8e3ae9093a79
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

RenderMethod: vulkan
Vendor: 0x10de
Device: 0x28e1
API: 1.3.260
Driver: 546.132.0
DeviceType: discrete
DeviceName: NVIDIA GeForce RTX 4050 Laptop GPU
Denylisted: no

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

[Bug 158936] Writer extremely sluggish on larger docx-files converted from .pdf. Appears to max out single cpu core

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158936

--- Comment #14 from Paul  ---
Four hours later, LO won't even manifest with the file, and the cpu is still at
9%. I'm giving up. I can upload the file if you think it might help, but it is
7.4MB.

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

[Bug 159182] Feature request: Calc - quicker changing of move selection direction

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159182

--- Comment #1 from ady  ---
By default (in left-to-right spreadsheets):

[ENTER] > move to next cell down.
[SHIFT]+[ENTER] > move to next cell up.
[TAB] > move to next cell right.
[SHIFT]+[TAB] > move to next cell left.

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

[Bug 159184] New: Test failure 24.2.0.1 final only on s390x: PngFilterTest

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159184

Bug ID: 159184
   Summary: Test failure 24.2.0.1 final only on s390x:
PngFilterTest
   Product: LibreOffice
   Version: 24.2.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gw...@protonmail.com

[_RUN_] PngFilterTest::testTdf153180MonochromeFilterPngExport
PngFilterTest::testTdf153180MonochromeFilterPngExport finished in: 1ms
PngFilterTest.cxx:381:Assertion
Test name: PngFilterTest::testApng
assertion failed
- Expression: bSuccess

https://download.copr.fedorainfracloud.org/results/limb/lo22/fedora-rawhide-s390x/06885795-libreoffice/builder-live.log.gz

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

core.git: helpcontent2

2024-01-14 Thread Rafael Lima (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6028845f24b4271cc6578e4d9d59d8fbc08974db
Author: Rafael Lima 
AuthorDate: Mon Jan 15 01:18:34 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Mon Jan 15 01:18:34 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to d33c78198fbb0d56f08eb265d6ce432b1a7f66b1
  - Fix strings in sf_dialogcontrol.xhp

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

diff --git a/helpcontent2 b/helpcontent2
index 85b7b1975b0b..d33c78198fbb 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 85b7b1975b0b8a9afd1abfc94c69f1152400ce04
+Subproject commit d33c78198fbb0d56f08eb265d6ce432b1a7f66b1


help.git: source/text

2024-01-14 Thread Rafael Lima (via logerrit)
 source/text/sbasic/shared/03/sf_dialogcontrol.xhp |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit d33c78198fbb0d56f08eb265d6ce432b1a7f66b1
Author: Rafael Lima 
AuthorDate: Thu Jan 11 19:49:32 2024 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Jan 15 01:18:34 2024 +0100

Fix strings in sf_dialogcontrol.xhp

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

diff --git a/source/text/sbasic/shared/03/sf_dialogcontrol.xhp 
b/source/text/sbasic/shared/03/sf_dialogcontrol.xhp
index 95badd3d29..2e93839ff5 100644
--- a/source/text/sbasic/shared/03/sf_dialogcontrol.xhp
+++ b/source/text/sbasic/shared/03/sf_dialogcontrol.xhp
@@ -109,7 +109,7 @@
 ListBox NumericField 
PatternField ProgressBar RadioButton 
ScrollBar


-
TableControl TextField TimeField 
TreeControl  
+TableControl TextField 
TimeField TreeControl  

 
   
@@ -148,7 +148,7 @@
 Button, …
  
  
-The Border property refers to the surrounding of the control: 
3D, FLAT or NONE.
+The Border property refers to the 
surrounding of the control: "3D", "FLAT" or "NONE".
  
   
   
@@ -799,7 +799,7 @@
  
   

-   There's no Value 
property for GroupBox, Hyperlink, ImageControl and TreeControl dialog 
controls.
+   There is no Value 
property for GroupBox, Hyperlink, 
ImageControl and TreeControl dialog 
controls.
 
Event properties



core.git: helpcontent2

2024-01-14 Thread Rafael Lima (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bb5ae2ed78bdf94c56c581da21bb139554e0d6b1
Author: Rafael Lima 
AuthorDate: Mon Jan 15 01:18:13 2024 +0100
Commit: Gerrit Code Review 
CommitDate: Mon Jan 15 01:18:13 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 85b7b1975b0b8a9afd1abfc94c69f1152400ce04
  - Fix sentences in sf_document.xhp

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

diff --git a/helpcontent2 b/helpcontent2
index be416c32550a..85b7b1975b0b 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit be416c32550aa2fe0c0cfa94b437848a280261bb
+Subproject commit 85b7b1975b0b8a9afd1abfc94c69f1152400ce04


help.git: source/text

2024-01-14 Thread Rafael Lima (via logerrit)
 source/text/sbasic/shared/03/sf_document.xhp |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 85b7b1975b0b8a9afd1abfc94c69f1152400ce04
Author: Rafael Lima 
AuthorDate: Thu Jan 11 20:13:08 2024 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Jan 15 01:18:13 2024 +0100

Fix sentences in sf_document.xhp

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

diff --git a/source/text/sbasic/shared/03/sf_document.xhp 
b/source/text/sbasic/shared/03/sf_document.xhp
index 3397dd67b7..3f1776e72d 100644
--- a/source/text/sbasic/shared/03/sf_document.xhp
+++ b/source/text/sbasic/shared/03/sf_document.xhp
@@ -353,7 +353,7 @@
 UNO Object
 
 
-A com.sun.star.XXX.DocumentSettings UNO 
object - where XXX is sheet, text, drawing or presentation - that gives access 
to UNO internal properties, that are specific to the document's 
type.
+A com.sun.star.XXX.DocumentSettings UNO 
object, where XXX is either sheet, text, 
drawing or presentation. This object 
gives access to the internal UNO properties that are specific to the document's 
type.
 
   
 
@@ -540,7 +540,7 @@
   
 family: One of the style families 
present in the actual document, as a case-sensitive string. Valid family names 
can be retrieved using StyleFamilies property.
   
-  stylelist: A single style name as a 
string or an array of style names. The style names may be localized or not. The 
StylesList is typically the output of the execution of a 
Styles() method.
+  stylelist: A single style name as a 
string or an array of style names. The style names may be localized or not. The 
StylesList is typically the output of the execution of a 
Styles() method.
   
   
   
@@ -586,7 +586,7 @@
   
   
 doc.Echo(echoon = False, hourglass = 
True)
-...
+...
 doc.Echo()
   
 
@@ -661,7 +661,7 @@
   
   
   filename: The file from which to load 
the styles in the FileSystem notation. The file is presumed 
to be of the same document type as the actual document.
-  families: One of the style families 
present in the actual document, as a case-sensitive string or an array of such 
strings. Default = all families.
+  families: One of the style families 
present in the actual document, as a case-sensitive string or an array of such 
strings. Leave this argument blank to import all families.
   overwrite: When 
True, the actual styles may be overwritten. Default is 
False.
   
   
@@ -970,14 +970,14 @@
   
   
 
-  
+
 
XStyles 
-
 
   
 Document service;XStyles
   
   XStyles
-  This method returns 
the UNO representation of a given style for all document types except 
Base. Nothing is returned when the 
StyleName does not exist in the given Family.
+  This method returns 
the UNO representation of a given style for all document types except 
Base. Nothing is returned when the 
StyleName does not exist in the given family.
   
   
 svc.XStyles(family: str, stylename: str): uno


[Bug 159183] New: Crash if I make changes to the image using the Position and Size window

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159183

Bug ID: 159183
   Summary: Crash if I make changes to the image using the
Position and Size window
   Product: LibreOffice
   Version: 7.6.4.1 release
  Hardware: Other
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ibrahim.elsha...@gmail.com

Description:
I'm trying to change image position basepoint and size basepoint. When I press
Ok, LibreOffice crashes.

Steps to Reproduce:
1. In calc, click a cell
2. Insert/Paste an image
3. After the image is inserted into the cell, make sure the Image is selected
4. Go to the Image Menu -> Position and Size
5. In the Position and Size tab, select the basepoints (top-right) for both
position and size.
6. Click Ok

Actual Results:
Crash

Expected Results:
The image should be anchored to the top-right side of the cell, I guess.


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.6.4.1 (AARCH64) / LibreOffice Community
Build ID: e19e193f88cd6c0525a17fb7a176ed8e6a3e2aa1
CPU threads: 10; OS: Mac OS X 14.2.1; UI render: Skia/Metal; VCL: osx
Locale: en-CA (en_CA.UTF-8); UI: en-US
Calc: threaded

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

[Bug 159182] New: Feature request: Calc - quicker changing of move selection direction

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159182

Bug ID: 159182
   Summary: Feature request:  Calc - quicker changing of move
selection direction
   Product: LibreOffice
   Version: 7.5.9.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ygk7fawx...@verizon.net

Description:
In Calc, I can choose a "Move selection" direction that will used after I press
Enter on a cell, but I need 6 mouse clicks to change that direction.  I would
like to change the move selection direction more easily.  

One alternative would be to make "Move selection Down," "Move selection Right,"
etc., accessible via the Tools > Customize menu.  For me, this would be a good
option.

Another alternative would be a fifth Move selection "direction" option that
would move in whatever direction I indicated by my last use of an arrow key. 
For example, suppose that the move selection direction is Down.  Now, I want to
enter data across a row.  With this requested feature, I could enter data in
the first intended data cell and then change move selection to the right by
pressing the Up arrow key (getting back to the first data cell) and the Right
arrow key.  Subsequent uses of the Enter key would move the selection to the
right until I would use another arrow key.  A "Same direction" menu option
would be relatively easy for the typical user to select.  

Thanks for considering my request.

Actual Results:
(feature request described above)

Expected Results:
(feature request described above)


Reproducible: Always


User Profile Reset: No

Additional Info:
Moving in the same direction after Enter was an option in SuperCalc and perhaps
other software.

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

Outreachy Dec 2023 - Weekly Update

2024-01-14 Thread Omkar Acharekar
Hi everyone,

   I wanted to share progress for the past week.

   I've been working on the QtInstanceBuilder for a select group of UI
files, specifically for those widgets which utilize the
*weld_message_dialog* interface. I able to implement the parser and in this
week, I will work on related qt widget creation methods -
https://gerrit.libreoffice.org/c/core/+/161831  ( wip )

  Previous patch got merged -
https://gerrit.libreoffice.org/c/core/+/161073


  Reaching the midway point of internship, I'm grateful to my mentors,
Michael and Heiko, for their support and guidance. They've been a great
help and have learnt a lot from them. Here is the outreachy blog  about my
progress so far - https://omkaracharekar.hashnode.dev/refining-expectations
 .
Thank you !
Omkar


core.git: helpcontent2

2024-01-14 Thread Kira Tubo (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 451ed367752ad36d75eddb0cc1c7a971080201ec
Author: Kira Tubo 
AuthorDate: Sun Jan 14 15:14:17 2024 -0800
Commit: Gerrit Code Review 
CommitDate: Mon Jan 15 00:14:17 2024 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to be416c32550aa2fe0c0cfa94b437848a280261bb
  - tdf#125876 Update online help for Footnote/Endnote

* Update menu navigation for Edit, Insert, Tools
* Update "Edit Footnote/Endnote" dialog > "Auto" -> “Automatic”
* Remove extra space

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

diff --git a/helpcontent2 b/helpcontent2
index b8c6c19ab2fa..be416c32550a 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit b8c6c19ab2fac10cdade1ae96721422814b19be3
+Subproject commit be416c32550aa2fe0c0cfa94b437848a280261bb


help.git: source/text

2024-01-14 Thread Kira Tubo (via logerrit)
 source/text/swriter/00/0402.xhp  |2 +-
 source/text/swriter/00/0404.xhp  |2 +-
 source/text/swriter/00/0406.xhp  |6 +++---
 source/text/swriter/01/0215.xhp  |2 +-
 source/text/swriter/01/0403.xhp  |4 ++--
 source/text/swriter/guide/footnote_usage.xhp |6 +++---
 6 files changed, 11 insertions(+), 11 deletions(-)

New commits:
commit be416c32550aa2fe0c0cfa94b437848a280261bb
Author: Kira Tubo 
AuthorDate: Sat Jan 13 22:14:27 2024 -0800
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Jan 15 00:14:16 2024 +0100

tdf#125876 Update online help for Footnote/Endnote

* Update menu navigation for Edit, Insert, Tools
* Update "Edit Footnote/Endnote" dialog > "Auto" -> “Automatic”
* Remove extra space

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

diff --git a/source/text/swriter/00/0402.xhp 
b/source/text/swriter/00/0402.xhp
index 486fcce25d..eb38344418 100644
--- a/source/text/swriter/00/0402.xhp
+++ b/source/text/swriter/00/0402.xhp
@@ -106,7 +106,7 @@
 CommandCtrl
 + F2
 
 
-Choose 
Edit - Footnotes
+Choose 
Edit - Reference - Footnote or Endnote
 
 
 
diff --git a/source/text/swriter/00/0404.xhp 
b/source/text/swriter/00/0404.xhp
index 41f82c55ab..434441fa2b 100644
--- a/source/text/swriter/00/0404.xhp
+++ b/source/text/swriter/00/0404.xhp
@@ -143,7 +143,7 @@
 
 
 
-Choose Insert - 
Footnote and Endnote - Footnote or Endnote
+Choose Insert - 
Footnote and Endnote - Insert Special Footnote/Endnote
 
 
 Choose 
Footnote/Endnote (on inserted Footnote/Endnote)
diff --git a/source/text/swriter/00/0406.xhp 
b/source/text/swriter/00/0406.xhp
index ec3bf14c2e..59947fa4cd 100644
--- a/source/text/swriter/00/0406.xhp
+++ b/source/text/swriter/00/0406.xhp
@@ -84,9 +84,9 @@
 
 Choose Tools - Heading Numbering - 
Numbering tab
 Choose Tools - Line Numbering (not for HTML 
format)
-Choose Tools - Footnotes and 
Endnotes
-Choose Tools - Footnotes and Endnotes - Footnotes 
tab
-Choose Tools - Footnotes and Endnotes - Endnotes 
tab
+Choose Tools - Footnote/Endnote 
Settings
+Choose Tools - Footnote/Endnote Settings - 
Footnotes tab
+Choose Tools - Footnote/Endnote Settings - Endnotes 
tab
 Choose Table - Convert - Text to 
Table
 
 Select paragraphs or table rows and choose Tools - 
Sort
diff --git a/source/text/swriter/01/0215.xhp 
b/source/text/swriter/01/0215.xhp
index 236679450d..a22f56d414 100644
--- a/source/text/swriter/01/0215.xhp
+++ b/source/text/swriter/01/0215.xhp
@@ -44,7 +44,7 @@
 Numbering
 Select the 
numbering type for the footnote or endnote.
 
-Auto
+Automatic
 
 
 Character
diff --git a/source/text/swriter/01/0403.xhp 
b/source/text/swriter/01/0403.xhp
index 4b6608e43d..25322da4bc 100644
--- a/source/text/swriter/01/0403.xhp
+++ b/source/text/swriter/01/0403.xhp
@@ -48,7 +48,7 @@
 Select the type of numbering 
that you want to use for footnotes and endnotes.
 
 Automatic
-Automatically assigns 
consecutive numbers to the footnotes or endnotes that you insert. To 
change the settings for automatic numbering, choose Tools - Footnotes and 
Endnotes.
+Automatically assigns 
consecutive numbers to the footnotes or endnotes that you insert. To 
change the settings for automatic numbering, choose Tools - Footnote/Endnote 
Settings.
 
 
 
@@ -56,7 +56,7 @@
 Choose this option to 
define a character or symbol for the current footnote. This can be 
either a letter, number or special character.
 
 Choose
-Inserts a special character  as a footnote or 
endnote anchor.
+Inserts a special character as a footnote or 
endnote anchor.
 
 Type
 Select whether to insert a 
footnote or an endnote. Endnote numbering is separate from the footnote 
numbering.
diff --git a/source/text/swriter/guide/footnote_usage.xhp 
b/source/text/swriter/guide/footnote_usage.xhp
index 131db59b98..1d8b8a9456 100644
--- a/source/text/swriter/guide/footnote_usage.xhp
+++ b/source/text/swriter/guide/footnote_usage.xhp
@@ -46,7 +46,7 @@
 Click in 
your document where you want to place the anchor of the note.
   
   
-Choose 
Insert - Footnote and Endnote - 
Footnote or Endnote.
+Choose 
Insert - Footnote and Endnote - 
Insert Special Footnote/Endnote.
   
   
 In the 
Numbering area, select the format that you want to 
use. If you select Character, click the Choose button and select the character that you want to 
use for the footnote.
@@ -108,10 +108,10 @@
 
 
   
-To edit the 
numbering properties of a footnote or endnote anchor, click in front of the 
anchor, and choose Edit - 
Footnote/Endnote.
+To edit the 
numbering properties of a footnote or endnote anchor, click in front of the 
anchor, and choose Edit - 
Reference - Footnote or Endnote.
   
   
-To change 

[Bug 158216] donut chart : space parameter between nested donuts

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158216

--- Comment #5 from Eyal Rozenberg  ---
This would be particularly useful also for "refined-doughnut" charts, if we had
them (I just filed bug 159180...)

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

[Bug 97832] Please add the funnel chart type

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97832

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|108538  |159181


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108538
[Bug 108538] [META] Chart feature enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=159181
[Bug 159181] [META] Additional chart type requests
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108538] [META] Chart feature enhancements

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108538

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|97832   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97832
[Bug 97832] Please add the funnel chart type
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159181] [META] Additional chart type requests

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159181

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||97832


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97832
[Bug 97832] Please add the funnel chart type
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159181] [META] Additional chart type requests

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159181

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||88741


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88741
[Bug 88741] add GANTT charts to Calc
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 88741] add GANTT charts to Calc

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88741

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|108538  |159181


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108538
[Bug 108538] [META] Chart feature enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=159181
[Bug 159181] [META] Additional chart type requests
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108538] [META] Chart feature enhancements

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108538

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|88741   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=88741
[Bug 88741] add GANTT charts to Calc
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159181] [META] Additional chart type requests

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159181

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||82716


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82716
[Bug 82716] Ability to create histogram chart directly from data, not using
FREQUENCY()
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108538] [META] Chart feature enhancements

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108538

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|82716   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82716
[Bug 82716] Ability to create histogram chart directly from data, not using
FREQUENCY()
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 82716] Ability to create histogram chart directly from data, not using FREQUENCY()

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82716

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|108538  |159181


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108538
[Bug 108538] [META] Chart feature enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=159181
[Bug 159181] [META] Additional chart type requests
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108538] [META] Chart feature enhancements

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108538

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|81534   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81534
[Bug 81534] Floating column charts
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159181] [META] Additional chart type requests

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159181

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||81534


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81534
[Bug 81534] Floating column charts
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 81530] Support frequency-density histogram (column chart type) i.e., histogram with variable bin widths

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81530

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|108538  |159181


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108538
[Bug 108538] [META] Chart feature enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=159181
[Bug 159181] [META] Additional chart type requests
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108538] [META] Chart feature enhancements

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108538

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|81530   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81530
[Bug 81530] Support frequency-density histogram (column chart type) i.e.,
histogram with variable bin widths
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159181] [META] Additional chart type requests

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159181

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||81530


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81530
[Bug 81530] Support frequency-density histogram (column chart type) i.e.,
histogram with variable bin widths
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 81534] Floating column charts

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81534

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|108538  |159181


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108538
[Bug 108538] [META] Chart feature enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=159181
[Bug 159181] [META] Additional chart type requests
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159181] [META] Additional chart type requests

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159181

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||70361


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=70361
[Bug 70361] Add box plot (a.k.a. box-and-whiskers plot) chart type
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 70361] Add box plot (a.k.a. box-and-whiskers plot) chart type

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70361

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|108538  |159181


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108538
[Bug 108538] [META] Chart feature enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=159181
[Bug 159181] [META] Additional chart type requests
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108538] [META] Chart feature enhancements

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108538

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|70361   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=70361
[Bug 70361] Add box plot (a.k.a. box-and-whiskers plot) chart type
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159181] [META] Additional chart type requests

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159181

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||66269


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=66269
[Bug 66269] EDITING: Add 3D scatter plot and radial plot chart types
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159181] [META] Additional chart type requests

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159181

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||51670


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=51670
[Bug 51670] Add XYZ / Surface chart type
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 66269] EDITING: Add 3D scatter plot and radial plot chart types

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66269

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|108538  |159181


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108538
[Bug 108538] [META] Chart feature enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=159181
[Bug 159181] [META] Additional chart type requests
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108538] [META] Chart feature enhancements

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108538

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|66269   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=66269
[Bug 66269] EDITING: Add 3D scatter plot and radial plot chart types
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108538] [META] Chart feature enhancements

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108538

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|51670   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=51670
[Bug 51670] Add XYZ / Surface chart type
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 51670] Add XYZ / Surface chart type

2024-01-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51670

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|108538  |159181


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108538
[Bug 108538] [META] Chart feature enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=159181
[Bug 159181] [META] Additional chart type requests
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   >