[Libreoffice-bugs] [Bug 125440] textimport: copy & paste one row is different from multiple rows

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125440

Samuel Mehrbrodt (CIB)  changed:

   What|Removed |Added

 CC||s.mehrbr...@gmail.com
   Assignee|libreoffice-b...@lists.free |s.mehrbr...@gmail.com
   |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-commits] core.git: sw/qa sw/source

2020-01-21 Thread Miklos Vajna (via logerrit)
 sw/qa/extras/ooxmlexport/ooxmlexport14.cxx   |   33 +++
 sw/source/filter/ww8/docxattributeoutput.cxx |   20 +++-
 sw/source/filter/ww8/docxattributeoutput.hxx |1 
 3 files changed, 53 insertions(+), 1 deletion(-)

New commits:
commit 6f6a64952d9aa4826e83ad94c2a6de2344cbe2de
Author: Miklos Vajna 
AuthorDate: Tue Jan 21 21:25:08 2020 +0100
Commit: Miklos Vajna 
CommitDate: Wed Jan 22 08:51:34 2020 +0100

sw: add DOCX export for semi-transparent text

This is the case when the value is not in the grab-bag, that was already
supported.

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

diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
index 922cb9183adc..d582e777de06 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
@@ -15,6 +15,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
@@ -218,6 +219,38 @@ DECLARE_OOXMLEXPORT_TEST(testTdf121658, "tdf121658.docx")
 assertXPath(pXmlSettings, "/w:settings/w:doNotHyphenateCaps");
 }
 
+CPPUNIT_TEST_FIXTURE(SwModelTestBase, testSemiTransparentText)
+{
+// Create an in-memory empty document.
+loadURL("private:factory/swriter", nullptr);
+
+// Set text to half-transparent and type a character.
+uno::Reference xParagraph(getParagraph(1), 
uno::UNO_QUERY);
+CPPUNIT_ASSERT(xParagraph.is());
+sal_Int16 nTransparence = 75;
+xParagraph->setPropertyValue("CharTransparence", 
uno::makeAny(nTransparence));
+uno::Reference xTextRange(xParagraph, uno::UNO_QUERY);
+CPPUNIT_ASSERT(xTextRange.is());
+xTextRange->setString("x");
+
+// Export to docx.
+uno::Reference xStorable(mxComponent, uno::UNO_QUERY);
+utl::MediaDescriptor aMediaDescriptor;
+aMediaDescriptor["FilterName"] <<= OUString("Office Open XML Text");
+xStorable->storeToURL(maTempFile.GetURL(), 
aMediaDescriptor.getAsConstPropertyValueList());
+mbExported = true;
+xmlDocPtr pXmlDoc = parseExport("word/document.xml");
+CPPUNIT_ASSERT(pXmlDoc);
+OString aXPath
+= 
"/w:document/w:body/w:p/w:r/w:rPr/w14:textFill/w14:solidFill/w14:srgbClr/w14:alpha";
+double fValue = getXPath(pXmlDoc, aXPath, "val").toDouble();
+sal_Int16 nActual = basegfx::fround(fValue / oox::drawingml::PER_PERCENT);
+
+// Without the accompanying fix in place, this test would have failed, as 
the w14:textFill
+// element was missing.
+CPPUNIT_ASSERT_EQUAL(nTransparence, nActual);
+}
+
 DECLARE_OOXMLEXPORT_TEST(testTdf124367, "tdf124367.docx")
 {
 uno::Reference xTablesSupplier(mxComponent, 
uno::UNO_QUERY);
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index e3146df0ed06..d30d19eaad66 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -2555,7 +2555,6 @@ void DocxAttributeOutput::WriteCollectedRunProperties()
 if ( m_pColorAttrList.is() )
 {
 XFastAttributeListRef xAttrList( m_pColorAttrList.get() );
-m_pColorAttrList.clear();
 
 m_pSerializer->singleElementNS( XML_w, XML_color, xAttrList );
 }
@@ -2574,6 +2573,24 @@ void DocxAttributeOutput::WriteCollectedRunProperties()
 m_pSerializer->singleElementNS( XML_w, XML_lang, xAttrList );
 }
 
+if (m_nCharTransparence != 0 && m_pColorAttrList && 
m_aTextEffectsGrabBag.empty())
+{
+const char* pVal = nullptr;
+m_pColorAttrList->getAsChar(FSNS(XML_w, XML_val), pVal);
+if (OString("auto") != pVal)
+{
+m_pSerializer->startElementNS(XML_w14, XML_textFill);
+m_pSerializer->startElementNS(XML_w14, XML_solidFill);
+m_pSerializer->startElementNS(XML_w14, XML_srgbClr, FSNS(XML_w14, 
XML_val), pVal);
+sal_Int32 nTransparence = m_nCharTransparence * 
oox::drawingml::MAX_PERCENT / 255.0;
+m_pSerializer->singleElementNS(XML_w14, XML_alpha, FSNS(XML_w14, 
XML_val), OString::number(nTransparence));
+m_pSerializer->endElementNS(XML_w14, XML_srgbClr);
+m_pSerializer->endElementNS(XML_w14, XML_solidFill);
+m_pSerializer->endElementNS(XML_w14, XML_textFill);
+m_nCharTransparence = 0;
+}
+}
+m_pColorAttrList.clear();
 for (const beans::PropertyValue & i : m_aTextEffectsGrabBag)
 {
 o3tl::optional aElementId = lclGetElementIdForName(i.Name);
@@ -6800,6 +6817,7 @@ void DocxAttributeOutput::CharColor( const SvxColorItem& 
rColor )
 }
 
 AddToAttrList( m_pColorAttrList, FSNS( XML_w, XML_val ), 
aColorString.getStr() );
+m_nCharTransparence = aColor.GetTransparency();
 }
 
 void DocxAttributeOutput::CharContour( const SvxContourItem& rContour )
diff 

[Libreoffice-commits] core.git: 2 commits - android/source

2020-01-21 Thread Michael Weghorn (via logerrit)
 android/source/res/values-de/strings.xml  |  244 
++
 android/source/res/values/arrays.xml  |4 
 android/source/res/xml/libreoffice_preferences.xml|2 
 android/source/src/java/org/libreoffice/LibreOfficeApplication.java   |2 
 android/source/src/java/org/libreoffice/LocaleHelper.java |   14 
 android/source/src/java/org/libreoffice/ui/LibreOfficeUIActivity.java |4 
 6 files changed, 260 insertions(+), 10 deletions(-)

New commits:
commit 5bf2ec9ed8728a2042e110122ea2b0e4ff55104a
Author: Michael Weghorn 
AuthorDate: Fri Dec 20 10:40:34 2019 +0100
Commit: Michael Weghorn 
CommitDate: Wed Jan 22 08:47:02 2020 +0100

android: Use system locale by default

Instead of hard-coding the use of English as default
locale and allowing manually selecting another language,
this now makes the system's default locale to be used
by default in the Android Viewer. It's still possible to
explicitly select another language to override that.

In case there is no localization for the system locale,
an automatic fallback to English happens anyway, so there
should be no need to explicitly set the locale to English
in that case either.

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

diff --git a/android/source/res/values/arrays.xml 
b/android/source/res/values/arrays.xml
index b1b61ef89b2f..edea6443b419 100644
--- a/android/source/res/values/arrays.xml
+++ b/android/source/res/values/arrays.xml
@@ -14,6 +14,7 @@
 3
 
 
+SYSTEM_DEFAULT_LANGUAGE
 de
 en
 tr
@@ -43,6 +44,7 @@
 @string/filter_drawings
 
 
+(System Default)
 Deutsch
 English
 Turkçe
diff --git a/android/source/res/xml/libreoffice_preferences.xml 
b/android/source/res/xml/libreoffice_preferences.xml
index cf1d306866cf..d02c9d5cccbc 100644
--- a/android/source/res/xml/libreoffice_preferences.xml
+++ b/android/source/res/xml/libreoffice_preferences.xml
@@ -30,7 +30,7 @@
 android:summary="@string/display_language_summary"
 android:entries="@array/SupportedLanguages"
 android:entryValues="@array/SupportedLanguagesValues"
-android:defaultValue="en"
+android:defaultValue="SYSTEM_DEFAULT_LANGUAGE"
 android:key="DISPLAY_LANGUAGE"
 />
 
diff --git 
a/android/source/src/java/org/libreoffice/LibreOfficeApplication.java 
b/android/source/src/java/org/libreoffice/LibreOfficeApplication.java
index 07c14663860e..cb79219fc999 100644
--- a/android/source/src/java/org/libreoffice/LibreOfficeApplication.java
+++ b/android/source/src/java/org/libreoffice/LibreOfficeApplication.java
@@ -28,6 +28,6 @@ public class LibreOfficeApplication extends Application {
 
 @Override
 protected void attachBaseContext(Context base) {
-super.attachBaseContext(LocaleHelper.onAttach(base, "en"));
+super.attachBaseContext(LocaleHelper.onAttach(base));
 }
 }
