Some work about adaptive color scheme for Web UI (PR #19901) http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

2.4 KiB

Filing an issue

Must read

  • If you aren't sure, you can ask on the forum or read our wiki first.
  • Do a quick search. Others might already reported the issue.
  • Write in English!
  • Provide version information: (You can find version numbers at menu Help -> About -> Libraries)
    qBittorrent:
    Qt:
    libtorrent:
    boost:
    OS version:
    
  • Provide steps to reproduce the problem, it will be easier to pinpoint the fault.
  • Screenshots! A screenshot is worth a thousand words. just upload it. (How?)

Good to know

  • Be patient. The dev team is small and resource limited. Devs finding their free time, analyzing the problem and fixing the issue, it all takes time. 🕒
  • If you can code, why not become a contributor by fixing the issue and open a pull request? 😉
  • Harsh words or threats won't help your situation. What's worse, your complain will (very likely) to be ignored. 😨

Opening a pull request

Must read

  • Read our coding guidelines. There are some scripts to help you: uncrustify script, astyle script, (related thread).
  • Keep the title short and provide a clear description about what your pull request does.
  • Provide screenshots for UI related changes.
  • Keep your git commit history clean and precise. Commits like xxx fixup should not appear.
  • If your commit fix a reported issue (for example #4134), add the following message to the commit Closes #4134.. Example here.

Good to know

  • Search pull request history! Others might already implemented your idea and is waiting to be merged (or got rejected already). Save your precious time by doing a search first.
  • When resolving merge conflicts, do git rebase <target_branch_name>, don't do git pull. Then you can start fixing the conflicts. Here is a good explanation: link.