summaryrefslogtreecommitdiffstats
path: root/officecfg
Commit message (Collapse)AuthorAgeFilesLines
* [GSoC] Rework of color tabRishabh Kumar2016-08-031-1/+20
| | | | | | | | | | | | | | | | New Features - 1. Multiple Palettes in color tab. 2. Remember the selected palette. 3. Recent colors. 4. Custom colors. Change-Id: I36a438a0c282059ddcbda35f934fcd90337fd451 Reviewed-on: https://gerrit.libreoffice.org/26868 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
* [GSoC] Fix recent colors in color popup widgetRishabh Kumar2016-07-291-0/+10
| | | | | | | | | Save recent colors in user configuration. Change-Id: I1637e9fe3150bd1892f72ff9df06dc2a7c3e1e9e Reviewed-on: https://gerrit.libreoffice.org/27688 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Jenkins <ci@libreoffice.org>
* tdf#101094 (11): Add WebDAV options cache configuration param.Giuseppe Castagno2016-07-291-0/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added in officecfg five new properties to be able to set cache lifetime if needed. The new properties are available in advanced, expert configuration only, in org.openoffice.Inet.Settings. Default values are as follows (value is in seconds): OptsCacheLifeImplWeb = 300 when the web resource is Web only, implementing OPTIONS. Min. 0 sec (no caching) max. 3600 sec (1h). OptsCacheLifeDAV = 60 when the web resource is WebDAV. Min. 0 sec (no caching) max. 3600 sec (1h). OptsCacheLifeDAVLocked = 600 when the web resource is WebDAV and it's locked by this LO instance (e.g. lock store has a lock to it). Min. 0 sec (no caching) max. 3600 sec (1h). OptsCacheLifeNotImpl = 3600 when the web resource does not implement OPTIONS method. Min. 0 sec (no caching) max. 43200 sec (12h). OptsCacheLifeNotFound = 15 when the requested web resource is not found on server. Min. 0 sec (no caching) max. 30 sec. Change-Id: I719b97645e1d91a29134820b77678fd88fcb9ac2 Reviewed-on: https://gerrit.libreoffice.org/27684 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>
* GSoC Emoji ControlAkshay Deep2016-07-282-0/+15
| | | | | | | | | | | | | | | Tab Window Add emoji.json to installation directory Read the JSON data from code Filter emojis according to categories Insert Emoji at cursor position Toolbar control Change-Id: Ia5a577ce41398132872914ebfa499e4d4077d57e Reviewed-on: https://gerrit.libreoffice.org/26700 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Akshay Deep <akshaydeepiitr@gmail.com> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
* Further documentation for SelectedOpenCLDeviceIdentifierTor Lillqvist2016-07-251-1/+1
| | | | Change-Id: I124b0225c2962c62bce71c128748263c9cd48fdb
* Resolves: tdf#88581 default for new installations is Wildcards onEike Rathke2016-07-201-2/+2
| | | | | | ... and RegularExpressions off. So the default is interoperable. Change-Id: I295429d1b0ad61d5e9564f10970270df78026893
* clean up some "failed to load image" warningsNoel Grandin2016-07-182-12/+0
| | | | | | | | | | | | | By adding entries to links.txt and tweaking some of the commands to remove the icon flag. With these changes I can add an assert(false) in ImageAryData::Load and still pass make check. Change-Id: Iebb41318fa821628920a49019f201efa9fbbfbab Reviewed-on: https://gerrit.libreoffice.org/26095 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
* Notebookbar: Round 1 of improvements to toolbar labelsYousuf Philips2016-07-162-10/+26
| | | | | | | Change-Id: Ic1412c66e1cbf0e1c9cc3325443d931fedb5f972 Reviewed-on: https://gerrit.libreoffice.org/27178 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
* there is no "FormularProperties", math is called "FormulaProperties"Michael Stahl2016-07-142-2/+2
| | | | Change-Id: Id44ec98c5f2588918ee6253df9accc9d8ea94ab8
* tdf#100886: Show Default ShapesPanel when Shape is selectedSusobhan Ghosh2016-07-141-6/+2
| | | | | | | | | Make Shapes Panel only available for Draw Change-Id: Ib83a07333a0a3c53871184df313a79bad1576942 Reviewed-on: https://gerrit.libreoffice.org/27175 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
* Make TooltipLabel default to PopupLabelSamuel Mehrbrodt2016-07-131-1/+1
| | | | | | | | | Because we often have similiar tooltip and menu names. Change-Id: I0ab66269b0b1f2985f23cf92289b3da69b6ddfd3 Reviewed-on: https://gerrit.libreoffice.org/27186 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
* opencl: OpenCLZone, detect CL device change and disable CL on crashTomaž Vajngerl2016-07-111-0/+6
| | | | | | | | | | | | | | | | | | | Guard OpenCL calls with OpenCLZone, so if a OpenCL call crashes we detect this and disable OpenCL so next time the user doesn't encounter the crash at the same calculation because he has a broken OpenCL drivers. Similar has been implemented for OpenGL with good results. Additionaly we persistently remember a known good OpenCL device ID and driver version so we can match this and perform calculation tests when they change. This is to ensure that the selected OpenCL device performs as we expect. In this commit the calculation tests aren't included yet. Remove complex static initializer in opencl wrapper library. Change-Id: I1a8b81ee31298731efcf63dc6a476955afc035e9 Reviewed-on: https://gerrit.libreoffice.org/27064 Reviewed-by: Tomaž Vajngerl <quikee@gmail.com> Tested-by: Tomaž Vajngerl <quikee@gmail.com>
* ditch the application per-language IsAutoMnemonicEnabled settingCaolán McNamara2016-07-102-46/+0
| | | | Change-Id: I9734ada09edb6544a332893a7c5d31730b0d081d
* ditch the multiply dialog width * X where X is based on language thingCaolán McNamara2016-07-102-53/+0
| | | | | | | Which should be unnecessary since the vcl layout work and optimal size widgets, and its a small and arbitary set of languages for which its set. Change-Id: Ifa397218510ade251f795cdd9360d6bdccb115b7
* ditch the font/screen-scaling thingCaolán McNamara2016-07-101-23/+0
| | | | | | | its of limited utility wrt the vcl layout work and optimal size widgets, and its confuses people looking for hidpi settings Change-Id: I37d21b480446f9fe2845b3a2d9fd59cdeddf1a93
* tdf#87643: Default Shapes Panel for Shapes DeckSusobhan Ghosh2016-07-081-0/+49
| | | | | | | Change-Id: Ib3d4a32e70b6dc2ae0898846a27d3ffcb43c2a75 Reviewed-on: https://gerrit.libreoffice.org/26770 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
* tdf#100052 sd: Add labels to insert before/after commandsSamuel Mehrbrodt2016-07-081-0/+32
| | | | | | | Change-Id: If3c273d8c579a30594b5570fced3f0617e9656a5 Reviewed-on: https://gerrit.libreoffice.org/27047 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
* Improve Tooltip Labels for Writer ToolbarSamuel Mehrbrodt2016-07-062-0/+33
| | | | | | | Change-Id: I68b639b85974739d23affe373d686e094b3ef715 Reviewed-on: https://gerrit.libreoffice.org/26978 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
* Remove last traces of First Start WizardSamuel Mehrbrodt2016-07-054-103/+0
| | | | | | | Change-Id: Idf7171ecfd90edf47fb29d44b8036578a2e6ad61 Reviewed-on: https://gerrit.libreoffice.org/26935 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
* Add Impress Selection to show by defaultAkshay Deep2016-07-041-3/+3
| | | | | | | Change-Id: I0108bff79f1bd6b4d7e75f2e3a4f00e7ab50696e Reviewed-on: https://gerrit.libreoffice.org/26861 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
* GSoC possibility to change icon size in the SidebarToolBoxSzymon Kłos2016-07-011-0/+24
| | | | | | | | | | | | | | + Added registy entry to store icon size + Added UI to change settings: Tools -> Options... -> View + Loading last settings in the SidebarToolBox + Settings update listener Update icon code from: framework/source/uielement/toolbarmanager.cxx Change-Id: I1d713c50fccfc19e1c8ea82eba68556ddb76cd3c Reviewed-on: https://gerrit.libreoffice.org/26362 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
* tdf#96969 Use Ctrl+Shift+Space for Select Column in ChineseYousuf Philips2016-06-271-0/+2
| | | | | | | | Change-Id: I7b7d6ac6d4ce0b72dee0d568724a2c3065ea3db6 Reviewed-on: https://gerrit.libreoffice.org/26725 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* tdf#83830: Remove experimental status from Page DeckSusobhan Ghosh2016-06-231-3/+0
| | | | | | | Change-Id: I4214d92947734bab954a07118cdee96950a97814 Reviewed-on: https://gerrit.libreoffice.org/26591 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
* tdf#91820 A round of minor tweaks to Calc's menusYousuf Philips2016-06-192-7/+22
| | | | | | | Change-Id: I4724e5fd927371ce5df58451dbd0a0ae7eeca0e9 Reviewed-on: https://gerrit.libreoffice.org/24086 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
* tdf#91781 Move bookmark and cross-reference to root insert menuYousuf Philips2016-06-171-8/+0
| | | | | | | Change-Id: I06485c07e6c6fd3621fdfc99b7176107bb0ee999 Reviewed-on: https://gerrit.libreoffice.org/26418 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
* tdf#86759 and tdf#89466: Enable Page Background Panel for DrawSusobhan Ghosh2016-06-161-19/+19
| | | | | | | | | | Rename Slide Background Panel to Slide in Impress. Reorder Properties Deck Change-Id: Ib2039c41c56a0182887f19aa362d633dcabfe9dd Reviewed-on: https://gerrit.libreoffice.org/26159 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
* tdf#61396 Possibility to edit a template not in Template RepositoryAkshay Deep2016-06-151-5/+2
| | | | | | | | | | | | | Menu Sequence: Open Template... Save as Template... ---------------------- Manage Templates Change-Id: I0d0c8ca15d8dc38662e7f84a4f598933c13dd512 Reviewed-on: https://gerrit.libreoffice.org/26179 Reviewed-by: Akshay Deep <akshaydeepiitr@gmail.com> Tested-by: Akshay Deep <akshaydeepiitr@gmail.com>
* tdf#83830: Removal of Page Margin PanelSusobhan Ghosh2016-06-131-28/+0
| | | | | | | Change-Id: I05c0b2ba42cf395a2b30ce658e1f1d034e95f21f Reviewed-on: https://gerrit.libreoffice.org/26217 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
* tdf#100333 Ctrl + G for Save in SpanishYousuf Philips2016-06-121-0/+8
| | | | | | | | Change-Id: Iec5c18e32c35d10c4992490d2b039d5106d3f1c6 Reviewed-on: https://gerrit.libreoffice.org/26194 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* tdf#99770 Update service name from “LotusLive” to “IBM Connections ↵Adolfo Jayme Barrientos2016-06-111-1/+1
| | | | | | Cloud” Change-Id: I95c4f606e32b2748b9007e3a9b1a0ff3ef430f9f
* tdf#83830: Change Page Deck Icon and TooltipSusobhan Ghosh2016-06-101-3/+3
| | | | | | | Change-Id: I8d6ade1dfaf972fb4b657226f30422a329270030 Reviewed-on: https://gerrit.libreoffice.org/26174 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
* Slideshow: Add 'Oval' Shape Transition variantMayank Gupta2016-06-101-1/+32
| | | | | | | | | | | Committer's note: There is no Oval or Ellipse transition in MSO formats, so fallback to circle on export to those. Change-Id: Ibc3d617d3bb94bdd0702bb4d60ce5fbe2eea8e24 Reviewed-on: https://gerrit.libreoffice.org/23661 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@documentfoundation.org> Tested-by: jan iversen <jani@documentfoundation.org>
* tdf#84909 Impress: Rearrange the standard toolbarYousuf Philips2016-06-091-1/+1
| | | | | | | Change-Id: Ia2582fa118b5622c36ed80525273ac28a224fc6d Reviewed-on: https://gerrit.libreoffice.org/26070 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
* tdf#91781 tweak to Writer's insert menuYousuf Philips2016-06-091-1/+1
| | | | | | | Change-Id: Id099a1f393fa115faf53899f94db5d53f3daa849 Reviewed-on: https://gerrit.libreoffice.org/26062 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
* Revert "Slideshow: Add 'Oval' Shape Transition variant"jan iversen2016-06-091-32/+1
| | | | | | | | | | | | | The patch caused problems with the export filter tests, to check that you need to add --with-export-validation to your autopen.input see https://cgit.freedesktop.org/libreoffice/contrib/dev-tools/tree/export-validation for more info on how to set it up This reverts commit 248c5ea771255b54e64394458a321ccf829bbd02. Change-Id: Ib3b8fa7bf80630feeca1f24dfb1ceb5a945d7162 Reviewed-on: https://gerrit.libreoffice.org/26114 Reviewed-by: jan iversen <jani@documentfoundation.org> Tested-by: jan iversen <jani@documentfoundation.org>
* Slideshow: Add 'Oval' Shape Transition variantMayank Gupta2016-06-091-1/+32
| | | | | | | | Change-Id: Ibc3d617d3bb94bdd0702bb4d60ce5fbe2eea8e24 Reviewed-on: https://gerrit.libreoffice.org/23661 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@documentfoundation.org> Tested-by: jan iversen <jani@documentfoundation.org>
* Impress: Replace Presentation Wizard with Template ManagerAkshay Deep2016-06-011-22/+0
| | | | | | | | | | | | | | Drop the Presentation wizard and show the Template Manager instead when starting Impress. 1. Opens a blank template with Template Manager. 2. If user selects a template, load it over the blank template. 3. SfxTemplateSelectionDlg for impress integration. Change-Id: Ia9c3cafc973e3741c6ea9f838018a35956f37f4a Reviewed-on: https://gerrit.libreoffice.org/25642 Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
* tdf#98290 New Mac shortcut for fullscreen for all appsYousuf Philips2016-05-311-8/+56
| | | | | | | Change-Id: Iacb8cd21e2323dff575da130ea9ec4fd98096a88 Reviewed-on: https://gerrit.libreoffice.org/25221 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
* tdf#91781 A round of minor tweaks to Writer's menusYousuf Philips2016-05-312-4/+32
| | | | | | | Change-Id: I0c37f9e0349af0cd9dc41c500543da7532fb9198 Reviewed-on: https://gerrit.libreoffice.org/23976 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
* tdf#92218 Implement Calc single toolbar mode toolbarYousuf Philips2016-05-311-0/+23
| | | | | | | Change-Id: Ie261b71000c37f18efe0658bbf239c9639a5fcf3 Reviewed-on: https://gerrit.libreoffice.org/24088 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
* tdf#83830: Writer page sidebar deckRishabh Kumar2016-05-261-0/+162
| | | | | | | Change-Id: I6eb16a5a721fad28aa7822b0ca8d7c06a0c08541 Reviewed-on: https://gerrit.libreoffice.org/17904 Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de> Tested-by: Katarina Behrens <Katarina.Behrens@cib.de>
* tdf#98792: Add the 'Nirmala UI' font as fallback for 'Gautami' for TeluguTor Lillqvist2016-05-251-6/+29
| | | | | | | | | | | | | | | | Nirmala UI is the new pan-Indic font on Windows 8 and newer, and apparently not optional. It supports the Devanagari, Bengali, Gurmukhi, Gujarati, Oriya, Tamil, Telugu, Kannada, Malayalam, and Sinhala scripts. So we should list it in many more places, I guess, not just for Telugu. Note that this commit does not really fix the root issue(s) in tdf#98792, i.e. why the shaping is wrong when, and/or why the font (or glyph?) fallback works differently depending on whether the document is passed on the command line or opened from the Start Centre. See bug report for more notes. Change-Id: Ife361475716123781fb4a4923701890206b28b26
* Revert "tdf#35208 Allow choosing encoding for old Excel files"Maxim Monastirsky2016-05-191-1/+1
| | | | | | | | | This reverts commit 4f1ce46b8d65360436e09750242101b566e6186c. Change-Id: I4b93ef8233f172935e72401ec51abd3d4c8a9fac Reviewed-on: https://gerrit.libreoffice.org/25152 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
* tdf#35208 Allow choosing encoding for old Excel filesMaxim Monastirsky2016-05-191-1/+1
| | | | | | | | | | | | | | | | | | Lots of BIFF2-BIFF5 files out there don't have CODEPAGE record at all, or have one with a wrong value, and/or FONT records with wrong charset value. To solve that, this patch adds a new "Choose Encoding" entry to the file picker, so that users could specify the encoding to use for a given file, instead of relying on the information that might be present (or not) inside the file. It can be also used in headless mode, e.g. --infilter="MS Excel (encoded)":61 This doesn't affect BIFF8 import, nor the default behavior when not explicitly using the "Choose Encoding" entry. Change-Id: I89d850d7679b81bd399044478fac7a02e8b7680e
* tdf#99850 Menu entry for Select Sheets...Olivier Hallot2016-05-171-1/+1
| | | | | | | Change-Id: I045677d79894791b8add3b79eddac73e3a526d4e Reviewed-on: https://gerrit.libreoffice.org/25035 Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de> Tested-by: Katarina Behrens <Katarina.Behrens@cib.de>
* tdf#64748: added placeholder option to pdf export dialog in WriterOliver Specht2016-05-161-0/+6
| | | | | | | | | | This patch introduces a setting 'Export placeholders' to File/Export as PDF. It works like the related printer setting. Change-Id: I3a11a4601b1244b57e55c9b73b58116d355e105c Reviewed-on: https://gerrit.libreoffice.org/24976 Reviewed-by: Oliver Specht <oliver.specht@cib.de> Tested-by: Oliver Specht <oliver.specht@cib.de>
* tdf#98290 New shortcuts for fullscreen, spellcheck and options (Mac)Yousuf Philips2016-05-091-16/+77
| | | | | | | | | | | | | These shortcut keys are based on Apple's HIG Cmd + Comma - Preferences Cmd + Colon - Spellcheck Cmd + Ctrl + F - Fullscreen Also added a common preferences shortcut for Windows Change-Id: I7ee03ca6ffe52f5a802cade0c9b6245c9799e627 Reviewed-on: https://gerrit.libreoffice.org/22794 Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com> Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
* tdf#98290 Cmd + G as Find Next shortcut for Mac and GnomeYousuf Philips2016-05-091-14/+20
| | | | | | | Change-Id: I8ad22fb9d48a0b9bdaa7981d83afe0097ea44f70 Reviewed-on: https://gerrit.libreoffice.org/23407 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
* tdf#70998 Termchange: Graphic->ImageSamuel Mehrbrodt2016-05-061-11/+11
| | | | | | | Change-Id: I561a4d81a4fa8d5a6cc5f92b11ed480e833dadcc Reviewed-on: https://gerrit.libreoffice.org/24697 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
* tdf#70998 Termchange: Graphic->ImageSamuel Mehrbrodt2016-05-0610-31/+31
| | | | | | | Change-Id: I972dee306bf1af3b85ea09533465faac338b6b3f Reviewed-on: https://gerrit.libreoffice.org/24689 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>