Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aoo41 x #196

Closed
wants to merge 1,195 commits into from
Closed

Aoo41 x #196

wants to merge 1,195 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Aug 1, 2022

  1. Configuration menu
    Copy the full SHA
    61b52f5 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2022

  1. Configuration menu
    Copy the full SHA
    0816e5d View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2022

  1. Removed whitespace

    Pilot-Pirx committed Aug 5, 2022
    Configuration menu
    Copy the full SHA
    4f4c39f View commit details
    Browse the repository at this point in the history
  2. Add icon for uno:DataFilterRemoveFilter

    (cherry picked from commit 1ad3dbd)
    Pilot-Pirx committed Aug 5, 2022
    Configuration menu
    Copy the full SHA
    b2861d6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    14bc34a View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2022

  1. Configuration menu
    Copy the full SHA
    6c84566 View commit details
    Browse the repository at this point in the history
  2. #i19221# Print Tab(5); "Hello" does not work

    Implement the Tab() function in AOO Basic.
    
    Patch by: me
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1720071 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 710acb7)
    Damjan Jovanovic authored and Pilot-Pirx committed Aug 8, 2022
    Configuration menu
    Copy the full SHA
    aab0785 View commit details
    Browse the repository at this point in the history
  3. Fix for regression in

    https://bz.apache.org/ooo/show_bug.cgi?id=19221
    
    Thank you very much, Laurent!
    
    (cherry picked from commit 09edc5a)
    Pilot-Pirx committed Aug 8, 2022
    Configuration menu
    Copy the full SHA
    44b766a View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2022

  1. Configuration menu
    Copy the full SHA
    a33d4ae View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2022

  1. Fixed typos (TOOD -> TODO)

    (cherry picked from commit 0024531)
    Pilot-Pirx committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    22ea211 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2022

  1. Remove superfluous space in tooltip

    This fixes
    
    https://bz.apache.org/ooo/show_bug.cgi?id=105913
    
    Many thanks to Oliver Specht!
    
    (cherry picked from commit dbca5b1)
    Pilot-Pirx committed Aug 24, 2022
    Configuration menu
    Copy the full SHA
    6c6fa46 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2022

  1. Configuration menu
    Copy the full SHA
    daf3205 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2022

  1. Proposed fix for Issue 60217 (#155)

    A dot is only added if both Variables rDBData.sDataSource and sCommand contain something. Otherwise the dot is not added
    
    Co-authored-by: Matthias Seidel <mseidel@apache.org>
    (cherry picked from commit b0300d3)
    leginee authored and Pilot-Pirx committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    29b7853 View commit details
    Browse the repository at this point in the history
  2. Cleanup resource file

    Pilot-Pirx committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    2fdc5d6 View commit details
    Browse the repository at this point in the history
  3. Add fixed line in dialog

    (cherry picked from commit 24cebcd)
    Pilot-Pirx committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    e9b3637 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2022

  1. Updated English dictionary

    Pilot-Pirx committed Sep 29, 2022
    Configuration menu
    Copy the full SHA
    09199ce View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2022

  1. Update the list of safe extensions (#157)

    Add mp4 and High Efficiency Image File Format (HEIF) extensions to the safe list
    
    Thanks to forum user MrProgrammer for the suggestion!
    
    (cherry picked from commit 82b311e)
    ardovm committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    be7a374 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2022

  1. Free the rtl_UnicodeToTextContext with rtl_destroyTextToUnicodeContex…

    …t() instead of rtl_destroyTextToUnicodeConverter().
    
    This fixes
    https://bz.apache.org/ooo/show_bug.cgi?id=128539
    
    Patch by: me
    
    (cherry picked from commit fb3d764)
    Damjan Jovanovic authored and Pilot-Pirx committed Oct 22, 2022
    Configuration menu
    Copy the full SHA
    ff5c558 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2022

  1. Updated English dictionary

    Pilot-Pirx committed Oct 29, 2022
    Configuration menu
    Copy the full SHA
    4e0ae8d View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2022

  1. Fix the java.lang.NullPointerException in readBytes() and readSomeByt…

    …es() methods in
    
    InputStreamToXInputStreamAdapter when called from the inter-process UNO bridge.
    
    XInputStream::readBytes() documents how the buffer is an "out" parameter, and isn't passed
    to the implementing end, which is why we get the buffer as a "byte[][] b" and b[0] == null.
    Its role is to box a byte[] array to be returned the client. Thus, allocate the buffer if
    it is missing or too small.
    
    Additionally, virtually all other readBytes() and readSomeBytes() implementations trim this
    sequence to the actual number of bytes read. This presumably reduces the inter-process
    traffic, but some callers even rely on the sequence to be trimmed, eg.
    main/sax/source/expatwrap/xml2utf.cxx. Thus trim our returned array too.
    
    Patch by: me
    
    (cherry picked from commit 6cb0614)
    Damjan Jovanovic authored and Pilot-Pirx committed Oct 30, 2022
    Configuration menu
    Copy the full SHA
    9bca58a View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2022

  1. InputStreamToXInputStreamAdapter.readBytes() should read until the bu…

    …ffer is full,
    
    or the file ends. It shouldn't care about available().
    
    Patch by: me
    
    (cherry picked from commit f049104)
    Damjan Jovanovic authored and Pilot-Pirx committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    2399883 View commit details
    Browse the repository at this point in the history
  2. Fix some errors in the scripting module's XInputStreamImpl:

    - Check the loop termination in readBytes() properly: currently it increments
      totalBytesRead while also decrementing nBytesToRead, so when compared to
      each other, the loop terminates when the buffer is half full. Only check
      for nBytesToRead instead.
    - Deal with the possibility of available() returning 0 in readSomeBytes().
    
    Patch by: me
    
    (cherry picked from commit 7e29bac)
    Damjan Jovanovic authored and Pilot-Pirx committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    4271e4a View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2022

  1. #i126762# patch by: hanya

    Ignore dictionary not in specified location.
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1727441 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit f47a949)
    Kay Schenk authored and Pilot-Pirx committed Nov 6, 2022
    Configuration menu
    Copy the full SHA
    d6a3fbd View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2022

  1. Configuration menu
    Copy the full SHA
    0490829 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2022

  1. Update srcrelease.xml to exclude certain files from Source build (#154)

    * Update srcrelease.xml
    
    * Update srcrelease.xml
    
    (cherry picked from commit 0f464f2)
    Pilot-Pirx authored and jimjag committed Nov 10, 2022
    Configuration menu
    Copy the full SHA
    39e2ff3 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2022

  1. Align to expat-2.2.13

    Patch by Carl Marcum.
    
    (cherry picked from commit 4ad3f9e)
    ardovm committed Nov 12, 2022
    Configuration menu
    Copy the full SHA
    5534262 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2022

  1. Remove SuSE packaging information (#160)

    Freedesktop RPMs should work flawlessly on today's SUSE and openSUSE distributions.
    
    (cherry picked from commit 664179b)
    ardovm committed Nov 21, 2022
    Configuration menu
    Copy the full SHA
    3464898 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2022

  1. Add patch for cygwin64 (#162)

    * Add files via upload
    
    * Additional changes for Cygwin64 patch
    Pilot-Pirx authored Nov 28, 2022
    Configuration menu
    Copy the full SHA
    dfafe00 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2022

  1. Cleanup resource file, use correct position for string

    (cherry picked from commit 6f722fb)
    Pilot-Pirx committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    c9093c9 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2022

  1. Configuration menu
    Copy the full SHA
    953cf39 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c4c6279 View commit details
    Browse the repository at this point in the history
  3. Changed CRLF -> LF

    Pilot-Pirx committed Dec 1, 2022
    Configuration menu
    Copy the full SHA
    da439f6 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2022

  1. Small correction

    Pilot-Pirx committed Dec 2, 2022
    Configuration menu
    Copy the full SHA
    7ade7e9 View commit details
    Browse the repository at this point in the history
  2. Revert last commit

    Pilot-Pirx committed Dec 2, 2022
    Configuration menu
    Copy the full SHA
    4adc406 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2022

  1. Avoid empty paths

    (cherry picked from commit 55c2ab0)
    ardovm committed Dec 3, 2022
    Configuration menu
    Copy the full SHA
    626e624 View commit details
    Browse the repository at this point in the history
  2. Better logging

    (cherry picked from commit 84ee7f0)
    ardovm committed Dec 3, 2022
    Configuration menu
    Copy the full SHA
    2261370 View commit details
    Browse the repository at this point in the history
  3. Better filtering

    (cherry picked from commit 597faa0)
    ardovm committed Dec 3, 2022
    Configuration menu
    Copy the full SHA
    54c60f8 View commit details
    Browse the repository at this point in the history
  4. Fix compilation under MSW

    (cherry picked from commit d103c09)
    ardovm committed Dec 3, 2022
    Configuration menu
    Copy the full SHA
    0b9007e View commit details
    Browse the repository at this point in the history
  5. Set the default JVM classpath to $OOO_BASE_DIR/program

    (cherry picked from commit 69af28e)
    ardovm committed Dec 3, 2022
    Configuration menu
    Copy the full SHA
    1e5ed18 View commit details
    Browse the repository at this point in the history
  6. Add separator to an already existing path only

    (cherry picked from commit a543930)
    ardovm committed Dec 3, 2022
    Configuration menu
    Copy the full SHA
    6dbc57f View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2022

  1. More checks

    (cherry picked from commit a17d592)
    ardovm committed Dec 8, 2022
    Configuration menu
    Copy the full SHA
    c1f051c View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2022

  1. Fixed typos

    (cherry picked from commit e548f13)
    Pilot-Pirx committed Dec 17, 2022
    Configuration menu
    Copy the full SHA
    b0fb6f9 View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2022

  1. Revert "#i126762# patch by: hanya"

    This reverts commit d6a3fbd.
    
    This commit produced crashes, needs further investigation.
    Pilot-Pirx committed Dec 23, 2022
    Configuration menu
    Copy the full SHA
    2d4eee1 View commit details
    Browse the repository at this point in the history
  2. Delete .hgtags (#124)

    * Delete .hgtags
    
    Is this still needed?
    
    * Delete .hgignore
    (cherry picked from commit fce8cd7)
    Pilot-Pirx committed Dec 23, 2022
    Configuration menu
    Copy the full SHA
    e2fe2ba View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2022

  1. Configuration menu
    Copy the full SHA
    e338bd8 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2022

  1. When we reach EOF, and SvStream.ReadCsvLine() returned some data,

    process that data before returning.
    
    Fixes https://bz.apache.org/ooo/show_bug.cgi?id=128548 -
    "Last CSV line is silently lost on import if last field is quoted
    and EOF is reached before closing quote"
    
    Patch by: me
    
    (cherry picked from commit c7ace38)
    Damjan Jovanovic authored and Pilot-Pirx committed Dec 29, 2022
    Configuration menu
    Copy the full SHA
    36795fb View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2022

  1. Configuration menu
    Copy the full SHA
    96fb548 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2022

  1. Configuration menu
    Copy the full SHA
    b6736e0 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2023

  1. Configuration menu
    Copy the full SHA
    8a4d9cc View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2023

  1. Align graphics in StartCenter

    (cherry picked from commit f47299e)
    Pilot-Pirx committed Jan 2, 2023
    Configuration menu
    Copy the full SHA
    8bd01b4 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2023

  1. Cleaned up resource file, removed whitespace

    (cherry picked from commit d42a595)
    Pilot-Pirx committed Jan 4, 2023
    Configuration menu
    Copy the full SHA
    5cadf9e View commit details
    Browse the repository at this point in the history
  2. Unifying dimensions and names for StartCenter graphics

    (cherry picked from commit 67a4a8d)
    Pilot-Pirx committed Jan 4, 2023
    Configuration menu
    Copy the full SHA
    9cced77 View commit details
    Browse the repository at this point in the history
  3. Add the "&apos;" entity definition to our HTML parser, so that we can…

    … correctly
    
    read it and convert it a "'", but when writing to HTML write out the "'"
    directly for now.
    
    Fixes: https://bz.apache.org/ooo/show_bug.cgi?id=80657
    
    Patch by: me
    
    (cherry picked from commit 3304210)
    Damjan Jovanovic authored and Pilot-Pirx committed Jan 4, 2023
    Configuration menu
    Copy the full SHA
    3e4cee8 View commit details
    Browse the repository at this point in the history
  4. Updated translation.

    Contributed by Czesław Wolański.
    
    (cherry picked from commit 1dc5a79)
    Pilot-Pirx committed Jan 4, 2023
    Configuration menu
    Copy the full SHA
    cc69ecb View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2023

  1. Localized Polish layout templates for Impress.

    Contributed by Czesław Wolański.
    
    (cherry picked from commit f695974)
    Pilot-Pirx committed Jan 5, 2023
    Configuration menu
    Copy the full SHA
    ad2d318 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    efa4771 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2023

  1. Some 3rd party applications write OOXML files whose ZIP entries have …

    …filenames in
    
    different casing than their XML files specify, eg. sharedStrings.xml is actually
    stored in the ZIP file as SharedStrings.xml. Thus, when we can't find files with
    their intended casing, do a case-insensitive search within their ZIP directory
    instead.
    
    Fixes: https://bz.apache.org/ooo/show_bug.cgi?id=126720 - no text imported from xlsx
    Patch by: me
    
    (cherry picked from commit 0f42b9a)
    Damjan Jovanovic authored and Pilot-Pirx committed Jan 7, 2023
    Configuration menu
    Copy the full SHA
    25c6f4b View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2023

  1. Issue 125495 - Awkward Chinese (ZH-TW) numbering suffix when importin…

    …g RTF document
    
    Contributor: Mark Hung
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1642312 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 6680d08)
    Steve Yin authored and Pilot-Pirx committed Jan 8, 2023
    Configuration menu
    Copy the full SHA
    93ce685 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2023

  1. When rows and cells lack the "r" attribute used to specify their loca…

    …tion,
    
    use the location of the most recently added row or cell + 1.
    
    Fixes: #127672 - Xlsx with omitted cell references opens with empty cells
    Patch by: me
    
    (cherry picked from commit 9c74104)
    Damjan Jovanovic authored and Pilot-Pirx committed Jan 9, 2023
    Configuration menu
    Copy the full SHA
    f4ffe9a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a91ee09 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2023

  1. Update external_deps.lst

    Pilot-Pirx authored Jan 10, 2023
    Configuration menu
    Copy the full SHA
    8aa2985 View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2023

  1. #i118023# Calc: Cut-and-paste between spreadsheets causes incorrect c…

    …ell reference changes
    
    When pasting cut cells, Calc updates references to their old positions
    to instead refer to their new positions. This is done using the tab index,
    row and column, however the document is not taken into account. As a result,
    when cutting and pasting between documents, cells in the target document
    end up getting changed instead of in the source, potentially leading to
    formula corruption, which is undoable but could easily go unnoticed,
    causing data loss when the document is saved.
    
    We don't really support inter-document reference updates anyway, so fix
    this bug by restricting reference updates to the intra-document cut and
    paste case only.
    
    Patch by: me
    Reviewed by: kschenk
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1730772 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit faa11fa)
    Damjan Jovanovic authored and Pilot-Pirx committed Jan 14, 2023
    Configuration menu
    Copy the full SHA
    4667429 View commit details
    Browse the repository at this point in the history
  2. Update makefile

    Pilot-Pirx committed Jan 14, 2023
    Configuration menu
    Copy the full SHA
    121b6c7 View commit details
    Browse the repository at this point in the history
  3. Update zlib to 1.2.13 (#165)

    * Update zlib to 1.2.13
    
    Currently we use zlib 1.2.7 from 2012.
    This PR updates it to the most recent version 1.2.13 from 2022.
    
    I am no developer, but basically we only add a makefile and patch some headers.
    
    I could build successfully with this PR on Windows, testing on other OS is welcome!
    
    * Further changes for zlib 1.2.13
    
    * chmod 755
    (cherry picked from commit 4e512ac)
    Pilot-Pirx committed Jan 14, 2023
    Configuration menu
    Copy the full SHA
    774ffdb View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2023

  1. Removed whitespace

    (cherry picked from commit 843e81d)
    Pilot-Pirx committed Jan 15, 2023
    Configuration menu
    Copy the full SHA
    3a2bd4d View commit details
    Browse the repository at this point in the history
  2. Clean up all of typos that cause header guard warnings when building the

    OpenOffice source with clang.
    
    Submitted by:	Don Lewis
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1701535 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit c64f2bb)
    pgiffuni authored and Pilot-Pirx committed Jan 15, 2023
    Configuration menu
    Copy the full SHA
    be7fbbe View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2023

  1. Graphic was in fact a PNG

    (cherry picked from commit c5f55b5)
    Pilot-Pirx committed Jan 16, 2023
    Configuration menu
    Copy the full SHA
    72f4943 View commit details
    Browse the repository at this point in the history
  2. Fixed typos, removed whitespace

    (cherry picked from commit 52230ee)
    Pilot-Pirx committed Jan 16, 2023
    Configuration menu
    Copy the full SHA
    ff86dd9 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2023

  1. Removed unused graphics

    Pilot-Pirx committed Jan 17, 2023
    Configuration menu
    Copy the full SHA
    3b81575 View commit details
    Browse the repository at this point in the history
  2. Cleaned up resource file

    Pilot-Pirx committed Jan 17, 2023
    Configuration menu
    Copy the full SHA
    cbbd2df View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3c5d053 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2023

  1. Removing libjpeg from ext_source since we bootstrap and use it later

    with a slightly different name.
    
    BTW: The libjpeg bootstrap process really needs to be cleaned up.
    Pilot-Pirx committed Jan 18, 2023
    Configuration menu
    Copy the full SHA
    f100fdb View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2023

  1. Check validity of page descriptors

    (cherry picked from commit b622dd6)
    ardovm committed Jan 20, 2023
    Configuration menu
    Copy the full SHA
    98cbc04 View commit details
    Browse the repository at this point in the history
  2. More checks

    (cherry picked from commit 908738a)
    ardovm committed Jan 20, 2023
    Configuration menu
    Copy the full SHA
    4b612ae View commit details
    Browse the repository at this point in the history
  3. Detect some endless loops

    (cherry picked from commit 272eca8)
    ardovm committed Jan 20, 2023
    Configuration menu
    Copy the full SHA
    65329e3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    45690e4 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2023

  1. More checks

    (cherry picked from commit 2176e6a)
    ardovm authored and Pilot-Pirx committed Jan 23, 2023
    Configuration menu
    Copy the full SHA
    e4c5647 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2023

  1. Adjusted transparency

    (cherry picked from commit 8a7b2c9)
    Pilot-Pirx committed Jan 24, 2023
    Configuration menu
    Copy the full SHA
    aab14ad View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2023

  1. Cleaned up resource files

    (cherry picked from commit a30e0b2)
    Pilot-Pirx committed Jan 26, 2023
    Configuration menu
    Copy the full SHA
    c108422 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2023

  1. Resized dialog, removed unused elements

    (cherry picked from commit f470135)
    Pilot-Pirx committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    b5e95ad View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2023

  1. Show buttons disabled instead of hiding them in Writer

    (like we do in Calc)
    
    (cherry picked from commit b993da4)
    Pilot-Pirx committed Jan 28, 2023
    Configuration menu
    Copy the full SHA
    5bc7d77 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    661500d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    40f8b62 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2023

  1. Corrected StarOffice -> OpenOffice, cleanup

    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1846354 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 48978db)
    Pilot-Pirx committed Jan 30, 2023
    Configuration menu
    Copy the full SHA
    7e1c306 View commit details
    Browse the repository at this point in the history
  2. Small change to Euro Converter dialog

    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1859223 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 37dc38a)
    Pilot-Pirx committed Jan 30, 2023
    Configuration menu
    Copy the full SHA
    5777222 View commit details
    Browse the repository at this point in the history
  3. Add EURO as default currency in Croatian locale data

    (cherry picked from commit 8504292)
    Pilot-Pirx committed Jan 30, 2023
    Configuration menu
    Copy the full SHA
    6ba668b View commit details
    Browse the repository at this point in the history
  4. OpenOffice Calc offers functions for converting from old national cur…

    …rencies to EURO.
    
    Additional countries joined the euro area: Estonia (2011), Latvia (2014) and Lithuania (2015), see:
    https://www.ecb.europa.eu/euro/changeover/estonia/html/index.en.html
    https://www.ecb.europa.eu/euro/changeover/latvia/html/index.en.html
    https://www.ecb.europa.eu/euro/changeover/lithuania/html/index.en.html
    
    This patch adds those currencies and conversion rates for CONVERT (Calc.xcu) and EUROCONVERT (interpr2.cxx).
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1859148 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit b87f12b)
    Pilot-Pirx committed Jan 30, 2023
    Configuration menu
    Copy the full SHA
    5ab069a View commit details
    Browse the repository at this point in the history
  5. OpenOffice Calc offers functions for converting from old national cur…

    …rencies to EURO.
    
    Croatia joined the euro area in 2023, see:
    https://www.ecb.europa.eu/euro/changeover/croatia/html/index.en.html
    
    (cherry picked from commit a658d2c)
    Pilot-Pirx committed Jan 30, 2023
    Configuration menu
    Copy the full SHA
    535b2a0 View commit details
    Browse the repository at this point in the history
  6. for #i124928, rich text portion could be converted several times, eac…

    …h time when it is converted, the string will be set once, but in the setString logic, the text is inserted instead of set.
    
    Repeated conversion is unnecessary, add a flag to avoid repeated conversion
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1597503 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit c0670b1)
    Clarence Guo authored and Damjan Jovanovic committed Jan 30, 2023
    Configuration menu
    Copy the full SHA
    768bfd8 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2023

  1. Configuration menu
    Copy the full SHA
    92c27b5 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2023

  1. Fixed typo (existant -> existent)

    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1810324 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit a1090ed)
    Pilot-Pirx committed Feb 5, 2023
    Configuration menu
    Copy the full SHA
    b5fe907 View commit details
    Browse the repository at this point in the history
  2. Cleaning up Euro Converter wizard, moving graphics from bmp to png

    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1846157 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 79ff062)
    Pilot-Pirx committed Feb 5, 2023
    Configuration menu
    Copy the full SHA
    cf5c25e View commit details
    Browse the repository at this point in the history
  3. Cleaned up resource file for Euro converter

    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1847189 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit a2aef65)
    Pilot-Pirx committed Feb 5, 2023
    Configuration menu
    Copy the full SHA
    bd4036b View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2023

  1. Allow the XLSX Relationship "Target" attribute in _rels/.rels to have…

    … superfluous slashes.
    
    Fixes: #117672 - Opening XLSX fails when the Relationship "Target" attribute in _rels/.rels
           has superfluous slashes
    Patch by: me
    
    (cherry picked from commit 3ff2b12)
    Damjan Jovanovic committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    74eb9fe View commit details
    Browse the repository at this point in the history
  2. Add support for the new XLSX date type in cells, denoted with attribu…

    …te t="d",
    
    used by Excel 2010.
    
    Also refactor the code so the datetime attribute in pivot tables is also parsed
    by the same function, and increase the parsing accuracy to the maximum (HundredthSeconds,
    instead of just Seconds).
    
    Fixes: #127034 - xlsx file: imported DateTime cells are empty (Excel 2010 compatible)
    Patch by: me
    
    (cherry picked from commit 9621e55)
    DamjanJovanovic authored and Damjan Jovanovic committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    1f71f1d View commit details
    Browse the repository at this point in the history
  3. Our XSLT-based MS Office 2003 SpreadsheetML format import filter, whe…

    …n doing
    
    conversion from R1C1 style column references to our A1 style references, had a
    bug where it was treating the column value as 0-based, and dividing by 26 to
    find the 1st letter and taking the remainder when divided by 26 for the second
    letter. Those numbers are then each converted to a letter [0 = nothing,
    1 = "A", 2 = "B", ..., 26 = "Z"].
    
    However since R1C1 is 1-based, and not 0-based, this breaks for column numbers
    which are multiples of 26, as 26 mod 26 = 0, so the least significant digit is
    converted to nothing while the most significant digit gets incremented too
    early.
    
    Fix this by converting the column number to 0-based by subtracting 1 before
    calculation, then adding 1 to the least significant digit afterwards.
    
    Also the fact we have 2 letters limited us to a maximum of 26^2 = 676 columns,
    after which column references would wrap around. Fix this too, by adding a 3rd
    letter, which lets us address a maximum of 17576 columns.
    
    Add a sample file to our unit tests.
    
    Found by: alex dot plantema at xs4all dot nl
    Patch by: me
    
    (cherry picked from commit 577fe17)
    Damjan Jovanovic committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    0285e67 View commit details
    Browse the repository at this point in the history
  4. Dates and times are loaded wrongly from SpreadsheetML files, because …

    …the filter
    
    loads only the date or time portion of the ss:DateTime based on the cell's
    style.
    
    Rather always load the ss:DateTime as our ODF office:date-value in the
    XMLSchema-2 dateTime format, with both its date and time part, and then rely on
    formatting to display only the date or time as desired.
    
    Fixes: #82849 - SpreadsheetML ss:DateTime cell value is loaded as either only
    a date or a time
    
    Patch by: Philip J. Turmel <philip@turmel.org>
    Reviewed by: me
    
    (cherry picked from commit 0db4a4f)
    Damjan Jovanovic committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    4926b38 View commit details
    Browse the repository at this point in the history
  5. When importing SpreadsheetML ss:DateTime, import the entire value, no…

    …t only the
    
    first 19 characters.
    
    Add a test file for this bug.
    
    Fixes: #128554 - Office 2003 SpreadsheetML: fractional seconds are silently
           ignored during import
    Patch by: me
    
    (cherry picked from commit 195282c)
    Damjan Jovanovic committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    ffb2f9c View commit details
    Browse the repository at this point in the history
  6. In ODF (19.679.2 of ODF 1.3), the <table:covered-table-cell> element's

    table:number-columns-repeated attribute has a default value of 1,
    meaning the cell spans the cell to its right. However when the XSLT import
    filter converts from SpreadsheetML's ss:MergeAcross to ODF's
    table:number-columns-repeated, it always inserts a <table:covered-table-cell>
    element, and then adds the table:number-columns-repeated attribute only if
    it is greater than 1. This breaks when ss:MergeAcross="0", because ODF's
    defaulting to 1 ends up occupying an extra empty cell to the right when it
    shouldn't.
    
    Fix this by only inserting the <table:covered-table-cell> when
    ss:MergeAcross > 0.
    
    Add a test document to prove this.
    
    Fixes #100989 - SpreadsheetML: cell with ss:MergeAcross="0" gets an extra empty cell to the right
    Patch by: me
    
    (cherry picked from commit a896732)
    Damjan Jovanovic committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    d1836b6 View commit details
    Browse the repository at this point in the history
  7. Trust the "Referer" parameter

    (cherry picked from commit 8ff7eef)
    ardovm committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    4fdfc99 View commit details
    Browse the repository at this point in the history
  8. Scripts check their "Referer". Menu choices always set a trusted "Ref…

    …erer".
    
    (cherry picked and adapted from commit 98c68b9)
    ardovm committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    5e03f7d View commit details
    Browse the repository at this point in the history
  9. Add a "referer" property to SfxObjectShell::CallXScript() and trust m…

    …acros explicitly requested by the user
    
    (cherry picked and adapted from commit 9112548)
    ardovm committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    e2d7a90 View commit details
    Browse the repository at this point in the history
  10. Add a "Referer" to toolbars

    ardovm committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    419755b View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2023

  1. Windows is missing the round() function, try include <math.h>.

    Patch by: me
    
    (cherry picked from commit a2fc620)
    Damjan Jovanovic authored and Pilot-Pirx committed Feb 8, 2023
    Configuration menu
    Copy the full SHA
    ab427ea View commit details
    Browse the repository at this point in the history
  2. Use our own round() function declared in rtl's math.hxx, instead of t…

    …he system
    
    round() function only available in C99 compilers.
    
    Patch by: me
    
    (cherry picked from commit 669616f)
    Damjan Jovanovic authored and Pilot-Pirx committed Feb 8, 2023
    Configuration menu
    Copy the full SHA
    b253e30 View commit details
    Browse the repository at this point in the history
  3. rtl's round function is in the namespace ::rtl::math.

    Patch by: me
    
    (cherry picked from commit 01172de)
    Damjan Jovanovic authored and Pilot-Pirx committed Feb 8, 2023
    Configuration menu
    Copy the full SHA
    a0d24fb View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2023

  1. Bump rev to 4.1.15

    Pilot-Pirx committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    75d569a View commit details
    Browse the repository at this point in the history
  2. Bump up version.lst

    Pilot-Pirx committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    c1b0a2b View commit details
    Browse the repository at this point in the history
  3. Remove unused file

    Pilot-Pirx committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    8064643 View commit details
    Browse the repository at this point in the history
  4. Update to expat-2.5.0 (#169)

    Update to expat-2.5.0
    
    Patched into version 2.5.0-aoo.
    (cherry picked from commit b6c96fb)
    ardovm authored and Pilot-Pirx committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    9ceaae4 View commit details
    Browse the repository at this point in the history
  5. Resource leak

    CID:	705753
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1721695 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 2fcb977)
    pgiffuni authored and Pilot-Pirx committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    2650be2 View commit details
    Browse the repository at this point in the history
  6. #i126753# fix invalid parse of GSUB table for OpenType fonts

    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1721674 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit b784edb)
    Tsutomu Uchino authored and Pilot-Pirx committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    d61abae View commit details
    Browse the repository at this point in the history
  7. Integrate patch from upstream

    (cherry picked from commit 248a2d5)
    ardovm authored and Pilot-Pirx committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    69daa5c View commit details
    Browse the repository at this point in the history
  8. Update icons for OS/2 (#172)

    * Updated icon
    
    * Additional icons
    (cherry picked from commit 05d6d33)
    Pilot-Pirx committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    295b29a View commit details
    Browse the repository at this point in the history
  9. Update svdhdl.cxx

    Pilot-Pirx committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    ef96bc2 View commit details
    Browse the repository at this point in the history
  10. Elements on cropmarker share borders. Separate them from each other.

    (cherry picked from commit 062a78f)
    Pilot-Pirx committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    8b6ef4e View commit details
    Browse the repository at this point in the history
  11. Updated to the latest version:

     - config.guess: 2022-09-17
     - config.sub: 2022-09-17
    Pilot-Pirx committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    88920d5 View commit details
    Browse the repository at this point in the history
  12. #127044# - Defects in the code

    Commit fixes for sub-issues 1, 2, 5, 9 and 10.
    
    Found by: AppChecker <appchecker at cnpo.ru>
    Patch by: me
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1814705 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit f1d3244)
    Damjan Jovanovic authored and Pilot-Pirx committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    441693e View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    cfaf75e View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    b66cacc View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2023

  1. Configuration menu
    Copy the full SHA
    5fb93ec View commit details
    Browse the repository at this point in the history
  2. Issue 125400 - CJK numbering ordered list fallback to Arabic numerals

    Contributor: Mark Hung
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1642310 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 9156891)
    Steve Yin authored and Pilot-Pirx committed Mar 1, 2023
    Configuration menu
    Copy the full SHA
    c43a074 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2023

  1. Use simple handles for crop marker

    (cherry picked from commit 85520d3)
    Pilot-Pirx committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    0f9cb8b View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2023

  1. Add crop markers for Industrial icon theme

    (cherry picked from commit bffc389)
    Pilot-Pirx committed Mar 3, 2023
    Configuration menu
    Copy the full SHA
    c8f9962 View commit details
    Browse the repository at this point in the history
  2. Cleaned up resource file

    Pilot-Pirx committed Mar 3, 2023
    Configuration menu
    Copy the full SHA
    95dc5ec View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2023

  1. Configuration menu
    Copy the full SHA
    a092677 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2023

  1. Ensure compatibility with GNU Make 4.4 (#175)

    Change a pattern rule with multiple targets into multiple pattern rules
    with single targets.
    
    Also, correct an inessential whitespace.
    
    (cherry picked and adapted from commit ef6e816)
    ardovm committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    415f69a View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2023

  1. Add markers for Industrial icon theme

    (cherry picked from commit f005e78)
    Pilot-Pirx committed Mar 11, 2023
    Configuration menu
    Copy the full SHA
    c25062b View commit details
    Browse the repository at this point in the history
  2. Small updates to markers

    (cherry picked from commit 80724b8)
    Pilot-Pirx committed Mar 11, 2023
    Configuration menu
    Copy the full SHA
    92a5a07 View commit details
    Browse the repository at this point in the history
  3. Make gluepoint more visible

    (cherry picked from commit fb9aa39)
    Pilot-Pirx committed Mar 11, 2023
    Configuration menu
    Copy the full SHA
    b593925 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2023

  1. Configuration menu
    Copy the full SHA
    2d51995 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c8f60fb View commit details
    Browse the repository at this point in the history
  3. Resource leak

    CID:	1229496
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1716174 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 20a3ff3)
    pgiffuni authored and Pilot-Pirx committed Mar 12, 2023
    Configuration menu
    Copy the full SHA
    602bfd8 View commit details
    Browse the repository at this point in the history
  4. Use after Free

    CID:	1158520
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1716173 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 47edcb9)
    pgiffuni authored and Pilot-Pirx committed Mar 12, 2023
    Configuration menu
    Copy the full SHA
    e467b8b View commit details
    Browse the repository at this point in the history
  5. Uninitialized scalar variable

    CID:	1028321, 1028322, 1028323
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1716157 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 788ab39)
    pgiffuni authored and Pilot-Pirx committed Mar 12, 2023
    Configuration menu
    Copy the full SHA
    024fb56 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2023

  1. correct typo - closed #120336 https://bz.apache.org/ooo/show.cgi?id=1…

    …20336
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1847893 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 4e5ac20)
    Mechtilde Stehmann authored and Pilot-Pirx committed Mar 14, 2023
    Configuration menu
    Copy the full SHA
    b88f496 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2023

  1. Configuration menu
    Copy the full SHA
    710ebf5 View commit details
    Browse the repository at this point in the history
  2. Auto-disable use of pthread_mutexattr_setkind_np due to compile error…

    …s (Revised-Revised)
    
    The code being disabled here causes a compilation issue on Ubuntu Jammy Jellyfish. (undefined reference to `pthread_mutexattr_setkind_np`) The best I can tell, https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/2003146 explains this somewhat.
    
    This workaround likely hasn't been necessary for the past 20 years, if glibc "converted to git" repositories are any indication (see for instance https://github.com/lattera/glibc/blob/d82e4c7bb231c9e0f835bd46467563ac3b56cebe/linuxthreads/sysdeps/pthread/pthread.h ).
    
    And indeed, anyone who would be attempting to run OpenOffice on such a system would likely encounter issues with the other varied libraries in use.
    
    Unfortunately other compilation issues prevented me from performing a full test, but osl mutex tests pass at least.
    
    (cherry picked from commit 02cabb0)
    20kdc authored and ardovm committed Mar 18, 2023
    Configuration menu
    Copy the full SHA
    d5b37d1 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2023

  1. Replace egrep -> grep -E, general cleanup

    (cherry picked from commit 1ec272b)
    Pilot-Pirx committed Mar 19, 2023
    Configuration menu
    Copy the full SHA
    d063cc0 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2023

  1. fgrep is deprecated and may be removed soon, use grep -F instead (#173)

    * Update makedepn
    
    * Minor change to commentregarding fgrep
    (cherry picked from commit 710881b)
    Pilot-Pirx committed Mar 20, 2023
    Configuration menu
    Copy the full SHA
    55221da View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2023

  1. Configuration menu
    Copy the full SHA
    2008a81 View commit details
    Browse the repository at this point in the history
  2. Added missing space

    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1848859 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit bc79de7)
    Pilot-Pirx committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    a2221f5 View commit details
    Browse the repository at this point in the history
  3. Revised versions

    Pilot-Pirx committed Mar 21, 2023
    Configuration menu
    Copy the full SHA
    773f11e View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2023

  1. Small corrections to strings

    (cherry picked from commit bc1f490)
    Pilot-Pirx committed Mar 23, 2023
    Configuration menu
    Copy the full SHA
    553cdde View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2023

  1. Set correct values for graphics cache

    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1836291 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit f2045c0)
    Pilot-Pirx committed Mar 25, 2023
    Configuration menu
    Copy the full SHA
    17b6c4a View commit details
    Browse the repository at this point in the history
  2. Increase defaults for graphic cache (#161)

    (cherry picked from commit 5c18dcd)
    Pilot-Pirx committed Mar 25, 2023
    Configuration menu
    Copy the full SHA
    a3cc744 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2023

  1. Fixed Note vs. Comment

    Pilot-Pirx committed Mar 26, 2023
    Configuration menu
    Copy the full SHA
    da0173f View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2023

  1. Configuration menu
    Copy the full SHA
    b6d3775 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2023

  1. Updated LICENSE for Expat 2.5.0

    (cherry picked from commit e4e50d7)
    Pilot-Pirx committed Mar 29, 2023
    Configuration menu
    Copy the full SHA
    26665e4 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2023

  1. Configuration menu
    Copy the full SHA
    c50934e View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2023

  1. Updated English dictionary

    Pilot-Pirx committed Mar 31, 2023
    Configuration menu
    Copy the full SHA
    d95eb78 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2023

  1. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1595439

    …13f79535-47bb-0310-9956-ffa450edef68
    
    (cherry picked and adapted from commit 718aea4)
    Tsutomu Uchino authored and ardovm committed Apr 1, 2023
    Configuration menu
    Copy the full SHA
    b57309c View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2023

  1. Configuration menu
    Copy the full SHA
    2a90d9e View commit details
    Browse the repository at this point in the history
  2. Correcting small error

    (cherry picked from commit e794b45)
    Pilot-Pirx committed Apr 2, 2023
    Configuration menu
    Copy the full SHA
    777ec61 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2023

  1. Configuration menu
    Copy the full SHA
    9aaaa13 View commit details
    Browse the repository at this point in the history
  2. i124497 Corrected object description placeholder from %O to %1

    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1580818 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 24c1344)
    Armin Le Grand authored and Pilot-Pirx committed Apr 4, 2023
    Configuration menu
    Copy the full SHA
    7f54938 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    48d3ed5 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2023

  1. Configuration menu
    Copy the full SHA
    b569710 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2023

  1. Revised versions

    (cherry picked from commit fd944a6)
    Pilot-Pirx committed Apr 7, 2023
    Configuration menu
    Copy the full SHA
    63c7daf View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2023

  1. Add transparent border to avoid repaint issues

    (cherry picked from commit 4b80333)
    Pilot-Pirx committed Apr 8, 2023
    Configuration menu
    Copy the full SHA
    c4884ca View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2023

  1. Back to 9x9 for gluepoint

    (cherry picked from commit 8cd3382)
    Pilot-Pirx committed Apr 9, 2023
    Configuration menu
    Copy the full SHA
    330b556 View commit details
    Browse the repository at this point in the history
  2. Revised versions

    (cherry picked from commit d34e4ff)
    Pilot-Pirx committed Apr 9, 2023
    Configuration menu
    Copy the full SHA
    a408967 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2023

  1. Also allow:

    pCBFCP->pClipDoc->GetClipParam().getSourceDocID() == 0
    instead of only:
    pCBFCP->pClipDoc->GetClipParam().getSourceDocID() == GetDocumentID()
    in ScDocument::CopyBlockFromClip(), because that's what it is when
    cells are dragged and dropped instead of cut and pasted.
    
    Fixes: #128566 - cell displacement problem
    Patch by: me
    
    (cherry picked from commit 3accd9b)
    Damjan Jovanovic committed Apr 10, 2023
    Configuration menu
    Copy the full SHA
    90c740b View commit details
    Browse the repository at this point in the history
  2. Remove unused patch

    (cherry picked from commit e288e12)
    Pilot-Pirx committed Apr 10, 2023
    Configuration menu
    Copy the full SHA
    e75f789 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2023

  1. Configuration menu
    Copy the full SHA
    97489b1 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2023

  1. Configuration menu
    Copy the full SHA
    8e34cc7 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2023

  1. Fix for issue #61244 (#16)

    oooforum authored and Pilot-Pirx committed Apr 22, 2023
    Configuration menu
    Copy the full SHA
    900c79c View commit details
    Browse the repository at this point in the history
  2. Fix for issue #127895 (#31)

    Fixes using the incorrect variable.  See https://bz.apache.org/ooo/show_bug.cgi?id=127895
    (cherry picked from commit b82be50)
    oooforum authored and Pilot-Pirx committed Apr 22, 2023
    1 Configuration menu
    Copy the full SHA
    e4c033a View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2023

  1. Configuration menu
    Copy the full SHA
    3ab01d1 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2023

  1. Configuration menu
    Copy the full SHA
    8524b26 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2023

  1. Add icons for find toolbar (Industrial)

    (cherry picked from commit 6556a8b)
    Pilot-Pirx committed May 2, 2023
    Configuration menu
    Copy the full SHA
    723eb47 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2023

  1. Icons for find toolbar (Industrial), revised versions

    (cherry picked from commit a17fb14)
    Pilot-Pirx committed May 4, 2023
    Configuration menu
    Copy the full SHA
    ece1993 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2023

  1. Deduplicate the svx library.

    Patch by: me
    
    (cherry picked from commit c63082e)
    Damjan Jovanovic authored and Pilot-Pirx committed May 12, 2023
    Configuration menu
    Copy the full SHA
    c42e87e View commit details
    Browse the repository at this point in the history
  2. main/xmloff: eliminate a duplicate deliverable

    Patch by: me
    
    (cherry picked from commit 85bfc14)
    Damjan Jovanovic authored and Pilot-Pirx committed May 12, 2023
    Configuration menu
    Copy the full SHA
    c6b3ebf View commit details
    Browse the repository at this point in the history

