Compare commits

..

No commits in common. "main" and "v1.0" have entirely different histories.
main ... v1.0

2 changed files with 5 additions and 8 deletions

View file

@ -631,9 +631,8 @@ to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found. the "copyright" line and a pointer to where the full notice is found.
X-UnruledExport: A plugin to directly export unruled PDF from Xournal++ <one line to give the program's name and a brief idea of what it does.>
using a shortcut. Copyright (C) <year> <name of author>
Copyright (C) 2023 Sayantan Santra
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -653,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode: notice like this when it starts in an interactive mode:
X-UnruledExport Copyright (C) 2023 Sayantan Santra <program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details. under certain conditions; type `show c' for details.

View file

@ -4,12 +4,10 @@ A plugin to directly export unruled PDF from Xournal++ using a shortcut.
# Usage # Usage
Create a directory `/usr/share/xournalapp/plugins/UnruledExport/` and place `plugin.ini` and `main.lua` in it. Then enable the plugin "ExportUnruled" in the Plugin menu and restart. There should be a new option in Plugin menu now for exporting directly as unruled PDF and you can also do it using the shortcut <kbd>Alt</kbd>+<kbd>U</kbd>. Create a directory `/usr/share/xournalapp/plugins/UnruledExport/` and place `plugin.ini` and `main.lua` in it. Then enable the plugin "ExportUnruled" in the Plugin menu and restart. There should be a new option in Plugin menu now for exporting directly as unruled PDF and you can also do it using the shortcut Alt+E.
# Notes # Notes
- Doesn't work with the latest stable release of Xournal++ yet, as the `export` api hasn't shipped ([relevant PR](https://github.com/xournalpp/xournalpp/pull/3566)). You'll need to build from source in order to use it.
- [Xournal++](https://github.com/xournalpp/xournalpp/) is an excellent app for hand note-taking. - [Xournal++](https://github.com/xournalpp/xournalpp/) is an excellent app for hand note-taking.
- This is basically a modified version of [Export Plugin](https://github.com/xournalpp/xournalpp/tree/master/plugins/Export). - This is basically a modified version of [Export Plugin](https://github.com/xournalpp/xournalpp/tree/master/plugins/Export).