[Bug 133630] CRASH: Chart: Changing properties in different objects

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Bug 160208] Crash in: cppu::UnoType::get()

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||3630,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||6611

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
Related:
- bug 133630
- bug 136611

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

[Bug 133092] [META] Crash bugs

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160208


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160208
[Bug 160208] Crash in:
cppu::UnoType::get()
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160208] Crash in: cppu::UnoType::get()

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Blocks||133092, 105752
 Status|UNCONFIRMED |NEW
Crash report or|["cppu::UnoType::get()"] |Exception>::get()","libc.so
   ||.6"]
   Severity|normal  |critical
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #2 from Stéphane Guillou (stragu) 
 ---
With a current trunk build, I don't see Corner Style or Cap Style in the Line
properties section:

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

But in 24.2 I can reproduce:
https://crashreport.libreoffice.org/stats/crash_details/f1ce2d3f-172f-4632-9cbb-dfedaa452108

Setting to new, but would need to find when this sidebar section changed in
24.8.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=105752
[Bug 105752] [META] Line content panel of the Properties deck/tab of the
sidebar
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
[Bug 133092] [META] Crash bugs
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 105752] [META] Line content panel of the Properties deck/tab of the sidebar

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||160208


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160208
[Bug 160208] Crash in:
cppu::UnoType::get()
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160209] New: Running the SDK example in Java more than 3 times results in a black screen appearing on subsequent documents.

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

Bug ID: 160209
   Summary: Running the SDK example in Java more than 3 times
results in a black screen appearing on subsequent
documents.
   Product: LibreOffice
   Version: 24.2.1.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: sdk
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rg...@mail.ru

Description:
Running the SDK example in Java more than 3 times results in a black screen
appearing on subsequent documents. Running the same example on Apache Open
Office does not lead to such errors.

Actual Results:
black screen 

Expected Results:
black screen 


Reproducible: Always


User Profile Reset: No

Additional Info:
public class Test {
public static void main(String args[]) throws Exception {
Test t = new Test();

try {
t.test();
} catch (Exception e) {
System.err.println(e);
e.printStackTrace();
}
System.exit(0);
}

public void test() throws Exception {
String file ;
URL [] urls = new URL[2];
//URL [] urls = new URL[5];
file = "D:\\Project\\fccs74_java\\officel\\build\\classes\\";
urls[0] = new File(file).toURI().toURL();
//file = "C:\\Program
Files\\LibreOffice\\program\\classes\\libreoffice.jar";
file = "C:\\Program Files
(x86)\\LibreOffice\\program\\classes\\libreoffice.jar";
urls[1] = new File(file).toURI().toURL();
//file = "C:\\Program Files (x86)\\OpenOffice
4\\program\\classes\\ridl.jar";
//urls[1] = new File(file).toURI().toURL();
//file = "C:\\Program Files (x86)\\OpenOffice
4\\program\\classes\\juh.jar";
//urls[2] = new File(file).toURI().toURL();
//file = "C:\\Program Files (x86)\\OpenOffice
4\\program\\classes\\jurt.jar";
//urls[3] = new File(file).toURI().toURL();
//file = "C:\\Program Files (x86)\\OpenOffice
4\\program\\classes\\unoil.jar";
//urls[4] = new File(file).toURI().toURL();

//
final ClassLoader loader = new URLClassLoader(urls, null);
//
//Class c = loader.loadClass( "officel.test.TestLibre" );
Class c = loader.loadClass( "officel.test.SCalc" );
//Class c = loader.loadClass( "officel.test.EuroAdaption");
//Class c = loader.loadClass( "officel.test.Test" );
@SuppressWarnings("unchecked")
//Method m = c.getMethod( "main", new Class[] { String[].class } );
//Method m = c.getMethod( "printReport", new Class[] { Object[].class }
);
Method m = c.getMethod( "printReport", null );
//Method m = c.getMethod( "test", null );
Object obj = c.getDeclaredConstructor().newInstance();
//m.invoke( obj, new Object[] {1,2,3  } );
m.invoke( obj, null );

}


Scalc modified the name of the main launch method:
public static void printReport() {

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

[Bug 101742] [VISIO][FILEOPEN]Hyperlinks lost when importing vsdx

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

Bartosz  changed:

   What|Removed |Added

Summary|Hyperlinks lost when|[VISIO][FILEOPEN]Hyperlinks
   |importing vsdx  |lost when importing vsdx

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

[Bug 160036] Selection invisible in a11y High Contrast modes with SKIA/Raster, Skia/Vulkan unaffected

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

--- Comment #11 from Noel Grandin  ---
(In reply to Xisco Faulí from comment #8)
> Hi Noel,
> I see some new commits in
> https://chromium.googlesource.com/skia/+log/refs/heads/chrome/m116 since
> 2ddcf18. Would it make sense to upgrade to the latest d2c2112 to see whether
> it fixes the issue ?

It would, but upgradning skia is a painful process. We replace their build
scripts (because they use some other build tool that we don't support), and
their API sometimes changes or move around, which means we then need to adapt
our code.

Not something I feel sufficiently enthusiastic to attempt.

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

[Bug 120543] [META] Bugs and enhancements around hyperlinks in Calc

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

BogdanB  changed:

   What|Removed |Added

 Depends on||125764


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125764
[Bug 125764] hyperlink active region inaccurate in scaled sheet (truncated
fractions?)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 125764] hyperlink active region inaccurate in scaled sheet (truncated fractions?)

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks|107733  |120543


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107733
[Bug 107733] [META] Hyperlink bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=120543
[Bug 120543] [META] Bugs and enhancements around hyperlinks in Calc
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 107733] [META] Hyperlink bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on|125764  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=125764
[Bug 125764] hyperlink active region inaccurate in scaled sheet (truncated
fractions?)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 88918] Edit→Hyperlink… is greyed out when an object with a hyperlink is selected in Draw

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