Commits on May 13, 2023

  1. Avoid comparison between pointer and integer

    (cherry picked from commit 958717d)
    (cherry picked from commit 8cf8c62)
    arielch authored and Pilot-Pirx committed May 13, 2023
    Configuration menu
    Copy the full SHA
    b5926b4 View commit details
    Browse the repository at this point in the history
  2. Ignore /log folder created by build.pl --html

    (cherry picked from commit b8d88ba)
    arielch authored and Pilot-Pirx committed May 13, 2023
    Configuration menu
    Copy the full SHA
    c5861ff View commit details
    Browse the repository at this point in the history

Commits on May 17, 2023

  1. Merge pull request #177 from apache/Pilot-Pirx-glue

    Remove unused(?) code and its declaration
    ardovm authored and Pilot-Pirx committed May 17, 2023
    Configuration menu
    Copy the full SHA
    5876ddc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f78aa3 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2023

  1. Small correction

    (cherry picked from commit bb3b111)
    Pilot-Pirx committed May 18, 2023
    Configuration menu
    Copy the full SHA
    d4e4655 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2023

  1. Configuration menu
    Copy the full SHA
    78e1246 View commit details
    Browse the repository at this point in the history
  2. Added missing delimiter, fixed code for page layout

    (cherry picked from commit 9a2b249)
    Pilot-Pirx committed May 19, 2023
    Configuration menu
    Copy the full SHA
    09e49f8 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2023

  1. Remove part from Help that is not present in the dialog. Leftover?

    (cherry picked from commit 3c4c685)
    Pilot-Pirx committed May 20, 2023
    Configuration menu
    Copy the full SHA
    99c7503 View commit details
    Browse the repository at this point in the history
  2. Create README.md

    Pilot-Pirx authored May 20, 2023
    Configuration menu
    Copy the full SHA
    b93dd68 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2023

  1. Added remaining files to exclude list

    (cherry picked from commit ca7bbf1)
    Pilot-Pirx committed May 21, 2023
    Configuration menu
    Copy the full SHA
    4fbfbae View commit details
    Browse the repository at this point in the history

