[Bug 76005] UI missing to set document properties: "TabsRelativeToIndent", "TabOverMargin"

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76005

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

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

tdf#76005 add TabsRelativeToIndent, TabOverMargin compat option to dialog

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 76005] UI missing to set document properties: "TabsRelativeToIndent", "TabOverMargin"

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76005

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: officecfg/registry sw/inc sw/source

2024-04-24 Thread Mohit Marathe (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs |   12 +
 sw/inc/strings.hrc|2 
 sw/inc/viewsh.hxx |4 +
 sw/source/core/doc/DocumentSettingManager.cxx |2 
 sw/source/core/view/viewsh.cxx|   24 
++
 sw/source/ui/config/optcomp.cxx   |   12 +
 6 files changed, 56 insertions(+)

New commits:
commit b51271b85387a57b4cdd20ee6277c1a955706fc1
Author: Mohit Marathe 
AuthorDate: Fri Apr 12 23:31:51 2024 +0530
Commit: Mike Kaganski 
CommitDate: Thu Apr 25 07:45:54 2024 +0200

tdf#76005 add TabsRelativeToIndent, TabOverMargin compat option to dialog

Change-Id: I17703c2fe388f485462bd82982664f0b4a14d537
Signed-off-by: Mohit Marathe 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166040
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs
index 8d5f1e172918..085a380cbd41 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Compatibility.xcs
@@ -140,6 +140,18 @@
 
 false
   
+  
+
+  Set tabstops relative to indent of paragraph
+
+true
+  
+  
+
+  Allow tabs to extend beyond the right margin
+
+false
+  
 
   
   
diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc
index ea58fccb736c..a0d04e35ba29 100644
--- a/sw/inc/strings.hrc
+++ b/sw/inc/strings.hrc
@@ -1490,6 +1490,8 @@
 #define STR_COMPAT_OPT_EMPTYDBFIELDHIDESPARA
NC_("STR_COMPAT_OPT_EMPTYDBFIELDHIDESPARA", "Hide paragraphs of database fields 
(e.g., mail merge) with an empty value")
 #define STR_COMPAT_OPT_USEVARIABLEWIDTHNBSP 
NC_("STR_COMPAT_OPT_USEVARIABLEWIDTHNBSP", "Render non-breaking spaces (NBSP) 
as standard-space-width (off for fixed size)")
 #define STR_COMPAT_OPT_NOGAPAFTERNOTENUMBER 
NC_("STR_COMPAT_OPT_NOGAPAFTERNOTENUMBER", "Do not add an extra space after 
number in footnotes / endnotes with hanging first line")
+#define STR_COMPAT_OPT_TABSRELATIVETOINDENT 
NC_("STR_COMPAT_OPT_TABSRELATIVETOINDENT", "Set tabstops relative to indent of 
paragraph")
+#define STR_COMPAT_OPT_TABOVERMARGIN
NC_("STR_COMPAT_OPT_TABOVERMARGIN", "Allow tabs to extend beyond the right 
margin")
 
 #define STR_TABLE_PANEL_ALIGN_AUTO  
NC_("sidebartableedit|alignautolabel", "Automatic")
 #define STR_TABLE_PANEL_ALIGN_LEFT  
NC_("sidebartableedit|alignleftlabel", "Left")
diff --git a/sw/inc/viewsh.hxx b/sw/inc/viewsh.hxx
index a55da3bc1f69..9417702f5b86 100644
--- a/sw/inc/viewsh.hxx
+++ b/sw/inc/viewsh.hxx
@@ -447,6 +447,10 @@ public:
 
 SW_DLLPUBLIC void SetNoGapAfterNoteNumber(bool bNew);
 
+SW_DLLPUBLIC void SetTabsRelativeToIndent(bool bNew);
+
+SW_DLLPUBLIC void SetTabOverMargin(bool bNew);
+
 // DOCUMENT COMPATIBILITY FLAGS END
 
 // Calls Idle-formatter of Layout.
diff --git a/sw/source/core/doc/DocumentSettingManager.cxx 
b/sw/source/core/doc/DocumentSettingManager.cxx
index 4f768933f633..4e093c9230bf 100644
--- a/sw/source/core/doc/DocumentSettingManager.cxx
+++ b/sw/source/core/doc/DocumentSettingManager.cxx
@@ -137,6 +137,8 @@ sw::DocumentSettingManager::DocumentSettingManager(SwDoc 
)
 mbEmptyDbFieldHidesPara = 
aOptions.get(u"EmptyDbFieldHidesPara"_ustr);
 mbUseVariableWidthNBSP  = 
aOptions.get(u"UseVariableWidthNBSP"_ustr);
 mbNoGapAfterNoteNumber  = 
aOptions.get(u"NoGapAfterNoteNumber"_ustr);
+mbTabRelativeToIndent   = 
aOptions.get(u"TabsRelativeToIndent"_ustr);
+mbTabOverMargin = 
aOptions.get(u"TabOverMargin"_ustr);
 }
 else
 {
diff --git a/sw/source/core/view/viewsh.cxx b/sw/source/core/view/viewsh.cxx
index 7f048409bc02..5ec658a9cd14 100644
--- a/sw/source/core/view/viewsh.cxx
+++ b/sw/source/core/view/viewsh.cxx
@@ -1059,6 +1059,30 @@ void SwViewShell::SetNoGapAfterNoteNumber(bool bNew)
 }
 }
 
+void SwViewShell::SetTabsRelativeToIndent(bool bNew)
+{
+IDocumentSettingAccess& rIDSA = getIDocumentSettingAccess();
+if (rIDSA.get(DocumentSettingId::TABS_RELATIVE_TO_INDENT) != bNew)
+{
+SwWait aWait(*GetDoc()->GetDocShell(), true);
+rIDSA.set(DocumentSettingId::TABS_RELATIVE_TO_INDENT, bNew);
+const SwInvalidateFlags nInv = SwInvalidateFlags::Size | 
SwInvalidateFlags::Section | SwInvalidateFlags::PrtArea | 
SwInvalidateFlags::Table | SwInvalidateFlags::Pos;
+lcl_InvalidateAllContent(*this, nInv);
+}
+}
+
+void SwViewShell::SetTabOverMargin(bool bNew)
+{
+IDocumentSettingAccess& rIDSA = getIDocumentSettingAccess();
+if 

core.git: include/svx sd/inc sd/source svx/Library_svxcore.mk svx/source

2024-04-24 Thread Tomaž Vajngerl (via logerrit)
 include/svx/annotation/Annotation.hxx |   57 ++
 sd/inc/Annotation.hxx |   18 ++---
 sd/source/core/annotations/Annotation.cxx |8 +---
 svx/Library_svxcore.mk|1 
 svx/source/annotation/Annotation.cxx  |   18 +
 5 files changed, 82 insertions(+), 20 deletions(-)

New commits:
commit a938ed2be520426ce7949c4fd30a6e7e31d7c279
Author: Tomaž Vajngerl 
AuthorDate: Thu Apr 18 14:54:52 2024 +0900
Commit: Tomaž Vajngerl 
CommitDate: Thu Apr 25 07:17:51 2024 +0200

annot: added Annotation impl. to svx, moved some thing from sd

This is an attempt to move the sd::Annotation to the common code
in the svx module. This will need to be done in multiple steps so
the first one is to introduce sdr::annotation::Annotation class in
svx module, which is derived by sd::Annotation. Non-problematic
functionality and members are also moved to the svx Annotation.

Change-Id: Id20466b3780514ab63a9df8923b879098870ebb6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166492
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 

diff --git a/include/svx/annotation/Annotation.hxx 
b/include/svx/annotation/Annotation.hxx
new file mode 100644
index ..13881a58d070
--- /dev/null
+++ b/include/svx/annotation/Annotation.hxx
@@ -0,0 +1,57 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#pragma once
+
+#include 
+#include 
+#include 
+
+#include 
+#include 
+
+namespace sdr::annotation
+{
+class SVXCORE_DLLPUBLIC Annotation
+{
+private:
+static sal_uInt32 m_nLastId;
+static sal_uInt32 nextID() { return m_nLastId++; }
+
+protected:
+SdrPage* mpSdrPage;
+sal_uInt32 m_nId;
+
+css::geometry::RealPoint2D m_Position;
+css::geometry::RealSize2D m_Size;
+OUString m_Author;
+OUString m_Initials;
+css::util::DateTime m_DateTime;
+bool m_bIsFreeText = false;
+
+public:
+Annotation(SdrPage* pPage)
+: mpSdrPage(pPage)
+, m_nId(nextID())
+{
+}
+
+SdrModel* GetModel()
+{
+return mpSdrPage != nullptr ? >getSdrModelFromSdrPage() : 
nullptr;
+}
+
+sal_uInt32 GetId() const { return m_nId; }
+};
+
+//typedef std::vector> AnnotationVector;
+
+} // namespace sdr::annotation
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sd/inc/Annotation.hxx b/sd/inc/Annotation.hxx
index 965cbded3719..558271dbc04e 100644
--- a/sd/inc/Annotation.hxx
+++ b/sd/inc/Annotation.hxx
@@ -26,6 +26,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include "sdpage.hxx"
 #include "textapi.hxx"
@@ -67,19 +68,16 @@ struct SD_DLLPUBLIC CustomAnnotationMarker
 };
 
 class SAL_DLLPUBLIC_RTTI Annotation final :
-   public 
::comphelper::WeakComponentImplHelper,
-   public ::cppu::PropertySetMixin
+public sdr::annotation::Annotation,
+public 
::comphelper::WeakComponentImplHelper,
+ public ::cppu::PropertySetMixin
 {
 public:
 explicit Annotation( const 
css::uno::Reference& context, SdPage* pPage );
 Annotation(const Annotation&) = delete;
 Annotation& operator=(const Annotation&) = delete;
 
-static sal_uInt32 m_nLastId;
-
 SdPage* GetPage() const { return mpPage; }
-SdrModel* GetModel() { return (mpPage != nullptr) ? 
>getSdrModelFromSdrPage() : nullptr; }
-sal_uInt32 GetId() const { return m_nId; }
 
 // XInterface:
 virtual css::uno::Any SAL_CALL queryInterface(css::uno::Type const & type) 
override;
@@ -141,17 +139,9 @@ private:
 
 void createChangeUndoImpl(std::unique_lock& g);
 
-sal_uInt32 m_nId;
 SdPage* mpPage;
-css::geometry::RealPoint2D m_Position;
-css::geometry::RealSize2D m_Size;
-OUString m_Author;
-OUString m_Initials;
-css::util::DateTime m_DateTime;
 rtl::Reference m_TextRange;
-
 std::unique_ptr m_pCustomAnnotationMarker;
-bool m_bIsFreeText;
 };
 
 }
diff --git a/sd/source/core/annotations/Annotation.cxx 
b/sd/source/core/annotations/Annotation.cxx
index fee7312bcca2..b3938002b87c 100644
--- a/sd/source/core/annotations/Annotation.cxx
+++ b/sd/source/core/annotations/Annotation.cxx
@@ -115,14 +115,10 @@ void createAnnotation(rtl::Reference& 
xAnnotation, SdPage* pPage )
 pPage->addAnnotation(xAnnotation, -1);
 }
 
-sal_uInt32 Annotation::m_nLastId = 1;
-
 Annotation::Annotation(const uno::Reference& context, 
SdPage* pPage)
-: ::cppu::PropertySetMixin(context, 
IMPLEMENTS_PROPERTY_SET,
-uno::Sequence())
-, m_nId(m_nLastId++)
+: sdr::annotation::Annotation(pPage)
+, 

[Bug 155633] Can't use a custom bibliography database source for Insert > TOC & Indexes > Bibliography Entry

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155633

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Bug 72972] EDITING: Option to use short names or numbers for bibliography entries should be made clearer

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72972

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Bug 101258] [META] Bibliography bugs and enhancements

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101258

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||155633


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=155633
[Bug 155633] Can't use a custom bibliography database source for Insert > TOC &
Indexes > Bibliography Entry
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 101258] [META] Bibliography bugs and enhancements

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101258
Bug 101258 depends on bug 155633, which changed state.