Buovjaga  changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
   Assignee|nicholaskh...@gmail.com |libreoffice-b...@lists.free
   ||desktop.org
 CC|nicholaskh...@gmail.com |

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

[Bug 61914] [META] Start Center bugs and enhancements

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

Bug 151159 Summary: StartCenter: Document Filter: rename from `All 
Applications` to `All Documents`
https://bugs.documentfoundation.org/show_bug.cgi?id=151159

   What|Removed |Added

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

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

[Bug 45315] [UI] Some relation elements (precedes and following) shown with different font

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

--- Comment #20 from john david  ---
Fitness Experts, Nutritionist, Diet Plans, Weight Loss, Health, Wellness,
Weight Gain, Dietitian, Fitness, 15 Weight Loss Tips for People With Chronic
Condition. please visit our website https://weshapesoul.com

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

[Bug 140811] "Add and Size" not explained on Image tab help, plus Link graphics is mentioned but does not appear in dialog

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

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org

--- Comment #4 from Buovjaga  ---
(In reply to John from comment #3)
> The file picker is now limited to graphics files.

Not for me, the only filter is All files.

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 173bf8bf8b8e485691f8f0b4b33da0a139babc34
CPU threads: 8; OS: Linux 6.7; UI render: default; VCL: kf6 (cairo+wayland)
Locale: fi-FI (fi_FI.UTF-8); UI: en-US
Calc: threaded

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

[Bug 153583] Control/Form properties dialog does not have a help page

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

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org

--- Comment #3 from Buovjaga  ---
The Name field is in focus when the dialog is opened and with F1 I am taken to

text/shared/02/01170101.html?System=UNIX&DbPAR=CALC&HID=EXTENSIONS_HID_PROP_NAME#bm_id3152469

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 173bf8bf8b8e485691f8f0b4b33da0a139babc34
CPU threads: 8; OS: Linux 6.7; UI render: default; VCL: kf6 (cairo+wayland)
Locale: fi-FI (fi_FI.UTF-8); UI: en-US
Calc: threaded

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

[Bug 93955] Help Pages not Displayed for Main Items of Menu

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

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org
 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #8 from Buovjaga  ---
Yes, problem seems gone.

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 173bf8bf8b8e485691f8f0b4b33da0a139babc34
CPU threads: 8; OS: Linux 6.7; UI render: default; VCL: kf6 (cairo+wayland)
Locale: fi-FI (fi_FI.UTF-8); UI: en-US
Calc: threaded

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

[Bug 160195] LibreOffice Writer paste or paste-unformatted function adds field shading after punctuation to text pasted from other apps (e.g. word, gmail, atlantis)

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

--- Comment #9 from wolf  ---
mikekaganski informs me that 24.2 has the “off by default” implemented.

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

[Bug 160206] 24.2.1.2 Alt f does not load file menu. 7.6.5.2 still works ok

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #2 from Stéphane Guillou (stragu) 
 ---
...or bug 159773?
I'm still confused with how the accelerator changes relate to the shortcut
changes in 24.2.

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

[Bug 160075] key toggle of pointer focus to Main Menu has gone missing, toggle continues (Win)

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

Mike Kaganski  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

--- Comment #9 from Mike Kaganski  ---
Thank you - I never realized I missed the very initial comment 0, already
explaining it all.

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

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

[Bug 160195] LibreOffice Writer paste or paste-unformatted function adds field shading after punctuation to text pasted from other apps (e.g. word, gmail, atlantis)

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

--- Comment #8 from wolf  ---
+F8 to toggle off the Field Shading works!  a workaround existed all
these years deep under the hood.  so the enhancement would simply be to turn
Field Shading 'off' by default.

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

[Bug 92498] hyperlink won’t register folders, only files

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Bug 112581] [META] Linked (non-embedded) external files bugs and enhancements

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on|150873  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=150873
[Bug 150873] Links / URLs to document aliases don't work (MacOS)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 42082] [META] Make LibreOffice shine and glow on macOS

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||150873


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=150873
[Bug 150873] Links / URLs to document aliases don't work (MacOS)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 107733] [META] Hyperlink bugs and enhancements

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||150873


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=150873
[Bug 150873] Links / URLs to document aliases don't work (MacOS)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 150873] Links / URLs to document aliases don't work (MacOS)

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=92
   ||498
 Blocks|112581  |42082, 107733

--- Comment #3 from Stéphane Guillou (stragu) 
 ---