diff --git a/android/source/src/java/org/libreoffice/LocaleHelper.java 
b/android/source/src/java/org/libreoffice/LocaleHelper.java
index 26a31e431397..8c0e9b3fbbed 100644
--- a/android/source/src/java/org/libreoffice/LocaleHelper.java
+++ b/android/source/src/java/org/libreoffice/LocaleHelper.java
@@ -12,17 +12,14 @@ import java.util.Locale;
 public class LocaleHelper {
 
 private static final String SELECTED_LANG = 
"org.libreoffice.selected.lang";
+// value for language that indicates that system's default language should 
be used
+public static final String SYSTEM_DEFAULT_LANGUAGE = 
"SYSTEM_DEFAULT_LANGUAGE";
 
 public static Context onAttach(Context context){
 String lang = getPersistedData(context, 
Locale.getDefault().getLanguage());
 return setLocale(context, lang);
 }
 
-public static Context onAttach(Context context, String defLang){
-String lang = getPersistedData(context, defLang);
-return setLocale(context, lang);
-}
-
 public static Context setLocale(Context context, String lang) {
 persist(context, lang);
 return updateResources(context, lang);
@@ -30,7 +27,12 @@ public class LocaleHelper {
 
 @SuppressWarnings("deprecation")
 private static Context updateResources(Context context, String lang) {
-Locale locale = new Locale(lang);
+Locale locale;
+if (lang.equals(SYSTEM_DEFAULT_LANGUAGE)) {
+locale = Locale.getDefault();
+} else {
+locale = new Locale(lang);
+}
 Locale.setDefault(locale);
 
 Resources res = context.getResources();
diff --git 
a/android/source/src/java/org/libreoffice/ui/LibreOfficeUIActivity.java 

[Libreoffice-bugs] [Bug 98159] [EDITING] Formulas not evaluated after dragging down

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98159

--- Comment #9 from b.  ---
sorry forgot: 

on crash sometimes error: 'SEH Exception: Access Violation!'

-- 
You are receiving this mail because:
You 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 98159] [EDITING] Formulas not evaluated after dragging down

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98159

b.  changed:

   What|Removed |Added

Version|5.1.0.3 release |5.0.0.5 release
 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME
 CC||newbie...@gmx.de
 OS|Linux (All) |All
   Hardware|x86 (IA32)  |All

--- Comment #8 from b.  ---

steps from comment #3: 

disable AutoCalculate - ok, 
Select H23:P23 - ok, 
Copy it to H24:P24 - ok, then to H25:P25 - ok, then to  to H26:P26 - ok and
finally to H27:P27 - ok
Select H23:P23 again - ok
Drag the formulas down to row H27:P27 - ok.

Here LO crashes for me reliably. - no crash, 

steps from comment #7: 

draw down formula:
works as expected with 5.4.7.2 (x64) - still ok with 6.4.0.2 winx64, 
- empty cells with autocalculate off - still ok with 6.4.0.2 winx64, 'zeros'
- correct results with autocalculate on - still ok with 6.4.0.2 winx64, results
in H27, L25:L27, col.M, col.N, col.O, P27, 
crashes: - no crash with script from c#3, see above,  

tested with: 
Version: 6.4.0.2 (x64)
Build ID: 08d19fecdc7a2298d051e19cfdb7c35544855fc3
CPU threads: 8; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 
Locale: de-DE (de_DE); UI-Language: en-US
Calc: 

thus wfm 'til somebody finds any misbehaviour e.g. in an 32bit installation? 

reg. 

b. 

P.S. no crash with 4.1.6.2, 
repro crash with: 
Version: 5.0.0.1 (x64)
Build ID: 9a0b23dd0ab9652e0965484934309f2d49a7758e
Locale: de-DE (de_DE)
thus setting first affected to 5.0.0.1 (not offered, taken 5.0.0.5),
tested with x64, thus setting HW to all, 
tested with win, thus setting OS to all, 

P.S.II. 98009 wrong calculations avoidable by turning off openCL, this bug
98159 crash not avoidable by any seting for openCL, thus no or 'low'
'relation'?

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


[Libreoffice-commits] core.git: include/xmloff reportdesign/source xmloff/source

2020-01-21 Thread Noel Grandin (via logerrit)
 include/xmloff/XMLCharContext.hxx   |   12 ++
 reportdesign/source/filter/xml/xmlCell.cxx  |   96 
 reportdesign/source/filter/xml/xmlCell.hxx  |   13 +-
 reportdesign/source/filter/xml/xmlColumn.cxx|   54 +++--
 reportdesign/source/filter/xml/xmlColumn.hxx|   11 -
 reportdesign/source/filter/xml/xmlComponent.cxx |   32 +
 reportdesign/source/filter/xml/xmlComponent.hxx |4 
 reportdesign/source/filter/xml/xmlCondPrtExpr.cxx   |   26 +---
 reportdesign/source/filter/xml/xmlCondPrtExpr.hxx   |6 -
 reportdesign/source/filter/xml/xmlControlProperty.cxx   |   54 +++--
 reportdesign/source/filter/xml/xmlControlProperty.hxx   |   13 --
 reportdesign/source/filter/xml/xmlFixedContent.cxx  |   63 +++---
 reportdesign/source/filter/xml/xmlFixedContent.hxx  |   12 --
 reportdesign/source/filter/xml/xmlFormatCondition.cxx   |   27 +---
 reportdesign/source/filter/xml/xmlFormatCondition.hxx   |7 -
 reportdesign/source/filter/xml/xmlFormattedField.cxx|   25 +---
 reportdesign/source/filter/xml/xmlFormattedField.hxx|4 
 reportdesign/source/filter/xml/xmlFunction.cxx  |   35 ++---
 reportdesign/source/filter/xml/xmlFunction.hxx  |6 -
 reportdesign/source/filter/xml/xmlGroup.cxx |   68 ---
 reportdesign/source/filter/xml/xmlGroup.hxx |   11 -
 reportdesign/source/filter/xml/xmlImage.cxx |   27 +---
 reportdesign/source/filter/xml/xmlImage.hxx |5 
 reportdesign/source/filter/xml/xmlMasterFields.cxx  |   43 ++-
 reportdesign/source/filter/xml/xmlMasterFields.hxx  |   11 -
 reportdesign/source/filter/xml/xmlReport.cxx|   80 ++---
 reportdesign/source/filter/xml/xmlReport.hxx|   14 +-
 reportdesign/source/filter/xml/xmlReportElement.cxx |   49 +++-
 reportdesign/source/filter/xml/xmlReportElement.hxx |   10 -
 reportdesign/source/filter/xml/xmlReportElementBase.cxx |   38 ++
 reportdesign/source/filter/xml/xmlReportElementBase.hxx |   17 +-
 reportdesign/source/filter/xml/xmlSection.cxx   |   46 +++
 reportdesign/source/filter/xml/xmlSection.hxx   |9 -
 reportdesign/source/filter/xml/xmlSubDocument.cxx   |   54 +
 reportdesign/source/filter/xml/xmlSubDocument.hxx   |   13 +-
 reportdesign/source/filter/xml/xmlTable.cxx |   69 +--
 reportdesign/source/filter/xml/xmlTable.hxx |   11 -
 reportdesign/source/filter/xml/xmlfilter.cxx|   24 ++--
 reportdesign/source/filter/xml/xmlfilter.hxx|   14 +-
 xmloff/source/text/txtparai.cxx |   62 ++
 40 files changed, 550 insertions(+), 625 deletions(-)

New commits:
commit 357bf8984ada1259720903ad7c7c44c9a6551cc8
Author: Noel Grandin 
AuthorDate: Tue Jan 21 21:44:49 2020 +0200
Commit: Noel Grandin 
CommitDate: Wed Jan 22 08:36:51 2020 +0100

Convert reportdesign to fastparser

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

diff --git a/include/xmloff/XMLCharContext.hxx 
b/include/xmloff/XMLCharContext.hxx
index 64598e21a1d7..4883a39f7922 100644
--- a/include/xmloff/XMLCharContext.hxx
+++ b/include/xmloff/XMLCharContext.hxx
@@ -48,9 +48,21 @@ public:
 const OUString& rLName,
 const css::uno::Reference< css::xml::sax::XAttributeList > & 
xAttrList,
 sal_Int16 nControl );
+XMLCharContext(
+SvXMLImport& rImport,
+const css::uno::Reference< css::xml::sax::XFastAttributeList > & 
xAttrList,
+sal_Unicode c,
+bool bCount );
+XMLCharContext(
+SvXMLImport& rImport,
+sal_Int16 nControl );
 
 virtual ~XMLCharContext() override;
 
+// EndElement is called before a context will be destructed, but
+// after an elements context has been parsed. It may be used for actions
+// that require virtual methods. The default is to do nothing.
+virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
 // EndElement is called before a context will be destructed, but
 // after an elements context has been parsed. It may be used for actions
 // that require virtual methods. The default is to do nothing.
diff --git a/reportdesign/source/filter/xml/xmlCell.cxx 
b/reportdesign/source/filter/xml/xmlCell.cxx
index 0c6646d11934..74a23667863f 100644
--- a/reportdesign/source/filter/xml/xmlCell.cxx
+++ b/reportdesign/source/filter/xml/xmlCell.cxx
@@ -46,12 +46,10 @@ namespace rptxml
 
 
 OXMLCell::OXMLCell( ORptFilter& rImport
-,sal_uInt16 nPrfx
-,const OUString& _sLocalName
-,const Reference< XAttributeList > & _xAttrList
+,const Reference< 

[Libreoffice-bugs] [Bug 128814] Navigator: right-clicking on any item should bring context menu as right-clicking the item in document, not custom navigator menu

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128814

--- Comment #12 from Mike Kaganski  ---
I seem to have misunderstood the "promote/demote chapter" meaning.

So given that "promote/demote chapter" move chapters *with subchapters* up and
down the outline, and "promote/demote level" work with all sublevels, I'd
suppose that other manipulations also handle all the sublevels, too. If one
needs to keep some sublevels from deletion, one needs to move kept chapters to
another root; removal of a level and keeping its sublevels automatically
joining some previous chapters is not intuitive and manageable IMO. Not sure if
"select" should be an exception (selecting only chapter without subchapters) -
I'd prefer not to make exceptions from "everything including children", but I
can understand if this is decided to be as in current implementation of the
patch.

-- 
You are receiving this mail because:
You 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 128814] Navigator: right-clicking on any item should bring context menu as right-clicking the item in document, not custom navigator menu

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128814

--- Comment #12 from Mike Kaganski  ---
I seem to have misunderstood the "promote/demote chapter" meaning.

So given that "promote/demote chapter" move chapters *with subchapters* up and
down the outline, and "promote/demote level" work with all sublevels, I'd
suppose that other manipulations also handle all the sublevels, too. If one
needs to keep some sublevels from deletion, one needs to move kept chapters to
another root; removal of a level and keeping its sublevels automatically
joining some previous chapters is not intuitive and manageable IMO. Not sure if
"select" should be an exception (selecting only chapter without subchapters) -
I'd prefer not to make exceptions from "everything including children", but I
can understand if this is decided to be as in current implementation of the
patch.

-- 
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 128814] Navigator: right-clicking on any item should bring context menu as right-clicking the item in document, not custom navigator menu

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128814

--- Comment #11 from Mike Kaganski  ---
(In reply to Jim Raykowski from comment #10)
> Here is a that patch implements chapter selection from the Writer Navigator
> context menu for outline entries:

Nice!

> Perhaps delete chapter should behave like this instead of clobbering all sub
> chapters of a chapter?

I suppose that this should follow the "promote/demote" logic, and possibly be
split to two submenus: "Chapter" and "Level", with own
Select/Delete/Promote/Demote, which would allow to decide what to select and
delete.

-- 
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 128814] Navigator: right-clicking on any item should bring context menu as right-clicking the item in document, not custom navigator menu

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128814

--- Comment #11 from Mike Kaganski  ---
(In reply to Jim Raykowski from comment #10)
> Here is a that patch implements chapter selection from the Writer Navigator
> context menu for outline entries:

Nice!

> Perhaps delete chapter should behave like this instead of clobbering all sub
> chapters of a chapter?

I suppose that this should follow the "promote/demote" logic, and possibly be
split to two submenus: "Chapter" and "Level", with own
Select/Delete/Promote/Demote, which would allow to decide what to select and
delete.

-- 
You are receiving this mail because:
You 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 130108] Conditional Format not compatible with Excel

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130108

--- Comment #6 from jpopelka  ---
Very glad to attach the ods file but please instruct me how to do it. I
attached xlsx format when writing the first complaint but now I do not see a
link for uploading files.

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


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

2020-01-21 Thread Adrien Ollier (via logerrit)
 vcl/source/animate/Animation.cxx |   27 +++
 1 file changed, 11 insertions(+), 16 deletions(-)

New commits:
commit f6c01b471a08ad1cb38377b8d82dba89206ea8cb
Author: Adrien Ollier 
AuthorDate: Tue Jan 21 22:38:06 2020 +0100
Commit: Mike Kaganski 
CommitDate: Wed Jan 22 08:12:52 2020 +0100

rework of painting and removal of ImplAnimView using the STL

Change-Id: I9bcfd3e034097c0a3ba17a566201d708cec2b016
Signed-off-by: Adrien Ollier 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87167
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/vcl/source/animate/Animation.cxx b/vcl/source/animate/Animation.cxx
index 80115aa730ce..d9eaed56ce73 100644
--- a/vcl/source/animate/Animation.cxx
+++ b/vcl/source/animate/Animation.cxx
@@ -350,22 +350,17 @@ IMPL_LINK_NOARG(Animation, ImplTimeoutHdl, Timer*, void)
 }
 }
 