Bug 155633 Summary: Can't use a custom bibliography database source for Insert 
> TOC & Indexes > Bibliography Entry
https://bugs.documentfoundation.org/show_bug.cgi?id=155633

   What|Removed |Added

 Status|CLOSED  |UNCONFIRMED
 Resolution|INVALID |---

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

[Bug 155633] Can't use a custom bibliography database source for Insert > TOC & Indexes > Bibliography Entry

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155633

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

URL||https://ask.libreoffice.org
   ||/t/writer-how-to-use-a-spre
   ||adsheet-as-bibliographic-da
   ||tabase/92049
 Blocks||101258
Summary|INFORMATION REQUEST:|Can't use a custom
   |Bibliography in Writer, how |bibliography database
   |does it work?   |source for Insert > TOC &
   ||Indexes > Bibliography
   ||Entry
 Status|CLOSED  |UNCONFIRMED
 Resolution|INVALID |---

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
(In reply to ajlittoz from comment #2)
> The official documentation has nothing about custom bibliography sources (or
> I skipped over it).
> 
> I can turn this report into a bug: menu to choose a bibliography entry is
> empty with a custom bibliography database.
OK, let's do that.

My steps:
1. Create a custom bibliography as an ODB file, e.g. with a table with
variables Identifier, Author, Title
2. In Writer, go to Tools > Bibliography > Data Source and pick the database
that was just created. Prompt says "The following column names could not be
assigned": accept to edit the column arrangement, and match variables to
columns.
3. Try to insert a reference with Insert > Table of Contents and Index >
Bibliography Entry

Result A: the dialog seems to require the availability of a "Short name" field.

4. Modify the bibliography database table to add a Short Name field; populate
it
5. Repeat steps 2 (matching the new column to "Short name") and 3

Result B: the Short name dropdown is still empty.

ajlittoz, do you agree these are the steps?

Version: 24.2.2.2 (X86_64) / LibreOffice Community
Build ID: d56cc158d8a96260b836f100ef4b4ef25d6f1a01
CPU threads: 8; OS: Linux 6.5; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: CL threaded


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101258
[Bug 101258] [META] Bibliography bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 109326] [META] Data filter bugs and enhancements

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109326

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160440


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160440
[Bug 160440] Paste as bitmap (PNG, BMP) of a chart is incorrect when source is
filtered
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160440] Paste as bitmap (PNG, BMP) of a chart is incorrect when source is filtered

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160440

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||109326


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=109326
[Bug 109326] [META] Data filter bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160440] Paste as bitmap (PNG, BMP) of a chart is incorrect when source is filtered

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160440

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
 Status|UNCONFIRMED |NEW
 OS|Linux (All) |All
 Blocks||108479, 90486
 Whiteboard| QA:needsComment|
Version|7.6.5.2 release |4.4.0.3 release
   Keywords||implementationError
Summary|Paste as bitmap of a chart  |Paste as bitmap (PNG, BMP)
   |is incorrect when source is |of a chart is incorrect
   |filtered|when source is filtered
 Ever confirmed|0   |1

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Thanks for the report. I reproduce in:

Version: 7.6.6.3 (X86_64) / LibreOffice Community
Build ID: d97b2716a9a4a2ce1391dee1765565ea469b0ae7
CPU threads: 8; OS: Linux 6.5; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: CL threaded

As well as a recent trunk build:

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 695e8742da850bbb15c2e6d2b5d4c99a0daf4925
CPU threads: 8; OS: Linux 6.5; UI render: default; VCL: gtk3

Already the case in 4.4.0.3, when PNG and BMP paste were made available, so
assuming it is an implementation error.

Also an issue on Win11.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=90486
[Bug 90486] [META] Chart bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108479
[Bug 108479] [META] Paste special bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108479] [META] Paste special bugs and enhancements

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108479

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160440


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160440
[Bug 160440] Paste as bitmap (PNG, BMP) of a chart is incorrect when source is
filtered
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 90486] [META] Chart bugs and enhancements

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160440


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160440
[Bug 160440] Paste as bitmap (PNG, BMP) of a chart is incorrect when source is
filtered
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 157857] Ctrl+W closes all open documents, not just the active window

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157857

--- Comment #5 from Damon Anderson  ---
I also can not reproduce this bug.

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

core.git: sw/source sw/uiconfig

2024-04-24 Thread Jim Raykowski (via logerrit)
 sw/source/uibase/utlui/content.cxx |  109 +++--
 sw/uiconfig/swriter/ui/navigatorcontextmenu.ui |   35 
 2 files changed, 136 insertions(+), 8 deletions(-)

New commits:
commit b2b84dfa1d4f5da32f3335c59d618d385173a170
Author: Jim Raykowski 
AuthorDate: Sun Apr 21 19:23:34 2024 -0800
Commit: Jim Raykowski 
CommitDate: Thu Apr 25 05:38:42 2024 +0200

tdf#160598 SwNavigator enhancement to delete footnotes/endnotes

m_bDocHasChanged is checked first in the tooltip and mouse move handlers
to prevent crashes/asserts that happen when SfxPoolItemHolder m_aAttr
references a delete poolitem or poolitem data. Without this check the
following types of crashes/asserts can happen:



Unspecified Application Error

Fatal exception: Signal 6
Stack:
0 sal::backtrace_get(unsigned int) at /home/lo/Dev/LO1/core/sal/osl/
unx/backtraceapi.cxx:42 (discriminator 3)
1 (anonymous namespace)::printStack(int) at /home/lo/Dev/LO1/core/sal/
osl/unx/signal.cxx:289
2 (anonymous namespace)::callSystemHandler(int, siginfo_t*, void*) at /
home/lo/Dev/LO1/core/sal/osl/unx/signal.cxx:330
3 (anonymous namespace)::signalHandlerFunction(int, siginfo_t*, void*)
at /home/lo/Dev/LO1/core/sal/osl/unx/signal.cxx:427
4 __restore_rt at libc_sigaction.c:?
5 __pthread_kill_implementation at ./nptl/pthread_kill.c:44
6 __GI_raise at ./signal/../sysdeps/posix/raise.c:27
7 __GI_abort at ./stdlib/abort.c:81 (discriminator 21)
8 SalAbort(rtl::OUString const&, bool) at /home/lo/Dev/LO1/core/vcl/
source/app/salplug.cxx:412
9 Application::Abort(rtl::OUString const&) at /home/lo/Dev/LO1/core/
vcl/source/app/svapp.cxx:316
10 desktop::Desktop::Exception(ExceptionCategory) at /home/lo/Dev/LO1/
core/desktop/source/app/app.cxx:1203 (discriminator 2)
11 VCLExceptionSignal_impl(void*, oslSignalInfo*) at /home/lo/Dev/LO1/
core/vcl/source/app/svmain.cxx:176
12 callSignalHandler(oslSignalInfo*) at /home/lo/Dev/LO1/core/sal/osl/
all/signalshared.cxx:47
13 (anonymous namespace)::signalHandlerFunction(int, siginfo_t*, void*)
at /home/lo/Dev/LO1/core/sal/osl/unx/signal.cxx:423
14 __restore_rt at libc_sigaction.c:?
15 SfxPoolItem::Which() const at /home/lo/Dev/LO1/core/include/svl/
poolitem.hxx:225
16 SfxPoolItemHolder::Which() const at /home/lo/Dev/LO1/core/include/
svl/itemset.hxx:74 (discriminator 1)
17 SwTextAttr::GetFootnote() const at /home/lo/Dev/LO1/core/sw/inc/
txatbase.hxx:223 (discriminator 1)
18 SwContentTree::QueryTooltipHdl(weld::TreeIter const&) at /home/lo/
Dev/LO1/core/sw/source/uibase/utlui/content.cxx:4974
19 SwContentTree::LinkStubQueryTooltipHdl(void*, weld::TreeIter const&)
at /home/lo/Dev/LO1/core/sw/source/uibase/utlui/content.cxx:4895
20 Link::Call(weld::TreeIter
const&) const at /home/lo/Dev/LO1/core/include/tools/link.hxx:111
21 weld::TreeView::signal_query_tooltip(weld::TreeIter const&) at /
home/lo/Dev/LO1/core/include/vcl/weld.hxx:977
22 SalInstanceTreeView::TooltipHdl(SvTreeListEntry*) at /home/lo/Dev/
LO1/core/vcl/source/app/salvtables.cxx:5154
23 SalInstanceTreeView::LinkStubTooltipHdl(void*, SvTreeListEntry*) at
/home/lo/Dev/LO1/core/vcl/source/app/salvtables.cxx:5151
24 Link::Call(SvTreeListEntry*) const
at /home/lo/Dev/LO1/core/include/tools/link.hxx:111
25 SvTreeListBox::RequestHelp(HelpEvent const&) at /home/lo/Dev/LO1/
core/vcl/source/treelist/treelistbox.cxx:3284
26 ImplHandleMouseHelpRequest(vcl::Window*, Point const&) at /home/lo/
Dev/LO1/core/vcl/source/window/winproc.cxx:186
27 ImplHandleMouseEvent(VclPtr const&, NotifyEventType,
bool, long, long, unsigned long, unsigned short, MouseEventModifiers) at
/home/lo/Dev/LO1/core/vcl/source/window/winproc.cxx:740
28 ImplHandleSalMouseMove(vcl::Window*, SalMouseEvent const*) at /home/
lo/Dev/LO1/core/vcl/source/window/winproc.cxx:2332
29 ImplWindowFrameProc(vcl::Window*, SalEvent, void const*) at /home/
lo/Dev/LO1/core/vcl/source/window/winproc.cxx:2665 (discriminator 1)
30 SalFrame::CallCallback(SalEvent, void const*) const at /home/lo/Dev/
LO1/core/vcl/inc/salframe.hxx:312 (discriminator 1)
31 QtFrame::CallCallback(SalEvent, void const*) const at /home/lo/Dev/
LO1/core/vcl/inc/qt5/QtFrame.hxx:228
32 QtWidget::mouseMoveEvent(QMouseEvent*) at /home/lo/Dev/LO1/core/vcl/
qt5/QtWidget.cxx:202
33 QWidget::event(QEvent*) in /lib/x86_64-linux-gnu/libQt5Widgets.so.5
34 QtWidget::event(QEvent*) at /home/lo/Dev/LO1/core/vcl/qt5/
QtWidget.cxx:738 (discriminator 2)
35 QApplicationPrivate::notify_helper(QObject*, QEvent*) in /lib/
x86_64-linux-gnu/libQt5Widgets.so.5
36 QApplication::notify(QObject*, QEvent*) in /lib/x86_64-linux-gnu/
libQt5Widgets.so.5
37 QCoreApplication::notifyInternal2(QObject*, QEvent*) in /lib/x86_64-