(More of a hyperlink issue than a linked document issue.)


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=42082
[Bug 42082] [META] Make LibreOffice shine and glow on macOS
https://bugs.documentfoundation.org/show_bug.cgi?id=107733
[Bug 107733] [META] Hyperlink bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=112581
[Bug 112581] [META] Linked (non-embedded) external files bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 146768] Hyperlinks (mailto / external URLs) fail in exported PDFs on macOS

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Summary|Hyperlinks (mailto /|Hyperlinks (mailto /
   |external URLs) fail in  |external URLs) fail in
   |exported PDFs   |exported PDFs on macOS

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

[Bug 120543] [META] Bugs and enhancements around hyperlinks in Calc

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||142296


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142296
[Bug 142296] Hyperlinks set on an object in Calc are not exported in PDF
documents
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 107733] [META] Hyperlink bugs and enhancements

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on|142296  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142296
[Bug 142296] Hyperlinks set on an object in Calc are not exported in PDF
documents
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 142296] Hyperlinks set on an object in Calc are not exported in PDF documents

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Blocks|107733  |120543


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107733
[Bug 107733] [META] Hyperlink bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=120543
[Bug 120543] [META] Bugs and enhancements around hyperlinks in Calc
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 146575] Writer won't export hyperlinks to pdf

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Attachment #179316|0   |1
is obsolete||

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

[Bug 146575] Writer won't export hyperlinks to pdf

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Attachment #179315|0   |1
is obsolete||

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

[Bug 146575] Writer won't export hyperlinks to pdf

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org,
   ||xiscofa...@libreoffice.org

--- Comment #17 from Stéphane Guillou (stragu) 
 ---
(In reply to Simon Gaeremynck from comment #8)
> I can add another example to this case (style-internet-link.docx and its
> corresponding style-internet-link.pdf).
> I've manually updated the first two links in the document ("learning" and
> "Toyota") and added the following run property style:
>   
> When that style is present, Writer exports the link correctly. When it's
> missing, it does not add the link annotation.
This is a different issue, a regression in version 6.3 that is tracked in bug
142133 and has a fix coming for version 24.2.3. You can test with a daily build
if you want.

The issue with the original attachment 177333, I can still reproduce in a
recent trunk build:

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

I note that editing the hyperlink > not changing anything in the dialog >
applying does fix the issue.

Xisco, copying you in just in case you are interested. (Michael un-CCed
himself.)

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

[Bug 159969] Calc does not start under Ubuntu 18.04

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 159944] Master document: cosmetical bug: repeated MoveDown/MoveUp may insert (visually) page break

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Bug 159970] Crash in: writerfilter::dmapper::DomainMapper_Impl::appendTextPortion(rtl::OUString const &,tools::SvRef

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 159961] LibreOffice becomes unresponsive and crashes, accompanied by a significant increase in memory usage, when attempting to declare a new object instance of a class module, leading to severe

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 160177] cursor jumps on text select, then freezes

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

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.

[Bug 159745] FILEOPEN RTF DOCX Handle paper tray setting for first and other pages

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Bug 160186] Changing Table Auto value or Entry required results in full libreoffice suite crash

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

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.

[Bug 156788] Flatpak Wayland: "restore document" uses generic Wayland icon

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

QA Administrators  changed:

   What|Removed |Added

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

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

[Bug 160186] Changing Table Auto value or Entry required results in full libreoffice suite crash

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

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

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

[Bug 160177] cursor jumps on text select, then freezes

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

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

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

[Bug 156788] Flatpak Wayland: "restore document" uses generic Wayland icon

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

--- Comment #3 from QA Administrators  ---
Dear amanita+LIBREOFFICE,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Bug 157278] When making a change to paragraph spacing for an entire paragraph all text in the document is erased.

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

--- Comment #2 from QA Administrators  ---
Dear Lewis Beeler,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Bug 157272] Version Check is working not correctly

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

--- Comment #3 from QA Administrators  ---
Dear r.weidig,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Bug 157271] continuation of problem with programme hanging when Properties are used.

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

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Bug 157214] [CRASH] Segmentation fault in kf5 + Wayland (/lib/x86_64-linux-gnu/libQt5WaylandClient.so.5)

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

--- Comment #2 from QA Administrators  ---
Dear Rafael Lima,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Bug 81927] Installation screws up file linkings to Microsoft Office, although installer was instructed not to touch them

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 157030] hyphenation properties get lost when doc gets closed and reopened

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

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Bug 78341] Cannot install document templates to architecture-independent location

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

--- Comment #14 from QA Administrators  ---
Dear David Woodhouse,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 147986] Position in shortcut keys should not change after using Reset button in Customize Keyboard

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

--- Comment #4 from QA Administrators  ---
Dear sdc.blanco,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 145666] "Arial black" is not used for the "Text field" form when exporting as pdf. However, this is the case for the radio button.

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

--- Comment #4 from QA Administrators  ---
Dear j.laas,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 136040] Undo doesn't restore text in columns (Hebrew?)

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Bug 144488] Hyperlink to target in external document doesn't work in Master document exported to ODT or PDF

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Summary|HYPERLINKS: Hyperlink to|Hyperlink to target in
   |target in external document |external document doesn't
   |doesn't work in exported|work in Master document
   |PDF (steps in comment 4)|exported to ODT or PDF

--- Comment #13 from Stéphane Guillou (stragu) 
 ---
Changed summary to focus again on master export, but please provide minimal
example files to illustrate.

