Skip to content

Commit eec42e5

Browse files
committed
String slug fix
1 parent 22a2fb0 commit eec42e5

File tree

7 files changed

+10
-11
lines changed

7 files changed

+10
-11
lines changed

scripts/Linux/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/make -f
22

3-
VERSION=2.0.8
3+
VERSION=2.0.9
44
DEBIAN_PACKAGE_VERSION=1
55
LAUNCHPAD_NAME=user
66

scripts/Linux/debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
kathara (__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__

scripts/OSX/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/make -s
22

33
PRODUCT=Kathara
4-
VERSION=2.0.8
4+
VERSION=2.0.9
55
TARGET_DIRECTORY=Output
66
APPLE_DEVELOPER_CERTIFICATE_ID=FakeID
77
ROFF_DIR=../../docs/Roff

scripts/Windows/installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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"

src/Resources/utils.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
import os
66
import re
77
import shutil
8+
import sys
89
import tarfile
910
import tempfile
1011
from io import BytesIO
1112
from itertools import islice
13+
from sys import platform as _platform
1214

13-
import sys
1415
from binaryornot.check import is_binary
15-
from slugify import slugify
16-
from sys import platform as _platform
16+
from slug import slug
1717

1818
from .setting.Setting import EXCLUDED_FILES
1919
from .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

182182
def get_current_user_info():

src/Resources/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CURRENT_VERSION = "2.0.8"
1+
CURRENT_VERSION = "2.0.9"
22

33

44
def parse(version):

src/requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ docker>=4.0.2;
33
coloredlogs>=10.0;
44
terminaltables>=3.1.0;
55
requests>=2.22.0;
6-
python-slugify>=4.0.0;
7-
text-unidecode>=1.3;
6+
slug>=2.0;
87
appscript>=1.1.0; sys_platform == 'darwin'
98
pypiwin32>=223; sys_platform == 'win32'

0 commit comments

Comments
 (0)