Skip to content

Commit

Permalink
cz.zeropage.Formiko application ID fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ondratu committed Dec 9, 2019
1 parent 1623262 commit 961bbc0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

Version 1.4.3

* cz.zeropage.Formiko application ID fix

Version 1.4.2

* save_as window fix
Expand Down
1 change: 0 additions & 1 deletion cz.zeropage.Formiko.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"--share=ipc",
"--socket=x11",
"--socket=wayland",
"--socket=session-bus",
"--share=network",
"--filesystem=home",
"--filesystem=/media",
Expand Down
2 changes: 1 addition & 1 deletion formiko/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = "1.4.2"
__version__ = "1.4.3"
__copyright__ = "(c) 2018"
__author__ = "Ondřej Tůma <mcbig@zeropage.cz>"
__url__ = "https://github.com/ondratu/formiko"
Expand Down
4 changes: 2 additions & 2 deletions formiko/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

class Application(GtkApplication):

def __init__(self, application_id="cz.zeropage.formiko"):
def __init__(self, application_id="cz.zeropage.Formiko"):
super(Application, self).__init__(
application_id=application_id,
flags=ApplicationFlags.HANDLES_COMMAND_LINE)
Expand Down Expand Up @@ -71,7 +71,7 @@ def do_command_line(self, command_line):
else:
editor = 'source'

if self.get_application_id() == "cz.zeropage.formiko.vim":
if self.get_application_id() == "cz.zeropage.Formiko.vim":
editor = 'vim'

if editor == 'vim':
Expand Down
2 changes: 1 addition & 1 deletion formiko/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def main():
def main_vim():
signal(SIGINT, handler_exit)
Gdk.threads_init()
app = Application(application_id="cz.zeropage.formiko.vim")
app = Application(application_id="cz.zeropage.Formiko.vim")
return app.run(argv)


Expand Down

0 comments on commit 961bbc0

Please sign in to comment.