MyBB Community Forums

Full Version: List of changed files for 1.8
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Generally there has been a list on the Docs site of the changed files for each upgrade. This is very helpful for knowing which files including language files that have been changed. Is there no such list for 1.8?
almost all files are changed in MyBB 1.8
Got it.
Pretty much all files had been updated. Would be a pain for us to redact, and for you to follow.
You can use git to generate a list of changed files (and individual changes) in 1.8 (or between any versions really).

Grab the mybb repo, checkout the latest 1.6 tag and generate a diff against the 1.8 tag.

 /tmp  git clone https://github.com/mybb/mybb.git
Cloning into 'mybb'...
[...]
 /tmp  cd mybb 
 /tmp/mybb  feature  git checkout mybb_1615
Note: checking out 'mybb_1615'.
[...]
 /tmp/mybb ➦ c243e6a  git diff --name-only mybb_1800
[..list of changed files..]
 /tmp/mybb ➦ c243e6a  git diff mybb_1800
[..giant list of all changes..]

As others have said, pretty much everything changed so there isn't a whole lot of value in it this time, but its a bit of FYI for the future.
ohh i see i got the point thanks