-
Notifications
You must be signed in to change notification settings - Fork 3
Dev Notes
-
The
masterbranch is considered write-once; its commits are sacred, and the history will never be rewritten unless absolutely necessary. The dev branch will be volatile; although it will be the first to receive new commits (which will then be rebased ontomaster), its commits may be rebased/amended at any time. -
The current nodebooru ORM model uses
Imageto represent any uploaded file. Until the model is changed, generated Nativ code will therefore use the termImageas well. In anticipation of an eventual model change, DroidBooru convention will be to use the termFileinstead. For example, a method that queries nodebooru'sImagetable would be calledqueryFiles, notqueryImages. Exception: Since files generally have some sort of thumbnail, it's likely that using the termImagein that context will make more sense, e.g. adisplayImagemethod might be so named because it displays a file's thumbnail.