-// Paint all views; after painting check, if view is
-// marked; in this case remove view, because area of output
-// lies out of display area of window; mark state is
-// set from view itself
-for (size_t i = 0; i < maViewList.size();)
-{
-ImplAnimView* pView = maViewList[i].get();
-pView->draw(mnPos);
-
-if (pView->isMarked())
-{
-maViewList.erase(maViewList.begin() + i);
-}
-else
-i++;
-}
+// Paint all views.
+std::for_each(maViewList.cbegin(), maViewList.cend(),
+  [this](const auto& pView) { pView->draw(mnPos); });
+/*
+ * If a view is marked, remove the view, because
+ * area of output lies out of display area of window.
+ * Mark state is set from view itself.
+ */
+auto removeStart = std::remove_if(maViewList.begin(), 
maViewList.end(),
+  [](const auto& pView) { return 
pView->isMarked(); });
+maViewList.erase(removeStart, maViewList.cend());
 
 // stop or restart timer
 if (maViewList.empty())
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 130116] "Tip of the day" shall be component (Calc, Writer, Draw, ...) specific

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130116

milan.be...@gmail.com changed:

   What|Removed |Added

 CC||milan.be...@gmail.com
 Whiteboard||tip-of-the-day

-- 
You are receiving this mail because:
You 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 130116] New: "Tip of the day" shall be component (Calc, Writer, Draw, ...) specific

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130116

Bug ID: 130116
   Summary: "Tip of the day" shall be component (Calc, Writer,
Draw,...) specific
   Product: LibreOffice
   Version: 6.3.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: milan.be...@gmail.com

I wish that the "Tip of the day" would be component (Calc, Writer, Draw,...)
specific. Currently, when I open Writer and I often see a tip related to Calc
and vice-versa. The tips are very good. But wouldn't it make more sense to get
only Writer related tips, when opening Writer? And Calc related tips when
opening Calc, please?

-- 
You are receiving this mail because:
You 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 65509] FILESAVE "Automatically save" (Found in Options > LO > Advanced > Expert Configuration ) not running

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65509

--- Comment #36 from Joe Abraham  ---
OK, it happened again.

Because there is no resolution for this problem, I have been automatically
hitting Save on a regular base.

But, as sure as God made little green apples, the very first time I am tired
and I forget to do it regularly, the system crashes.  It happened this morning,
lost a good half-hour of work.

You cannot be proud of this.

And FWIW, I initially submitted this bug with another problem I am having with
Copy & Past.  The two were separated.  You may wish to consider them together,
because this AM the system crashed when C acted weirdly and I tried to
correct it.  I can't be sure, but these seem to have happened in tandem before.

Problem: I copy, paste and one of two things frequently happens:

1) The *previous* copy (the one before the current one) is pasted instead, and
the most recent Copy -- or sometimes Cut -- is gone.  Fortunately, I can
recover with Ctrl Z.

2) I go to paste, often Ctrl Shift P for an unformatted text paste, and the
system pastes a .bmp, and 'unformatted text' simply isn't available in the
options.  That's what happened this time; when I went to correct the .bmp, the
system crashed.

-- 
You are receiving this mail because:
You 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 62063] FORMATTING: Changing the font before typing Arabic text doesn't work

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62063

--- Comment #14 from Safeer Pasha  ---
The bug is still present

Version: 6.0.7.3
Build ID: 1:6.0.7-0ubuntu0.18.04.10
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: kde4; 
Locale: en-US (en_US.UTF-8); Calc: group

Kubuntu 18.04

-- 
You are receiving this mail because:
You 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 71956] Other: The ability to set a different color for diacritics is missing for Arabic

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71956

Safeer Pasha  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 71956] Other: The ability to set a different color for diacritics is missing for Arabic

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71956

