Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
9214e36b
Commit
9214e36b
authored
Feb 06, 2021
by
Adrian Georgescu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed decoding system paths
parent
b2cbc4e8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
resources.py
blink/resources.py
+3
-3
No files found.
blink/resources.py
View file @
9214e36b
...
@@ -42,7 +42,7 @@ class ApplicationData(object):
...
@@ -42,7 +42,7 @@ class ApplicationData(object):
from
Foundation
import
NSApplicationSupportDirectory
,
NSSearchPathForDirectoriesInDomains
,
NSUserDomainMask
from
Foundation
import
NSApplicationSupportDirectory
,
NSSearchPathForDirectoriesInDomains
,
NSUserDomainMask
cls
.
_cached_directory
=
os
.
path
.
join
(
NSSearchPathForDirectoriesInDomains
(
NSApplicationSupportDirectory
,
NSUserDomainMask
,
True
)[
0
],
'Blink'
)
cls
.
_cached_directory
=
os
.
path
.
join
(
NSSearchPathForDirectoriesInDomains
(
NSApplicationSupportDirectory
,
NSUserDomainMask
,
True
)[
0
],
'Blink'
)
elif
platform
.
system
()
==
'Windows'
:
elif
platform
.
system
()
==
'Windows'
:
cls
.
_cached_directory
=
os
.
path
.
join
(
os
.
environ
[
'APPDATA'
]
.
decode
(
sys
.
getfilesystemencoding
())
,
'Blink'
)
cls
.
_cached_directory
=
os
.
path
.
join
(
os
.
environ
[
'APPDATA'
],
'Blink'
)
else
:
else
:
cls
.
_cached_directory
=
Path
(
'~/.blink'
)
.
normalized
cls
.
_cached_directory
=
Path
(
'~/.blink'
)
.
normalized
return
DirectoryContextManager
(
cls
.
_cached_directory
)
return
DirectoryContextManager
(
cls
.
_cached_directory
)
...
@@ -73,9 +73,9 @@ class Resources(object):
...
@@ -73,9 +73,9 @@ class Resources(object):
else
:
else
:
application_directory
=
binary_directory
application_directory
=
binary_directory
if
os
.
path
.
exists
(
os
.
path
.
join
(
application_directory
,
'resources'
,
'blink.ui'
)):
if
os
.
path
.
exists
(
os
.
path
.
join
(
application_directory
,
'resources'
,
'blink.ui'
)):
cls
.
_cached_directory
=
os
.
path
.
join
(
application_directory
,
'resources'
)
.
decode
(
sys
.
getfilesystemencoding
())
cls
.
_cached_directory
=
os
.
path
.
join
(
application_directory
,
'resources'
)
else
:
else
:
cls
.
_cached_directory
=
os
.
path
.
join
(
application_directory
,
'share'
,
'blink'
)
.
decode
(
sys
.
getfilesystemencoding
())
cls
.
_cached_directory
=
os
.
path
.
join
(
application_directory
,
'share'
,
'blink'
)
return
DirectoryContextManager
(
cls
.
_cached_directory
)
return
DirectoryContextManager
(
cls
.
_cached_directory
)
@
classmethod
@
classmethod
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment