Skip to content

Commit 641bd4b

Browse files
committed
removed beta from version
1 parent fa01531 commit 641bd4b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/main/kotlin/imgui/imgui.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,11 @@ object ImGui :
111111

112112
// Version
113113
val build = 0
114-
val beta = 0
115114
/** get the compiled version string e.g. "1.23" (essentially the compiled value for IMGUI_VERSION) */
116-
val version = "1.69.$build-$beta"
115+
val version = "1.69.$build"
117116
/** Integer encoded as XYYZZ for use in #if preprocessor conditionals.
118117
Work in progress versions typically starts at XYY99 then bounce up to XYY00, XYY01 etc. when release tagging happens) */
119-
val versionNum = 16900 + build + beta / 10f
118+
val versionNum = 16900 + build
120119
}
121120

122121
var ptrIndices = 0

0 commit comments

Comments
 (0)