[Bug 159679] pdf digital signature, fails to access to the list of my openpgp signature in kleopatra

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159679

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Bug 160614] Master document - Incorrect index page numbers in subdocuments

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160614

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 160619] Create Separate Print Jobs for collated output fails

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160619

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 157445] Portrait / landscape

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157445

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

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 153671] Drop "Use printer metrics" feature completely

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153671

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

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 157941] bookmarks without text in writer

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157941

--- Comment #2 from QA Administrators  ---
Dear Gianfranco Maria Gentili,

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 157909] All unfilled date fields in form are implicitly filled 1.1.1900

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157909

--- Comment #10 from QA Administrators  ---
Dear Petr Poruban,

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 157725] Signing a PDF has no visible effect, signature is not listed

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157725

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

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 157701] LibreOffice Calc crashes when trying to apply formatting to entire row

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157701

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

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 95555] FILEOPEN RTF Frames overlap in document created by Oracle Reports

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=9

--- Comment #17 from QA Administrators  ---
Dear Dženan Zukić,

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 80412] FILESAVE: DOC save breaks correct Normal style font and font size in Word for Mac 2011 & 2016 ver 15

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80412

--- Comment #13 from QA Administrators  ---
Dear mitja,

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 61357] DOC import: Equation numbering missing. DATA LOSS when saving.

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61357

--- Comment #14 from QA Administrators  ---
Dear A.S.,

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 62185] FILEOPEN PPTX Text reflections not imported

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62185

--- Comment #14 from QA Administrators  ---
Dear Ofir,

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 72511] Comment note on a DOC from MS Word for Mac 2008 appears wrongly on Writer

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72511

--- Comment #18 from QA Administrators  ---
Dear Kumāra,

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 60205] Multi-column 1-page RTF(not doc) with text box (absolute position to margin with "Layout in table cell") opens with wrong frame position

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60205

--- Comment #19 from QA Administrators  ---
Dear rj_libreoffice,

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 126996] FILESAVE DOCX The wideslash from a formula is not saved

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126996

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

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 119010] Page area hatch doesn't work correctly in a Writer document with mirrored pages.

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119010

--- Comment #10 from QA Administrators  ---
Dear Robin Henderson,

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 118962] "Tab position relative to paragraph style indent" issues in ToC where tab stop position less than “before text”

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118962

--- Comment #8 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://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 111635] OFFLINE HELPS (English US x64) install fine, but LibreOffice x64 says it isn't installed!

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111635

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

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 104103] FILEOPEN DOC: Textbox isn't separated from drawing canvas

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104103

--- Comment #9 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://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 159375] Opening Tools > Options dialog takes too long

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159375

--- Comment #11 from Hossein  ---
(In reply to Bayram Çiçek from comment #9)
> > I think another approach can be creating a search database at compile time.
> > In this way, it will be ready at execution time, without any delays. You may
> > initialize the dialogs, dump strings and write them to some files, and then
> > re-use that at runtime. You may need to do this for each and every language,
> > as the translations are important here.
> We tried this approach but we saw that this approach makes the
> implementation more complex - especially when it comes to different
> languages (translations etc...)
Could you please describe how did you try this approach? And what were the
issues that made it so complex?

(In reply to Stéphane Guillou (stragu) from comment #10)
> I think you misunderstood me. I mean: compile-time indexing does not include
> the extra panels that might be added to the Options dialog when the user
> installs an extension after installation, and therefore would not be
> included in the search results.
Aha, OK! Now I understand what you mean.
We can have a compromise for that: index pre-built options at compile time, and
then add indexes for the remaining at run-time.

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

[Bug 148407] Need ability to cancel an ongoing paste action

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148407

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||151167


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151167
[Bug 151167] [META] Make long operations cancellable
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 137147] Provide a way to cancel formula calculation in Calc (e.g., by hitting ESC key)

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137147

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||151167


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151167
[Bug 151167] [META] Make long operations cancellable
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 150239] Show progress while performing lengthy operations and allow to interrupt

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150239

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||151167


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151167
[Bug 151167] [META] Make long operations cancellable
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 89340] Functionality request : Cancel running a pdf export

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89340

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||151167


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151167
[Bug 151167] [META] Make long operations cancellable
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 136524] [META] Performance/hang/lag/high CPU issues

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136524

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||151167


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151167
[Bug 151167] [META] Make long operations cancellable
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 49701] Provide UI button to abort loading of a file

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49701

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks||151167


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151167
[Bug 151167] [META] Make long operations cancellable
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 151167] [META] Make long operations cancellable

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151167

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Depends on||49701, 89340, 137147,
   ||148407, 150239
  Alias||cancel-long-operations
 Blocks||136524
 Status|UNCONFIRMED |NEW
Summary|All potentially very long   |[META] Make long operations
   |operations should be|cancellable
   |cancellable.|

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
(In reply to Heiko Tietze from comment #2)
> I would keep this ticket as META.
Done.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=49701
[Bug 49701] Provide UI button to abort loading of a file
https://bugs.documentfoundation.org/show_bug.cgi?id=89340
[Bug 89340] Functionality request : Cancel running a pdf export
https://bugs.documentfoundation.org/show_bug.cgi?id=136524
[Bug 136524] [META] Performance/hang/lag/high CPU issues
https://bugs.documentfoundation.org/show_bug.cgi?id=137147
[Bug 137147] Provide a way to cancel formula calculation in Calc (e.g., by
hitting ESC key)
https://bugs.documentfoundation.org/show_bug.cgi?id=148407
[Bug 148407] Need ability to cancel an ongoing paste action
https://bugs.documentfoundation.org/show_bug.cgi?id=150239
[Bug 150239] Show progress while performing lengthy operations and allow to
interrupt
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 136524] [META] Performance/hang/lag/high CPU issues

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136524

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
(In reply to Buovjaga from comment #2)
Let's merge bug 113510 into this one? Can you Ninja it?

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

[Bug 155155] Japanese, vertical RTL text: left-side text not displayed after IME text input on new line

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155155

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
Thanks Rob. As we're unsure what fixed it, let's mark as "resolved - works for
me". Thanks!

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

[Bug 103303] [META] Desktop integration bugs and enhancements

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103303

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||149610


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149610
[Bug 149610] Whether and how to present iconography should adhere to what the
host-OS or desktop-environment mandate (e.g. KDE Plasma Application Style
settings)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 149610] Whether and how to present iconography should adhere to what the host-OS or desktop-environment mandate (e.g. KDE Plasma Application Style settings)

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149610

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 Blocks||103303
 CC||m.wegh...@posteo.de
Summary|Whether and how to present  |Whether and how to present
   |iconography should adhere   |iconography should adhere
   |to what the host-OS or  |to what the host-OS or
   |desktop-environment |desktop-environment mandate
   |mandate.|(e.g. KDE Plasma
   ||Application Style settings)

--- Comment #5 from Stéphane Guillou (stragu) 
 ---
(In reply to `{third: "Beedell", first: "Roke"}`{.JSON5} from comment #3)
> Created attachment 187009 [details]
> Icons KCM configuration.
As you are using the gtk3 VCL plugin for LO (as seen in your version info),
have you tried changing the settings with "Configure GNOME/GTK application
style" on the right-hand side of the dialog?

And the other way around: are the settings as depicted followed if you start LO
with:

SAL_USE_VCLPLUGIN=kf5 libreoffice

@Michael, I thought this might be right up your alley.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103303
[Bug 103303] [META] Desktop integration bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160732] Rename "Navigation" toolbar to clarify its role, avoid confusion, and relate to "Navigate by - Recency"

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160732

