Hrev numbers of beta releases

is there a list of the hrev numbers they was taken for the beta releases??

R1 beta 1
R1 beta 2
R1 beta 3

You can use git to get that information from inside of a checkout of Haiku. Like…

$ git describe remotes/origin/r1beta1 --match "hrev*" --tags
hrev52295-133-gedfc996830

shows that it was based on hrev52295 plus 133 other commits on top. The others…

$ git describe remotes/origin/r1beta2 --match "hrev*" --tags
hrev54154-123-g1132ecca07
$ git describe remotes/origin/r1beta3 --match "hrev*" --tags
hrev55181-62-gc8394c8111
4 Likes

Thanks

add the 133 to 52295 for beta 1 is needed or is the start number 52295?

Those 133 other commits are various things. Some of them are fixes that have been “cherry-picked” from the main branch so that they make it into the release. There are also “housekeeping” commits for each release(changing the debug level, changing the os version string, etc…). So, it’s 52295 plus a few fixes from other later hrevs.

1 Like

Ok understand

Thanks

Not sure if it’s accurate or not but the Wikipedia page lists these on it Haiku (operating system) - Wikipedia

@apgreimann

Thanks