Go to file
yochananmarqos a285edb2bd
Update PKGBUILD
update for dependency changes and stable release
2019-08-04 11:20:32 -06:00
.github/ISSUE_TEMPLATE Update issue templates 2019-07-12 09:28:47 +02:00
data fix typo in tutorial file 2019-07-25 00:18:33 +01:00
flatpak Improve inline preview 2019-07-25 00:16:26 +01:00
help Make advanced options match defaults, fix capitalization/typos 2019-04-15 02:50:14 +01:00
po localization 2019-05-18 20:14:38 +02:00
screenshots New mockups 2018-07-17 12:51:45 +02:00
scripts Update shebangs to use env 2019-07-25 00:16:26 +01:00
tests Adjust regex tests for CommonMark, improve inline regexp 2019-07-25 00:18:33 +01:00
uberwriter Add 'url' regexp group to LINK_ALT 2019-07-25 23:57:27 +01:00
.gitignore Add .idea to gitignore 2019-05-01 16:37:57 +01:00
AUTHORS Update license 2019-07-05 20:47:49 +02:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2019-07-18 20:57:45 +02:00
COPYING initial commit sidebar 2014-07-06 22:35:24 +02:00
Makefile Flatpak fixes (ref. #111) 2019-04-19 13:06:13 -05:00
PKGBUILD Update PKGBUILD 2019-08-04 11:20:32 -06:00
README.md Update README.md 2019-05-24 08:30:50 +02:00
lipsum.md update webpage 2018-06-12 20:24:40 +02:00
markdown_test.md initial commit sidebar 2014-07-06 22:35:24 +02:00
requirements.txt Remove non-Python requirements from requirements.txt 2019-05-04 16:34:12 +01:00
setup.py Move bin/uberwriter to uberwriter.in 2019-07-26 00:01:01 +01:00
uberwriter.in Move bin/uberwriter to uberwriter.in 2019-07-26 00:01:01 +01:00

README.md

Please do not theme this app

Uberwriter

About

Uberwriter is a GTK+ based distraction free Markdown editor, mainly developed by Wolf Vollprecht. It uses pandoc as backend for markdown parsing and offers a very clean and sleek user interface.

Install

You can get now UberWriter on Flathub! Get it now

Contributions and localization

If you want to help to localize the project, just join us at Poeditor Any help is appreciated!

Running and building it

To use uberwriter, please make sure you have some dependencies installed:

  • Pandoc, the program used to convert Markdown to basically anything else (the package name should be pandoc in most distributions)
  • Of course, gtk3 etc. needs to be installed as well since this is a gtk application
  • webkit2gtk is also needed for the preview panel
  • Please find these packages on your distribution: python3 python3-regex python3-setuptools python3-levenshtein python3-enchant python3-gi python3-cairo
  • Optional dependencies are texlive for the pdftex module.

You can run UberWriter with ./bin/uberwriter without installing it in the system, but you'll need to install and compile the schemas before: sudo cp data/de.wolfvollprecht.UberWriter.gschema.xml /usr/share/glib-2.0/schemas/de.wolfvollprecht.UberWriter.gschema.xml sudo glib-compile-schemas /usr/share/glib-2.0/schemas

It's also possible to build, run and debug a flatpak package. You'll need flatpak-builder for this:

  • make flatpak-user-install (this installs the Flatpak)
  • flatpak run de.wolfvollprecht.UberWriter

If you can't find Uberwriter after this, it's due to a Flatpak bug. Try to export it to a local repo before installing it:

  • cd flatpak
  • flatpak-builder --repo=org.foo.Uberwriter --force-clean build uberwriter.json
  • flatpak remote-add --no-gpg-verify user org.foo.Uberwriter
  • flatpak install foo de.wolfvollprecht.UberWriter

Where org.foo.repo is the name of your repo, you can change 'foo' with the name you want Then you can run it as before or from your system launcher.

If you want to update an existing installation, just run

  • flatpak update de.wolfvollprecht.UberWriter

You can also debug it with the following: flatpak-builder --run --share=network some_folder_name uberwriter.json sh

If you want to install it using setuptools, simply run python3 setup.py build install