--- Comment #8 from Jim Raykowski  ---
(In reply to Stéphane Guillou (stragu) from comment #7)
+1
Tracks exactly with what I was thinking all the way down to the "Position
History" length compared to the "Wrong table formula" length.

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

[Bug 160732] Rename "Navigation" toolbar to clarify its role, avoid confusion, and relate to "Navigate by - Recency"

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160732

--- Comment #8 from Jim Raykowski  ---
(In reply to Stéphane Guillou (stragu) from comment #7)
+1
Tracks exactly with what I was thinking all the way down to the "Position
History" length compared to the "Wrong table formula" length.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Bug 153158] fontconfig alias not respected on SVG import

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153158

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
(In reply to Julien Nabet from comment #4)
> I did all this (+fc-cache -fv to force font cache recreation from scratch)
> but Inkscape still shows Linux Biolinum whereas I would expect it displays
> "Andale Mono". Did I miss something?
If the font is unavailable, its name is still shown in the Text and Font tab,
but crossed out with a red line. Can you see that? (Using Inkscape 1.3.1)

(In reply to Julien Nabet from comment #5)
> Also the weird thing is I don't see anymore Linux Biolinum in LO.
The test requires not having Linux Biolinum installed, so that would expected.

@Xisco, maybe you have an idea?

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

[Bug 160732] Rename "Navigation" toolbar to clarify its role, avoid confusion, and relate to "Navigate by - Recency"

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160732

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Summary|Rename "Navigation" toolbar |Rename "Navigation" toolbar
   |to clarify its role, avoid  |to clarify its role, avoid
   |confusion, and relate to|confusion, and relate to
   |"Recency"   |"Navigate by - Recency"

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

[Bug 160732] Rename "Navigation" toolbar to clarify its role, avoid confusion, and relate to "Navigate by - Recency"

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160732

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Summary|Rename "Navigation" toolbar |Rename "Navigation" toolbar
   |to clarify its role, avoid  |to clarify its role, avoid
   |confusion, and relate to|confusion, and relate to
   |"Recency"   |"Navigate by - Recency"

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Bug 160732] Rename "Navigation" toolbar to clarify its role, avoid confusion, and relate to "Recency"

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160732

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #7 from Stéphane Guillou (stragu) 
 ---
Sounds like "Position History" is the top contender - which makes me think: do
we also want to make the Navigate By dropdown's text consistent with it, by
replacing "Recency" with "Position History"? "Navigate by - position history"
works well.
I think it would make sense and clarify the role. "Recency" makes it sound like
"how recently the object was created". In that list, it's the only element out
of 21 that is about about "things that don't exist anymore". All other elements
are about "what currently exists in the document" (or session, for Reminders).
We better make that extra clear with an appropriate, consistent label.
"Position History" (16 chars) wouldn't be too long for that Navigate By list -
"Wrong table formula" is already longer (20 chars).

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

[Bug 160732] Rename "Navigation" toolbar to clarify its role, avoid confusion, and relate to "Recency"

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160732

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #7 from Stéphane Guillou (stragu) 
 ---
Sounds like "Position History" is the top contender - which makes me think: do
we also want to make the Navigate By dropdown's text consistent with it, by
replacing "Recency" with "Position History"? "Navigate by - position history"
works well.
I think it would make sense and clarify the role. "Recency" makes it sound like
"how recently the object was created". In that list, it's the only element out
of 21 that is about about "things that don't exist anymore". All other elements
are about "what currently exists in the document" (or session, for Reminders).
We better make that extra clear with an appropriate, consistent label.
"Position History" (16 chars) wouldn't be too long for that Navigate By list -
"Wrong table formula" is already longer (20 chars).

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Re: Minutes from the UX/design meeting 2023-Apr-24

2024-04-24 Thread Stéphane Guillou



On 25/4/24 09:06, Eyal Rozenberg wrote:

  * Make possible 2 or more impress in fullscreen each on a dedicated
    monitor AND each seekable independently with user-defined hotkeys
    per each file
    + https://bugs.documentfoundation.org/show_bug.cgi?id=160242


First of all, I really think this bug report should have been split up
into several ones - and the issues were sort of mapped on the bug page:

A. run two presentations full-screen at same time (on two monitors)
B. Keyboard-navigate in two running full-screen presentation (i.e.
different shortcuts)
C. Same as B, but arbitrary number of presentations
D. Support per-presentation navigation shortcut choices, persisted in
the ODP file

Suggest breakup instead then INVALID (or MOVED) on this one. I would say

A - NEW
B - UNCONFIRMED (or LATER?)
C, D - WONTFIX


Thanks Eyal! Please go ahead and open a new report for A if you think 
that's the way to go. Let's hold off on B.


Cheers

--
Stéphane Guillou
Quality Assurance Analyst | The Document Foundation

Email: stephane.guil...@libreoffice.org
Matrix: @stragu:matrix.org
Fediverse: @str...@mastodon.indie.host
Web: https://stragu.gitlab.io/



Re: Uploading external tarballs to ?

2024-04-24 Thread Guilhem Moulin
On Wed, 24 Apr 2024 at 19:24:40 +0200, Guilhem Moulin wrote:
> On Wed, 24 Apr 2024 at 19:19:04 +0200, Stephan Bergmann wrote:
>> Is there a new mechanism in place to do so?  The relevant directory appears
>> to only be root-writable now?
>
> 2024-04-19 17:09:22 <@guilhem> i'm freezing 
> dev-www.libreoffice.org/{src,external}
> on gimli while the data is being relocated.  there will be a change in
> workflow for those who upload there, will send an announce to the dev
> list in due time (hopefully tonight, otherwise during the week-end).
> shout out if something urgently needs to be uploaded in the meantime
>
> Which didn't happen yet due to the regressions caused by the last gerrit
> upgrade.  Writing docs for the new workflow now.

See https://git.libreoffice.org/extern#introduction .

-- 
Guilhem.


signature.asc
Description: PGP signature


[Bug 160431] Inverts webp file image when inserted

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160431

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

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

[Bug 160816] New: Can't paste text copied from PDFs

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160816

Bug ID: 160816
   Summary: Can't paste text copied from PDFs
   Product: LibreOffice
   Version: 24.2.2.2 release
  Hardware: All
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stokest...@gmail.com

Description:
Not sure what the critical factor is, but attempting to paste text from some
PDFs does nothing in writer... although it can be pasted into other
applications.


Steps to Reproduce:
1. Start a Writer document.
2. Copy some body text from
https://www.coralrestoration.org/_files/ugd/60a969_0d6d400dd3264652bc74b25c1de38e46.pdf
3. Try to paste it into the document.

Actual Results:
Nothing happens, although Paste is enabled and I can paste the text into other
applications (like TextMate).

Expected Results:
The text is pasted.


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 24.2.2.2 (AARCH64) / LibreOffice Community
Build ID: d56cc158d8a96260b836f100ef4b4ef25d6f1a01
CPU threads: 10; OS: macOS 14.4.1; UI render: Skia/Metal; VCL: osx
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

Mac OS 14.4.1 (Apple Silicon)

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

[Bug 160629] Bullets and Numbering dialog in Writer does not say it's about an implicit list style

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160629

--- Comment #4 from Olivier Hallot  ---
Looking from the other side, cleaning implicit list is not possible with
Ctrl+M, and is one of the most exhausting task we have in editing the Guides.

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

[Bug 160629] Bullets and Numbering dialog in Writer does not say it's about an implicit list style

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160629

--- Comment #4 from Olivier Hallot  ---
Looking from the other side, cleaning implicit list is not possible with
Ctrl+M, and is one of the most exhausting task we have in editing the Guides.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Bug 160815] Anchor option "At Page" missing from context menu and menu bar

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160815

--- Comment #2 from Kira Tubo  ---
@V Stuart Foote, I understand that this bug is a WNF, but if that's the case,
perhaps we should update the online help documentation? Just to clarify to end
users that "At Page" is only available in the "Position and Size" dialog. 

Here's some help documentation that I think need to be updated. There may be
more... 

https://help.libreoffice.org/24.8/en-US/text/shared/01/05260100.html?DbPAR=SHARED#bm_id271692908662893
https://help.libreoffice.org/24.8/en-US/text/swriter/guide/anchor_object.html?DbPAR=WRITER#bm_id3147828

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

[Bug 160814] DOCX comments (replies) are in the wrong order

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160814

--- Comment #2 from Justin L  ---
If I disable NS_ooxml::LN_EG_RangeMarkupElements_commentRangeEnd (so there is
no range, just a single entry point) then the comments are back in the right
order.

So the problem is related to the fact that w:commentRangeEnd w:id="2/3/4"/>
comes before  is inserted. Thus the remaining
comments (2 and 4) try to import into
SwPaM start[SwPosition (node 9, offset 10)] mark[SwPosition (node 9, offset
10)]

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

[Bug 159829] Update en_ZA locale (ThousandSeparator and DecimalSeparator)

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159829

ady  changed:

   What|Removed |Added

 Whiteboard|target:24.8.0   |target:24.8.0
   ||inReleaseNotes:24.8

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

Re: Minutes from the UX/design meeting 2023-Apr-24

2024-04-24 Thread Eyal Rozenberg

Sorry for missing a meeting with a few of "my own" bug reports...


On 24/04/2024 21:58, Heiko Tietze wrote:

  * Want indication of whether a master slide is in use or not
    + https://bugs.documentfoundation.org/show_bug.cgi?id=160403
    + MSO Powerpoints shows the number of slides in a tooltip (Stephane)
    + additional boolean indication would be nice (Eyal)
    + tooltip sounds good and is not harmful (John)
    + not much useful since "Delete Master" is only available if the
  slide master is not in use (Cor)


... but you only see that if you right-click the master. The boolean
indication suggestion would make you aware of this about all visible
masters at once. But I agree with the low priority.


    => no objection, low priority

  * When right-clicking a font family combo-box, offer font meta-data
    + https://bugs.documentfoundation.org/show_bug.cgi?id=152487
    + unclear use case and much likely off-topic being available in
  font management tools (Heiko)


I will have to make the use case clearer on the bug page. Again, sorry
for not being around to make that case.



    + info dialog sounds good but rather via special characters or
  in the character properties dialog (Stuart)
    + only use case is compatibility with some other font (John)


That's an interesting use case, but not what I had in mind.



  + likely not part of the meta data
    + the Internet returns all search results (Cor)


The point is to help the user select an item on a list, while the list
is open - so that the user doesn't have to search for information
elsewhere (e.g. the Internet).

>     => idea does not find support; WF>

  * Make possible 2 or more impress in fullscreen each on a dedicated
    monitor AND each seekable independently with user-defined hotkeys
    per each file
    + https://bugs.documentfoundation.org/show_bug.cgi?id=160242


First of all, I really think this bug report should have been split up
into several ones - and the issues were sort of mapped on the bug page:

A. run two presentations full-screen at same time (on two monitors)
B. Keyboard-navigate in two running full-screen presentation (i.e.
different shortcuts)
C. Same as B, but arbitrary number of presentations
D. Support per-presentation navigation shortcut choices, persisted in
the ODP file

>     + start Impress twice (Stephane)

When you start Impress twice you're still left with just the one
instance running. I guess you can force a second instance (with a
different profile folder perhaps?) but even then, IIANM, Impress is
"imperialistic" when in Full-Screen mode. Op claimed this doesn't work
right now.


workflow is supported with a third   monitor (John)


1. Is it? Can you elaborate on the bug page?
2. What about two monitors?

>     + too niche, better suited for an extension (Stephane, Sahil)

I partially disagree, considering the breakdown above:

A: Not so niche, in my opinion. Occasionally you want to show slides
from different presentations on different monitors - without having
combined them into a multi-monitor-targeting presentation (do we even
have that?). Happened to me already.

B: If Alt-Tab worked (which we can't know, since A is not possible yet),
then this would be kind of niche.

C, D: That's the niche part.


>     => WF

Disagree!

It looks like (some of) the ask changes app behavior rather than
enhancing it. The per-file shortcuts sounds like extension material to
me though.

Suggest breakup instead then INVALID (or MOVED) on this one. I would say

A - NEW
B - UNCONFIRMED (or LATER?)
C, D - WONTFIX



[Bug 140702] Removal of "To page" anchor context menu entries for frames, images, OLE objects (comment 3)

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140702

V Stuart Foote  changed:

   What|Removed |Added

 CC||kira.t...@gmail.com

--- Comment #37 from V Stuart Foote  ---
*** Bug 160815 has been marked as a duplicate of this bug. ***

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

[Bug 160815] Anchor option "At Page" missing from context menu and menu bar

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160815

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||vsfo...@libreoffice.org

--- Comment #1 from V Stuart Foote  ---


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

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

[Bug 160804] If the separator is different from the standard locale, stretching the determinant with the fill handle will change the separator and result in a different formula

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160804

--- Comment #3 from ady  ---
(In reply to ady from comment #2)

> _My_ settings are probably not typical:
> 
> * Array Row separator: semicolon (";")
> * Array Column separator: vertical bar ("|" hex 7c, dec 124)
> 
> 
> 1. A1: ={1;2;3} [ENTER]

Of course that for older versions, the introduction of the array (formula)
needs to be performed by [CTRL]+[SHIFT]+[ENTER] (instead of the sole [ENTER]).
In newer versions, Calc automatically recognizes this as an array even when
only using [ENTER].

When using CSE, I can reproduce the same behavior I described in comment 2 with
LO 3.3 too.

Before setting this report to "inherited", I would rather have confirmation
that what I described in comment 2 is indeed the same problem that is
(apparently) reported in comment 0 (because I am not sure, considering the
differences in my results).

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

[Bug 160813] LibreOffice Writer - Tabbed UI not scaled

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160813

--- Comment #3 from V Stuart Foote  ---
Created attachment 193845
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193845=edit
Tabbed UI at LO 24.2.2 on Windows, os/DE 200% UI scaling w 150% bigger text

Here Notebook Bar "Tabbed UI" MUFFIN mode with mix of Windows os/DE 200% UI
scale and 150% "bigger text". Icon theme set to Colibre (SVG + dark).

Note the "Styles Preview" panel is the only really degraded area.

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

[Bug 160804] If the separator is different from the standard locale, stretching the determinant with the fill handle will change the separator and result in a different formula

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160804

--- Comment #2 from ady  ---
Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: ea43cbbb7371a743f470d949762a0e92f196e652
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (es_AR); UI: en-US
Calc: CL threaded


_My_ settings are probably not typical:

* Array Row separator: semicolon (";")
* Array Column separator: vertical bar ("|" hex 7c, dec 124)


1. A1: ={1;2;3} [ENTER]

1.1. Array result:

A1: 1
A2: 2
A3: 3

2. Select A1:A3 (the whole array).

3. Expand the array to add one row, A1:A4.

3.1. Array result:

A1: 1
A2: 1
A3: 1
A4: 1


4. Expand the array to add one row, A1:A5.

4.1. Array result:

A1: 1
A2: 2
A3: 3
A4: #N/A
A5: #N/A



5. Expand the array to add _two_ rows, A1:A7.

5.1. Array result:

A1: 1
A2: 1
A3: 1
A4: 1
A5: 1
A6: 1
A7: 1


6. Expand the array to add one row, A1:A8

4.1. Array result:

A1: 1
A2: 2
A3: 3
A4: #N/A
A5: #N/A
A6: #N/A
A7: #N/A
A8: #N/A



I can even reduce the size of the array; the amount of rows (plus or minus) are
not a factor.

The factor is: one time I get "ones", the next time I get the original array
plus #N/A (as much as needed to fulfill the new size of the array), and then
the cycle repeats.

I can also replicate this cycle when expanding the array from rows to multiple
columns. The difference is that the "ones" are expanded to "twos", and so on
(according to number of columns) and then #N/A's and then the cycle repeats.

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

[Bug 160813] LibreOffice Writer - Tabbed UI not scaled

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160813

V Stuart Foote  changed:

   What|Removed |Added

 Blocks||107237


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107237
[Bug 107237] [META] Notebookbar Tabbed
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 107237] [META] Notebookbar Tabbed

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107237

V Stuart Foote  changed:

   What|Removed |Added

 Depends on||160813


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160813
[Bug 160813] LibreOffice Writer - Tabbed UI not scaled
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 146297] NB TABBED: Styles Preview Widget does not implement scaling (visible in qt / kf5)

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146297

V Stuart Foote  changed:

   What|Removed |Added

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

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

[Bug 160813] LibreOffice Writer - Tabbed UI not scaled

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160813

V Stuart Foote  changed:

   What|Removed |Added

 CC||vsfo...@libreoffice.org
 Status|NEW |RESOLVED
 Resolution|--- |NOTABUG
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||6297

--- Comment #2 from V Stuart Foote  ---
(In reply to quachvan from comment #0)
> Expected Results:
> Should be scaled like in MS-Office

And? 

The "Tabbed UI" flavor of the Notebook Bar does not use native MS Ribbon API
libs.

Instead it is a mix of GTK .UI, and UNO button actions. Supplementing the
legacy Menu/Toolbar/Dialog and Sidebar decks.

In fact it scales well cross platform, with exception of the "Styles Preview"
panel (bug 146297).

If you need the NB UI to scale for 4K or HiDPI screens, scale your os/DE. 

So, on Windows on a 4K display use the system Settings -> Display -> 'Make text
bigger' slider and apply-- 170% should make the NB comfortable to use on HiDPI.
Distinct from your other os/DE scale factor.

Again, the NB "Tabbed UI" is not native Windows Ribbon API--many features of
the Windows Ribbon are simply not achievable.

IMHO => NAB with only substantive issue the "Styles Preview" of the noted bug.

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

core.git: 2 commits - accessibility/source dbaccess/source editeng/source offapi/com sc/source sd/source svx/source sw/source test/source toolkit/source vcl/osx vcl/qa vcl/qt5 vcl/source vcl/unx winac

2024-04-24 Thread Michael Weghorn (via logerrit)
 accessibility/source/extended/accessiblelistboxentry.cxx   |2 
 accessibility/source/extended/textwindowaccessibility.cxx  |6 +-
 accessibility/source/standard/floatingwindowaccessible.cxx |2 
 accessibility/source/standard/vclxaccessiblelist.cxx   |2 
 accessibility/source/standard/vclxaccessibleradiobutton.cxx|2 
 dbaccess/source/ui/querydesign/ConnectionLineAccess.cxx|2 
 dbaccess/source/ui/querydesign/TableWindowAccess.cxx   |   10 ++--
 editeng/source/accessibility/AccessibleEditableTextPara.cxx|8 +--
 offapi/com/sun/star/accessibility/AccessibleRelation.idl   |2 
 offapi/com/sun/star/accessibility/XAccessibleMultiLineText.idl |1 
 sc/source/ui/Accessibility/AccessibleCell.cxx  |4 -
 sc/source/ui/Accessibility/AccessibleCsvControl.cxx|4 -
 sc/source/ui/Accessibility/AccessibleEditObject.cxx|4 -
 sd/source/console/PresenterAccessibility.cxx   |4 -
 svx/source/accessibility/AccessibleControlShape.cxx|2 
 svx/source/accessibility/AccessibleShape.cxx   |2 
 svx/source/accessibility/svxrectctaccessiblecontext.cxx|2 
 sw/source/core/access/accpara.cxx  |4 -
 sw/source/core/access/acctextframe.cxx |2 
 test/source/a11y/accessibletestbase.cxx|   10 +---
 toolkit/source/awt/vclxaccessiblecomponent.cxx |6 +-
 vcl/osx/a11ywrapper.mm |   12 ++---
 vcl/qa/cppunit/a11y/atspi2/atspi2.cxx  |3 -
 vcl/qt5/QtAccessibleWidget.cxx |2 
 vcl/source/app/salvtables.cxx  |4 -
 vcl/unx/gtk3/a11y/atkwrapper.cxx   |5 --
 winaccessibility/source/UAccCOM/AccRelation.cxx|8 +--
 winaccessibility/source/UAccCOM/MAccessible.cxx|   22 
--
 28 files changed, 64 insertions(+), 73 deletions(-)

New commits:
commit d4f6534e8870e8f271984c37ce54a6878f372ae1
Author: Michael Weghorn 
AuthorDate: Wed Apr 24 14:39:46 2024 +0200
Commit: Michael Weghorn 
CommitDate: Wed Apr 24 23:04:35 2024 +0200

[API CHANGE] a11y: Use XAccessible for relation targets

Use a Sequence of XAccessible rather than its base
interface XInterface for AccessibleRelation's TargetSet.

As the targets are accessible objects as well,
anything other than XAccessible doesn't make much sense.
Using XAccessible right away makes that clearer and avoids
the need to query the XAccessible interface.

(The winaccessibility bridge was already using
`static_cast`, relying on the fact that the objects
are XAccessibles.)

The a11y UNO API is not published, so an API change
should be unproblematic.

Change-Id: I7f08e98d1ec303d5343d9a7954187cdd71495ebc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166586
Reviewed-by: Michael Weghorn 
Tested-by: Jenkins

diff --git a/accessibility/source/extended/accessiblelistboxentry.cxx 
b/accessibility/source/extended/accessiblelistboxentry.cxx
index 6c8fa6fc26dc..a843b938b9a3 100644
--- a/accessibility/source/extended/accessiblelistboxentry.cxx
+++ b/accessibility/source/extended/accessiblelistboxentry.cxx
@@ -463,7 +463,7 @@ namespace accessibility
 if ( xParent.is() )
 {
 rtl::Reference 
pRelationSetHelper = new utl::AccessibleRelationSetHelper;
-Sequence< Reference< XInterface > > aSequence { xParent };
+Sequence> aSequence { xParent };
 pRelationSetHelper->AddRelation(
 AccessibleRelation( AccessibleRelationType::NODE_CHILD_OF, 
aSequence ) );
 xRelSet = pRelationSetHelper;
diff --git a/accessibility/source/extended/textwindowaccessibility.cxx 
b/accessibility/source/extended/textwindowaccessibility.cxx
index f1ccc69c413d..5cef04128d82 100644
--- a/accessibility/source/extended/textwindowaccessibility.cxx
+++ b/accessibility/source/extended/textwindowaccessibility.cxx
@@ -1293,14 +1293,14 @@ Document::retrieveParagraphRelationSet( Paragraph const 
* pParagraph )
 
 if ( aPara > m_aVisibleBegin && aPara < m_aVisibleEnd )
 {
-css::uno::Sequence< css::uno::Reference< css::uno::XInterface > > 
aSequence { getAccessibleChild( aPara - 1 ) };
+
css::uno::Sequence> 
aSequence { getAccessibleChild(aPara - 1) };
 css::accessibility::AccessibleRelation aRelation( 
css::accessibility::AccessibleRelationType::CONTENT_FLOWS_FROM, aSequence );
 pRelationSetHelper->AddRelation( aRelation );
 }
 
 if ( aPara >= m_aVisibleBegin && aPara < m_aVisibleEnd -1 )
 {
-css::uno::Sequence< css::uno::Reference< css::uno::XInterface > > 
aSequence { getAccessibleChild( aPara + 1 ) };
+
css::uno::Sequence> 

[Bug 159829] Update en_ZA locale (ThousandSeparator and DecimalSeparator)

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159829

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #6 from Eike Rathke  ---
Added to release notes
https://wiki.documentfoundation.org/ReleaseNotes/24.8#Changes_to_locale_data

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

[Bug 160783] Skia lib based Vulkan driver reporting issue, affect on GPU testing and deny listing

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160783

Julien Nabet  changed:

   What|Removed |Added

 CC||mikekagan...@hotmail.com,
   ||noelgran...@gmail.com

--- Comment #4 from Julien Nabet  ---
I kept digging and noticed this commit (2020-02-12)
2b702f7436acf6883b41508277441e5ea0a53d51
which includes this change:
 static bool isVulkanBlacklisted(const VkPhysicalDeviceProperties& props)
 {
 static const char* const types[]
 = { "other", "integrated", "discrete", "virtual", "cpu", "??" }; //
VkPhysicalDeviceType
+OUString driverVersion = OUString::number(props.driverVersion >> 22) + "."
+ + OUString::number((props.driverVersion >> 12) &
0x3ff) + "."
+ + OUString::number(props.driverVersion & 0xfff);
+OUString vendorId = "0x" + OUString::number(props.vendorID, 16);
+OUString deviceId = "0x" + OUString::number(props.deviceID, 16);
 SAL_INFO("vcl.skia",
  "Vulkan API version: "
  << (props.apiVersion >> 22) << "." << ((props.apiVersion >>
12) & 0x3ff) << "."
- << (props.apiVersion & 0xfff) << ", driver version: "
- << (props.driverVersion >> 22) << "." <<
((props.driverVersion >> 12) & 0x3ff)
- << "." << (props.driverVersion & 0xfff) << std::hex << ",
vendor: 0x"
- << props.vendorID << ", device: 0x" << props.deviceID <<
std::dec
- << ", type: " << types[std::min(props.deviceType,
SAL_N_ELEMENTS(types))]
+ << (props.apiVersion & 0xfff) << ", driver version: " <<
driverVersion
+ << ", vendor: " << vendorId << ", device: " << deviceId << ",
type: "
+ << types[std::min(props.deviceType,
SAL_N_ELEMENTS(types) - 1)]
  << ", name: " << props.deviceName);
-return false;
+return DriverBlocklist::IsDeviceBlocked(getBlacklistFile(), driverVersion,
vendorId, deviceId);
 }

so before this commit, we used apiVersion, afterwards, we started to use
driverVersion.

For api version, Skia uses this macro:
#define VK_MAKE_VERSION(major, minor, patch) \
(((major) << 22) | ((minor) << 12) | (patch))
in addition with these:
#define VK_VERSION_MAJOR(version) ((uint32_t)(version) >> 22)
#define VK_VERSION_MINOR(version) (((uint32_t)(version) >> 12) & 0x3ff)
#define VK_VERSION_PATCH(version) ((uint32_t)(version) & 0xfff)
it corresponds well with the LO part:
146 static OUString versionAsString(uint32_t version)
147 { 
148 return OUString::number(version >> 22) + "." +
OUString::number((version >> 12) & 0x3ff) + "."
149+ OUString::number(version & 0xfff);
150 }


but driverVersion uses this one:
#define GR_GL_DRIVER_VER(major, minor, point) ((static_cast(major) <<
32) | \ 
   (static_cast(minor) <<
16) | \ 
static_cast(point))

So I suppose LO should be adapted.

But a last thing, in Skia we got:
typedef struct VkPhysicalDeviceProperties {
uint32_tapiVersion;
uint32_tdriverVersion;
uint32_tvendorID;
uint32_tdeviceID;
VkPhysicalDeviceTypedeviceType;
char   
deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
uint8_t pipelineCacheUUID[VK_UUID_SIZE];
VkPhysicalDeviceLimits  limits;
VkPhysicalDeviceSparsePropertiessparseProperties;
} VkPhysicalDeviceProperties;

apiVersion is uint32_t ok, but driverVersion is uint64_t when reading the
macro.

So even if we change LO part, it seems there's a bug in Skia, doesn't it?

Noel/Mike: perhaps one of you might be interested in this one?

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

[Bug 159829] Update en_ZA locale (ThousandSeparator and DecimalSeparator)

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159829

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

https://git.libreoffice.org/core/commit/92ea59703da91771ca78ade82ca796077c066da8

Resolves: tdf#159829 DecimalSeparator '.' period, ThousandSeparator ',' comma

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 159829] Update en_ZA locale (ThousandSeparator and DecimalSeparator)

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159829

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.8.0

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

[Bug 160783] Skia lib based Vulkan driver reporting issue, affect on GPU testing and deny listing

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160783

--- Comment #3 from V Stuart Foote  ---
GLview and vulkaninfo utils both return the uint32_t of "2315452416" as
driverVersion for this nVidia GPU. And both convert its ID string to
"552.12.0.0"

vulkaninfo.exe run
GPU0:
VkPhysicalDeviceProperties:
---
apiVersion= 1.3.277 (4206869)
driverVersion = 552.12.0.0 (2315452416)
vendorID  = 0x10de
deviceID  = 0x1380
deviceType= PHYSICAL_DEVICE_TYPE_DISCRETE_GPU
deviceName= NVIDIA GeForce GTX 750 Ti
pipelineCacheUUID = e1b3e8ed-3cf0-cbc3-9cd7-33f3274361af

But we end up with "552.48.0", and following along in SkiaHelper.cxx at 166 we
convert to use the 3 part versionAsString() against the uint32_t of the
driverVersion.

Hunted around at Khronos, and reddit [1] and it looks like the driver version
is supposed to be vendor controlled--and nVidia makes the uint32_t driver
version a 4-part string. While Khronos and generic get a 3-part driver string.

I couldn't figure out the masking by hand, but does 3-part "552.48.0" match the
4-part "552.12.0.0" conversion of the driverVersion "2315452416"?

If so, guess it would not be an issue that they don't match.

Or might be better for to just use the uint32_t "driverVersion" as returned,
and not convert it?

=-ref-=
[1]
https://www.reddit.com/r/vulkan/comments/fmift4/how_to_decode_driverversion_field_of/

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

core.git: i18npool/source

2024-04-24 Thread Eike Rathke (via logerrit)
 i18npool/source/localedata/data/en_ZA.xml |   46 +++---
 1 file changed, 23 insertions(+), 23 deletions(-)

New commits:
commit 92ea59703da91771ca78ade82ca796077c066da8
Author: Eike Rathke 
AuthorDate: Wed Apr 24 18:09:45 2024 +0200
Commit: Eike Rathke 
CommitDate: Wed Apr 24 22:40:02 2024 +0200

Resolves: tdf#159829 DecimalSeparator '.' period, ThousandSeparator ',' 
comma

Follows
https://unicode-org.atlassian.net/browse/CLDR-16247
https://unicode-org.atlassian.net/browse/CLDR-14707?focusedCommentId=161272

Change-Id: I7ad049dd06102b36ac8d7ff13f7604e5cbb10f9a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166602
Reviewed-by: Eike Rathke 
Tested-by: Jenkins

diff --git a/i18npool/source/localedata/data/en_ZA.xml 
b/i18npool/source/localedata/data/en_ZA.xml
index 1e9175837279..dd61e98a2349 100644
--- a/i18npool/source/localedata/data/en_ZA.xml
+++ b/i18npool/source/localedata/data/en_ZA.xml
@@ -31,10 +31,10 @@
   
 
   /
-   
-  ,
+  ,
+  .
   :
-  ,
+  .
   ;


@@ -62,22 +62,22 @@
   0
 
 
-  0,00
+  0.00
 
 
-  # ##0
+  #,##0
 
 
-  # ##0,00
+  #,##0.00
 
 
-  # ###,00
+  #,###.00
 
 
-  # ##0_);(# ##0)
+  #,##0_);(#,##0)
 
 
-  # ##0,00_);(# ##0,00)
+  #,##0.00_);(#,##0.00)
 
 
   [NatNum12 cardinal]0
@@ -92,49 +92,49 @@
   [NatNum12 upper cardinal]0
 
 
-  0,00E+000
+  0.00E+000
 
 
-  0,00E+00
+  0.00E+00
 
 
-  ##0,00E+00
+  ##0.00E+00
 
 
   0%
 
 
-  0,00%
+  0.00%
 
 
-  [CURRENCY] # ##0;[CURRENCY]-# ##0
+  [CURRENCY] #,##0;[CURRENCY]-#,##0
 
 
-  [CURRENCY] # ##0,00;[CURRENCY]-# ##0,00
+  [CURRENCY] #,##0.00;[CURRENCY]-#,##0.00
 
 
-  [CURRENCY] # ##0;[RED][CURRENCY]-# ##0
+  [CURRENCY] #,##0;[RED][CURRENCY]-#,##0
 
 
-  [CURRENCY] # ##0,00;[RED][CURRENCY]-# ##0,00
+  [CURRENCY] #,##0.00;[RED][CURRENCY]-#,##0.00
 
 
-  # ##0,00 CCC
+  #,##0.00 CCC
 
 
-  [CURRENCY] # ##0,--;[RED][CURRENCY]-# ##0,--
+  [CURRENCY] #,##0,--;[RED][CURRENCY]-#,##0,--
 
 
   [NatNum12 title CURRENCY]0
 
 
-  [NatNum12 title CURRENCY]0,00
+  [NatNum12 title CURRENCY]0.00
 
 
   [NatNum12 upper CURRENCY]0
 
 
-  [NatNum12 upper CURRENCY]0,00
+  [NatNum12 upper CURRENCY]0.00
 
 
   YY-MM-DD
@@ -222,10 +222,10 @@
   [HH]:MM:SS
 
 
-  MM:SS,00
+  MM:SS.00
 
 
-  [HH]:MM:SS,00
+  [HH]:MM:SS.00
 
 
   YY-MM-DD HH:MM


[Bug 160815] New: Anchor option "At Page" missing from context menu and menu bar

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160815

Bug ID: 160815
   Summary: Anchor option "At Page" missing from context menu and
menu bar
   Product: LibreOffice
   Version: 7.3.3.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kira.t...@gmail.com

Description:
If you insert a shape, and view the Anchor options, the "At Page" option is
missing from context menu and menu bar

Steps to Reproduce:
1. Open Writer
2. Insert any shape
3. Right click on the shape to open the context menu
4. Go to Anchor and note options
5. Go to Format > Anchor and note options
6. Right click on the shape to open the context menu
7. Click on "Position and Size" or "Properties"
8. Note Anchor options

Actual Results:
"At Page" anchor option missing from context menu (step 4) and menu bar (step
5)

Expected Results:
"At Page" is an anchor option that is available from the context menu and menu
bar


Reproducible: Always


User Profile Reset: Yes

Additional Info:
Reproduced in: 

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

Version: 7.3.3.2 (x64) / LibreOffice Community
Build ID: d1d0ea68f081ee2800a922cac8f79445e4603348
CPU threads: 6; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

NOT reproduced in: 

Version: 7.0.3.1 (x64)
Build ID: d7547858d014d4cf69878db179d326fc3483e082
CPU threads: 6; OS: Windows 10.0 Build 22631; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

Most likely a regression.

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

[Bug 160431] Inverts webp file image when inserted

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160431

--- Comment #14 from KJP  ---
That works for me!

Well done. Thanks for fixing it so quickly!

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

[Bug 160810] Writer: comment thread broken

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160810

raal  changed:

   What|Removed |Added

 CC||gokaysa...@gmail.com,
   ||r...@post.cz
   Keywords||bibisected, bisected
  Regression By||Gökay Şatır

--- Comment #2 from raal  ---
This seems to have begun at the below commit in bibisect repository/OS
linux-64-24.2.
Adding Cc: to Gökay Şatır ; Could you possibly take a look at this one?
Thanks

b970a50fba146993a9ca672d81a7297c2e433f0c is the first bad commit
commit b970a50fba146993a9ca672d81a7297c2e433f0c
Author: Jenkins Build User 
Date:   Thu Oct 5 16:49:03 2023 +0200

source sha:c0187d9f5e6ab5129b6fc4682555f2f8775d6f67

157019: SW comments: Provide parent / child relations without position. |
https://gerrit.libreoffice.org/c/core/+/157019

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

core.git: Branch 'libreoffice-24-2' - sc/uiconfig

2024-04-24 Thread Heiko Tietze (via logerrit)
 sc/uiconfig/scalc/ui/conditionalentry.ui |  343 ++-
 1 file changed, 160 insertions(+), 183 deletions(-)

New commits:
commit 32f7ef29615b25e91a73fe33632bb3b7ca506d04
Author: Heiko Tietze 
AuthorDate: Wed Apr 24 11:38:51 2024 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Wed Apr 24 21:48:39 2024 +0200

Resolves tdf#159569 - Conditional Formatting dialog jumps with message 
string

Some defined width solves the issue

Change-Id: I1f92815e690828e283c275a58a71dd07613642fc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166579
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 
(cherry picked from commit 9d29a2a6aad679129218ab4c5020c92bb3ce9cb3)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166520
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/sc/uiconfig/scalc/ui/conditionalentry.ui 
b/sc/uiconfig/scalc/ui/conditionalentry.ui
index 1ff40d10460f..6e40f6cc6acc 100644
--- a/sc/uiconfig/scalc/ui/conditionalentry.ui
+++ b/sc/uiconfig/scalc/ui/conditionalentry.ui
@@ -1,216 +1,217 @@
 
-
+
 
   
   
 True
-True
+True
 True
-never
-never
-in
+never
+never
+in
 
   
 True
-False
+False
 True
 
-  
+  
   
 True
-False
+False
 True
-6
-6
-12
+6
+6
+12
 
-  
+  
   
 True
-False
+False
 True
-12
+12
 
   
 True
-False
+False
   
   
-0
-0
+0
+0
   
 
 
   
-10
+10
 True
-False
+False
 True
 end
   
   
-1
-0
+1
+0
   
 
   
   
-0
-0
+0
+0
   
 
 
-  
+  
   
 True
-False
+False
 True
-6
-12
-True
+6
+12
+True
 
   
-False
-True
+False
+True
 Apply Style:
-True
-style
+True
+style
 0
   
   
-0
-2
+0
+2
   
 
 
   
-False
-True
+False
+True
 
   New Style...
 
   
   
-1
-2
+1
+2
   
 
 
   
-False
-True
+100
+False
+True
 Enter a value:
 0
   
   
-0
-3
+0
+3
 3
   
 
 
   
-True
-True
+True
+True
+True
 True
-True
   
   
-0
-4
+0
+4
   
 
 
   
-True
-True
+True
+True
+True
 True
-True
   
   
-1
-4
+1
+4
   
 
 
   
-True
-True
+True
+True
+   

[Bug 160814] DOCX comments (replies) are in the wrong order

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160814

Justin L  changed:

   What|Removed |Added

Version|4.3.0.4 release |4.3 all versions

--- Comment #1 from Justin L  ---
The order they appear in word/comments.xml is the order in which they should
appear in the document as well (at least for this example).

Based on reading the 4.3 patch's writerfilter code, I don't see anything that
would change the order. Indeed, it still calls PopAnnotation in this order:
0 // First coment (note that the 1 is from list numbering - which is lost in
LO)
1 // 1.1 second reply.
3 // 1.2 third reply. Only reply on whole thread…
5 // 1.3
2 // 2. second comment
4 // 2.1

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

core.git: sw/source

2024-04-24 Thread Jim Raykowski (via logerrit)
 sw/source/uibase/utlui/content.cxx |   12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

New commits:
commit 802bc63be79f5622d794345dbbc577b6c603b61b
Author: Jim Raykowski 
AuthorDate: Sat Apr 20 09:52:16 2024 -0800
Commit: Jim Raykowski 
CommitDate: Wed Apr 24 21:37:44 2024 +0200

SwContentTree: Don't show 'Delete' menu item when read-only

Change-Id: Ib3a1ec5635937b2dcb26144f621ee0bf4a0101d1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166413
Reviewed-by: Jim Raykowski 
Tested-by: Jenkins

diff --git a/sw/source/uibase/utlui/content.cxx 
b/sw/source/uibase/utlui/content.cxx
index 25186110de86..a7e3ff3c9289 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -1823,10 +1823,12 @@ IMPL_LINK(SwContentTree, CommandHdl, const 
CommandEvent&, rCEvt, bool)
 const bool bProtected = 
weld::fromId(m_xTreeView->get_id(*xEntry))->IsProtect();
 const bool bProtectBM = (ContentTypeId::BOOKMARK == nContentType)
 && 
m_pActiveShell->getIDocumentSettingAccess().get(DocumentSettingId::PROTECT_BOOKMARKS);
-const bool bEditable = pType->IsEditable() &&
-((bVisible && !bProtected) || ContentTypeId::REGION == 
nContentType);
-const bool bDeletable = pType->IsDeletable()
-&& ((bVisible && !bProtected && !bProtectBM) || 
ContentTypeId::REGION == nContentType);
+const bool bEditable
+= !bReadonly && pType->IsEditable()
+  && ((bVisible && !bProtected) || ContentTypeId::REGION == 
nContentType);
+const bool bDeletable = !bReadonly && pType->IsDeletable()
+&& ((bVisible && !bProtected && 
!bProtectBM)
+|| ContentTypeId::REGION == 
nContentType);
 const bool bRenamable
 = !bReadonly
   && (pType->IsRenamable()
@@ -1899,7 +1901,7 @@ IMPL_LINK(SwContentTree, CommandHdl, const CommandEvent&, 
rCEvt, bool)
 }
 bRemoveCopyEntry = false;
 }