Commits on May 23, 2023

  1. Update README.md

    Pilot-Pirx authored May 23, 2023
    Configuration menu
    Copy the full SHA
    c968049 View commit details
    Browse the repository at this point in the history
  2. Corrected typo (Graphyic -> Graphic)

    (cherry picked from commit cf03d99)
    Pilot-Pirx committed May 23, 2023
    Configuration menu
    Copy the full SHA
    3dd97e5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fb13f12 View commit details
    Browse the repository at this point in the history
  4. Resource leak

    CID:	1028073
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1716170 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 17c8a82)
    pgiffuni authored and Pilot-Pirx committed May 23, 2023
    Configuration menu
    Copy the full SHA
    47d9c12 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0152646 View commit details
    Browse the repository at this point in the history
  6. Recode files from CRLF to LF, removed whitespace, minor corrections t…

    …o comments
    
    (cherry picked from commit f028899)
    Pilot-Pirx committed May 23, 2023
    Configuration menu
    Copy the full SHA
    718f69e View commit details
    Browse the repository at this point in the history
  7. chmod 755

    (cherry picked from commit d2a7b3c)
    Pilot-Pirx committed May 23, 2023
    Configuration menu
    Copy the full SHA
    716654a View commit details
    Browse the repository at this point in the history

Commits on May 25, 2023

  1. Updated download numbers

    (cherry picked from commit b5a4b04)
    Pilot-Pirx committed May 25, 2023
    Configuration menu
    Copy the full SHA
    a3d35bd View commit details
    Browse the repository at this point in the history

