Ticket #2723 (closed task: fixed)
Switch default bindings from ooffice to libreoffice
Reported by: | schuay | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 4.8.7 |
Component: | mc-core | Version: | master |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Branch state: | merged | Votes for changeset: | committed-master |
Description
Switch default bindings from ooffice to libreoffice
LibreOffice? has replaced OpenOffice?.org in most distributions by now,
update bindings accordingly.
Patch is attached.
Attachments
Change History
Changed 13 years ago by schuay
- Attachment 0001-Switch-default-bindings-from-ooffice-to-libreoffice.patch added
comment:1 Changed 13 years ago by mondalaci
Also, AbiWord? seems to be used in mc.ext a lot. Every one of its references should be replaced with libreoffice.
comment:3 Changed 12 years ago by slavazanko
- Blocked By 2118 removed
(In #2118) merged to master:
git log --pretty=oneline e944301..5c6ae10
comment:4 Changed 12 years ago by asy
The proposed patch is not so good:
Open=(ooffice %f &) should be replaced to
Open=if [ -f /usr/bin/loffice ]; then (loffice %f &); else (ooffice %f &); fi
or, possible
Open=if which loffice >/dev/null 2>&1 ; then (loffice %f &); else (ooffice %f &); fi
comment:7 Changed 12 years ago by andrew_b
- Status changed from new to closed
- Votes for changeset set to committed-master
- Branch state changed from no branch to merged
- Milestone changed from Future Releases to 4.8.7
- Keywords libreoffice openoffice removed
- Resolution set to fixed
Applied as part of #2897: [246c072e249738db92e5ecf43d3baa25cf253b9f].