├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | hs_err_*.log 2 | .DS_Store 3 | ~* 4 | \#*\# 5 | .*.marks 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ultorg Discussion Forum & Issue Tracker 2 | 3 | This GitHub repo serves as a public issue tracker and discussion forum for the Ultorg Desktop application ([www.ultorg.com](https://www.ultorg.com)). 4 | 5 | Users of Ultorg can report bugs, problems, and feature requests here, via the [Issues](https://github.com/ultorg/public_issues/issues) tab. Eirik will often respond quickly! :slightly_smiling_face: 6 | 7 | You can also post topics in the [Discussions](https://github.com/ultorg/public_issues/discussions) area, for more general comments, questions, and open-ended discussions. 8 | 9 | Welcome! 10 | --------------------------------------------------------------------------------