--- Comment #2 from Safeer Pasha  ---
Created attachment 157311
  --> https://bugs.documentfoundation.org/attachment.cgi?id=157311=edit
a picture with Allah's name and a red colored fatha

-- 
You are receiving this mail because:
You 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 112810] [META] Arabic language-specific RTL issues

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112810
Bug 112810 depends on bug 71956, which changed state.

Bug 71956 Summary: Other: The ability to set a different color for diacritics 
is missing for Arabic
https://bugs.documentfoundation.org/show_bug.cgi?id=71956

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 130112] Chart selection shows incorrect range highlight when zoom is not 100%

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130112

Dennis Francis  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |ASSIGNED

--- Comment #1 from Dennis Francis  ---
Patch for master @ https://gerrit.libreoffice.org/c/core/+/87170

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


Shivam Kumar Singh license statement

2020-01-21 Thread Shivam Kumar Singh
All of my past & future contributions to LibreOffice may be
licensed under the MPLv2/LGPLv3+ dual license.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - sc/source

2020-01-21 Thread Dennis Francis (via logerrit)
 sc/source/ui/view/output.cxx |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

New commits:
commit 3f62c10548466119ec6b1a662ab339e5dbe0b05f
Author: Dennis Francis 
AuthorDate: Tue Jan 21 22:11:19 2020 +0530
Commit: Dennis Francis 
CommitDate: Wed Jan 22 06:43:10 2020 +0100

tdf#130112 lok: Do not apply zoom-factor twice...

... in ScOutputData::FillReferenceMarks().
mnPPT[XY] already has the factor aZoom[XY] in it. Refer
ScViewData::CalcPPT() to see how PPT[XY] are derived.

Change-Id: I3f9b5c01cb53514450fad5f7b2b6861b112effdb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87158
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Michael Meeks 

diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx
index 54e2dfa7613c..803817e25a39 100644
--- a/sc/source/ui/view/output.cxx
+++ b/sc/source/ui/view/output.cxx
@@ -1931,10 +1931,11 @@ ReferenceMark ScOutputData::FillReferenceMark( SCCOL 
nRefStartX, SCROW nRefStart
 
 if (bTop && bBottom && bLeft && bRight)
 {
-aResult = ReferenceMark( nMinX / mnPPTX * double( aZoomX ),
- nMinY / mnPPTY * double( aZoomY ),
- ( nMaxX - nMinX ) / mnPPTX * double( 
aZoomX ),
- ( nMaxY - nMinY ) / mnPPTY * double( 
aZoomY ),
+// mnPPT[XY] already has the factor aZoom[XY] in it.
+aResult = ReferenceMark( nMinX / mnPPTX,
+ nMinY / mnPPTY,
+ ( nMaxX - nMinX ) / mnPPTX,
+ ( nMaxY - nMinY ) / mnPPTY,
  nTab,
  rColor );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129688] bibliography standard

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129688

rupert.thur...@gmail.com changed:

   What|Removed |Added

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

--- Comment #2 from rupert.thur...@gmail.com ---
where exactly and how this could be filed? i saw the "OASIS Open Document
Format Interoperability and Conformance (OIC) TC" is no longer active:

https://www.oasis-open.org/committees/tc_home.php?wg_abbrev=oic

-- 
You are receiving this mail because:
You 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 129867] FORMATTING: protected hyphen not available

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129867

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 129658] for bug hunting session: old recalc issue still problem

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129658

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 129710] Possible memory leak and/or struggle when saving Impress document after updating it

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129710

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 128216] UI: Relative paths should be displayed as relative

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128216

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 129871] Inconsistent URL tooltips

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129871

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 129607] 25% use of CPU if working with very large writer.exe files after Recovery Mode

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129607

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 129753] threaded and CL fail, erroneus results, autocalculate broken,

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129753

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 130114] Freeze when trying to save edited document in .doc format

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130114

iantheprogrammer  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
 CC||iantheprogram...@gmail.com

--- Comment #1 from iantheprogrammer  ---
Thank you for reporting the bug. Please attach the sample document that you
mentioned, as this makes it easier for us to verify the bug. 

There is currently no "LO 6.8.2.8". Could you clarify what version you are
referring to here? In addition, can you please provide more information about
your LibreOffice environment? To find out this information, go to the "Help"
menu in LibreOffice and select the "About LibreOffice" option. 

I have attached mine as an example: 

Version: 6.5.0.0.alpha0+
Build ID: 8930a7d8b8e649336300d98f0a1f27114ad392ea
CPU threads: 1; OS: Linux 5.0; UI render: default; VCL: gtk3; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master
Locale: es-ES (en_US.UTF-8); UI-Language: en-US
Calc: threaded

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document and information is provided.

(Note that the attachment will be public, remove any sensitive information
before attaching it. See the QA FAQ Wiki,
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F,
for further detail.)

-- 
You are receiving this mail because:
You 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 129784] FILE_OPEN ”Could not read the contents of ”, with read only permissions.

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129784

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 129688] bibliography standard

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129688

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 127627] use .stg .stv .str files for galleries in LO

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127627

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 129670] Document restoration failure notice hidden by indismissable other UI

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129670

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 128491] Doubling of menubar after inserting formula in writer

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128491

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 127627] use .stg .stv .str files for galleries in LO

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127627

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

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


[Libreoffice-bugs] [Bug 126063] INCREDIBLY SLOW ON WINDOWS 10

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126063

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 128491] Doubling of menubar after inserting formula in writer

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128491

--- Comment #15 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 129785] FILE_OPEN Can’t read directories in /tmp

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129785

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 129395] Libreoffice6.3.4 crashes on opening as a user but not as root

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129395

--- Comment #12 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 129395] Libreoffice6.3.4 crashes on opening as a user but not as root

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129395

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 129635] Add support for Open Data Protocol 4 standardized by OASIS

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129635

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 126065] Background image (office stationary) now is not shown as full screen anymore

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126065

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

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 125912] Pasted Style not Formatting Properly

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125912

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 125912] Pasted Style not Formatting Properly

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125912

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

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 126048] Database report not populated with data

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126048

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

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 126063] INCREDIBLY SLOW ON WINDOWS 10

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126063

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

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 126065] Background image (office stationary) now is not shown as full screen anymore

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126065

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 126048] Database report not populated with data

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126048

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 130115] New: Let's add a search feature?

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130115

Bug ID: 130115
   Summary: Let's add a search feature?
   Product: LibreOffice
   Version: 6.5.0.0.alpha0+ Master
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jackandmix...@gmail.com
CC: olivier.hal...@libreoffice.org

Description:
I've noticed in many work-related softwares that a search feature is available
to help users find items in the menus. (Ex: I work on Mac OS X. I log into
Microsoft Word- I can't find "Insert," so I go to "Help" and type "Insert" into
a search bar, which brings up the item immediately.)

Am I missing something, or does this feature not currently exist in LibreOffice
(ver. 6.5.0.0 for Mac OS High Sierra)?

Steps to Reproduce:
1. Go To "Help" menu
2. No search bar feature included
3.

Actual Results:
Online boards and manuals available

Expected Results:
An empty search bar appears that, when key words are entered, directs you to
the menu or sub-menu you want to find


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-ux-advise] [Bug 130083] Redesign LibreOffice Options Start Page

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130083

--- Comment #5 from jackandmix...@gmail.com ---
(In reply to Thomas Lendo from comment #4)
> Hm. I think additional text and pages makes it more complex for normal users
> than it's now.

I wonder if it's even possible to pare down what's already there, given I don't
currently have access to user feedback. (Survey? Interviews?)

Users probably aren't using many of the options that already exist- perhaps we
can figure out which ones to eliminate?

-- 
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 130083] Redesign LibreOffice Options Start Page

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130083

--- Comment #5 from jackandmix...@gmail.com ---
(In reply to Thomas Lendo from comment #4)
> Hm. I think additional text and pages makes it more complex for normal users
> than it's now.

I wonder if it's even possible to pare down what's already there, given I don't
currently have access to user feedback. (Survey? Interviews?)

Users probably aren't using many of the options that already exist- perhaps we
can figure out which ones to eliminate?

-- 
You are receiving this mail because:
You 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 129674] Add "Goto sheet" dialog to Calc

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129674

--- Comment #4 from jackandmix...@gmail.com ---
Hey, new guy to UX here!

What about adding another button to this search feature instead of replacing
it? So for example the hotkeys could be Shift+Ctrl+G instead of having to swap
around the interface.

Alternatively, as I am unfamiliar with some of the technology, what about
adopting a page out of video editor's books and create customizable hotkeys?
Then the user could map their shortcuts to whatever buttons they want.

(Again, I'm a total newbie to UX design, so I hope this doesn't prove
unhelpful. Thanks!)

-- 
You are receiving this mail because:
You 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 129674] Add "Goto sheet" dialog to Calc

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129674

