I am confused; the github repo clearly says version 0.29.1 is supported (and this was a recent edit too), but the android Play Store description says up to 0.27.1 (not 0.29) and the actual app also fails to sync to my server that's version 0.29.1, showing "Unsupported Memos version" error dialog.
Is this a typo on the github description? Or does the app have a bug where it's wrongly flagging unsupported Memos server version?
Edit: Looking here I'm wondering if the app store versions weren't just updated yet
object MemosVersionSupport {
const val MEMOS_CANARY_VERSION_NAME = "canary"
const val MEMOS_V0_MIN_VERSION_NAME = "0.21.0"
const val MEMOS_V1_MIN_VERSION_NAME = "0.27.0"
const val MEMOS_V1_MAX_VERSION_NAME = "0.29.1"
val MEMOS_V0_MIN_VERSION = SemVer(0, 21, 0)
val MEMOS_V1_MIN_VERSION = SemVer(0, 27, 0)
val MEMOS_V1_MAX_VERSION = SemVer(0, 29, 1)
fun supportedVersionsMessage(context: Context): String {
return context.getString(
R.string.memos_supported_versions,
MEMOS_V0_MIN_VERSION_NAME,
MEMOS_V1_MIN_VERSION_NAME,
MEMOS_V1_MAX_VERSION_NAME,
)
}
}
I am confused; the github repo clearly says version 0.29.1 is supported (and this was a recent edit too), but the android Play Store description says up to 0.27.1 (not 0.29) and the actual app also fails to sync to my server that's version 0.29.1, showing "Unsupported Memos version" error dialog.
Is this a typo on the github description? Or does the app have a bug where it's wrongly flagging unsupported Memos server version?
Edit: Looking here I'm wondering if the app store versions weren't just updated yet