-else if (!bReadonly && bEditable)
+else if (bEditable)
 {
 if(ContentTypeId::INDEX == nContentType)
 {


core.git: sw/source

2024-04-24 Thread Jim Raykowski (via logerrit)
 sw/source/uibase/inc/content.hxx   |2 ++
 sw/source/uibase/utlui/content.cxx |   29 -
 2 files changed, 18 insertions(+), 13 deletions(-)

New commits:
commit 74bd60c433cdc135d8a465eb5cea8ee6ce84b436
Author: Jim Raykowski 
AuthorDate: Sat Apr 20 09:14:00 2024 -0800
Commit: Jim Raykowski 
CommitDate: Wed Apr 24 21:36:57 2024 +0200

Rework SwContentTree context menu item 'Rename' inclusion

Change-Id: Ice211a3026d07a21b1b6e47ee1c16086401714d7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166412
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/sw/source/uibase/inc/content.hxx b/sw/source/uibase/inc/content.hxx
index c6698f4b0322..f0aad555619c 100644
--- a/sw/source/uibase/inc/content.hxx
+++ b/sw/source/uibase/inc/content.hxx
@@ -188,6 +188,7 @@ class SwContentType final : public SwTypeNumber
 boolm_bDataValid :1;
 boolm_bEdit:  1;  // can this type be edited?
 boolm_bDelete:1;  // can this type be deleted?
+bool m_bRenamable = false;
 
 bool m_bAlphabeticSort = false;
 
@@ -221,6 +222,7 @@ public:
 
 boolIsEditable() const {return m_bEdit;}
 boolIsDeletable() const {return m_bDelete;}
+bool IsRenamable() const {return m_bRenamable;}
 };
 
 #endif
diff --git a/sw/source/uibase/utlui/content.cxx 
b/sw/source/uibase/utlui/content.cxx
index eff50a0ea76c..25186110de86 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -379,18 +379,22 @@ SwContentType::SwContentType(SwWrtShell* pShell, 
ContentTypeId nType, sal_uInt8
 case ContentTypeId::TABLE:
 m_sTypeToken = "table";
 m_bEdit = true;
+m_bRenamable = true;
 break;
 case ContentTypeId::FRAME:
 m_sTypeToken = "frame";
 m_bEdit = true;
+m_bRenamable = true;
 break;
 case ContentTypeId::GRAPHIC:
 m_sTypeToken = "graphic";
 m_bEdit = true;
+m_bRenamable = true;
 break;
 case ContentTypeId::OLE:
 m_sTypeToken = "ole";
 m_bEdit = true;
+m_bRenamable = true;
 break;
 case ContentTypeId::TEXTFIELD:
 m_bEdit = true;
@@ -407,16 +411,19 @@ SwContentType::SwContentType(SwWrtShell* pShell, 
ContentTypeId nType, sal_uInt8
 DocumentSettingId::PROTECT_BOOKMARKS);
 m_bEdit = true;
 m_bDelete = !bProtectedBM;
+m_bRenamable = !bProtectedBM;
 }
 break;
 case ContentTypeId::REGION:
 m_sTypeToken = "region";
 m_bEdit = true;
 m_bDelete = true;
+m_bRenamable = true;
 break;
 case ContentTypeId::INDEX:
 m_bEdit = true;
 m_bDelete = true;
+m_bRenamable = true;
 break;
 case ContentTypeId::REFERENCE:
 m_bEdit = false;
@@ -432,6 +439,7 @@ SwContentType::SwContentType(SwWrtShell* pShell, 
ContentTypeId nType, sal_uInt8
 case ContentTypeId::DRAWOBJECT:
 m_sTypeToken = "drawingobject";
 m_bEdit = true;
+m_bRenamable = true;
 break;
 default: break;
 }
@@ -1819,15 +1827,11 @@ IMPL_LINK(SwContentTree, CommandHdl, const 
CommandEvent&, rCEvt, bool)
 ((bVisible && !bProtected) || ContentTypeId::REGION == 
nContentType);
 const bool bDeletable = pType->IsDeletable()
 && ((bVisible && !bProtected && !bProtectBM) || 
ContentTypeId::REGION == nContentType);
-const bool bRenamable = bEditable && !bReadonly &&
-(ContentTypeId::TABLE == nContentType ||
- ContentTypeId::FRAME == nContentType ||
- ContentTypeId::GRAPHIC == nContentType ||
- ContentTypeId::OLE == nContentType ||
- (ContentTypeId::BOOKMARK == nContentType && !bProtectBM) 
||
- ContentTypeId::REGION == nContentType ||
- ContentTypeId::INDEX == nContentType ||
- ContentTypeId::DRAWOBJECT == nContentType);
+const bool bRenamable
+= !bReadonly
+  && (pType->IsRenamable()
+  || (ContentTypeId::BOOKMARK == nContentType && 
!bProtectBM));
+
 // Choose which Delete entry to show.
 if (bDeletable)
 {
@@ -1932,12 +1936,11 @@ IMPL_LINK(SwContentTree, CommandHdl, const 
CommandEvent&, rCEvt, bool)
 xPop->set_active("protectsection", bProtected);
 xPop->set_active("hidesection", bHidden);
 }
-else if (bEditable)
+else
 bRemoveEditEntry = false;
-//Rename 

[Bug 160215] Saving to smb share with activated backup not possible

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160215

Dieter  changed:

   What|Removed |Added

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

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

[Bug 160315] Saving files to SMB3 network shares no longer works

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160315

Dieter  changed:

   What|Removed |Added

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

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

[Bug 153202] FILESAVE: saving .odt to a smb network drive is slow (with excess download traffic)

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153202

Dieter  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=16
   ||0215,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=16
   ||0315
 Blocks||104742
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||dgp-m...@gmx.de

--- Comment #10 from Dieter  ---
Devseppala, it seems, that nobody could confirm this bug since more than one
year. So I‘d like to ask, if it is still reproducible for you. Could you please
try to reproduce it with a master build from
http://dev-builds.libreoffice.org/daily/master/current.html? I have set the
bug's status to 'NEEDINFO'. Please change it back to 'UNCONFIRMED' if the bug
is still present in the latest version.

Please have also a look at bug 160215 and 160315.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104742
[Bug 104742] [META] Network-involved bugs
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 104742] [META] Network-involved bugs

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104742