--- Comment #4 from jackandmix...@gmail.com ---
Hey, new guy to UX here!

What about adding another button to this search feature instead of replacing
it? So for example the hotkeys could be Shift+Ctrl+G instead of having to swap
around the interface.

Alternatively, as I am unfamiliar with some of the technology, what about
adopting a page out of video editor's books and create customizable hotkeys?
Then the user could map their shortcuts to whatever buttons they want.

(Again, I'm a total newbie to UX design, so I hope this doesn't prove
unhelpful. Thanks!)

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


RE: LibreOffice Digest, Vol 113, Issue 18

2020-01-21 Thread Mike Sydwest
Hi LO

Looks like we need to find some sort of opensource MSI installer, that will
stop popup warning, also Mac.

Has anyone got any ideas about this.

Michael

-Original Message-
From: Eike Rathke  
Sent: Monday, 20 January 2020 11:20 PM
To: Mike Sydwest 
Cc: libreoffice@lists.freedesktop.org
Subject: Re: LibreOffice Digest, Vol 113, Issue 18

Hi Mike,

On Sunday, 2020-01-19 15:33:51 +1100, Mike "Sydwest" Wilkinson wrote:

> Hi LO
> 
> We have made various mods and removed bugs from our application, soon 
> we can show opensource link, which will be good.
> 
> Our current problem is what is best way register this applications so 
> we do not see Microsoft popup blocking user from opening app.
> 
> we have joined partner plan, do we need to take some special steps to 
> do this correctly.

What are you talking about?
If you didn't attribute your mail with "Hi LO" I'd say you're talking about
a different product than LibreOffice.
There's no LibreOffice partner plan, unless you contracted one with some
company.
Whatever your ("our") application might be, we don't know what it does or
why it is blocked or how it would be related to LibreOffice even.

  Eike

--
GPG key 0x6A6CD5B765632D3A - 2265 D7F3 A7B0 95CC 3918  630B 6A6C D5B7 6563
2D3A

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


LibreOffice and old Microsoft Binary file formats.

2020-01-21 Thread Drew Jensen
Howdy,

Today I worked with 5 different word processors (LibreOffice 6.4,
OnlyOffice 5.2, MS Word web, LibreOffice online and Google Docs, all
current and in use in the wild.

Of those 5 only one still allows the user to save files in the old
Microsoft Binary version.

In fact the other 4, including MS Word in the web (via onedrive) will open
old MS binary formats but if you edit the file then you can only save it
back as the newer iso standard OOXML format. I think that is a good thing
as it helps get rid of old binary format files.

The 1 which will allow a save in the binary format is LibreOffice.

Now IDK but wouldn't be surprised if MSO desktop still supports a save to
the binary format, but at least in the web version of the application that
option is gone.

I'm just wondering if maybe LibreOffice should also look at dropping write
support for those binary formats, at least in the online versions. It seems
to me a good thing to do.

Best wishes,

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


[Libreoffice-bugs] [Bug 72734] FILEOPEN xml : cannot import when xml contains CDATA

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72734

mhonline  changed:

   What|Removed |Added

 CC||mh...@gmx.net

--- Comment #8 from mhonline  ---
opposit to the help-file, the feature Import flat XML (without schema) to Calc
(Menu/Data/XML-Source) is still not really implemented (LO 6.3.3), even the
simple implemented version does not do, what is expected.
This issue is about 7 years open now. 

m.

-- 
You are receiving this mail because:
You 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 129625] Gray out categories in Navigator, if they have zero instances

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129625

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com

--- Comment #4 from Thomas Lendo  ---
I'm against hiding. Now it's a nice overview which node types exists.

-- 
You are receiving this mail because:
You 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 129625] Gray out categories in Navigator, if they have zero instances

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129625

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com

--- Comment #4 from Thomas Lendo  ---
I'm against hiding. Now it's a nice overview which node types exists.

-- 
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 130083] Redesign LibreOffice Options Start Page

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130083

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com
 Blocks||102187

--- Comment #4 from Thomas Lendo  ---
Hm. I think additional text and pages makes it more complex for normal users
than it's now. Who should read it and why not the 'real/full' page?

And it will add more content for localization, discussions about what should be
shown and what not, etc.


Referenced Bugs:

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


[Libreoffice-ux-advise] [Bug 130083] Redesign LibreOffice Options Start Page

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130083

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com
 Blocks||102187

--- Comment #4 from Thomas Lendo  ---
Hm. I think additional text and pages makes it more complex for normal users
than it's now. Who should read it and why not the 'real/full' page?

And it will add more content for localization, discussions about what should be
shown and what not, etc.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102187
[Bug 102187] [META] Options dialog bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 102187] [META] Options dialog bugs and enhancements

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102187

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||130083


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=130083
[Bug 130083] Redesign LibreOffice Options Start Page
-- 
You are receiving this mail because:
You 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 128814] Navigator: right-clicking on any item should bring context menu as right-clicking the item in document, not custom navigator menu

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128814

--- Comment #10 from Jim Raykowski  ---
Hello all,

Here is a that patch implements chapter selection from the Writer Navigator
context menu for outline entries:

https://gerrit.libreoffice.org/c/core/+/87168

Only the chapter that is selected in the Navigator is selected in the document.
Multi selection of chapters can be done in Headings root mode where multi
outline selection is possible.

Perhaps delete chapter should behave like this instead of clobbering all sub
chapters of a chapter?

-- 
You are receiving this mail because:
You 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 128814] Navigator: right-clicking on any item should bring context menu as right-clicking the item in document, not custom navigator menu

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128814

--- Comment #10 from Jim Raykowski  ---
Hello all,

Here is a that patch implements chapter selection from the Writer Navigator
context menu for outline entries:

https://gerrit.libreoffice.org/c/core/+/87168

Only the chapter that is selected in the Navigator is selected in the document.
Multi selection of chapters can be done in Headings root mode where multi
outline selection is possible.

Perhaps delete chapter should behave like this instead of clobbering all sub
chapters of a chapter?

-- 
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 128814] Navigator: right-clicking on any item should bring context menu as right-clicking the item in document, not custom navigator menu

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128814

Jim Raykowski  changed:

   What|Removed |Added

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

-- 
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 105600] Allow selecting contents of sections via Navigator

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105600

Jim Raykowski  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 128814] Navigator: right-clicking on any item should bring context menu as right-clicking the item in document, not custom navigator menu

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128814

Jim Raykowski  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 127112] Numbering style editor: Leaving Customize tab with a non-default level selected, then returning to it, gives multiple levels selected, and selection behaves erratically

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127112

sdc.bla...@youmail.dk changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 130003] ALPHABETICAL INDEX: make it easier to index ranges of pages

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130003

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com

--- Comment #12 from Thomas Lendo  ---
Instead of changing the way to create a ToC, it would be easier to only have a
checkbox in the ToC dialog for that.

-- 
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 130003] ALPHABETICAL INDEX: make it easier to index ranges of pages

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130003

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com

--- Comment #12 from Thomas Lendo  ---
Instead of changing the way to create a ToC, it would be easier to only have a
checkbox in the ToC dialog for 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-commits] core.git: Branch 'refs/tags/libreoffice-6.4.0.3' - configure.ac

2020-01-21 Thread Christian Lohmaier (via logerrit)
Rebased ref, commits from common ancestor:
commit 51eb546578798102751914a4aca3ac0039f427c8
Author: Christian Lohmaier 
AuthorDate: Tue Jan 21 23:32:29 2020 +0100
Commit: Christian Lohmaier 
CommitDate: Tue Jan 21 23:32:29 2020 +0100

bump product version to 6.4.0.3

Change-Id: I6618b804e007fe8b44a123316ad501896a4d61cf