Please also see existing reports on the topic, your issue might already be
covered there:
https://bugs.documentfoundation.org/buglist.cgi?query_format=advanced&resolution=---&short_desc=master
link&short_desc_type=allwordssubstr

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

[Bug 160195] LibreOffice Writer paste or paste-unformatted function adds field shading after punctuation to text pasted from other apps (e.g. word, gmail, atlantis)

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

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

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

[Bug 160195] LibreOffice Writer paste or paste-unformatted function adds field shading after punctuation to text pasted from other apps (e.g. word, gmail, atlantis)

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

--- Comment #7 from V Stuart Foote  ---
Created attachment 193120
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193120&action=edit
Writer Flat ODF sample file with Unicode formatting codes subject to Field
Shading

Attaching a sample document that shows the objectionable handling as field
shading on paste, either default or as unformatted text.

A copy & paste of the text will show the current handling of the Unicode
formatting marks as field shading.

Use +F8 to toggle off the Field shading, Use +F10 to toggle off the
NPC.

And the unformatted paste does not clear the specific Unicode glyphs that
result in the field shading. So I was wrong regards that, sorry for the noise.

However, beyond VCL formatting changes needed for bug 58434, there is nothing
incorrect with LibreOffice's handling on paste of clipboard content. Applying
field shading needs to be removed, that is bug 58434

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

[Bug 142296] Hyperlinks set on an object in Calc are not exported in PDF documents

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

--- Comment #7 from Stéphane Guillou (stragu) 
 ---
(and same with a URL to a website)

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

[Bug 142296] Hyperlinks set on an object in Calc are not exported in PDF documents

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   Hardware|Other   |All
 CC||stephane.guillou@libreoffic
   ||e.org
Summary|Hyperlinks set on a graphic |Hyperlinks set on an object
   |are not exported in PDF |in Calc are not exported in
   |documents   |PDF documents
   Keywords||filter:pdf,
   ||implementationError

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
Reproduced in:

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

And LO 3.3.

Same with OLE objects.

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

[Bug 107733] [META] Hyperlink bugs and enhancements

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on|100893  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100893
[Bug 100893] Draw/Impress: Object hyperlinked to "Target in Document" results
in wrong link (opens browser) in exported PDF
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 103562] Object's internal hyperlinks / interactions to slides are not functional when exporting presentation to PDF (in most cases) (comment 15)

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||100893
   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=10 |
   |0893|


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100893
[Bug 100893] Draw/Impress: Object hyperlinked to "Target in Document" results
in wrong link (opens browser) in exported PDF
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 103378] [META] PDF export bugs and enhancements

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on|100893  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100893
[Bug 100893] Draw/Impress: Object hyperlinked to "Target in Document" results
in wrong link (opens browser) in exported PDF
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 100893] Draw/Impress: Object hyperlinked to "Target in Document" results in wrong link (opens browser) in exported PDF

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=10 |
   |3562|
Version|5.1.0.3 release |Inherited From OOo
 Blocks|103378, 107733  |103562

--- Comment #8 from Stéphane Guillou (stragu) 
 ---
I can actually reproduce the issue in OOo 3.3: direct export to PDF of an ODP
with a shape hyperlinked to a target slide results in hyperlink to browser
file.

Marking as blocker of the more general bug 103562.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103378
[Bug 103378] [META] PDF export bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=103562
[Bug 103562] Object's internal hyperlinks / interactions to slides are not
functional when exporting presentation to PDF (in most cases) (comment 15)
https://bugs.documentfoundation.org/show_bug.cgi?id=107733
[Bug 107733] [META] Hyperlink bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 103562] Object's internal hyperlinks / interactions to slides are not functional when exporting presentation to PDF (in most cases) (comment 15)

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||132230
   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=13 |
   |2230|


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=132230
[Bug 132230] Internal links (interaction) to specific slides are not working in
Impress when exporting to PDF unless the slide is renamed
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 132230] Internal links (interaction) to specific slides are not working in Impress when exporting to PDF unless the slide is renamed

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=10 |
   |3562|
   Keywords||filter:odp, filter:pdf
 Blocks|103378  |103562

--- Comment #5 from Stéphane Guillou (stragu) 
 ---
Marking as blocker of bug 103562, and add "filter:odp" because hyperlinks are
converted to interactions.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103378
[Bug 103378] [META] PDF export bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=103562
[Bug 103562] Object's internal hyperlinks / interactions to slides are not
functional when exporting presentation to PDF (in most cases) (comment 15)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 103378] [META] PDF export bugs and enhancements

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on|132230  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=132230
[Bug 132230] Internal links (interaction) to specific slides are not working in
Impress when exporting to PDF unless the slide is renamed
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 103562] Object's internal hyperlinks / interactions to slides are not functional when exporting presentation to PDF (in most cases) (comment 15)

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

--- Comment #17 from Stéphane Guillou (stragu) 
 ---
Now that we've got an overview of the issue here, let's mark more specific bug
100893 ("hyperlinks open the browser") and bug 132230 ("need to rename slide")
as blockers.

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

[Bug 103562] Object's internal hyperlinks / interactions to slides are not functional when exporting presentation to PDF (in most cases) (comment 15)

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

--- Comment #16 from Stéphane Guillou (stragu) 
 ---
Created attachment 193119
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193119&action=edit
sample ODP for update steps in comment 16

 New steps

1. Open attachment. It has no pre-existing links or interactions; "Slide 2" is
original name, "my_slide_3" was renamed.
2. On the first slide, add hyperlinks to top shapes to Slide 2 and my_slide_3
3. Add interactions to Slide 2 and my_slide_3 to bottom shapes: right-click >
Interaction > To page or object
4. Export to PDF, open with e.g. Evince / Okular / Chromium (not Firefox)

Results A:
* hyperlinks both wrongly open the file browser, trying to find a file that
does not exist (Okular, Evince)
  * in Chromium, hyperlink to my_slide_3 works as expected (which is something
that changed between OOo 3.3 and current LO master, could be interesting to
bisect it)
* interaction to Slide 2 does not work
* interaction to renamed slide 3 works

5. Save and reload the file
6. Note that the top shapes' Hyperlinks have been converted to Interactions
7. Export to PDF

Results B, confirming the top row conversion to Interactions:
* Slide 2 column does not work
* my_slide_3 column works

Tested with OOo 3.3 and a recent trunk build:

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: c8b8a2c2cb34a1ae0b0aeee0564b39260258f184
CPU threads: 8; OS: Linux 6.5; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US

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

[Bug 103562] Object's internal hyperlinks / interactions to slides are not functional when exporting presentation to PDF (in most cases) (comment 15)

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

  Component|Printing and PDF export |Impress
   Keywords||filter:odp, filter:pdf

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

[Bug 103562] Object's internal hyperlinks / interactions to slides are not functional when exporting presentation to PDF (in most cases) (comment 15)

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Version|3.5.7.2 release |Inherited From OOo
Summary|FILESAVE: Hyperlinks in |Object's internal
   |most objects not persist|hyperlinks / interactions
   |when you export a   |to slides are not
   |presentation to PDF |functional when exporting
   ||presentation to PDF (in
   ||most cases) (comment 15)
   Keywords|preBibisect, regression |

--- Comment #15 from Stéphane Guillou (stragu) 
 ---
Looking more into it to try and clarify things, I hid a few comments to stay on
the original topic:

**objects with internal hyperlinks or interactions in Impress in some cases
won't create a functional hyperlink in the exported PDF**

Interactions are specific to Impress, so let's ignore Draw for this report.
Let's stick to the test case in comment 0, and keep Writer (comment 6) or text
links (comment 4) issues for other reports, if still needed.

A few things to note:
- Comment 0 steps created interactions "To page or object > Slide 1".
- Hyperlinking (Insert > Hyperlink) an object to a target in document works but
saving and reloading converts it to an interaction (Format > Interaction).
That's since OOo 3.3 times.
- Interactions to First and Last slide work in PDF (if they are set as such
directly in the Interaction dialog), but not the interactions to a specific
slide name (which is what Hyperlinks get converted to)...
- ...but it works if the target's slide name is not the default name. Issue is
also inherited.
- So interacting with objects might work inside the app, but when exported to
PDF we either get wrong links that open the file browser (for hyperlinks,
before save and reload) or inactive linking (for interaction, after save and
reload).
- ...unless the slide name had been changed before creating the
link/interaction!

So when testing, please keep in mind:
- exporting before or after saving and reloading the ODP yields different
results (because hyperlink converts to interaction)
- results differ in different PDF readers. I recommend testing in Chromium for
a cross-platform option that yields interesting results.

See next comment for updated steps.

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

[Bug 160195] LibreOffice Writer paste or paste-unformatted function adds field shading after punctuation to text pasted from other apps (e.g. word, gmail, atlantis)

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

--- Comment #6 from wolf  ---
just triple-checked: there is no paste option that strips out these gray
shading/spaces after punctuation and on line breaks.  and 90% of the time, i
aim to paste with basic rtf formatting vs strip it out.

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

[Bug 160195] LibreOffice Writer paste or paste-unformatted function adds field shading after punctuation to text pasted from other apps (e.g. word, gmail, atlantis)

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

V Stuart Foote  changed:

   What|Removed |Added

 OS|Windows (All)   |All
Summary|LibreOffice Writer 'paste'  |LibreOffice Writer paste or
   |and 'paste unformatted' |paste-unformatted function
   |adding gray shading (or |adds field shading after
   |blue dots) after|punctuation to text pasted
   |punctuation on text pasted  |from other apps (e.g. word,
   |from anywhere else ex word, |gmail, atlantis)
   |gmail, atlantis |

--- Comment #5 from V Stuart Foote  ---
Can not confirm. Observe that Paste Special -> Unformatted Text does strips out
the NBS or ZW characters that show as gray field shading.

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

[Bug 160195] LibreOffice Writer 'paste' and 'paste unformatted' adding gray shading (or blue dots) after punctuation on text pasted from anywhere else ex word, gmail, atlantis

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

--- Comment #4 from wolf  ---
this occurs using both 'paste' and 'paste unformatted' which is why an option
to turn this 'off' by default ideal to match behavior of most other editors ex
word, gmail.  i will double-check the 'paste special' options to see if any
work, if it does, that'd be a good to know workaround, but still the default
paste behavior for writers coming from word/gmail type editors that mask this
info by default.

i'm told 'non-breaking space' is widespread in HTML markup and copying from web
pages would bring  existing NBSPs along.  ok, but i'm primarily talking about
text i personally typed cleanly with no accidental 'shift' or 'ctrl'
keystrokes.

