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

2021-01-05 Thread Miklos Vajna (via logerrit)
 include/vcl/filter/PDFiumLibrary.hxx   |3 ++-
 include/vcl/pdf/PDFObjectType.hxx  |   31 +++
 vcl/qa/cppunit/pdfexport/pdfexport.cxx |4 +---
 vcl/source/pdf/PDFiumLibrary.cxx   |   25 +++--
 4 files changed, 57 insertions(+), 6 deletions(-)

New commits:
commit 8373d6b1dd1096d3ce1d1f1d3845b6061c365fab
Author: Miklos Vajna 
AuthorDate: Tue Jan 5 21:02:46 2021 +0100
Commit: Miklos Vajna 
CommitDate: Wed Jan 6 08:58:39 2021 +0100

pdfium: add wrapper for FPDF_OBJECT_* defines

So that client code doesn't have to include fpdfview.h manually.

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

diff --git a/include/vcl/filter/PDFiumLibrary.hxx 
b/include/vcl/filter/PDFiumLibrary.hxx
index 32a9a68a55cc..3509c1d77d5a 100644
--- a/include/vcl/filter/PDFiumLibrary.hxx
+++ b/include/vcl/filter/PDFiumLibrary.hxx
@@ -33,6 +33,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #include 
 
@@ -101,7 +102,7 @@ public:
 PDFAnnotationSubType getSubType();
 basegfx::B2DRectangle getRectangle();
 bool hasKey(OString const& rKey);
-int getValueType(OString const& rKey);
+PDFObjectType getValueType(OString const& rKey);
 OUString getString(OString const& rKey);
 std::unique_ptr getLinked(OString const& rKey);
 int getObjectCount();
