Skip to content

Commit

Permalink
Merge pull request #770 from ONLYOFFICE/release/v7.6.0
Browse files Browse the repository at this point in the history
Release/v7.6.0
  • Loading branch information
K0R0L authored Nov 28, 2023
2 parents fa15db7 + 3e9b233 commit 188ad00
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 6 deletions.
11 changes: 11 additions & 0 deletions scripts/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1649,3 +1649,14 @@ def copy_dictionaries(src, dst, is_hyphen = True, is_spell = True):
delete_file(dst + "/uk_UA/th_uk_UA.idx")

return

def check_module_version(actual_version, clear_func):
module_file = "./module.version"
current_module_version = readFile(module_file)
if (actual_version == current_module_version):
return
if is_file(module_file):
delete_file(module_file)
writeFile(module_file, actual_version)
clear_func()
return
16 changes: 10 additions & 6 deletions scripts/license_checker/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,6 @@
"startMultiComm": "/*",
"endMultiComm": " */",
"prefix": " *",
"ignoreListDir": [
"server/FileConverter/bin"
],
"ignoreListDirName": [
"node_modules"
]
Expand All @@ -194,9 +191,16 @@
"startMultiComm": "/*",
"endMultiComm": " */",
"prefix": " *",
"ignoreListDir": [
"server/FileConverter/bin"
],
"ignoreListDirName": [
"node_modules"
]
},
{
"dir": "server-license-key",
"fileExtensions": [".js"],
"startMultiComm": "/*",
"endMultiComm": " */",
"prefix": " *",
"ignoreListDirName": [
"node_modules"
]
Expand Down

0 comments on commit 188ad00

Please sign in to comment.