diff --git a/configure.ac b/configure.ac
index 007da868a87b..1e4724a60622 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[6.4.0.2.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[6.4.0.3],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-4-0' - configure.ac

2020-01-21 Thread Christian Lohmaier (via logerrit)
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bfac5fa4ca292fe4048562bada4ccdc606868fab
Author: Christian Lohmaier 
AuthorDate: Tue Jan 21 23:24:06 2020 +0100
Commit: Christian Lohmaier 
CommitDate: Tue Jan 21 23:29:35 2020 +0100

bump product version to 6.4.0.3.0+

Change-Id: I5f81d3014a2d97cf6e53638f7eb26bd5f310e15f

diff --git a/configure.ac b/configure.ac
index 007da868a87b..3e6f6c6e1994 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ dnl in order to create a configure script.
 # several non-alphanumeric characters, those are split off and used only for 
the
 # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no 
idea.
 
-AC_INIT([LibreOffice],[6.4.0.2.0+],[],[],[http://documentfoundation.org/])
+AC_INIT([LibreOffice],[6.4.0.3.0+],[],[],[http://documentfoundation.org/])
 
 dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just 
fine if it is installed
 dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails 
hard
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/tags/libreoffice-6.4.0.3' - 2 commits - dictionaries helpcontent2 sfx2/source translations

2020-01-21 Thread Christian Lohmaier (via logerrit)
Rebased ref, commits from common ancestor:
commit 6de224840064dc8feb73e169b2d78670d3ec3d54
Author: Christian Lohmaier 
AuthorDate: Tue Jan 21 23:26:31 2020 +0100
Commit: Christian Lohmaier 
CommitDate: Tue Jan 21 23:26:31 2020 +0100

Version 6.4.0.3, tag libreoffice-6.4.0.3

diff --git a/dictionaries b/dictionaries
index 288ed78013d9..45a228882514 16
--- a/dictionaries
+++ b/dictionaries
@@ -1 +1 @@
-Subproject commit 288ed78013d9df0bfadf604c412c9e25c8ee6e59
+Subproject commit 45a22888251481231a5bc0a9eb900f8bb0d621c6
diff --git a/helpcontent2 b/helpcontent2
index 2beba1663a2f..294d8ae73313 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 2beba1663a2f069fa01badb5a4aceb4e37f24cd9
+Subproject commit 294d8ae733135ded7391ac15170b8bd4e4f5babb
diff --git a/translations b/translations
index fd49d16dcc4e..fb7fffe34792 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit fd49d16dcc4ec31b0b02b7e7e7437a99f7d1a6bc
+Subproject commit fb7fffe34792f0a3349fdf085273cc465747456c
commit 0768fa976bd44f6a9c96720dcc1a0272c0364e8b
Author: Xisco Faulí 
AuthorDate: Fri Jan 17 14:44:21 2020 +0100
Commit: Christian Lohmaier 
CommitDate: Tue Jan 21 23:20:33 2020 +0100

tdf#129788: Revert "no need to use AlphaMask in RecentDocsViewItem"

This reverts commit 31bd8c4a4a4752dcff12ee35636193f79a6d6137.

Similar to 5c54778aad677d6bb6e6687f0f43dffad1aefa1e

Change-Id: Ibb4daa702df1f683888b92b8b8041f28e25e6b04
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86998
Tested-by: Jenkins
Reviewed-by: Noel Grandin 
(cherry picked from commit d720e120b6534ff2fdf6cb11f0b46eca454d4e34)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87051
Reviewed-by: Michael Stahl 
Reviewed-by: Christian Lohmaier 
Tested-by: Christian Lohmaier 

diff --git a/sfx2/source/control/recentdocsviewitem.cxx 
b/sfx2/source/control/recentdocsviewitem.cxx
index 908a679a5629..85d84ddc699d 100644
--- a/sfx2/source/control/recentdocsviewitem.cxx
+++ b/sfx2/source/control/recentdocsviewitem.cxx
@@ -91,7 +91,8 @@ RecentDocsViewItem::RecentDocsViewItem(sfx2::RecentDocsView 
, const OUStri
 }
 
 // create empty, and copy the default thumbnail in
-aThumbnail = BitmapEx(aThumbnailSize, 24);
+sal_uInt8 nAlpha = 255;
+aThumbnail = BitmapEx(Bitmap(aThumbnailSize, 24), 
AlphaMask(aThumbnailSize, ));
 
 aThumbnail.CopyPixel(
 ::tools::Rectangle(Point((aThumbnailSize.Width() - 
aExtSize.Width()) / 2, (aThumbnailSize.Height() - aExtSize.Height()) / 2), 
aExtSize),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] dictionaries.git: Changes to 'refs/tags/libreoffice-6.4.0.3'

2020-01-21 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-6.4.0.3' created by Christian Lohmaier 
 at 2020-01-21 22:23 +

Tag libreoffice-6.4.0.3
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAl4neekACgkQ9DSh76/u
rqO4vBAAqnDXgqnt/TYRlhS0IhxZkJjrG//tiKbx0oSNdtEPZ2CPLzeYcTHPm6BA
yHJu4WMvNZerXwZSHuhdID7gLvB2e8eXj/e+0eX0LqI2VAjZX/DFoCgUKa9Ex0IU
Y5NeJbWogJmStupFV9QXEwBZ866gb4BbJ5BBP+9GWobfYZxWCHR/j3q8LsKbjBBC
cjB2NGIIZjbjPNLXYz30T0FUUq3n1RI/oUCB2qCyR6xzuYF2/qGYJsJ5CscVj8r4
wX90kOA2jGQx5tf7vwJkOSkDTDE5y1c1Ts5t3qDaUDalHjaLZj9Zr4W6L5kc6Lbr
xPDvk+GrjUhz/U6+JaG3ylpg91CX1FtBXpjeBBZyN0H9JOMrFY3VdUdujvQlnIMv
wickFeOhaxEyjsy1OHaycpJbYwPeqzpWDBaRbt96rpbFe45RLofQAAD7WbLNT3Bn
GuTfp9h4P7J5YJs5s8V5Cc6ClQVF0Whx4woleS1bPPuaS8uin1SBZElO6rG2+y3Q
4zaGbT4s0D2nDDDlqvZLok4EGRlZUDHwgzX2D31L2Iz01BZ6oEZB8vBh/2ehvw8/
+qLPM7lHhy5USk3jm7dt4A+Lo1eggdZ+fTP5aO5ag4kWdNYimNLVQXwfWPpDI45f
G6ZPMzq7Svsf5nGyL4Ct/ICkX9GpDSgrGdGSpiaE/p6I7hjpyiY=
=syGz
-END PGP SIGNATURE-

Changes since libreoffice-6-4-branch-point-4:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Changes to 'refs/tags/libreoffice-6.4.0.3'

2020-01-21 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-6.4.0.3' created by Christian Lohmaier 
 at 2020-01-21 22:23 +

Tag libreoffice-6.4.0.3
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAl4nee0ACgkQ9DSh76/u
rqM+nRAAuLtnDB9eUdTAK0H+tc1mIJ4hla0kLFKJ4r3aLYj86CBn9UOmxcVaeh88
yyrBmjjxD0MbJ+gh1FfdtI9SkvPkc2423uscXXrL5E33ub0dolQIkp46X3bunzLa
TTQ//n5ClqgYdTILBypcsWbSBPwKozNzPUh/MiwKEjNs77t5udlrtL7+91BdyHrP
QeeU5MishNFZY66OW5Y2Bf1gDKa4OQbhZleqdMMFIJEjHQqxiRARBjEFsF2n97ij
RjrVION1TKB4WHGI+LAOpIJglTNBrDsH2XkwQ9RA6OuXfuDUk4+zGHYCO+V4dYF5
J1b0yYdkgza0lF+DqOPwKLfvOTKnrlOIUWLzt2mnj40yD9Fg638kXgujs2TiGJAi
IKTnaFJ90VqW2rYQCWBnEdKs6nmISLs961Dr6dtXAVApDJhcpSzijSNsIl3lTCK2
9QjWklylBjZCXenrkNlNsHktcZLkFFHhgCOGMFupL2fV/Nqonw/yJZPpSGvvLqe6
oK7XT2MqvCWFVKhSeviQjQwaOryVbXyKlH9HPCGZ4t0RxajVZDOgVY2Zl/gUr6h6
7QzZnsi8WdF/QfN7NskhFs+6jamwcZ+cDt3mNkxu5F2yoCYXOLZYKs6c65qqhvEW
zlDpjtf7K05pgCDAKiOq2ogpv1enPugeCRVuDsRji9XsQLDQ3JA=
=vNN6
-END PGP SIGNATURE-

Changes since libreoffice-6-4-branch-point-520:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Changes to 'refs/tags/libreoffice-6.4.0.3'

2020-01-21 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-6.4.0.3' created by Christian Lohmaier 
 at 2020-01-21 22:23 +

Tag libreoffice-6.4.0.3
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAl4nee0ACgkQ9DSh76/u
rqPLyBAAipTmj8NlG6Lp5mLq1jZzS31t+r497+BYd3ZtYIfT4cko6AhheuTnxITY
S1yrit/9SHiDae45GJYmwt711mxyPS1MLnWZAwf4a5817zkP9UOnMUJ6vMC3hTBB
k8NAqpC+9wsYr6iaomVBQzuQjOm1a0Tusm4JtbpopbE/Ozf0n8QHH8CAcZgwaXqG
8ze5YId2V23R4fzwPDpZ+rHBlb5weL03+hLk5ndgVxnfbOt/VZZ9ngbMRJo31tI1
5oUKy6HOtJPr1DB/DvCthp7KUXPKjutO5Ab+D9CfOMzbcZVBxo4DaB0FU+8d0Fts
3jliJOKkDw1+B6dZxsdQwle96ICkDp30QGQ0k+SK4goFeNX3PJRlW0JVKcoRVSyp
L25ETZn56H0EkBnl0jy+/WaNtF+Cppq9efZhOo7a5eWKwb+OnM4R9WL3QMiNIUX+
oaXgM2GymGUO0ANA1RgyfRNWRYy4T1PD2VfUhq95T3kz7t9TVg7cCIZ0aivcof3T
c+0yg0Pn0riRxJKto+A+/Fr9TbG63RXUFkYe6aNDPnd12/KRiX7GbqCLw+2e8Der
g65d4v7p9K3pYZLBmzPbRhbQ/qsfYaqd1OYnziyozLpERelkr2bEvjqu2q2z31BJ
6jIwA9p0qDo6fR4hNJmYJLD5osMl8UitaSCyOa1js7H0KRwKO6A=
=M8Zu
-END PGP SIGNATURE-

Changes since libreoffice-6-4-branch-point-42:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] translations.git: Changes to 'refs/tags/libreoffice-6.4.0.3'

2020-01-21 Thread Christian Lohmaier (via logerrit)
Tag 'libreoffice-6.4.0.3' created by Christian Lohmaier 
 at 2020-01-21 22:23 +

Tag libreoffice-6.4.0.3
-BEGIN PGP SIGNATURE-

iQIzBAABCAAdFiEEwoOeytlAj76VMcPp9DSh76/urqMFAl4nee0ACgkQ9DSh76/u
rqP1qQ//dgQ5W4aUvlrxidXhN/kjeDaTGchDuGzfUbIbX0eitILp1FwzUQE0jUAf
W1W8sP0KMQYzRa/oQd+lCqPET6Ez3F6e7kzl83WbvrnmaAVrtVAc5NKZhv5RciHY
7x/Vsz0b11nfTGepZwdG2cizZDO751DBHEEb6JrPj6drVbMgQOb3mvA6x/jmHIJ0
mMxwgCP85vQGJhuouvXHwBidGN4OVhchEsXc/4aJ411BXeCZVdpwDyOWHo30L+bh
jq1VcGQ8q+Ia6HJkDw4zZ1C5RMBEbt4Kc/oHoWnvbawwMjYuIBiK4kAH95Uo0yEH
wPA5UBVbTJlOAekdVIGhlGUeutSGwnrKpBXKDPI7shnZvnXu/Pl467nfQbAW+hCh
3gcP4mQg4vVjS6AtFvL2j6NYHxJnG97133Mof0U0+jsBssnC4DLKPB7nPKWYuTBy
3Nd1nHsWuzxAERUhP+OS8DxqEsAlqCzLMeEJ//rZPPYDeNqtwOtq1C+G93x/c3PN
xHESaSK6NbLB4WY2BDFNzBx5BhAgwZ2y2dpUssg7rrL466sF0B/8HPwLGmD7A3v0
yucBQwHMb+2pd9KszMJp54kuisPVTbIKJKACl9vtp+MJxdVT5wL7bRfThH1+qfl0
LcL9SlPmIn/p/fxRF9O3I+bhvLtOyoCHw9Bw0nS8p8PpeUlpmxU=
=O4au
-END PGP SIGNATURE-

Changes since libreoffice-6-4-branch-point-11:
---
 0 files changed
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129788] Preview image for encrypted files garbled

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129788

--- Comment #13 from Commit Notification 
 ---
Xisco Faulí committed a patch related to this issue.
It has been pushed to "libreoffice-6-4-0":

https://git.libreoffice.org/core/commit/0768fa976bd44f6a9c96720dcc1a0272c0364e8b

tdf#129788: Revert "no need to use AlphaMask in RecentDocsViewItem"

It will be available in 6.4.0.

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

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

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


[Libreoffice-bugs] [Bug 129788] Preview image for encrypted files garbled

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129788

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.5.0 target:6.4.1   |target:6.5.0 target:6.4.1
   ||target:6.4.0

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


[Libreoffice-commits] core.git: Branch 'libreoffice-6-4-0' - sfx2/source

2020-01-21 Thread Xisco Faulí (via logerrit)
 sfx2/source/control/recentdocsviewitem.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 0768fa976bd44f6a9c96720dcc1a0272c0364e8b
Author: Xisco Faulí 
AuthorDate: Fri Jan 17 14:44:21 2020 +0100
Commit: Christian Lohmaier 
CommitDate: Tue Jan 21 23:20:33 2020 +0100

tdf#129788: Revert "no need to use AlphaMask in RecentDocsViewItem"

This reverts commit 31bd8c4a4a4752dcff12ee35636193f79a6d6137.

Similar to 5c54778aad677d6bb6e6687f0f43dffad1aefa1e

Change-Id: Ibb4daa702df1f683888b92b8b8041f28e25e6b04
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86998
Tested-by: Jenkins
Reviewed-by: Noel Grandin 
(cherry picked from commit d720e120b6534ff2fdf6cb11f0b46eca454d4e34)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87051
Reviewed-by: Michael Stahl 
Reviewed-by: Christian Lohmaier 
Tested-by: Christian Lohmaier 

diff --git a/sfx2/source/control/recentdocsviewitem.cxx 
b/sfx2/source/control/recentdocsviewitem.cxx
index 908a679a5629..85d84ddc699d 100644
--- a/sfx2/source/control/recentdocsviewitem.cxx
+++ b/sfx2/source/control/recentdocsviewitem.cxx
@@ -91,7 +91,8 @@ RecentDocsViewItem::RecentDocsViewItem(sfx2::RecentDocsView 
, const OUStri
 }
 
 // create empty, and copy the default thumbnail in
-aThumbnail = BitmapEx(aThumbnailSize, 24);
+sal_uInt8 nAlpha = 255;
+aThumbnail = BitmapEx(Bitmap(aThumbnailSize, 24), 
AlphaMask(aThumbnailSize, ));
 
 aThumbnail.CopyPixel(
 ::tools::Rectangle(Point((aThumbnailSize.Width() - 
aExtSize.Width()) / 2, (aThumbnailSize.Height() - aExtSize.Height()) / 2), 
aExtSize),
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-4-0' - translations

2020-01-21 Thread Christian Lohmaier (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ebdf31342ae6c90c0813a96002cdbb0a3eb5b4b0
Author: Christian Lohmaier 
AuthorDate: Tue Jan 21 23:16:26 2020 +0100
Commit: Gerrit Code Review 
CommitDate: Tue Jan 21 23:16:26 2020 +0100

Update git submodules

* Update translations from branch 'libreoffice-6-4-0'
  to fd49d16dcc4ec31b0b02b7e7e7437a99f7d1a6bc
  - update translations for 6.4.0 rc3

and force-fix using pocheck

Change-Id: I902bc9b9118b106605e454dfb7da73aa16f8c405
(cherry picked from commit e2634177118353d07fbd22f9e4c6dc9b41e1cc16)

diff --git a/translations b/translations
index 380d32947ee2..fd49d16dcc4e 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 380d32947ee2b05830a29f4c44d0b694119d1f07
+Subproject commit fd49d16dcc4ec31b0b02b7e7e7437a99f7d1a6bc
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - translations

2020-01-21 Thread Christian Lohmaier (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d6e09838999a47689cbd24e47c9f256fde901a2e
Author: Christian Lohmaier 
AuthorDate: Tue Jan 21 23:15:41 2020 +0100
Commit: Gerrit Code Review 
CommitDate: Tue Jan 21 23:15:41 2020 +0100

Update git submodules

* Update translations from branch 'libreoffice-6-4'
  to e2634177118353d07fbd22f9e4c6dc9b41e1cc16
  - update translations for 6.4.0 rc3

and force-fix using pocheck

Change-Id: I902bc9b9118b106605e454dfb7da73aa16f8c405

diff --git a/translations b/translations
index a7bd83b1b05e..e26341771183 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit a7bd83b1b05ea2a4604ca73b011afca6ae9b8f40
+Subproject commit e2634177118353d07fbd22f9e4c6dc9b41e1cc16
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129806] [META] Feature "not implemented on platform X"

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129806

Thomas Lendo  changed:

   What|Removed |Added

Summary|[META] - Feature "not   |[META] Feature "not
   |implemented on platform X"  |implemented on platform X"
 CC||thomas.le...@gmail.com

-- 
You are receiving this mail because:
You 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 113209] [META] UI bugs and enhancements

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113209

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface 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 129661] [META] Right-To-Left (RTL) user interface issues

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129661

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com
 Blocks||113209


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 106040] [META] Help bugs and enhancements

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106040

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||129231


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 129231] [META] XHP online editor bugs and enhancements

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129231

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||106040
 CC||thomas.le...@gmail.com


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 37134] Tabbed UI: Document-per-tab (similar to Firefox, Opera, gedit) MDI

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37134

