Something went wrong while setting issue due date.
strategic changes
@moerk The repository structure as of now was planned as an intermediate step to get things running more quickly to the current state. Now we are ready for the next step and instead of outsourcing the "src" directory, the "qml" directory is to be outsourced in a standalone repository. For you this will imply some minor changes to get your local repo up-to-date with the upstream repository.
I don't know your local state, so just let me know, if you need help (send mail to nilsfenner@web.de).
EDIT: Done!
If you have made changes, you can do the following:
# cd to the toxer worktree
cd /path/to/Toxer
# important: commit all your changes to a branch based on master! (should be your PR branch)
# now fetch and checkout the new master
git fetch upstream master:master
git checkout master
# check and remove any leftovers (e.g. the src/.git repo)
git clean -dxn # -> replace n (dry-run) with f (force) when ready
# export your branch (the one from above) as a series of commits
mkdir patches
git format-patch <your-branch>..master patches
# fork the ui repo on gitlab from https://gitlab.com/antis81/toxer-ui
git clone git@gitlab.com:moerk/toxer-ui.git qml
# create the PR-branch
cd qml
git checkout -b <your-branch> master
# and finally import the patches to the new branch
git am ../patches
# That's all folks!