Dieter  changed:

   What|Removed |Added

 Depends on||153202


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153202
[Bug 153202] FILESAVE: saving .odt to a smb network drive is slow (with excess
download traffic)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 152848] When using accents in a table (spanish), a cell break occurs.

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152848

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #9 from Dieter  ---
Zchronos, it seems, that nobody could confirm this bug since more than one
year. So I‘d like to ask, if it is still reproducible for you. Could you please
try to reproduce it with LO 24.2 or with a master build from
http://dev-builds.libreoffice.org/daily/master/current.html? I have set the
bug's status to 'NEEDINFO'. Please change it back to 'UNCONFIRMED' if the bug
is still present in the latest version.

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

[Bug 151029] In serial print wizard ... running the functions modifies single documents or saves composed documents, I do not get the documents with the intended recipients.

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151029

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||dgp-m...@gmx.de

--- Comment #6 from Dieter  ---
Claudio, it seems, that nobody could confirm this bug since more than one year.
So I‘d like to ask, if it is still reproducible for you. Could you please try
to reproduce it LO 24.2 or with a master build from
http://dev-builds.libreoffice.org/daily/master/current.html? I have set the
bug's status to 'NEEDINFO'. Please change it back to 'UNCONFIRMED' if the bug
is still present in the latest version.

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

