File tree Expand file tree Collapse file tree 7 files changed +10
-11
lines changed Expand file tree Collapse file tree 7 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 11# !/usr/bin/make -f
22
3- VERSION =2.0.8
3+ VERSION =2.0.9
44DEBIAN_PACKAGE_VERSION =1
55LAUNCHPAD_NAME =user
66
Original file line number Diff line number Diff line change 11kathara (__VERSION__-__DEBIAN_PACKAGE_VERSION____UBUNTU_VERSION__) __UBUNTU_VERSION__; urgency=low
22
3- * Fix slugify dependency.
3+ * Fix slug dependency.
44
55 -- Lorenzo Ariemma <******@gmail.com> __DATE__
Original file line number Diff line number Diff line change 11# !/usr/bin/make -s
22
33PRODUCT =Kathara
4- VERSION =2.0.8
4+ VERSION =2.0.9
55TARGET_DIRECTORY =Output
66APPLE_DEVELOPER_CERTIFICATE_ID =FakeID
77ROFF_DIR =../../docs/Roff
Original file line number Diff line number Diff line change 22; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33
44#define MyAppName " Kathara"
5- #define MyAppVersion " 2.0.8 "
5+ #define MyAppVersion " 2.0.9 "
66#define MyAppPublisher " Kathara Team"
77#define MyAppURL " http://www.kathara.org"
88#define MyAppExeName " kathara.exe"
Original file line number Diff line number Diff line change 55import os
66import re
77import shutil
8+ import sys
89import tarfile
910import tempfile
1011from io import BytesIO
1112from itertools import islice
13+ from sys import platform as _platform
1214
13- import sys
1415from binaryornot .check import is_binary
15- from slugify import slugify
16- from sys import platform as _platform
16+ from slug import slug
1717
1818from .setting .Setting import EXCLUDED_FILES
1919from .trdparty .consolemenu import PromptUtils , Screen
@@ -176,7 +176,7 @@ def windows():
176176 import getpass
177177 return getpass .getuser ()
178178
179- return slugify (exec_by_platform (unix , windows , unix ))
179+ return slug (exec_by_platform (unix , windows , unix ))
180180
181181
182182def get_current_user_info ():
Original file line number Diff line number Diff line change 1- CURRENT_VERSION = "2.0.8 "
1+ CURRENT_VERSION = "2.0.9 "
22
33
44def parse (version ):
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ docker>=4.0.2;
33coloredlogs >= 10.0 ;
44terminaltables >= 3.1.0 ;
55requests >= 2.22.0 ;
6- python-slugify >= 4.0.0 ;
7- text-unidecode >= 1.3 ;
6+ slug >= 2.0 ;
87appscript >= 1.1.0 ; sys_platform == 'darwin'
98pypiwin32 >= 223 ; sys_platform == 'win32'
You can’t perform that action at this time.
0 commit comments