--- Comment #51 from rol...@logikalsolutions.com ---
(In reply to Lynne Connolly from comment #50)
> Could this be done as an extra toolbar? Then it could be arranged as the
> user likes, or hidden if wished. A toolbar with all the open documents
> listed on it, and the ability to switch from one document to another, and to
> rearrange the tabs with drag and drop.

What everyone seems to be missing is these aren't separate document files. All
tabbed divisions exist in a single LWP file. I un-hid the comments which
someone flagged as off-topic so you can have a better idea of what people are
really asking for. Those images are highly relevant to understanding this.

A tabbed division is "conceptually" a separate document but it physically
exists in the hierarchy tree of the LWP file. 

When you change the position of a tabbed division, i.e. dragging it between 2
others, you physically change its hierarchical position in the file. You can
save that file, copy to a thumb drive, take to another machine, and it will
open up with those tabs in that order.

Unless the OpenDocument specification is going to expand/change, this isn't
something that can be "faked" into LO. Others can way in, but as far as I know,
LWP was the only file format to support this.

Scrivener has something now, but I don't know what it is.

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


[Libreoffice-bugs] [Bug 130114] New: Freeze when trying to save edited document in .doc format

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130114

Bug ID: 130114
   Summary: Freeze when trying to save edited document in .doc
format
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lesl...@mymts.net

Description:
The document was created in .doc format using LO 6.8.2.8. When I edited it and
tried to save it in .doc still, writer froze. However, the same did not happen
when I edited the document and then tried to save it in .odt format.

Steps to Reproduce:
1.Open file in .doc format.
2.Edit.
3.Try to save in .doc format.

Actual Results:
writer freezes. I have to force quit.

Expected Results:
File saved in usual way.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
I could send you the file that's causing the problem if you want, but it's
about 25 pages long, with about 50 footnotes. The problem arose on editing one
of the footnotes

-- 
You are receiving this mail because:
You 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 37134] Tabbed UI: Document-per-tab (similar to Firefox, Opera, gedit) MDI

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=37134