[Bug 160629] Bullets and Numbering dialog in Writer does not say it's about an implicit list style

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160629

Cor Nouws  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #3 from Cor Nouws  ---
lovely topic, Gábor. Snake pit as well ;)

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

[Bug 160629] Bullets and Numbering dialog in Writer does not say it's about an implicit list style

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160629

Cor Nouws  changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #3 from Cor Nouws  ---
lovely topic, Gábor. Snake pit as well ;)

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Minutes from the UX/design meeting 2023-Apr-24

2024-04-24 Thread Heiko Tietze

Present: Cor, Sahil, John, Ring, Heiko
Comments: Stephane, Eyal, Stuart

Tickets/Topics

 * Bullets and Numbering dialog in Writer does not say it's about an
   implicit list style
   + https://bugs.documentfoundation.org/show_bug.cgi?id=160629
   + list styles created and applied via toolbar are hard to identify
 as such in the B dialog
   + no label substitutes the need to learn how this works; we may drop
 all shortcuts and ease functions but the cost is too high (Heiko, Cor)
   => suggest WF

 * Want indication of whether a master slide is in use or not
   + https://bugs.documentfoundation.org/show_bug.cgi?id=160403
   + MSO Powerpoints shows the number of slides in a tooltip (Stephane)
   + additional boolean indication would be nice (Eyal)
   + tooltip sounds good and is not harmful (John)
   + not much useful since "Delete Master" is only available if the
 slide master is not in use (Cor)
   => no objection, low priority

 * When right-clicking a font family combo-box, offer font meta-data
   + https://bugs.documentfoundation.org/show_bug.cgi?id=152487
   + unclear use case and much likely off-topic being available in
 font management tools (Heiko)
   + info dialog sounds good but rather via special characters or
 in the character properties dialog (Stuart)
   + only use case is compatibility with some other font (John)
 + likely not part of the meta data
   + the Internet returns all search results (Cor)
   => idea does not find support; WF

 * Make possible 2 or more impress in fullscreen each on a dedicated
   monitor AND each seekable independently with user-defined hotkeys
   per each file
   + https://bugs.documentfoundation.org/show_bug.cgi?id=160242
   + start Impress twice (Stephane), workflow is supported with a third
 monitor (John)
   + too niche, better suited for an extension (Stephane, Sahil)
   => WF


