-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mac compability #8
base: master
Are you sure you want to change the base?
Conversation
…into mac_compability
iquail/controller/__init__.py
Outdated
try: | ||
from .controller_tkinter import ControllerTkinter | ||
except: | ||
print("No display found or tkinter missing, console mode enabled !") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Le problème c'est que si on importe pas, plus pas il y aura une ref non trouvé, et aussi les args de controller_tkinter sont pas les mêmes que controller console, donc c'est pas vraiment interchangeable pour le moment
…into mac_compability
Added ds store to the gitignore
iquail/installer/installer_osx.py
Outdated
def _build_launcher(self): | ||
with open(os.path.join(self._bundle_install_path, 'Contents', 'MacOS', 'launcher'), 'w') as f: | ||
shebang = '#!/usr/bin/env bash\n' | ||
content = '/usr/bin/env python3 ~/.iquail/' + self.uid + '/iquail_launcher.py' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
c'est toujours hardcodé
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resolved dans le last commit
…into mac_compability
No description provided.