note: pasting content from a long notepad file i have pasted  clean, no gray
spaces.

i restarted in safe mode, as expected, the same issues occur.

my bad, for trying to sell the case for 'thousands' of others who opted out
because of it as i have, but am now returning to face it again.

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

[Bug 160195] LibreOffice Writer 'paste' and 'paste unformatted' adding gray shading (or blue dots) after punctuation on text pasted from anywhere else ex word, gmail, atlantis

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

wolf  changed:

   What|Removed |Added

Summary|LibreOffice Writer paste|LibreOffice Writer 'paste'
   |function adds field shading |and 'paste unformatted'
   |after punctuation to text   |adding gray shading (or
   |pasted from other apps  |blue dots) after
   |(e.g. word, gmail,  |punctuation on text pasted
   |atlantis)   |from anywhere else ex word,
   ||gmail, atlantis
 OS|All |Windows (All)

--- Comment #3 from wolf  ---
i restarted in safe mode, as expected, the same issues occur.

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

[Bug 160184] allow to "Encrypt with GPG key" on save using public keys with unknown Ownertrust

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

--- Comment #3 from Patrick Luby (volunteer)  ---
(In reply to steve from comment #2)
> Had not tested all Ownertrust options, so thanks for going the extra mile.
> The behavior you discovered makes the problem worse. There really is no
> reason to attribute Ultimate Ownertrust to public keys, even after verifying
> them.
> 
> Ownertrust is relevant to how the web of trust works and ultimate may have
> unwanted consequences.
> 
> See also:
> https://support.gpgtools.com/kb/faq/what-is-ownertrust-trust-levels-explained

Thank you for the link. I admit that I've never really undertstood the
intricacies of digital signing and key encryption. I'm just here because you
have posted some of the most unusual crash logs that I have ever seen in my 20+
year's of macOS debugging.

This stuff is all new to me as developer. I'm mostly used to trying to wire-up
the Windowsy LibreOffice code to work with macOS.

Anyway, what is the lowest level that should be trusted? Full? Untrusted? I
assume that these levels correspond to some value in code.

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

[Bug 160195] LibreOffice Writer paste function adds field shading after punctuation to text pasted from other apps (e.g. word, gmail, atlantis)

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

m_a_riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m_a_riosv  ---
(In reply to wolf from comment #0)
> Description:
> .
> a gray space after many punctuations is an eyesore to most writers using
> libreoffice when it doesnt happen anywhere else. for 10+ years, it’s a most
> annoying thing that makes thousands avoid using librewriter more.
> ..
Why do you need to mention thousands of annoyed people, do you really think it
will sell your personal interest any better?
Instead, better ask those thousands to add their comment supporting this
report?

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

[Bug 160208] Crash in: cppu::UnoType::get()

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

--- Comment #1 from Tex2002ans  ---
And by LO 7.1 hanging "for a long time". I meant "forever".

So I guess it's gotten better since then. Before was infinite hang, now it
crashes right away. :)

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

[Bug 48062] [SVG] feComposite filter isn't supported

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

--- Comment #20 from Commit Notification 
 ---
Xisco Fauli committed a patch related to this issue.
It has been pushed to "master":

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

tdf#48062: Add support for xor, in and out operators in feComposite

It will be available in 24.8.0.

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

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

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

[Bug 160208] New: Crash in: cppu::UnoType::get()

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

Bug ID: 160208
   Summary: Crash in:
cppu::UnoType::get()
   Product: LibreOffice
   Version: 24.2.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tex2002ans+libreoff...@gmail.com

Created attachment 193118
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193118&action=edit
LO24.2.2.-.Crash.-.Line.Chart.-.Sidebar.ods

This bug was filed from the crash reporting server and is
br-26ad4107-46f2-47be-9aba-375cccdb981a.
=

Steps to Reproduce:

0. Open attachment.
1. Alt+1 (to open Properties sidebar)
2. Double-Click on chart.
3. Single-Click on the blue line in the graph:
   - The one that shows 1, 2, 5, 3.

Now, in the Properties sidebar, down towards the bottom/middle...

Under "Line", you should see multiple settings:

- Line
- Thickness
- Color
- Transparency
- Corner Style
- Cap Style

4. Change "Corner Style" from "Rounded" -> "Mitered".

CRASH.

- - -

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

- - -

I also tried bibisecting using the linux-64-7.1 repo.

And LO 7.1 doesn't instantly crash, it just:

- Hangs for a long time.

(I did not test any earlier versions.)

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

[Bug 103459] [META] Sidebar UI and UX bugs and enhancements

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on|160183  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160183
[Bug 160183] Sidebar collapsed state should not be global
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 95347] Store sidebar state (normal, collapsed, hidden) per module

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||rfgiu...@gmail.com

--- Comment #8 from Stéphane Guillou (stragu) 
 ---
*** Bug 160183 has been marked as a duplicate of this bug. ***

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