OpenPGP_signature.asc
Description: OpenPGP digital signature


Minutes from the UX/design meeting 2023-Apr-24

2024-04-24 Thread Heiko Tietze

Present: Cor, Sahil, John, Ring, Heiko
Comments: Stephane, Eyal, Stuart

Tickets/Topics

 * Bullets and Numbering dialog in Writer does not say it's about an
   implicit list style
   + https://bugs.documentfoundation.org/show_bug.cgi?id=160629
   + list styles created and applied via toolbar are hard to identify
 as such in the B dialog
   + no label substitutes the need to learn how this works; we may drop
 all shortcuts and ease functions but the cost is too high (Heiko, Cor)
   => suggest WF

 * Want indication of whether a master slide is in use or not
   + https://bugs.documentfoundation.org/show_bug.cgi?id=160403
   + MSO Powerpoints shows the number of slides in a tooltip (Stephane)
   + additional boolean indication would be nice (Eyal)
   + tooltip sounds good and is not harmful (John)
   + not much useful since "Delete Master" is only available if the
 slide master is not in use (Cor)
   => no objection, low priority

 * When right-clicking a font family combo-box, offer font meta-data
   + https://bugs.documentfoundation.org/show_bug.cgi?id=152487
   + unclear use case and much likely off-topic being available in
 font management tools (Heiko)
   + info dialog sounds good but rather via special characters or
 in the character properties dialog (Stuart)
   + only use case is compatibility with some other font (John)
 + likely not part of the meta data
   + the Internet returns all search results (Cor)
   => idea does not find support; WF

 * Make possible 2 or more impress in fullscreen each on a dedicated
   monitor AND each seekable independently with user-defined hotkeys
   per each file
   + https://bugs.documentfoundation.org/show_bug.cgi?id=160242
   + start Impress twice (Stephane), workflow is supported with a third
 monitor (John)
   + too niche, better suited for an extension (Stephane, Sahil)
   => WF


OpenPGP_signature.asc
Description: OpenPGP digital signature


[Bug 160350] Replies to comment are in reverse order

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160350

Justin L  changed:

   What|Removed |Added

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

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

[Bug 160814] New: DOCX comments (replies) are in the wrong order

2024-04-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160814

Bug ID: 160814
   Summary: DOCX comments (replies) are in the wrong order
   Product: LibreOffice
   Version: 4.3.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisected, bisected, regression
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jl...@mail.com
CC: jl...@mail.com
Blocks: 112916

Comments in a DOCX file might not import in the correct order.

Steps to reproduce.
1.) Open commentsInWord.docx (attachment 193829 from bug 160350)

The order of the comments should look like attachment 193828.

The comments were correctly ordered until LO 4.3's
commit 0761f81643a6890457e9ef7d913ab5c88c2593a4
Author: Oliver-Rainer on Wed Jan 8 15:58:35 2014 +0100
123792: complete annotations on text ranges feature


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112916
[Bug 112916] [META] DOCX (OOXML) comment issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   >