--- Comment #50 from Lynne Connolly  ---
Could this be done as an extra toolbar? Then it could be arranged as the user
likes, or hidden if wished. A toolbar with all the open documents listed on it,
and the ability to switch from one document to another, and to rearrange the
tabs with drag and drop.

-- 
You are receiving this mail because:
You 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 129926] Hyperlink drag-and-drop crashes Writer when dropped onto itself.

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129926

--- Comment #7 from Stephan van den Akker  ---
No crash after:

export SAL_USE_VCLPLUGIN=gen

Version: 6.5.0.0.alpha0+
Build ID: 01a3a7cee2dc680910f4ddec004724b89a81099b
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: x11; 
Locale: en-GB (en_GB.UTF-8); UI-Language: en-GB
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 107492] : OutOfBound error when cells are deleted

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107492

--- Comment #6 from Julien Nabet  ---
25 times warn:legacy.osl:83214:83214:sc/source/ui/unoobj/cellsuno.cxx:4592:
What ranges ?!?! with the patch

16 times without. But perhaps it's because the script stops with outofbound
error.

Anyway, the patch doesn't fix this warn for sure.

-- 
You are receiving this mail because:
You 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: svx/uiconfig

2020-01-21 Thread andreas kainz (via logerrit)
 svx/uiconfig/ui/sidebarpossize.ui |  653 +++---
 1 file changed, 338 insertions(+), 315 deletions(-)

New commits:
commit da70fd1edc211bf63f8388e11c1bd8dd398fdaf8
Author: andreas kainz 
AuthorDate: Tue Jan 21 21:45:46 2020 +0100
Commit: andreas_kainz 
CommitDate: Tue Jan 21 22:31:12 2020 +0100

Sidebar position and size update

Change-Id: I8a5a6f088f6b4dffd051ee577999d1d1eeff8a17
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87163
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/svx/uiconfig/ui/sidebarpossize.ui 
b/svx/uiconfig/ui/sidebarpossize.ui
index e13b811f261e..049626c2247b 100644
--- a/svx/uiconfig/ui/sidebarpossize.ui
+++ b/svx/uiconfig/ui/sidebarpossize.ui
@@ -2,234 +2,337 @@
 
 
   
-  
--120
-240
-1
-10
-  
-  
--120
-240
-1
-10
-  
-  
-100
-1
-10
-  
-  
-100
-1
-10
-  
-  
-359
-5
-  
   
 True
 False
 
-  
+  
 True
 False
 True
 6
-vertical
-12
+3
+6
+True
 
-  
+  
 True
 False
-3
-6
-True
-
-  
-True
-False
-Position _X:
-True
-horizontalpos
-0
-  
-  
-0
-0
-  
-
-
-
-  True
-  True
-  Enter the value for the 
horizontal position.
-  adjustmentPOS
-  2
+Position _X:
+True
+horizontalpos
+0
+  
+  
+0
+0
+  
+
+
+  
+True
+True
+Enter the value for the 
horizontal position.
+adjustmentPOS
+2
 
   
 Horizontal
   
 
+  
+  
+0
+1
+  
+
+
+  
+True
+False
+Position _Y:
+True
+verticalpos
+0
+  
+  
+1
+0
+  
+
+
+  
+True
+True
+Enter the value for the 
vertical position.
+adjustmentPOS1
+
+  
+Vertical
   
-  
-0
-1
-  
-
-
-  
-True
-False
-Position _Y:
-True
-verticalpos
-0
-  
-  
-1
-0
-  
 
-
-  
-True
-True
-Enter the value for the 
vertical position.
-adjustmentPOS1
-
-  
-Vertical
-  
-
+  
+  
+1
+1
+  
+
+
+  
+True
+False
+_Width:
+True
+selectwidth
+0
+  
+  
+0
+2
+  
+
+
+  
+True
+True
+Enter a width for the 
selected object.
+adjustmentSIZE
+2
+
+  
+Width
   
-  
-1
-1
-  
 
-
-  
-True
-False
-_Width:
-True
-selectwidth
-0
+  
+  
+0
+3
+  
+
+
+  
+True
+False
+H_eight:
+True
+selectheight
+0
+  
+  
+1
+2
+  
+
+
+  
+True
+True
+Enter a height for the 
selected object.
+adjustmentSIZE1
+2
+
+  
+Height
   
-  
-0
-2
-  
 
+  
+  
+1
+3
+  
+
+
+  
+_Keep ratio
+True
+True
+False
+Maintain proportions when you 
resize the selected object.
+True
+0
+True
+  
+  
+0
+4
+2
+  

[Libreoffice-bugs] [Bug 107492] : OutOfBound error when cells are deleted

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107492

--- Comment #5 from Xisco Faulí  ---
(In reply to Julien Nabet from comment #4)
> Just forgot to tell that I noticed this log several times:
> warn:legacy.osl:83214:83214:sc/source/ui/unoobj/cellsuno.cxx:4592: What
> ranges ?!?!

With your patch or without it ?

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


[Libreoffice-ux-advise] [Bug 129719] ALPHABETICAL INDEX: "run-on" entries need to be separated by semicolons (not commas)

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129719

--- Comment #4 from R. Green  ---
The other authority is "The Chicago Manual of Style". And it shows the same
thing: each entry separated from the other by a semicolon and a space.

-- 
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 129719] ALPHABETICAL INDEX: "run-on" entries need to be separated by semicolons (not commas)

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129719

--- Comment #4 from R. Green  ---
The other authority is "The Chicago Manual of Style". And it shows the same
thing: each entry separated from the other by a semicolon and a space.

-- 
You are receiving this mail because:
You 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 130113] PDF export of formulas in

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130113

m.a.riosv  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Please can you attach a sample file to test.

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


[Libreoffice-bugs] [Bug 130108] Conditional Format not compatible with Excel

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130108

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #5 from m.a.riosv  ---
I can't see either with
Version: 6.4.0.2 (x64)
Build ID: 08d19fecdc7a2298d051e19cfdb7c35544855fc3
CPU threads: 4; OS: Windows 10.0 Build 19546; UI render: GL; VCL: win; 
Locale: es-ES (es_ES); UI-Language: en-US Calc: CL

Please can you attach the ods file working fine, to test saving as xlsx.

-- 
You are receiving this mail because:
You 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 129956] Libre Office hangs at startup

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129956

Julien Nabet  changed:

   What|Removed |Added

 CC|serval2...@yahoo.fr |

--- Comment #14 from Julien Nabet  ---
(In reply to d-x-0-5 from comment #13)
> ...
> I have a new info for you:
> I have activated the Microsoft virtual sandbox on the machine and tried
> LibreOffice in the Sandbox. And voilà, no problems, LO runs as expected. So
> there must be any setting in my (none virtualized) windows 10 that prevents
> the LibreOffice main window to proceed in any way. I have only some privacy
> customizations and some visual preference setttings personalized on my PC. I
> really do not know, how to find out the cause of the problem. How do we
> proceed from here?
> -dx05

No idea here, I'm not a Windows expert.
Can't help here => uncc myself.

-- 
You are receiving this mail because:
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   >