News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

What does the SVN log prefix means?

Started by ollydbg, December 15, 2009, 04:16:11 PM

Previous topic - Next topic

ollydbg

When I view the SVN Log Message, I always find some prefix, such as


* cc plugin: fixed bug with broken CC after....
- cc plugin: fixed ooops.


So, my question is: what does "*" and "-" stands for?
Thanks. :D
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

MortenMacFly

Quote from: ollydbg on December 15, 2009, 04:16:11 PM
So, my question is: what does "*" and "-" stands for?
Our internal rule for a SVN log entry (although sometimes forgotten) is like this:
* / - differs between major and minor (cosmetic) changes, whereas major usually means fixing bugs and/or implementing features.
This is followed by the component (plugin) affected, if not the core (SDK) itself.
Finally the description of what has actually changed is appended.

We did this with the following in mind: If you keep that notation you can quickly automise the creation of a changelog that only contains major changes. This is useful for e.g. presenting differences between releases. Hence for e.g. nightlies all entries are important.

HEy - this should actually make it into the C::B WiKi... ;-)
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]