perf: Client version

This commit is contained in:
feng
2025-11-20 16:32:58 +08:00
committed by Jiangjie Bai
parent 9e150b7fbe
commit f50250dedb
2 changed files with 2 additions and 2 deletions

View File

@@ -104,7 +104,7 @@ class ResourceDownload(TemplateView):
OPENSSH_VERSION=v9.4.0.0
TINKER_VERSION=v0.1.6
VIDEO_PLAYER_VERSION=0.6.0
CLIENT_VERSION=v3.1.0
CLIENT_VERSION=v4.0.0
"""
def get_meta_json(self):

View File

@@ -222,4 +222,4 @@ class ClientVersionView(APIView):
permission_classes = (AllowAny,)
def get(self, request, *args, **kwargs):
return Response(['3.1.0'], status=status.HTTP_200_OK)
return Response(['4.0.0'], status=status.HTTP_200_OK)