mirror of https://github.com/EdgeVPNio/tools.git
Rename version config file
parent
7a1064898a
commit
885efa24c1
|
@ -28,8 +28,15 @@
|
||||||
# CONTROL_VER = 6
|
# CONTROL_VER = 6
|
||||||
# OFFICIAL = True
|
# OFFICIAL = True
|
||||||
|
|
||||||
|
|
||||||
MAJOR_VER = 23
|
MAJOR_VER = 23
|
||||||
MINOR_VER = 3
|
MINOR_VER = 3
|
||||||
REVISION_VER = 3
|
REVISION_VER = 3
|
||||||
CONTROL_VER = 6
|
CONTROL_VER = 6
|
||||||
OFFICIAL = False
|
OFFICIAL = False
|
||||||
|
|
||||||
|
# MAJOR_VER = 23
|
||||||
|
# MINOR_VER = 3
|
||||||
|
# REVISION_VER = 4
|
||||||
|
# CONTROL_VER = 6
|
||||||
|
# OFFICIAL = True
|
|
@ -1,16 +1,11 @@
|
||||||
import argparse
|
import argparse
|
||||||
import fileinput
|
|
||||||
import os
|
import os
|
||||||
import shutil
|
|
||||||
import subprocess
|
|
||||||
import sys
|
|
||||||
import time
|
|
||||||
|
|
||||||
from tool_config import CONTROL_VER as control
|
from config import CONTROL_VER as control
|
||||||
from tool_config import MAJOR_VER as major
|
from config import MAJOR_VER as major
|
||||||
from tool_config import MINOR_VER as minor
|
from config import MINOR_VER as minor
|
||||||
from tool_config import OFFICIAL as official
|
from config import OFFICIAL as official
|
||||||
from tool_config import REVISION_VER as revision
|
from config import REVISION_VER as revision
|
||||||
|
|
||||||
|
|
||||||
class Versioning:
|
class Versioning:
|
||||||
|
|
Loading…
Reference in New Issue