[Bug 160183] Sidebar collapsed state should not be global

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
Summary|Sidebar visibility should   |Sidebar collapsed state
   |not be global   |should not be global
 Blocks|103459  |
 Resolution|--- |DUPLICATE

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
(In reply to Rafael Giusti from comment #5)
> Ah! I see. When I press Ctrl+F5 or check/uncked the View/Sidebar meu item it
> does indeed toggle visibility for each LO module.
> 
> However, what I am doing is click the small vertical "Hide" button with an
> arrow pointing to the right that stays on the very edge of the sidebar. That
> setting affects all modules.
> 
> Sorry, I had not noticed the difference between these two before.
The View menu's "Sidebar" item acts consistently with other items in the menu,
as e.g. Status Bar, zoom level and User Interface (if set to one component
only) persist for each component separately. (Although there's Data Sources
outlier, which does not persist at all.)

But if the whole sidebar's visibility is kept per component, I agree that its
collapsed or expanded state should also be persistent per component and not
globally.
Which is already requested in bug 95347, so marking as duplicate.

Thank you both!

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


Referenced Bugs:

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

[Bug 160196] Combined "Hybrid PDF" and "Archival PDF" options generate non-conformant PDF/A files

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

--- Comment #1 from peter.wy...@pdfa.org ---
Created attachment 193117
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193117&action=edit
Invalid PDF/A-2 file with file attachment (Hybrid PDF w/ ODF)

Example invalid PDF/A-2 that contains the ODF file attachment

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

[Bug 160207] New: WRITER: at the right of the top ruler, "comments" -- and "show comments"

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

Bug ID: 160207
   Summary: WRITER: at the right of the top ruler, "comments" --
and "show comments"
   Product: LibreOffice
   Version: 24.8.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@cspv.hu

hi, 

That we can click on the comments "column" to make them visible, is absolutely
cool! I mean, it's wonderful that we can make them temporarily disappear.

One thing could add to this perfectness, perhaps:

if instead of "Comments", when they are invisible, "show Comments" would be the
clickable title...

When they are visible, "Comments" would be perfectly adequate :) 




- - - thank you for developing Libreoffice --

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

[Bug 160075] key toggle of pointer focus to Main Menu has gone missing, toggle continues (Win)

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||colinsree...@gmail.com

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

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

[Bug 160206] 24.2.1.2 Alt f does not load file menu. 7.6.5.2 still works ok

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

V Stuart Foote  changed:

   What|Removed |Added

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

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


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

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

[Bug 160206] New: 24.2.1.2 Alt f does not load file menu. 7.6.5.2 still works ok

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

Bug ID: 160206
   Summary: 24.2.1.2 Alt f does not load file menu. 7.6.5.2 still
works ok
   Product: LibreOffice
   Version: 24.2.1.2 release
  Hardware: Other
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: colinsree...@gmail.com

Description:
24.2.1.2 Alt f does not load file menu. 7.6.5.2 still works ok
2024-03 Cumulative Update for Windows 11 Version 23H2 for x64-based Systems
(KB5035853)
In Calc or Writer typing Alt f the Alt is ignored. Older version still works ok
HP Envy14

Steps to Reproduce:
1.Start Calc or Writer
2.Type Alt f No menu appears
3.

Actual Results:
f in current call or document

Expected Results:
File menu should be displayed


Reproducible: Always


User Profile Reset: No

Additional Info:
24.2.1.2 gives this problem
reverting to 7.6.5.2 still works ok

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

[Bug 73991] animated GIF do not play (look like still image)

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

--- Comment #16 from Tick  ---
Still exists in Calc (in Wrier, .gif files do not play all the way, only part
of the way, then go back to beginning, to start again; partial .gif loop, not
full .gif loop)

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

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

[Bug 48062] [SVG] feComposite filter isn't supported

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

--- Comment #19 from Xisco Faulí  ---
Created attachment 193116
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193116&action=edit
Sample document

Svg showing the over, xor, in, out and atop operators

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

[Bug 160205] WRITER: page number display in Application background

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

peter josvai  changed:

   What|Removed |Added

   Severity|normal  |enhancement

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

[Bug 160205] New: WRITER: page number display in Application background

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

Bug ID: 160205
   Summary: WRITER: page number display in Application background
   Product: LibreOffice
   Version: 24.8.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@cspv.hu

Created attachment 193115
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193115&action=edit
displaying page number in the application background

hi, 

Very often we have space beside the document... 
in these cases page number could be displayed in the Application background...

I'm almost certain that everyone would love that :)


just an idea...


- - - thank you for developing Libreoffice .. and Writer - - -

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

[Bug 160036] Selection invisible in a11y High Contrast modes with SKIA/Raster, Skia/Vulkan unaffected

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

--- Comment #10 from Patrick Luby (volunteer)  ---
I looked at the code and it is definitely doing XOR drawing of the selection
polygon. The last case of XOR failing with Skia/Raster I fixed by drawing
normally with polygonal clipping:

https://git.libreoffice.org/core/+/c43d11cbbabc871a3c71062239b0d9b6db99961e%5E%21

Below is the relevant portion of the stack when doing the XOR drawing. Maybe
there is a way we could replace XOR drawing and, instead, draw normally with
polygonal clipping without copying the buffer?:

frame #4: 0x000117d597e8
libmergedlo.dylib`drawinglayer::processor2d::VclPixelProcessor2D::processInvertPrimitive2D(this=0x62b1ca10,
rCandidate=0x6a34a4e0) at vclpixelprocessor2d.cxx:911:21
frame #5: 0x000117d576c8
libmergedlo.dylib`drawinglayer::processor2d::VclPixelProcessor2D::processBasePrimitive2D(this=0x62b1ca10,
rCandidate=0x6a34a4e0) at vclpixelprocessor2d.cxx:343:13
frame #6: 0x000117d2f7e4
libmergedlo.dylib`drawinglayer::processor2d::BaseProcessor2D::process(this=0x62b1ca10,
rSource=0x00016fdfba28) at baseprocessor2d.cxx:69:21
frame #7: 0x00011a68e0e4
libmergedlo.dylib`sdr::overlay::OverlayManager::ImpDrawMembers(this=0x0003824f5310,
rRange=0x00016fdfbde0, rDestinationDevice=0x0003824f6250) const at
overlaymanager.cxx:88:41
frame #8: 0x00011a6856fc
libmergedlo.dylib`sdr::overlay::OverlayManagerBuffered::ImpBufferTimerHandler(this=0x0003824f5310,
(null)=0x0003824f5420) at overlaymanagerbuffered.cxx:289:33

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

[Bug 91942] DDE function should work with http

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #2 from BogdanB  ---
Now working in
Version: 24.2.1.1 (X86_64) / LibreOffice Community
Build ID: 359ef544e625d2ffbfced462ab37bd593ca85fa7
CPU threads: 16; OS: Linux 6.5; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

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

[Bug 160204] New: Opening Tools > SQL, running a long SQL statement, then opening Previous command results in wider-than-screen dialogue box

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

Bug ID: 160204
   Summary: Opening Tools > SQL, running a long SQL statement,
then opening Previous command results in
wider-than-screen dialogue box
   Product: LibreOffice
   Version: 7.6.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cont...@bluesanta.io

Description:
If you run a long SQL command from the Tools, then try to open Previous
Commands, the dialogue box for SQL commands expands to accommodate the width of
the sql command as a single line. This results in a broken interface. 
You can hit 'Esc' to get out of it, but then you lose your commands.

Steps to Reproduce:
1. Execute a long SQL command using the SQL dialogue box in Tools menu
2. Click on Previous commands
3.

Actual Results:
Wider than screen dialogue box

Expected Results:
The dialogue box should expand like that. There should be some kind of
abbreviation going on.


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.6.5.2 (X86_64) / LibreOffice Community
Build ID: 60(Build:2)
CPU threads: 8; OS: Linux 6.5; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Ubuntu package version: 4:7.6.5-0ubuntu0.23.10.1
Calc: threaded

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

[Bug 146902] Show results from Basic examples given in help text

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

--- Comment #4 from f...@bger.ch ---
interestingly, there's a list here :
https://wiki.documentfoundation.org/Documentation/Calc_Functions/List_of_Functions
including details and results.

so maybe we could link the help pages to their corresponding wiki ?

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

[Bug 146902] Show results from Basic examples given in help text

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.8.0

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

[Bug 146902] Show results from Basic examples given in help text

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

--- Comment #3 from Commit Notification 
 ---
Pierre F committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/e48c06ba931d5da0371c2e9b64158aebfbbd9f49

tdf#146902. add DatePart results

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

[Bug 158112] Sidebar pane shortcuts conflict with Alt+NumPad input (comment 5, comment 9)

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

--- Comment #54 from Commit Notification 
 ---
Pierre F committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/e3d706d380c68fde45c71ca87213c0f1c1148455

add *MS insert ascii character* (tdf#158112)

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

[Bug 160183] Sidebar visibility should not be global

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

--- Comment #5 from Rafael Giusti  ---
Ah! I see. When I press Ctrl+F5 or check/uncked the View/Sidebar meu item it
does indeed toggle visibility for each LO module.

However, what I am doing is click the small vertical "Hide" button with an
arrow pointing to the right that stays on the very edge of the sidebar. That
setting affects all modules.

Sorry, I had not noticed the difference between these two before.

This fixes my issue. But I still think one should be able to show/hide the
sidebar in each module separately, since everything else in the UI is specific
to a module. It's much more convenient/intuitive to do that clickling the
sidebar "Hide" button than Ctrl+F5/menu.

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

[Bug 160096] Validity list set to not show error message does not allow unlisted values to be entered

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

--- Comment #17 from ady  ---
(In reply to Heiko Tietze from comment #16)
> (In reply to Heiko Tietze from comment #6)
> > ...we may add a compatibility option
> Since apparently more people abuse the bug for a "suggestion dropdown" I
> suggest the compatibility flag again.

There seems to be some misunderstanding about the Data Validity feature.

The only case when the behavior is to utterly _reject_ (IOW, "do not allow") a
value that does not match the validity rule is when the "Error message"
checkbox is enabled AND the type of message is "stop". Otherwise...

When the "Error message" checkbox is disabled, or when it is enabled while the
type of error message is different than "stop", the validity check is indeed
(and has always been) a "suggestion". Each type of message (and the "no
message" option) gives some "relaxed" variant on the "suggestion" path.

The changed introduced in tdf#159595 means that the more-relaxed behavior was
eliminated, and instead the complete rejection is now triggered by 2 different
statuses.

IOW, tdf#159595 reduces the variants and duplicates 1 of the alternative
results. This is not an improvement (and the only reason is a language
inaccuracy).

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

  1   2   3   >