diff --git a/include/vcl/pdf/PDFObjectType.hxx 
b/include/vcl/pdf/PDFObjectType.hxx
new file mode 100644
index ..c3ee6c75262c
--- /dev/null
+++ b/include/vcl/pdf/PDFObjectType.hxx
@@ -0,0 +1,31 @@
+/* -*- 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
+
+namespace vcl::pdf
+{
+enum class PDFObjectType
+{
+Unknown = 0,
+Boolean = 1,
+Number = 2,
+String = 3,
+Name = 4,
+Array = 5,
+Dictionary = 6,
+Stream = 7,
+Nullobj = 8,
+Reference = 9
+};
+
+} // namespace vcl::pdf
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/qa/cppunit/pdfexport/pdfexport.cxx 
b/vcl/qa/cppunit/pdfexport/pdfexport.cxx
index 0236a6e73e5d..d8679081d348 100644
--- a/vcl/qa/cppunit/pdfexport/pdfexport.cxx
+++ b/vcl/qa/cppunit/pdfexport/pdfexport.cxx
@@ -36,8 +36,6 @@
 #include 
 #include 
 #include 
-#include 
-#include 
 #include 
 #include 
 #include 
@@ -2242,7 +2240,7 @@ CPPUNIT_TEST_FIXTURE(PdfExportTest, testFormFontName)
 
 // Examine the default appearance.
 CPPUNIT_ASSERT(pAnnot->hasKey("DA"));
-CPPUNIT_ASSERT_EQUAL(FPDF_OBJECT_STRING, 
FPDFAnnot_GetValueType(pAnnot->getPointer(), "DA"));
+CPPUNIT_ASSERT_EQUAL(vcl::pdf::PDFObjectType::String, 
pAnnot->getValueType("DA"));
 OUString aDA = pAnnot->getString("DA");
 
 // Without the accompanying fix in place, this test would have failed with:
diff --git a/vcl/source/pdf/PDFiumLibrary.cxx b/vcl/source/pdf/PDFiumLibrary.cxx
index 291e340abc40..a75b2b92d62f 100644
--- a/vcl/source/pdf/PDFiumLibrary.cxx
+++ b/vcl/source/pdf/PDFiumLibrary.cxx
@@ -62,6 +62,27 @@ 
static_assert(static_cast(vcl::pdf::PDFBitmapType::BGRx) == FPDFBitmap_BGRx
 static_assert(static_cast(vcl::pdf::PDFBitmapType::BGRA) == 
FPDFBitmap_BGRA,
   "PDFBitmapType::BGRA value mismatch");
 
+static_assert(static_cast(vcl::pdf::PDFObjectType::Unknown) == 
FPDF_OBJECT_UNKNOWN,
+  "PDFObjectType::Unknown value mismatch");
+static_assert(static_cast(vcl::pdf::PDFObjectType::Boolean) == 
FPDF_OBJECT_BOOLEAN,
+  "PDFObjectType::Boolean value mismatch");
+static_assert(static_cast(vcl::pdf::PDFObjectType::Number) == 
FPDF_OBJECT_NUMBER,
+  "PDFObjectType::Number value mismatch");
+static_assert(static_cast(vcl::pdf::PDFObjectType::String) == 
FPDF_OBJECT_STRING,
+  "PDFObjectType::String value mismatch");
+static_assert(static_cast(vcl::pdf::PDFObjectType::Name) == 
FPDF_OBJECT_NAME,
+  "PDFObjectType::Name value mismatch");
+static_assert(static_cast(vcl::pdf::PDFObjectType::Array) == 
FPDF_OBJECT_ARRAY,
+  "PDFObjectType::Array value mismatch");
+static_assert(static_cast(vcl::pdf::PDFObjectType::Dictionary) == 
FPDF_OBJECT_DICTIONARY,
+  "PDFObjectType::Dictionary value mismatch");
+static_assert(static_cast(vcl::pdf::PDFObjectType::Stream) == 
FPDF_OBJECT_STREAM,
+  "PDFObjectType::Stream value mismatch");
+static_assert(static_cast(vcl::pdf::PDFObjectType::Nullobj) == 
FPDF_OBJECT_NULLOBJ,
+  "PDFObjectType::Nullobj value mismatch");
+static_assert(static_cast(vcl::pdf::PDFObjectType::Reference) == 
FPDF_OBJECT_REFERENCE,
+  

[Libreoffice-bugs] [Bug 128396] FILEOPEN: run open in multiple threads

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128396

Buovjaga  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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


[Libreoffice-bugs] [Bug 132327] Large clipboard content could not be properly pasted

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132327

--- Comment #13 from Buovjaga  ---
(In reply to Nolan Beatty from comment #12)
> i see some comments have been added by various team members, and it appears
> that the development team seems to know what the issue is and how to correct
> this defect.  is the status of NEW still correct for this defect?

NEW is still correct.

> but i still do not see any indication or discussion of when the end user
> community can expect to see the resolution (and in which release).  any
> information you have that could help me understand when we might see the fix
> in an upcoming release of libraoffice would be greatly appreciated.

This is natural. If you did not pay anyone for fixing a bug, you can't expect
to know a date of delivery for a fix.

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


[Libreoffice-bugs] [Bug 139128] FILESAVE DOCX Paragraph break in Editeng textbox not saved

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139128

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Whiteboard| QA:needsComment|
 Status|UNCONFIRMED |NEW
 CC||dgp-m...@gmx.de

--- Comment #3 from Dieter  ---
I confirm it with

Version: 7.0.4.2 (x64)
Build ID: dcf040e67528d9187c66b2379df5ea4407429775
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

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


[Libreoffice-commits] core.git: filter/CppunitTest_filter_tiff_test.mk filter/Library_gie.mk filter/Module_filter.mk filter/qa filter/source include/vcl solenv/clang-format vcl/CppunitTest_vcl_filters

2021-01-05 Thread Tomaž Vajngerl (via logerrit)
 filter/CppunitTest_filter_tiff_test.mk   |   38 

 filter/Library_gie.mk|4 
 filter/Module_filter.mk  |1 
 filter/source/config/fragments/internalgraphicfilters/tif_Export.xcu |2 
 filter/source/config/fragments/internalgraphicfilters/tif_Import.xcu |2 
 include/vcl/graphicfilter.hxx|3 
 solenv/clang-format/excludelist  |   11 -
 vcl/CppunitTest_vcl_filters_test.mk  |6 
 vcl/Library_vcl.mk   |4 
 vcl/inc/filter/TiffReader.hxx|   26 +++
 vcl/inc/filter/TiffWriter.hxx|   28 +++
 vcl/qa/cppunit/GraphicTest.cxx   |2 
 vcl/qa/cppunit/graphicfilter/filters-tiff-test.cxx   |   82 
++
 vcl/source/filter/FilterConfigCache.cxx  |   10 -
 vcl/source/filter/etiff/etiff.cxx|5 
 vcl/source/filter/graphicfilter.cxx  |   36 
++--
 vcl/source/filter/itiff/itiff.cxx|8 
 17 files changed, 164 insertions(+), 104 deletions(-)

New commits:
commit 94d34e53ac9eb41cba96a56bf715d4b02794a12a
Author: Tomaž Vajngerl 
AuthorDate: Tue Dec 29 22:32:01 2020 +0900
Commit: Tomaž Vajngerl 
CommitDate: Wed Jan 6 08:49:53 2021 +0100

Move TIFF reader and writer from filter module into VCL

Moving graphicfilter one by one into VCL to get rid of filter_gio
module and all the nonsense of dynamic/static library loading in
"GraphicFilter".

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

diff --git a/filter/CppunitTest_filter_tiff_test.mk 
b/filter/CppunitTest_filter_tiff_test.mk
deleted file mode 100644
index 23a7bbf9ccac..
--- a/filter/CppunitTest_filter_tiff_test.mk
+++ /dev/null
@@ -1,38 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-#
-# 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/.
-#
-
-$(eval $(call gb_CppunitTest_CppunitTest,filter_tiff_test))
-
-$(eval $(call gb_CppunitTest_use_external,filter_tiff_test,boost_headers))
-
-$(eval $(call gb_CppunitTest_add_exception_objects,filter_tiff_test, \
-filter/qa/cppunit/filters-tiff-test \
-))
-
-$(eval $(call gb_CppunitTest_use_libraries,filter_tiff_test, \
-gie \
-   sal \
-   test \
-   tl \
-   unotest \
-   vcl \
-))
-
-$(eval $(call gb_CppunitTest_use_sdk_api,filter_tiff_test))
-
-$(eval $(call gb_CppunitTest_use_ure,filter_tiff_test))
-$(eval $(call gb_CppunitTest_use_vcl,filter_tiff_test))
-
-$(eval $(call gb_CppunitTest_use_components,filter_tiff_test,\
-configmgr/source/configmgr \
-))
-
-$(eval $(call gb_CppunitTest_use_configuration,filter_tiff_test))
-
-# vim: set noet sw=4 ts=4:
diff --git a/filter/Library_gie.mk b/filter/Library_gie.mk
index 2dcab32717b6..8c0cbd46b9b9 100644
--- a/filter/Library_gie.mk
+++ b/filter/Library_gie.mk
@@ -50,12 +50,8 @@ $(eval $(call gb_Library_use_libraries,gie,\
 
 $(eval $(call gb_Library_add_exception_objects,gie,\
 filter/source/graphicfilter/egif/egif \
-filter/source/graphicfilter/etiff/etiff \
 filter/source/graphicfilter/eps/eps \
 filter/source/graphicfilter/egif/giflzwc \
-filter/source/graphicfilter/itiff/ccidecom \
-filter/source/graphicfilter/itiff/itiff \
-filter/source/graphicfilter/itiff/lzwdecom \
 filter/source/graphicfilter/ipict/ipict \
 filter/source/graphicfilter/ipict/shape \
 filter/source/graphicfilter/ipcx/ipcx \
diff --git a/filter/Module_filter.mk b/filter/Module_filter.mk
index 6ac173e45859..898ac710db8a 100644
--- a/filter/Module_filter.mk
+++ b/filter/Module_filter.mk
@@ -64,7 +64,6 @@ $(eval $(call gb_Module_add_check_targets,filter,\
 CppunitTest_filter_ppm_test \
 CppunitTest_filter_psd_test \
 CppunitTest_filter_ras_test \
-CppunitTest_filter_tiff_test \
 CppunitTest_filter_tga_test \
 CppunitTest_filter_svg \
 ))
diff --git 
a/filter/source/config/fragments/internalgraphicfilters/tif_Export.xcu 
b/filter/source/config/fragments/internalgraphicfilters/tif_Export.xcu
index c83701d2df88..6fc07ec7231f 100644
--- a/filter/source/config/fragments/internalgraphicfilters/tif_Export.xcu
+++ b/filter/source/config/fragments/internalgraphicfilters/tif_Export.xcu
@@ -17,7 +17,7 @@
 -->
 
 tif_Tag_Image_File
-eti
+SVTIFF
  

[Libreoffice-bugs] [Bug 139150] Image dimensions wrong after RTF/HTML paste or RTF save

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139150

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Blocks||113365
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 Whiteboard| QA:needsComment|

--- Comment #2 from Dieter  ---
I confirm it with

Version: 7.2.0.0.alpha0+ (x64)
Build ID: c0eee433e079d8e3413f4691607e075b99af92b0
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: threaded

Image properties show the same wdth (3,44cm) and height (9,33 cm) as in
odt-file.


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 113365] [META] RTF (text) image-related issues

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113365

Dieter  changed:

   What|Removed |Added

 Depends on||139150


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=139150
[Bug 139150] Image dimensions wrong after RTF/HTML paste or RTF save
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 139307] Particular seemingly selected contents not copied to clipboard

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139307

--- Comment #11 from Rainer Bielefeld Retired  
---
Created attachment 168718
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168718=edit
New Sample Document

With new Sample Document I can reproduce the "highlighted not selected" issue
after 'Find and Replace' with 
Version: 7.2.0.0.alpha0+ (x64)
Build ID: a470932949c3e8ee28aaf77a71a90a957bbfe1ce
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: threaded

And also a 7.0.3.1 (x64) Version on WIN10.

STR for 7.2:
10. Open attached New Sample Document
   Please keep in mind that I Use German UI, for other languages 
   keyboard shortcuts might be different
11. ˋClick Cell O29 → +click O32 →  for Copyˊ
12. ˋClick Cell P29 → In Standard Bar click Downarrow in Paste Icon → 
 Click "Unformatted Text"ˊ (NOT "Unformatted Text (TSV-CALC)")
 » Area becomes pasted
13. ˋClick P29 → +click P32ˊ to select area
 » Area becomes highlighted
14.  → Find and Replace all "," by "." 'in selection' 
(is checked by default)
 » highlighted area numbers will get German decimal separator "comma", 
   are numbersnow instead of strings
15. [Close] Search Hits Dialog  →   for Copy
16. ˋClick Cell Q29 →  
 » Paste Special Dialog appears with checked "Text", "Numbers", 
   "Time,Date"
17. Replace all
 » Expected: Numbers with commas inserted
   Actual: Text strings copied in step 11 have been pasted 

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


[Libreoffice-ux-advise] [Bug 138526] Image missing for new Formats Only option

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

--- Comment #11 from Heiko Tietze  ---
For some reason I never get icons in the new dialog. Only me?

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


[Libreoffice-bugs] [Bug 124982] Thread the Calc CSV parser

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124982

Aron Budea  changed:

   What|Removed |Added

   Keywords||perf
 CC||ba...@caesar.elte.hu

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


[Libreoffice-bugs] [Bug 112799] A lack of multithreading when searching for (formatted) text.

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112799

--- Comment #3 from Aron Budea  ---
As a performance problem, this rather looks like a duplicate of bug 100479.

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

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


[Libreoffice-bugs] [Bug 100479] UI: "Search all" on larger document with certain fonts makes LO unresponsive (freeze) for minutes

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100479

Aron Budea  changed:

   What|Removed |Added

 CC||ask4supp...@email.cz

--- Comment #6 from Aron Budea  ---
*** Bug 112799 has been marked as a duplicate of this bug. ***

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


[Libreoffice-ux-advise] [Bug 138526] Image missing for new Formats Only option

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

--- Comment #10 from Commit Notification 
 ---
Rizal Muttaqin committed a patch related to this issue.
It has been pushed to "master":

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

Karasa Jaga: tdf#138526 Add Formats Only paste icon

It will be available in 7.2.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 on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-commits] core.git: icon-themes/karasa_jaga icon-themes/karasa_jaga_svg

2021-01-05 Thread Rizal Muttaqin (via logerrit)
 icon-themes/karasa_jaga/sc/res/paste_formats_only.png |binary
 icon-themes/karasa_jaga_svg/sc/res/paste_formats_only.svg |1 +
 2 files changed, 1 insertion(+)

New commits:
commit f1a6d0602e22708c4ec3a2365a154d90255ca2af
Author: Rizal Muttaqin 
AuthorDate: Wed Jan 6 08:28:39 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Wed Jan 6 07:59:21 2021 +0100

Karasa Jaga: tdf#138526 Add Formats Only paste icon

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

diff --git a/icon-themes/karasa_jaga/sc/res/paste_formats_only.png 
b/icon-themes/karasa_jaga/sc/res/paste_formats_only.png
new file mode 100644
index ..bedea3a90cea
Binary files /dev/null and 
b/icon-themes/karasa_jaga/sc/res/paste_formats_only.png differ
diff --git a/icon-themes/karasa_jaga_svg/sc/res/paste_formats_only.svg 
b/icon-themes/karasa_jaga_svg/sc/res/paste_formats_only.svg
new file mode 100644
index ..4b6aef5d64ed
--- /dev/null
+++ b/icon-themes/karasa_jaga_svg/sc/res/paste_formats_only.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;><
 path d="m4.7443515 33.143064c-1.5261642.0048-2.7610017 1.243011-2.7615905 
2.769183v86.996743c.0005934 1.52913 1.2400499 2.76859 2.7691825 
2.76919h84.8861665c2.450068-.00089 3.692983-2.94821 
1.983411-4.70326l-84.8861672-86.996735c-.5234143-.536181-1.2417045-.837466-1.9910023-.835121zm13.7804665
 41.237433 34.040073 34.637943h-34.040073z" fill="url(#c)"/>
\ No newline at end of file
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 138526] Image missing for new Formats Only option

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

--- Comment #9 from Commit Notification 
 ---
Rizal Muttaqin committed a patch related to this issue.
It has been pushed to "master":

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

Colibre & Sukapura: tdf#138526 Add Formats Only paste icon

It will be available in 7.2.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 on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-commits] core.git: icon-themes/colibre icon-themes/colibre_svg icon-themes/sukapura icon-themes/sukapura_svg

2021-01-05 Thread Rizal Muttaqin (via logerrit)
 icon-themes/colibre/sc/res/paste_formats_only.png|binary
 icon-themes/colibre/sc/res/paste_values_formats.png  |binary
 icon-themes/colibre_svg/sc/res/paste_formats_only.svg|1 +
 icon-themes/colibre_svg/sc/res/paste_values_formats.svg  |2 +-
 icon-themes/sukapura/sc/res/paste_formats_only.png   |binary
 icon-themes/sukapura/sc/res/paste_values_formats.png |binary
 icon-themes/sukapura_svg/sc/res/paste_formats_only.svg   |1 +
 icon-themes/sukapura_svg/sc/res/paste_values_formats.svg |2 +-
 8 files changed, 4 insertions(+), 2 deletions(-)

New commits:
commit c5e42ec2ecf03d77352e3f2ff1fba7ba2478e32d
Author: Rizal Muttaqin 
AuthorDate: Wed Jan 6 11:26:54 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Wed Jan 6 07:58:51 2021 +0100

Colibre & Sukapura: tdf#138526 Add Formats Only paste icon

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

diff --git a/icon-themes/colibre/sc/res/paste_formats_only.png 
b/icon-themes/colibre/sc/res/paste_formats_only.png
new file mode 100644
index ..cf7541405117
Binary files /dev/null and b/icon-themes/colibre/sc/res/paste_formats_only.png 
differ
diff --git a/icon-themes/colibre/sc/res/paste_values_formats.png 
b/icon-themes/colibre/sc/res/paste_values_formats.png
index 01cba66af09a..1ce8e08e9792 100644
Binary files a/icon-themes/colibre/sc/res/paste_values_formats.png and 
b/icon-themes/colibre/sc/res/paste_values_formats.png differ
diff --git a/icon-themes/colibre_svg/sc/res/paste_formats_only.svg 
b/icon-themes/colibre_svg/sc/res/paste_formats_only.svg
new file mode 100644
index ..5a1280fe56dc
--- /dev/null
+++ b/icon-themes/colibre_svg/sc/res/paste_formats_only.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/sc/res/paste_values_formats.svg 
b/icon-themes/colibre_svg/sc/res/paste_values_formats.svg
index c8a535c251d6..4c6a1781bf02 100644
--- a/icon-themes/colibre_svg/sc/res/paste_values_formats.svg
+++ b/icon-themes/colibre_svg/sc/res/paste_values_formats.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg;>
\ No newline at end of file
+http://www.w3.org/2000/svg;><
 /g>
\ No newline at end of file
diff --git a/icon-themes/sukapura/sc/res/paste_formats_only.png 
b/icon-themes/sukapura/sc/res/paste_formats_only.png
new file mode 100644
index ..81664962965a
Binary files /dev/null and b/icon-themes/sukapura/sc/res/paste_formats_only.png 
differ
diff --git a/icon-themes/sukapura/sc/res/paste_values_formats.png 
b/icon-themes/sukapura/sc/res/paste_values_formats.png
index 9fd62c50f1f9..d55f24a7a49d 100644
Binary files a/icon-themes/sukapura/sc/res/paste_values_formats.png and 
b/icon-themes/sukapura/sc/res/paste_values_formats.png differ
diff --git a/icon-themes/sukapura_svg/sc/res/paste_formats_only.svg 
b/icon-themes/sukapura_svg/sc/res/paste_formats_only.svg
new file mode 100644
index ..7532132cd27e
--- /dev/null
+++ b/icon-themes/sukapura_svg/sc/res/paste_formats_only.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
diff --git a/icon-themes/sukapura_svg/sc/res/paste_values_formats.svg 
b/icon-themes/sukapura_svg/sc/res/paste_values_formats.svg
index 7f86596acd39..dfedadb4793a 100644
--- a/icon-themes/sukapura_svg/sc/res/paste_values_formats.svg
+++ b/icon-themes/sukapura_svg/sc/res/paste_values_formats.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 54722] Draw slow for .odg with tenthousands of shapes

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54722

Aron Budea  changed:

   What|Removed |Added

 CC||yuriradche...@gmail.com

--- Comment #15 from Aron Budea  ---
*** Bug 114176 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 114176] Libre Office DRAW freezes if more than 80 - 100+ objects manipulated because only 1 thread is used instead of multiple threads/cores

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114176

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu

--- Comment #3 from Aron Budea  ---
Probably this is rather a dupe of bug 54722.

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

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


[Libreoffice-bugs] [Bug 45338] EDITING ReportBuilder: 'Details - General Keep Together' without visible effect

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45338

--- Comment #25 from Robert Großkopf  ---
Almost the same behavior in LO 7.0.4.2 on OpenSUSE 15.2 64bit rpm Linux

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


[Libreoffice-bugs] [Bug 139443] [META] Multithreading in LibreOffice

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139443

Aron Budea  changed:

   What|Removed |Added

 Depends on||128396


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128396
[Bug 128396] FILEOPEN: run open in multiple threads
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 128396] FILEOPEN: run open in multiple threads

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128396

Aron Budea  changed:

   What|Removed |Added

 Blocks||139443
 CC||ba...@caesar.elte.hu
 Resolution|DUPLICATE   |INVALID

--- Comment #7 from Aron Budea  ---
FastParser was introduced as a threaded substitute of the original parser:
https://lists.freedesktop.org/archives/libreoffice/2017-August/078392.html

Possibly more could be done, but a generic report like this is not actionable,
unfortunately.


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 139421] Calc: calcuate weeknumber-year missing in 2021

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139421

--- Comment #9 from Mike Kaganski  ---
(In reply to Robert Lacroix from comment #7)
> The question arose on how to select a mode/format with the TEXT function.

No, this question is more general: how to select it *in any format string*. The
format strings are used not only in TEXT spreadsheet function [1], but also in
other places: Format function in Basic [2]; cell format in Calc and Writer;
Field format in Writer [3]... And any of them might need this.

> There are 4 options:
> 1) add a new format code to TEXT was suggested. It's legacy compatible.
> 2) add a document option. It would be buried in options, so not nice to use.

Its discoverability is just the lesser of the problems of this option. The
greater one is that it would make it impossible to use different systems in
different places, e.g. when creating multilanguage documents with different
systems used in different parallel sections.

> 3) add an optional argument to TEXT, a-la WEEKNUM; default ISO mode for
> legacy compatibility?

This is absolutely not an option - see "not only in TEXT spreadsheet function,
but also in other places" above.

> 4) make meaning of current format depend on locale. Undesireable, causes
> global side effects if I need to change locale for one spreadsheet cell.

This option could likely be the best is we create some NatNum modifier
associated with ISO mode? Then no need in solution #1.


[1] https://help.libreoffice.org/latest/en-US/text/scalc/01/04060110.html
[2] https://help.libreoffice.org/latest/en-US/text/sbasic/shared/03120301.html
[3] https://help.libreoffice.org/7.1/en-US/text/shared/01/05020300.html

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


[Libreoffice-commits] core.git: compilerplugins/clang include/xmloff sw/source

2021-01-05 Thread Noel (via logerrit)
 compilerplugins/clang/unusedfields.only-used-in-constructor.results |   52 ++--
 compilerplugins/clang/unusedfields.readonly.results |  106 
+-
 compilerplugins/clang/unusedfields.untouched.results|   22 +-
 compilerplugins/clang/unusedfields.writeonly.results|   78 
+++
 include/xmloff/xmltkmap.hxx |2 
 sw/source/ui/chrdlg/swuiccoll.cxx   |4 
 sw/source/ui/fmtui/tmpdlg.cxx   |2 
 sw/source/uibase/inc/swuiccoll.hxx  |4 
 8 files changed, 135 insertions(+), 135 deletions(-)

New commits:
commit f2e4451372eb69063c46ce2324c6835a3827e9d7
Author: Noel 
AuthorDate: Mon Jan 4 12:26:17 2021 +0200
Commit: Noel Grandin 
CommitDate: Wed Jan 6 07:42:55 2021 +0100

loplugin:unusedfields

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

diff --git 
a/compilerplugins/clang/unusedfields.only-used-in-constructor.results 
b/compilerplugins/clang/unusedfields.only-used-in-constructor.results
index 106e04149590..f25624a14c94 100644
--- a/compilerplugins/clang/unusedfields.only-used-in-constructor.results
+++ b/compilerplugins/clang/unusedfields.only-used-in-constructor.results
@@ -2,7 +2,7 @@ basegfx/source/polygon/b2dpolygontriangulator.cxx:112
 basegfx::(anonymous namespace)::Triangulator maStartEntries 
basegfx::(anonymous namespace)::EdgeEntries
 basegfx/source/polygon/b2dtrapezoid.cxx:205
 basegfx::trapezoidhelper::(anonymous namespace)::PointBlockAllocator 
maFirstStackBlock class basegfx::B2DPoint [32]
-basegfx/source/polygon/b2dtrapezoid.cxx:257
+basegfx/source/polygon/b2dtrapezoid.cxx:256
 basegfx::trapezoidhelper::(anonymous namespace)::TrapezoidSubdivider 
maPoints std::vector
 basic/qa/cppunit/basictest.hxx:27
 MacroSnippet maDll class BasicDLL
@@ -110,13 +110,13 @@ cppu/source/uno/check.cxx:258
 (anonymous namespace)::Char4 chars struct (anonymous namespace)::Char3
 cui/source/dialogs/colorpicker.cxx:736
 cui::(anonymous namespace)::ColorPickerDialog m_aColorPrevious class 
cui::(anonymous namespace)::ColorPreviewControl
-cui/source/factory/dlgfact.cxx:1390
+cui/source/factory/dlgfact.cxx:1395
 (anonymous namespace)::SvxMacroAssignDialog m_aItems class SfxItemSet
 cui/source/inc/AdditionsDialog.hxx:47
 AdditionInfo sReleaseVersion class rtl::OUString
 cui/source/inc/AdditionsDialog.hxx:84
 AdditionsDialog m_sTag class rtl::OUString
-cui/source/inc/cfgutil.hxx:233
+cui/source/inc/cfgutil.hxx:235
 SvxScriptSelectorDialog m_aStylesInfo struct SfxStylesInfo_Impl
 cui/source/inc/cuitabarea.hxx:223
 SvxAreaTabPage maFixed_ChangeType enum ChangeType
@@ -154,6 +154,8 @@ dbaccess/source/core/dataaccess/connection.hxx:101
 dbaccess::OConnection m_nInAppend std::atomic
 dbaccess/source/core/inc/databasecontext.hxx:84
 dbaccess::ODatabaseContext m_aBasicDLL class BasicDLL
+desktop/qa/desktop_lib/test_desktop_lib.cxx:2905
+  class AllSettings &
 drawinglayer/inc/texture/texture3d.hxx:55
 drawinglayer::texture::GeoTexSvxBitmapEx maBitmap class Bitmap
 drawinglayer/inc/texture/texture3d.hxx:57
@@ -162,7 +164,7 @@ drawinglayer/source/tools/emfphelperdata.hxx:197
 emfplushelper::EmfPlusHelperData mnFrameRight sal_Int32
 drawinglayer/source/tools/emfphelperdata.hxx:198
 emfplushelper::EmfPlusHelperData mnFrameBottom sal_Int32
-editeng/source/editeng/impedit.hxx:519
+editeng/source/editeng/impedit.hxx:520
 ImpEditEngine aSelFuncSet class EditSelFunctionSet
 extensions/source/bibliography/datman.cxx:407
 (anonymous namespace)::DBChangeDialog_Impl aConfig class 
DBChangeDialogConfig_Impl
@@ -174,7 +176,7 @@ filter/source/graphicfilter/icgm/chart.hxx:51
 DataNode nBoxX2 sal_Int16
 filter/source/graphicfilter/icgm/chart.hxx:52
 DataNode nBoxY2 sal_Int16
-helpcompiler/inc/HelpCompiler.hxx:196
+helpcompiler/inc/HelpCompiler.hxx:201
 HelpCompiler lang const std::string
 include/basic/basmgr.hxx:56
 BasicError nReason enum BasicErrorReason
@@ -340,6 +342,8 @@ include/vcl/pdf/PDFAnnotationMarker.hxx:65
 vcl::pdf::PDFAnnotationMarkerHighlight meTextMarkerType enum 
vcl::pdf::PDFTextMarkerType
 include/xmloff/shapeimport.hxx:56
 SdXML3DLightContext mbSpecular _Bool
+include/xmloff/xmltkmap.hxx:38
+SvXMLTokenMapEntry nFastToken sal_Int32
 libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:51
 GtvApplicationWindow parent_instance GtkApplicationWindow
 libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:55
@@ -472,8 +476,6 @@ sc/inc/compiler.hxx:266
 ScCompiler::AddInMap pUpper const char *
 sc/inc/token.hxx:403
 SingleDoubleRefModifier aDub struct ScComplexRefData
-sc/qa/unit/ucalc_formula.cxx:3134
-  class Test *
 sc/source/core/data/document.cxx:1240

[Libreoffice-bugs] [Bug 112151] Multi-thread

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112151

Aron Budea  changed:

   What|Removed |Added

 Resolution|DUPLICATE   |INVALID
 CC||ba...@caesar.elte.hu

--- Comment #2 from Aron Budea  ---
This isn't a proper bug report that can be actioned on, and more generic than
the Calc threading enhancement, let's close as invalid instead.

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


[Libreoffice-bugs] [Bug 139443] [META] Multithreading in LibreOffice

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139443

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


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

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136524

Aron Budea  changed:

   What|Removed |Added

 Depends on||139443


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 114159] [META] Calc Threaded Calculation bugs and enhancements

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114159

Aron Budea  changed:

   What|Removed |Added

 Blocks||139443


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 139443] New: [META] Multithreading in LibreOffice

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139443

Bug ID: 139443
   Summary: [META] Multithreading in LibreOffice
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: perf
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ba...@caesar.elte.hu
Depends on: 114159
Blocks: 136524

Currently there's only a META bug for Calc threaded calculations, while
possibly more areas could benefit from multithreading, let's have a generic
META for that.

Since descriptions like "LibreOffice is slow, and only using a single CPU core,
it should utilize all the cores in my system" are not actionable, open issues
should have reasonably specific suggestions, or be evaluated by devs.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114159
[Bug 114159] [META] Calc Threaded Calculation bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=136524
[Bug 136524] [META] Performance/hang/lag/high CPU issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137631] use 4 CPU cores

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137631

Aron Budea  changed:

   What|Removed |Added

   Keywords||needsUXEval
 Whiteboard| QA:needsComment|
 CC||ba...@caesar.elte.hu,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org

--- Comment #1 from Aron Budea  ---
The autosave problem is a duplicate of bug 48416.

I'm not sure about the feasbility of an unformatted text entry mode, if there
are crippling performance problems (as actual issues that need fixing), I would
probably try to work around that by typing the text in a text editor, and
pasting it chunk by chunk into Writer.
Nevertheless, perhaps the UX folks have further thoughts to add on this.

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


[Libreoffice-ux-advise] [Bug 137631] use 4 CPU cores

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137631

Aron Budea  changed:

   What|Removed |Added

   Keywords||needsUXEval
 Whiteboard| QA:needsComment|
 CC||ba...@caesar.elte.hu,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org

--- Comment #1 from Aron Budea  ---
The autosave problem is a duplicate of bug 48416.

I'm not sure about the feasbility of an unformatted text entry mode, if there
are crippling performance problems (as actual issues that need fixing), I would
probably try to work around that by typing the text in a text editor, and
pasting it chunk by chunk into Writer.
Nevertheless, perhaps the UX folks have further thoughts to add on this.

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


[Libreoffice-bugs] [Bug 139355] Libre Office not using all CPU cores

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139355

Aron Budea  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@caesar.elte.hu

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


[Libreoffice-bugs] [Bug 135787] Animated elements disappear when moving slide show backwards

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135787

Pierre C  changed:

   What|Removed |Added

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

--- Comment #7 from Pierre C  ---
@niko...@vera.com.uy 
Bug is solved in future 7.0.5 and 7.1.0 I don't think it'll be backported to
6.4 branch.
You must use 6.4.3.2 If you want a quite safe version of LO

7.0.5 should be available at the beginning of march

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


[Libreoffice-bugs] [Bug 139421] Calc: calcuate weeknumber-year missing in 2021

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139421

--- Comment #8 from Mike Kaganski  ---
(In reply to Robert Lacroix from comment #7)
> 4) make meaning of current format depend on locale. Undesireable, causes
> global side effects if I need to change locale for one spreadsheet cell.

It *already* *is* dependent on locale - see comment 4. And no, "any mode except
the ISO mode" is not equal to "system 1" :-)

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


[Libreoffice-bugs] [Bug 139440] Calc 'Sort Ascending' does not properly sort when the field is date by mm/dd/yyyy

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139440

Ming Hua  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

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


[Libreoffice-bugs] [Bug 139440] Calc 'Sort Ascending' does not properly sort when the field is date by mm/dd/yyyy

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139440

Ming Hua  changed:

   What|Removed |Added

 CC||ming.v@qq.com

--- Comment #2 from Ming Hua  ---
When opening the .csv file, did you import the "Date" column as "Date (MDY)"
format, or did you just leave it as "Standard" format?

If you don't specify its format and just import as "Standard", it will be
imported as text, and of course will be sorted as text strings, not as dates.

(In reply to john.oliver.3 from comment #1)
> Created attachment 168715 [details]
> .csv file to demonstrate improper data sort (data ascending).
This sample file sorts correctly, 2021 dates after 2020 dates, if I specify
"Date" format when importing.

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


[Libreoffice-bugs] [Bug 139442] (spam)

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139442

Ming Hua  changed:

   What|Removed |Added

Summary|How To Activate Amazon Mytv |(spam)
   |Code|
Version|1.0.2   |unspecified
 Resolution|--- |INVALID
Product|Impress Remote  |LibreOffice
 Status|UNCONFIRMED |RESOLVED
  Component|General |deletionRequest
URL|https://www.comamazn.co/|

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


[Libreoffice-bugs] [Bug 139421] Calc: calcuate weeknumber-year missing in 2021

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139421

--- Comment #7 from Robert Lacroix  ---
(In reply to Regina Henschel from comment #3)
> The function WEEKNUM has a second parameter to determine the mode of
> calculation. It defaults to 1, which is not the ISO way. To get the ISO
> calculation you have to use parameter 21. Or you use function ISOWEEKNUM.
> Please read help for WEEKNUM and ISOWEEKNUM of a current release.
> 
> I cannot confirm the initial reported results
> =TEXT(A1;"-WW") returns correctly the ISO week number
>   2020-53 for date 2020-12-31.
>   2021-53 for dates 2021-01-01, 2021-01-02, 2021-01-03
>   2021-1  for dates 2021-01-04 (Monday) to 2021-01-10 (Sunday)
Is that a typo TEXT value with the middle row of dates? The year-weeknum is
non-monotonic for increasing dates. 2021-53 should come after 2021-1 in a
sequence of successive dates.

The OP is asking for a WEEKNUM mode from "system 1", which is any mode except
the ISO mode. System 1 always puts January 1 in week 1, and the preceding
December days in the same week are also in week 1 (of the following calendar
year). The day you select as the start of the week determines the particular
WEEKNUM mode. For symmetry with ISO mode, I would start the week on Monday, so
use WEEKNUM mode 2 (or 11).

The question arose on how to select a mode/format with the TEXT function.
There are 4 options:
1) add a new format code to TEXT was suggested. It's legacy compatible.
2) add a document option. It would be buried in options, so not nice to use.
3) add an optional argument to TEXT, a-la WEEKNUM; default ISO mode for legacy
compatibility?
4) make meaning of current format depend on locale. Undesireable, causes global
side effects if I need to change locale for one spreadsheet cell.

I would select option 3. It's compatible, more flexible, and the value
displayed with TEXT in one cell can be easily made to match any integer result
of WEEKNUM in another cell.

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


[Libreoffice-bugs] [Bug 131141] [META] Sukapura icons

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131141

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||138526


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138526
[Bug 138526] Image missing for new Formats Only option
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 125965] [META] Sifr icons

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125965

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||138526


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138526
[Bug 138526] Image missing for new Formats Only option
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 139442] How To Activate Amazon Mytv Code

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139442

Amazon MYTV  changed:

   What|Removed |Added

URL||https://www.comamazn.co/

--- Comment #1 from Amazon MYTV  ---
www.amazon.com/mytv enter code Know Complete Process to Activate Amazon Prime
Follow Simple Instructions and get www amazon mytv code to actuate amazon prime
video in your TV. There are 3 basic approaches to Activate Amazon Prime Video. 
The primary method to see it on TV is that when you open a meeting of the
administration on your PC, you associate it to the TV utilizing one of the
diverse accessible yields, for example, HDMI or VGA. In the event that you
expand the internet browser window on your PC, you can watch films with the
biggest conceivable screen size that the TV permits.

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


[Libreoffice-bugs] [Bug 122247] [META] Icon requests

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122247

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||138526


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138526
[Bug 138526] Image missing for new Formats Only option
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 120949] [META] Elementary icons

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120949

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||138526


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138526
[Bug 138526] Image missing for new Formats Only option
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 120946] [META] Karasa Jaga icons

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120946

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||138526


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138526
[Bug 138526] Image missing for new Formats Only option
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117497] [META] Colibre icons

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117497

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||138526


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138526
[Bug 138526] Image missing for new Formats Only option
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107139] [META] Breeze icons

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107139

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||138526


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138526
[Bug 138526] Image missing for new Formats Only option
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 138526] Image missing for new Formats Only option

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

Rizal Muttaqin  changed:

   What|Removed |Added

 Blocks||122247, 107139, 117497,
   ||120949, 120946, 125965,
   ||131141


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107139
[Bug 107139] [META] Breeze icons
https://bugs.documentfoundation.org/show_bug.cgi?id=117497
[Bug 117497] [META] Colibre icons
https://bugs.documentfoundation.org/show_bug.cgi?id=120946
[Bug 120946] [META] Karasa Jaga icons
https://bugs.documentfoundation.org/show_bug.cgi?id=120949
[Bug 120949] [META] Elementary icons
https://bugs.documentfoundation.org/show_bug.cgi?id=122247
[Bug 122247] [META] Icon requests
https://bugs.documentfoundation.org/show_bug.cgi?id=125965
[Bug 125965] [META] Sifr icons
https://bugs.documentfoundation.org/show_bug.cgi?id=131141
[Bug 131141] [META] Sukapura icons
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 139442] New: How To Activate Amazon Mytv Code

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139442

Bug ID: 139442
   Summary: How To Activate Amazon Mytv Code
   Product: Impress Remote
   Version: 1.0.2
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: johnsmithh...@gmail.com

Description:
www.amazon.com/mytv enter code Know Complete Process to Activate Amazon Prime
Follow Simple Instructions and get www amazon mytv code to actuate amazon prime
video in your TV. There are 3 basic approaches to Activate Amazon Prime Video. 
The primary method to see it on TV is that when you open a meeting of the
administration on your PC, you associate it to the TV utilizing one of the
diverse accessible yields, for example, HDMI or VGA. In the event that you
expand the internet browser window on your PC, you can watch films with the
biggest conceivable screen size that the TV permits. https://www.comamazn.co/ 


Actual Results:
Good

Expected Results:
Good


Reproducible: Always


User Profile Reset: No



Additional Info:
Good

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


[Libreoffice-ux-advise] [Bug 138526] Image missing for new Formats Only option

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

--- Comment #8 from Commit Notification 
 ---
Rizal Muttaqin committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/5a937e4bad5fb7e287bb285187d0364a42fb7224

elementary: tdf#138526 Add Formats Only paste icon

It will be available in 7.2.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 on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-ux-advise] [Bug 138526] Image missing for new Formats Only option

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.2.0

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


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

2021-01-05 Thread Rizal Muttaqin (via logerrit)
 icon-themes/elementary/links.txt   |2 --
 icon-themes/elementary/sc/res/paste_formats_only.png   |binary
 icon-themes/elementary/sc/res/paste_transpose.png  |binary
 icon-themes/elementary/sc/res/paste_values_formats.png |binary
 icon-themes/elementary/sc/res/paste_values_only.png|binary
 icon-themes/elementary_svg/sc/res/paste_formats_only.svg   |1 +
 icon-themes/elementary_svg/sc/res/paste_transpose.svg  |2 +-
 icon-themes/elementary_svg/sc/res/paste_values_formats.svg |2 +-
 icon-themes/elementary_svg/sc/res/paste_values_only.svg|2 +-
 9 files changed, 4 insertions(+), 5 deletions(-)

New commits:
commit 5a937e4bad5fb7e287bb285187d0364a42fb7224
Author: Rizal Muttaqin 
AuthorDate: Wed Jan 6 08:14:22 2021 +0700
Commit: Rizal Muttaqin 
CommitDate: Wed Jan 6 05:33:39 2021 +0100

elementary: tdf#138526 Add Formats Only paste icon

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

diff --git a/icon-themes/elementary/links.txt b/icon-themes/elementary/links.txt
index 7b55daa7c572..aa0bb64c709a 100644
--- a/icon-themes/elementary/links.txt
+++ b/icon-themes/elementary/links.txt
@@ -2139,8 +2139,6 @@ sc/res/nc07.png sc/res/droplink.png
 sc/res/nc08.png cmd/sc_insertdraw.png
 sc/res/page.png cmd/sc_insertpagenumberfield.png
 sc/res/pages.png cmd/sc_insertpagecountfield.png
-sc/res/paste_values_formats.png cmd/lc_formatpaintbrush.png
-sc/res/paste_values_only.png cmd/lc_numberformatstandard.png
 sc/res/sc26047.png cmd/sc_dbviewfunctions.png
 sc/res/sc26048.png cmd/sc_autosum.png
 sc/res/sc26050.png cmd/sc_cancel.png
diff --git a/icon-themes/elementary/sc/res/paste_formats_only.png 
b/icon-themes/elementary/sc/res/paste_formats_only.png
new file mode 100644
index ..105a58b17a20
Binary files /dev/null and 
b/icon-themes/elementary/sc/res/paste_formats_only.png differ
diff --git a/icon-themes/elementary/sc/res/paste_transpose.png 
b/icon-themes/elementary/sc/res/paste_transpose.png
index b9d5e8c25aba..83be9e921bf3 100644
Binary files a/icon-themes/elementary/sc/res/paste_transpose.png and 
b/icon-themes/elementary/sc/res/paste_transpose.png differ
diff --git a/icon-themes/elementary/sc/res/paste_values_formats.png 
b/icon-themes/elementary/sc/res/paste_values_formats.png
index f3efe89b10f4..8402ab31f058 100644
Binary files a/icon-themes/elementary/sc/res/paste_values_formats.png and 
b/icon-themes/elementary/sc/res/paste_values_formats.png differ
diff --git a/icon-themes/elementary/sc/res/paste_values_only.png 
b/icon-themes/elementary/sc/res/paste_values_only.png
index a2b675283fba..9168a7587d09 100644
Binary files a/icon-themes/elementary/sc/res/paste_values_only.png and 
b/icon-themes/elementary/sc/res/paste_values_only.png differ
diff --git a/icon-themes/elementary_svg/sc/res/paste_formats_only.svg 
b/icon-themes/elementary_svg/sc/res/paste_formats_only.svg
new file mode 100644
index ..eb23370ad42a
--- /dev/null
+++ b/icon-themes/elementary_svg/sc/res/paste_formats_only.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>y1="-8.841" y2="-40.204">offset=".062" stop-color="#fff" stop-opacity=".235"/>stop-color="#fff" stop-opacity=".157"/>stop-opacity=".392"/>gradientUnits="userSpaceOnUse" x1="10" x2="10" y1="-1" y2="9">offset="0" stop-color="#fff"/>offset=".661" stop-color="#abacae"/>stop-color="#89898b"/>gradientUnits="userSpaceOnUse" x1="10.502" x2="10.502" xlink:href="#f" 
 >y1=".998" y2="5"/>opacity=".15" transform="translate(-21.492 8.602)"/>opacity=".15" transform="translate(-21.
 492 8.602)"/>%
\ No newline at end of file
diff --git a/icon-themes/elementary_svg/sc/res/paste_transpose.svg 
b/icon-themes/elementary_svg/sc/res/paste_transpose.svg
index ff0f79983e49..8ee230fddf26 100644
--- a/icon-themes/elementary_svg/sc/res/paste_transpose.svg
+++ b/icon-themes/elementary_svg/sc/res/paste_transpose.svg
@@ -1 +1 @@
-http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>
\ No newline at end of file
+http://www.w3.org/2000/svg; 
xmlns:xlink="http://www.w3.org/1999/xlink;>x1="10" x2="10" y1="-1" y2="9">offset=".066" stop-color="#ddd"/>stop-color="#abacae"/>stop-color="#89898b"/>gradientUnits="userSpaceOnUse" x1="10.502" x2="10.502" y1=".998" y2="5">offset="0" stop-color="#fff"/>stop-opacity="0"/>fill="url(#i)" opacity=".15" transform="translate(-21.492 8.602)"/>d="m25.492 10.898v1.5c-.414.003-1-.336-1-.75s.46-.75 1-.75z" fill="url(#j)" 
 >opacity=".15" transform="translate(-21.492 8.602)"/>opacity=".15" transform="translate(-21.492 8.602)"/>fill="url(#l)" height="16" rx="1.5" stroke="#66430b" stroke-opacity=".498" 
 >transform="scale(1 -1)" width="18" x="1.5" y="-19.
 5"/>
\ No newline at end of file
diff --git a/icon-themes/elementary_svg/sc/res/paste_values_formats.svg 

[Libreoffice-bugs] [Bug 138526] Image missing for new Formats Only option

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

Rizal Muttaqin  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |riz...@libreoffice.org
   |desktop.org |
 Status|NEW |ASSIGNED

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


[Libreoffice-ux-advise] [Bug 138526] Image missing for new Formats Only option

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

Rizal Muttaqin  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |riz...@libreoffice.org
   |desktop.org |
 Status|NEW |ASSIGNED

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


[Libreoffice-bugs] [Bug 135787] Animated elements disappear when moving slide show backwards

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135787

niko...@vera.com.uy changed:

   What|Removed |Added

 Resolution|DUPLICATE   |---
 Status|RESOLVED|REOPENED

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


[Libreoffice-bugs] [Bug 135787] Animated elements disappear when moving slide show backwards

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135787

--- Comment #6 from niko...@vera.com.uy ---
Created attachment 168717
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168717=edit
One page presentation for quick bug reproduction.

The bug is still present in

6.4.7.2 windows x64 (clean install)

I am attaching a simple one page presentation to reproduce:
1. Open file
2. Press F5
3. Press -> two or three times
4. Press <-

And the elements disappear randomly instead of doing it in the expected order.

I am reopening this bug.

Hope this helps.

Happy new year!

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


[Libreoffice-bugs] [Bug 138776] FORMS: Defined fields altered partly to default and couldn't be set back to former properties

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138776

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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


[Libreoffice-bugs] [Bug 139162] Copy Paste in LibreOffice Online documents non-libre>libre and libre>libre (Collabora/Owncloud)

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139162

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 139161] Highly skewed aspect ratio exporting from Microsoft Windows Impress to TIFF

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139161

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 139150] Image dimensions wrong after RTF/HTML paste or RTF save

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139150

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 139148] Open file from share in Read Mode locks the file for other users

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139148

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 139145] UI: Drag shape handle shown inside text area when in edit mode of textbox

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139145

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-ux-advise] [Bug 139145] UI: Drag shape handle shown inside text area when in edit mode of textbox

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139145

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 139139] [EDITING] Selecting Border Style from the toolbar changes Line Width.

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139139

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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


[Libreoffice-bugs] [Bug 139222] [UI] Show Tip-of-the-Day is not present in Writer Help menu

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139222

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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


[Libreoffice-bugs] [Bug 139222] [UI] Show Tip-of-the-Day is not present in Writer Help menu

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139222

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

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


[Libreoffice-bugs] [Bug 133779] Libre office can't toggle off auto replace text strings

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133779

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 133779] Libre office can't toggle off auto replace text strings

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133779

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

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 133433] LibreOffice 7.0 closed but still using memory in Task Manager

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133433

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 133433] LibreOffice 7.0 closed but still using memory in Task Manager

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133433

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

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 130972] FILESAVE "Edit filter settings" grayed out / not accessible in "Save as" dialog of both Calc and Writer

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130972

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 130972] FILESAVE "Edit filter settings" grayed out / not accessible in "Save as" dialog of both Calc and Writer

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130972

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

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 134678] documentherstel

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134678

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 86896] FRAMEWORK: Command line help not translated

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86896

--- Comment #9 from QA Administrators  ---
Dear Olivier Hallot,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 45338] EDITING ReportBuilder: 'Details - General Keep Together' without visible effect

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45338

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 114838] Area Fill Bitmap SVG import

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114838

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 114708] Error installing extension with a space in the filename; installing in a folder with a space in the name fails too

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114708

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 33688] WINDOW / FREEZE option doesn't change SAVE icon status

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=33688

--- Comment #15 from pukaka  ---
I really enjoyed this site. This is such a Great resource that you are
providing and you give it away for free. https://8balls.io

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


[Libreoffice-bugs] [Bug 128579] Text colours in the left-hand sidebar of Start Center not adjusted for contrast when using a dark theme under GNOME

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128579

--- Comment #17 from orzun  ---
Created attachment 168716
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168716=edit
insert table grid in Adwaita-dark gtk theme

Also, it happens to `insert table` grid of Libreoffice Writer.

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


[Libreoffice-bugs] [Bug 139441] New: Sometimes Writer can't paste text from copied text

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139441

Bug ID: 139441
   Summary: Sometimes Writer can't paste text from copied text
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: arf.fai...@gmail.com

Description:
Sometimes LO Writer can't paste text that already copied (ctrl+c and
click-right, copy). When i paste in other application it works. It seems that
the Writer sometimes can't detect the text from clipboard.

Steps to Reproduce:
1.copy text from browser
2.try to paste on libreoffice writer

Actual Results:
sometimes it wont detect the text from clipboard. Even i click-right on the
paper, the paste button disabled

Expected Results:
it should be able to detect the text from clipboard and can be pasted.


Reproducible: Sometimes


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: TextDocument
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: yes

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


[Libreoffice-bugs] [Bug 139440] Calc 'Sort Ascending' does not properly sort when the field is date by mm/dd/yyyy

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139440

--- Comment #1 from john.olive...@gmail.com ---
Created attachment 168715
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168715=edit
.csv file to demonstrate improper data sort (data ascending).

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


[Libreoffice-bugs] [Bug 139440] New: Calc 'Sort Ascending' does not properly sort when the field is date by mm/dd/yyyy

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139440

Bug ID: 139440
   Summary: Calc 'Sort Ascending' does not properly sort when the
field is date by mm/dd/
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: john.olive...@gmail.com

Description:
A csv file when opened in LibreOffice Calc did not properly sort ascending.
Specifically, the target column with header "Date" and values as mm/dd/
sorted as 01/01/2021, ... 01/05/2021, 03/01/2020, 03/02/2020 ... 12/31/2020.
The proper sorting should be 03/01/2020, 03/02/2020 ... 12/31/2020, 01/01/2021,
... 01/05/2021. That is, 2021 is being placed before 2020.
Thank you. 

Steps to Reproduce:
1.Open attached Calc file: Test_Sort.csv
2.Choose 'Data'-> 'Sort Ascending' on "Date column" 


Actual Results:
Dates with year 2021 are ordered before dates with year 2020

Expected Results:
Dates with year 2020 should precede dates with year 2020 as referenced to
increasing row number.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.3.1 (x64)
Build ID: d7547858d014d4cf69878db179d326fc3483e082
CPU threads: 8; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 139439] New: Fatal error: bad allocation

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139439

Bug ID: 139439
   Summary: Fatal error: bad allocation
   Product: LibreOffice
   Version: 6.4.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: francois.jourd...@hotmail.com

Description:
Hi,
Libre office shuts down after I do the following actions:
I go in Search and replace
I enter a word and let the replacing word be blank
click replace all
Then click on le button left side of the A of column a (click on the corner to
select all.

I'm habby if this can help. Thank you for your work, really appreciated here. 

Steps to Reproduce:
1.replace a word with search and replace, hitting button "replace all"
2.Select all cell by clicking on the upper left corner
3.

Actual Results:
.

Expected Results:
.


Reproducible: Always


User Profile Reset: No



Additional Info:
.

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


[Libreoffice-bugs] [Bug 138855] Draw crashes if I use ALT+TAB to switch between two draw windows while the cursor focus is in a text box

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138855

--- Comment #4 from Kevin Suo  ---
(In reply to Kassikakk from comment #3)
It may be a common problem under IBUS as I use ibus-libpinyin, not fcitx.

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


[Libreoffice-bugs] [Bug 138393] Calc automatically evaluates arguments of if() function

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138393

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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


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

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827
Bug 108827 depends on bug 138393, which changed state.

Bug 138393 Summary: Calc automatically evaluates arguments of if() function
https://bugs.documentfoundation.org/show_bug.cgi?id=138393

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

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


[Libreoffice-bugs] [Bug 138393] Calc automatically evaluates arguments of if() function

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138393

Eike Rathke  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

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


[Libreoffice-bugs] [Bug 138393] Calc automatically evaluates arguments of if() function

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138393

--- Comment #8 from Eike Rathke  ---
Created attachment 168714
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168714=edit
IF() with LOGGER() function

The claim is simply not true, the paths in IF() are not evaluated
unconditionally.

Attached is a document with a BASIC macro function LOGGER() that increments a
static variable each call and returns the value. In cell A1 is a formula
=IF(B1;LOGGER();"no")
where if B1 is 0 or empty LOGGER() is not called and "no" is returned,
otherwise (numeric B1 <> 0) LOGGER() is called and the overall call count is
returned by IF(). With B1 0 or empty hit F9 a few times on cell A1 or reinput 0
in B1 repeatedly, then enter 1 in B1 and see A1 is incremented by just one of
the previous value; toggle and repeat.

However, a call to WEBSERVICE() accesses the URI more than once, for example
once with an OPTIONS request, then with a HEAD request and finally the GET
request. If Alphavantage counts each request against your quota and not only
the GET request there's nothing we can do about that.

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


[Libreoffice-bugs] [Bug 132327] Large clipboard content could not be properly pasted

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132327

--- Comment #12 from Nolan Beatty  ---
i see some comments have been added by various team members, and it appears
that the development team seems to know what the issue is and how to correct
this defect.  is the status of NEW still correct for this defect?

but i still do not see any indication or discussion of when the end user
community can expect to see the resolution (and in which release).  any
information you have that could help me understand when we might see the fix in
an upcoming release of libraoffice would be greatly appreciated.

thank you

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


[Libreoffice-commits] core.git: uitest/impress_tests

2021-01-05 Thread Xisco Fauli (via logerrit)
 uitest/impress_tests/drawinglayer.py |   47 +++
 1 file changed, 47 insertions(+)

New commits:
commit 21e6a63c86a15f5258442031b31415709f0bccf1
Author: Xisco Fauli 
AuthorDate: Tue Jan 5 16:35:44 2021 +0100
Commit: Xisco Fauli 
CommitDate: Wed Jan 6 00:23:36 2021 +0100

uitest: sd: test rotate object

Change-Id: I3b4e8c4a0cfb29a42350de00b0086e407ac70946
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108811
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/uitest/impress_tests/drawinglayer.py 
b/uitest/impress_tests/drawinglayer.py
index 2a0bcf45f548..7b33e369d2e6 100644
--- a/uitest/impress_tests/drawinglayer.py
+++ b/uitest/impress_tests/drawinglayer.py
@@ -114,4 +114,51 @@ class ImpressDrawinglayerTest(UITestCase):
 
 self.ui_test.close_doc()
 
+def test_rotate_object(self):
+self.ui_test.create_doc_in_start_center("impress")
+
+xTemplateDlg = self.xUITest.getTopFocusWindow()
+xCancelBtn = xTemplateDlg.getChild("close")
+self.ui_test.close_dialog_through_button(xCancelBtn)
+
+xImpressDoc = self.xUITest.getTopFocusWindow()
+
+document = self.ui_test.get_component()
+self.assertEqual(25199, document.DrawPages[0].getByIndex(0).Size.Width)
+self.assertEqual(2629, document.DrawPages[0].getByIndex(0).Size.Height)
+self.assertEqual(25199, document.DrawPages[0].getByIndex(1).Size.Width)
+self.assertEqual(9134, document.DrawPages[0].getByIndex(1).Size.Height)
+self.assertEqual(0, document.DrawPages[0].getByIndex(1).RotateAngle)
+
+xEditWin = xImpressDoc.getChild("impress_win")
+
+xDrawinglayerObject = xEditWin.getChild("Unnamed Drawinglayer object 
1")
+xDrawinglayerObject.executeAction("ROTATE", mkPropertyValues({"X": 
"500", "Y":"4000", "ANGLE": "3000"}))
+
+self.assertEqual(25199, document.DrawPages[0].getByIndex(0).Size.Width)
+self.assertEqual(2629, document.DrawPages[0].getByIndex(0).Size.Height)
+self.assertEqual(25199, document.DrawPages[0].getByIndex(1).Size.Width)
+self.assertEqual(9134, document.DrawPages[0].getByIndex(1).Size.Height)
+self.assertEqual(3000, document.DrawPages[0].getByIndex(1).RotateAngle)
+
+self.assertIsNone(document.CurrentSelection)
+
+xEditWin.executeAction("SELECT", mkPropertyValues({"OBJECT":"Unnamed 
Drawinglayer object 1"}))
+self.assertEqual("com.sun.star.drawing.SvxShapeCollection", 
document.CurrentSelection.getImplementationName())
+
+self.ui_test.execute_dialog_through_command(".uno:Size")
+
+xDialog = self.xUITest.getTopFocusWindow()
+
+self.assertEqual('30', 
get_state_as_dict(xDialog.getChild('NF_ANGLE'))['Value'])
+
+xOK = xDialog.getChild("ok")
+self.ui_test.close_dialog_through_button(xOK)
+
+self.assertEqual("com.sun.star.drawing.SvxShapeCollection", 
document.CurrentSelection.getImplementationName())
+xEditWin.executeAction("DESELECT", tuple())
+self.assertIsNone(document.CurrentSelection)
+
+self.ui_test.close_doc()
+
 # vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: sd/qa sfx2/source

2021-01-05 Thread Caolán McNamara (via logerrit)
 sfx2/source/doc/oleprops.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 93574ac7768d247ed754ecda322e54e4bd447e43
Author: Caolán McNamara 
AuthorDate: Mon Jan 4 19:19:41 2021 +
Commit: Caolán McNamara 
CommitDate: Wed Jan 6 00:16:06 2021 +0100

ofz#29251 Abrt

Change-Id: Icf21642f61a3095b7f3dcb9392274e727e036956
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108680
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/sd/qa/unit/data/ppt/fail/hang-15.ppt 
b/sd/qa/unit/data/ppt/pass/hang-15.ppt
similarity index 100%
rename from sd/qa/unit/data/ppt/fail/hang-15.ppt
rename to sd/qa/unit/data/ppt/pass/hang-15.ppt
diff --git a/sfx2/source/doc/oleprops.cxx b/sfx2/source/doc/oleprops.cxx
index 621a82f6d9a5..b8777b66d57b 100644
--- a/sfx2/source/doc/oleprops.cxx
+++ b/sfx2/source/doc/oleprops.cxx
@@ -684,7 +684,7 @@ void SfxOleDictionaryProperty::ImplLoad( SvStream& rStrm )
 sal_Int32 nNameCount = GetPropType();
 // read property ID/name pairs
 maPropNameMap.clear();
-for (sal_Int32 nIdx = 0; nIdx < nNameCount && rStrm.good(); ++nIdx)
+for (sal_Int32 nIdx = 0; nIdx < nNameCount && rStrm.good() && 
rStrm.remainingSize() >= 4; ++nIdx)
 {
 sal_Int32 nPropId(0);
 rStrm.ReadInt32(nPropId);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 139438] Chapter Numbering dialog Level box too narrow

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139438

--- Comment #1 from Dale Eltoft  ---
Created attachment 168713
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168713=edit
Screen capture

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


[Libreoffice-bugs] [Bug 139438] New: Chapter Numbering dialog Level box too narrow

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139438

Bug ID: 139438
   Summary: Chapter Numbering dialog Level box too narrow
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: daleelt...@gmail.com

Description:
The list box for Level selection on the Numbering tab of the Chapter Numbering
dialog is too narrow to display the 1-10 choice. I'm using Writer 7.0.3.1. I
don't know when this changed but I've seen screen captures in documentation
where it is not so narrow.

Steps to Reproduce:
1.In Writer select from menu Tools-->Chapter Numbering
2.Select the Numbering tab
3.Scroll the Level list to the bottom looking for 1-10

Actual Results:
Last entry in the Level list appears to be just 1

Expected Results:
Last entry is 1-10 and should be totally visible.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.3.1 (x64)
Build ID: d7547858d014d4cf69878db179d326fc3483e082
CPU threads: 8; OS: Windows 10.0 Build 19042; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 139121] [Calc] [Basic] Cell width and height set by macro slightly wrong

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139121

--- Comment #1 from Dave Green  ---
I have had to go back to V6. As this issue in V7 ruins the result.

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


[Libreoffice-bugs] [Bug 139437] Libre Office 7.0.3.1 operates only in safe mode, normal mode hangs with blank screen

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139437

solidpur...@gmail.com changed:

   What|Removed |Added

 CC||solidpur...@gmail.com

--- Comment #1 from solidpur...@gmail.com ---
Created attachment 168712
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168712=edit
Details on laptop and LibreOffice installation

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


[Libreoffice-bugs] [Bug 139437] New: Libre Office 7.0.3.1 operates only in safe mode, normal mode hangs with blank screen

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139437

Bug ID: 139437
   Summary: Libre Office 7.0.3.1 operates only in safe mode,
normal mode hangs with blank screen
   Product: LibreOffice
   Version: 7.0.3.1 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: solidpur...@gmail.com

Description:
I installed 7.0.3.1 (Dutch version) as an update to 6.4.4. Opening a document
did not work, the program freezes with a blank screen. I can use safe mode to
open a document. In safe mode I went back to factory settings (applied with
both options selected). This did not help, still program freeze with blank
screen. I tried several times to no avail. I deleted the dir 4 in
appdata/roaming/libre office, problem continued. I did a repair with the
LibreOffice installer, no help. I did an uninstall with the LibreOffice
installer, followed by a strict uninstall with Revo uninstaller. Reboot and new
install of version 7.0.3.1, same problem, I can only work in safe mode. Any
help most welcome.

LibreOffice version
https://git.libreoffice.org/core/+log/d7547858d014d4cf69878db179d326fc3483e082
Windows 10 version 1909

Steps to Reproduce:
1. Open Libre Office in normal mode
2. Click any doc, docx document
3. Open Libre Office writer in normal mode

Actual Results:
Program hangs with a blank screen

Expected Results:
I expect the program to open when I click the icon in normalmode


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
[Information automatically included from LibreOffice]
Locale: nl
Module: safemode
[Information guessed from browser]
OS: Windows (10) version 1909
OS is 64bit: yes

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


[Libreoffice-bugs] [Bug 139428] Libreoffice Calc freezes when copying a cell - poll([{fd=6, events=POLLIN} loop

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139428

mariobald...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from mariobald...@gmail.com ---
Extra environment info:

Fedora 33 (Workstation Edition) 64 bit
GNOME version: 3.38.2 Wayland
Full up to date as of 2020-01-05


dnf info libreoffice:
Name : libreoffice
Epoch: 1
Version  : 7.0.4.2
Release  : 1.fc33
Architecture : x86_64
Size : 16 k
Source   : libreoffice-7.0.4.2-1.fc33.src.rpm
Repository   : updates

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


[Libreoffice-bugs] [Bug 139428] Libreoffice Calc freezes when copying a cell - poll([{fd=6, events=POLLIN} loop

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139428

mariobald...@gmail.com changed:

   What|Removed |Added

 CC||mariobald...@gmail.com

--- Comment #3 from mariobald...@gmail.com ---
Created attachment 168711
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168711=edit
sample file that triggers the issue

Please find attached one sample file that triggers the issue. 

- Open the file using Libreoffice Calc 7.0.4.2
- Select cell A1
- Copy it using ctrl+c
- after ~2s the program freezes
- after ~10s the OS/Gnome alerts about the freeze and prompt for Wait/Force
quit.

Cheers,
Mario

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


[Libreoffice-bugs] [Bug 68930] bin2dec function limited

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68930

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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


[Libreoffice-bugs] [Bug 68930] bin2dec function limited

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68930

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #4 from Eike Rathke  ---
BIN2DEC() has to have these limitations to be interoperable with Excel, the ODF
OpenFormula (ODFF) definition is
https://docs.oasis-open.org/office/OpenDocument/v1.3/cs02/part4-formula/OpenDocument-v1.3-cs02-part4-formula.html#BIN2DEC

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


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

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108827
Bug 108827 depends on bug 68930, which changed state.

Bug 68930 Summary: bin2dec function limited
https://bugs.documentfoundation.org/show_bug.cgi?id=68930

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 129214] Enter a custom size for print paper in Print-Page Layout

2021-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129214

Prichy  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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


  1   2   3   4   >