-
Notifications
You must be signed in to change notification settings - Fork 166
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
Add support for creating ODF files by default #255
base: develop
Are you sure you want to change the base?
Conversation
- move comparison table lower - update the table in accordance with 5.5 - add features sections - add info on IE
Update README.md
45de8d7
to
2c0625a
Compare
Closes ONLYOFFICE#224 This adds an option for administrators to set that makes new files be created in ODF formats rather than OOXML formats. New asset files were created with the following command from the assets directory ```bash for i in *; do (cd $i && libreoffice6.3 --convert-to odt new.docx) (cd $i && libreoffice6.3 --convert-to odp new.pptx) (cd $i && libreoffice6.3 --convert-to ods new.xlsx) done ``` Installed Libreoffice version for the script was `LibreOffice 6.3.5.2 dd0751754f11728f69b42ee2af66670068624673` Signed-off-by: Gary Kim <[email protected]>
2c0625a
to
fa96289
Compare
Should I rebase on top of the force pushed changes? |
Any progress on this? I'm looking for the same functionality, as clicking "new document" and typing test.odt creates test.odt.docx rather than test.odt. |
|
It is working but it doesn't seem to be getting attention from the maintainers. |
I'm sorry, I'm not willing to sign a CLA. When this was first created, there was no CLA on this repo so I wrote this feature but as a general rule, I don't sign CLAs that require giving more rights to one party than another. |
I totally agree with you on the CLA. |
I didn't do anything ;) |
Closes #224
@LinneyS Could you take a look when you have some time?
New asset files were created with the following command from the assets directory
Installed Libreoffice version for the script was
LibreOffice 6.3.5.2 dd0751754f11728f69b42ee2af66670068624673
in case you want to make sure it is reproducible.I'm assuming you want this opened against the
develop
branch? Not really sure, there doesn't seem to be contributing documentation here?Signed-off-by: Gary Kim [email protected]