Commits on May 31, 2023

  1. Recoded file from CRLF to LF

    (cherry picked from commit 1e66efe)
    Pilot-Pirx committed May 31, 2023
    Configuration menu
    Copy the full SHA
    93a5026 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2023

  1. Configuration menu
    Copy the full SHA
    a24a54a View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2023

  1. Small changes to Help Authoring Tool

    (cherry picked from commit 4cb6727)
    Pilot-Pirx committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    de6e477 View commit details
    Browse the repository at this point in the history
  2. Fixed typo in last commit

    (cherry picked from commit e5ebaf8)
    Pilot-Pirx committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    48b56c2 View commit details
    Browse the repository at this point in the history
  3. Skip license when updating

    (cherry picked from commit 13de810)
    Pilot-Pirx committed Jun 2, 2023
    Configuration menu
    Copy the full SHA
    d60d0c6 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2023

  1. Fixed the "lonely bullets" problem.

    Credits go to: cwolan
    
    (cherry picked from commit df377c0)
    Pilot-Pirx committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    9950a3a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    869f32e View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2023

  1. Fixed typos

    (cherry picked from commit b8a3374)
    Pilot-Pirx committed Jun 4, 2023
    Configuration menu
    Copy the full SHA
    80030a2 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2023

  1. Updated rat excludes

    (cherry picked from commit 84e8ec6)
    Pilot-Pirx committed Jun 12, 2023
    Configuration menu
    Copy the full SHA
    df414ed View commit details
    Browse the repository at this point in the history
  2. Updated rat excludes

    (cherry picked from commit 5154538)
    Pilot-Pirx committed Jun 12, 2023
    Configuration menu
    Copy the full SHA
    23e8200 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2023

  1. Cleaned up resource file

    Pilot-Pirx committed Jun 13, 2023
    Configuration menu
    Copy the full SHA
    22a07d5 View commit details
    Browse the repository at this point in the history
  2. Remove unused graphics

    (cherry picked from commit f51ffce)
    Pilot-Pirx committed Jun 13, 2023
    Configuration menu
    Copy the full SHA
    237d872 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2023

  1. Configuration menu
    Copy the full SHA
    422598a View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2023

  1. Configuration menu
    Copy the full SHA
    6db19bb View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2023

  1. Configuration menu
    Copy the full SHA
    ef66202 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2023

  1. Configuration menu
    Copy the full SHA
    bf91942 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2023

  1. Defined some variables to reduce warnings while packaging for Windows

    (cherry picked from commit 1746dd2)
    Pilot-Pirx committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    ab0e39d View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2023

  1. Configuration menu
    Copy the full SHA
    efbd362 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7f61056 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2023

  1. Make thumbnail border less dominant

    (cherry picked from commit 2fc0df2)
    Pilot-Pirx committed Jul 25, 2023
    Configuration menu
    Copy the full SHA
    a8a0e39 View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2023

  1. Another small change for Windows thumbnail creation

    (cherry picked from commit ef262ac)
    Pilot-Pirx committed Jul 31, 2023
    Configuration menu
    Copy the full SHA
    7e8066a View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2023

  1. Configuration menu
    Copy the full SHA
    4f8466a View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2023

  1. Remove shadow from preview (insertion) in slide sorter (Draw/Impress)

    (cherry picked from commit 1e6f86d)
    Pilot-Pirx committed Aug 11, 2023
    Configuration menu
    Copy the full SHA
    e6e2bb5 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2023

  1. Configuration menu
    Copy the full SHA
    5ab6c38 View commit details
    Browse the repository at this point in the history
  2. Improved overlay graphic

    (cherry picked from commit 78e58bd)
    Pilot-Pirx committed Aug 12, 2023
    Configuration menu
    Copy the full SHA
    a8373b0 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2023

  1. Update zlib to 1.3

    (cherry picked from commit 9a23d25)
    Pilot-Pirx committed Aug 18, 2023
    Configuration menu
    Copy the full SHA
    3c41e8a View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2023

  1. Configuration menu
    Copy the full SHA
    1bf924f View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

  1. Simplified graphics

    (cherry picked from commit ff6a8e0)
    Pilot-Pirx committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    cec2305 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. Updated Danish dictionary

    Pilot-Pirx committed Sep 7, 2023
    Configuration menu
    Copy the full SHA
    0306a91 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2023

  1. Removing commons-httpclient from ext_source since we bootstrap it lat…

    …er when needed
    
    (cherry picked from commit 0c352e1)
    Pilot-Pirx committed Sep 9, 2023
    Configuration menu
    Copy the full SHA
    2957f65 View commit details
    Browse the repository at this point in the history
  2. Removing icu4c from ext_source since we bootstrap it later

    (cherry picked from commit 3ef6d58)
    Pilot-Pirx committed Sep 9, 2023
    Configuration menu
    Copy the full SHA
    5d0b249 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2023

  1. Removing hsqldb from ext_source since we bootstrap it later

    (cherry picked from commit d98be9a)
    Pilot-Pirx committed Sep 12, 2023
    Configuration menu
    Copy the full SHA
    efedb85 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2023

  1. Configuration menu
    Copy the full SHA
    e416a10 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2023

  1. Configuration menu
    Copy the full SHA
    aadf423 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2023

  1. #i126557# Patch by: hanya

    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1705793 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit fe883e5)
    Kay Schenk authored and Pilot-Pirx committed Oct 8, 2023
    Configuration menu
    Copy the full SHA
    a4efec7 View commit details
    Browse the repository at this point in the history
  2. #i126476# Patch by: Mark Hung

    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1697501 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 2909275)
    Kay Schenk authored and Pilot-Pirx committed Oct 8, 2023
    Configuration menu
    Copy the full SHA
    376de1e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    55256c8 View commit details
    Browse the repository at this point in the history
  4. #i126366 Do not remove outer braces

    Patch by: Ivan Timofeev <timofeev.i.s@gmail.com>
    resolves error {a+b}over{c+d} --> a+b}over{c+d
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1686597 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 36769aa)
    Regina Henschel authored and Pilot-Pirx committed Oct 8, 2023
    Configuration menu
    Copy the full SHA
    4d0df65 View commit details
    Browse the repository at this point in the history
  5. #i126367 existing command text is repeated when insert formula

    Patch by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1685665 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 7db8e69)
    Regina Henschel authored and Pilot-Pirx committed Oct 8, 2023
    Configuration menu
    Copy the full SHA
    79ee02b View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2023

  1. Use correct icon in Help.

    This fixes issue https://bz.apache.org/ooo/show_bug.cgi?id=128313
    
    (cherry picked from commit 98df2d0)
    Pilot-Pirx committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    bdaa6f7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    87b458b View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2023

  1. Configuration menu
    Copy the full SHA
    7c32911 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8343de8 View commit details
    Browse the repository at this point in the history
  3. Fixed small glitch

    Pilot-Pirx committed Oct 10, 2023
    Configuration menu
    Copy the full SHA
    ac8bb0a View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2023

  1. #i96720# FilePicker: setDefaultName, setDefaultDirectory "broken"

    Display the proposed filename even when the URL
    specified for the file picker directory is invalid.
    
    As the Win32 file picker sadly allows both paths and URLs
    for directories, users try paths on other more
    restrictive platforms, and since the file picker there
    shows neither the directory nor the file, they wrongly
    conclude both are broken.
    
    Patch by: me
    
    git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1716508 13f79535-47bb-0310-9956-ffa450edef68
    (cherry picked from commit 1aa1f6e)
    Damjan Jovanovic authored and Pilot-Pirx committed Oct 14, 2023
    Configuration menu
    Copy the full SHA
    de4f303 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2023

  1. Update download numbers

    (cherry picked from commit 7e4d1fd)
    Pilot-Pirx committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    0a12a2c View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Make method sfx2::LinkManager::GetUserAllowsLinkUpdate public

    (cherry picked from commit 423bdb1)
    ardovm committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    f92f29d View commit details
    Browse the repository at this point in the history
  2. Use sfx2::LinkManager::GetUserAllowsLinkUpdate()

    (cherry picked from commit 1b9d139)
    ardovm committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    f8c074b View commit details
    Browse the repository at this point in the history
  3. Update milestone

    Pilot-Pirx committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    14d0842 View commit details
    Browse the repository at this point in the history
  4. Updated graphics

    (cherry picked from commit dffc0fe)
    Pilot-Pirx committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    0147665 View commit details
    Browse the repository at this point in the history
  5. Remove HC icons from Industrial icon set

    (cherry picked from commit 383f176)
    Pilot-Pirx committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    03dda21 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e1b78c8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    cdecdc5 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. Configuration menu
    Copy the full SHA
    ce6abae View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2023

  1. Allow all links in online help documents

    (cherry picked from commit 3f92111)
    ardovm committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    8d6615f View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2023

  1. misc: fix spelling (#182)

    Thank you very much for your contribution!
    
    (cherry picked from commit 402c6fd)
    jbampton authored and Pilot-Pirx committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    a3cca4d View commit details
    Browse the repository at this point in the history
  2. Do not cache instances of com.sun.star.i18n.Transliteration.l10n

    Such instances may be modified by the callers. If objects are cached,
    one caller may see its instance unexpectedly modified by another caller.
    
    This happened with Transliteration_caseignore instances  in bug #126680.
    
    (cherry picked from commit f0439ff)
    ardovm committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    5f13fa0 View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2023

  1. Update README.md

    Pilot-Pirx authored Dec 25, 2023
    Configuration menu
    Copy the full SHA
    7142d07 View commit details
    Browse the repository at this point in the history