sgt-launcher-0.2.4/0000775000175000017500000000000013263502320016041 5ustar bluesabrebluesabre00000000000000sgt-launcher-0.2.4/sgtlauncher/0000775000175000017500000000000013263502320020360 5ustar bluesabrebluesabre00000000000000sgt-launcher-0.2.4/sgtlauncher/__init__.py0000664000175000017500000000264313263361036022505 0ustar bluesabrebluesabre00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranties of # MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR # PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program. If not, see . import optparse import sys from locale import gettext as _ from sgtlauncher import SgtLauncher from sgtlauncher_lib import set_up_logging, get_version def parse_options(): """Support for command line options""" parser = optparse.OptionParser(version="%%prog %s" % get_version()) parser.add_option( "-v", "--verbose", action="count", dest="verbose", help=_("Show debug messages")) (options, args) = parser.parse_args() set_up_logging(options) def main(): """Main application for SGT Launcher""" parse_options() # Run the application. app = SgtLauncher.MyApplication() exit_status = app.run(None) sys.exit(exit_status) sgt-launcher-0.2.4/sgtlauncher/SgtSocketLauncher.py0000664000175000017500000001111613263361036024331 0ustar bluesabrebluesabre00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranties of # MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR # PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program. If not, see . import struct import subprocess import sys import time import xcffib import xcffib.xproto from gi.repository import Gtk class SgtSocketLauncher: def __init__(self): self.socket = Gtk.Socket.new() self.socket.set_can_focus(True) self.socket.set_focus_on_click(True) self.socket.set_receives_default(True) def get_socket(self): return self.socket def launch(self, path, wm_class=None): if wm_class is None: wm_class = path retry_count = 10 retry_timer = 0.05 proc = subprocess.Popen([path]) count = 0 window_id = 0 while window_id == 0: proc.poll() if proc.returncode is not None: return False window_id = get_window_id("_NET_WM_PID", proc.pid) if window_id == 0: window_id = get_window_id("WM_CLASS", wm_class) if window_id == 0: count += 1 if count == retry_count: return False time.sleep(retry_timer) count = 0 while True: proc.poll() if proc.returncode is not None: return False plug_count = 0 while self.socket.get_plug_window() is None: self.socket.add_id(window_id) if self.socket.get_plug_window() is None: plug_count += 1 if plug_count == retry_count: return False time.sleep(retry_timer) if self.socket.get_plug_window().get_xid() == window_id: proc.poll() if proc.returncode is not None: return return True count += 1 if count == retry_count: return False time.sleep(retry_timer) return False def get_window_id(prop, value): window_id = 0 c = xcffib.connect() root = c.get_setup().roots[0].root _NET_CLIENT_LIST = c.core.InternAtom(True, len('_NET_CLIENT_LIST'), '_NET_CLIENT_LIST').reply().atom raw_clientlist = c.core.GetProperty(False, root, _NET_CLIENT_LIST, xcffib.xproto.GetPropertyType.Any, 0, 2 ** 32 - 1).reply() clientlist = get_property_value(raw_clientlist) cookies = {} for ident in clientlist: if prop in dir(xcffib.xproto.Atom): atom = getattr(xcffib.xproto.Atom, prop) else: atom = c.core.InternAtom(True, len(prop), prop).reply().atom cookies[ident] = c.core.GetProperty(False, ident, atom, xcffib.xproto.GetPropertyType.Any, 0, 2 ** 32 - 1) for ident in cookies: winclass = get_property_value(cookies[ident].reply()) if isinstance(winclass, list): if value in winclass: window_id = ident break c.disconnect() return window_id def get_property_value(property_reply): assert isinstance(property_reply, xcffib.xproto.GetPropertyReply) if property_reply.format == 8: if 0 in property_reply.value: ret = [] s = '' for o in property_reply.value: if o == 0: ret.append(s) s = '' else: s += chr(o) else: ret = str(property_reply.value.buf().replace(b'\x00', b'\t'), "utf-8") ret = ret.split("\t") return ret elif property_reply.format in (16, 32): return list(struct.unpack('I' * property_reply.value_len, property_reply.value.buf())) return None sgt-launcher-0.2.4/sgtlauncher/SgtLauncher.py0000664000175000017500000003776013263361036023175 0ustar bluesabrebluesabre00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranties of # MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR # PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program. If not, see . import gi import os from locale import gettext as _ gi.require_version('Gtk', '3.0') gi.require_version('Gdk', '3.0') from gi.repository import Gdk # nopep8 from gi.repository import GdkPixbuf # nopep8 from gi.repository import Gtk # nopep8 from gi.repository import Gio # nopep8 from gi.repository import GLib # nopep8 from gi.repository import Pango # nopep8 from . import SgtSocketLauncher # nopep8 import sgtlauncher_lib # nopep8 class MyWindow(Gtk.ApplicationWindow): def __init__(self, app, appname, launchers): self.appname = appname self.title = _("SGT Puzzles Collection") Gtk.Window.__init__(self, title=self.title, application=app) self.set_title(self.title) self.set_role(self.title) self.set_startup_id("sgt-launcher") self.set_default_icon_name(appname) self.set_default_size(800, 600) self.set_position(Gtk.WindowPosition.CENTER) self.launcher = SgtSocketLauncher.SgtSocketLauncher() self.loading = False self.load_id = 0 self.load_retry = 0 self.load_title = "" self.socket = self.launcher.get_socket() self.socket.connect("plug_removed", self.socket_disconnect) self.socket.connect("plug_added", self.socket_connect) display = Gdk.Display.get_default() seat = display.get_default_seat() self.keyboard = seat.get_keyboard() self.setup_ui(launchers) def setup_ui(self, launchers): """Initialize the headerbar, actions, and individual views""" self.hb = Gtk.HeaderBar() self.hb.props.show_close_button = True self.hb.props.title = self.title self.set_titlebar(self.hb) self.stack = Gtk.Stack.new() self.add(self.stack) self.setup_action_buttons() self.setup_launcher_view(launchers) self.setup_loading_view() self.setup_game_view() def setup_action_buttons(self): """Initialize the in-game action buttons""" # Button definitions buttons = { "new-game": (_("New Game"), "document-new-symbolic", 57, Gdk.KEY_n), "undo": (_("Undo"), "edit-undo-symbolic", 30, Gdk.KEY_u), "redo": (_("Redo"), "edit-redo-symbolic", 27, Gdk.KEY_r) } # Setup Action buttons self.action_buttons = {} for key in list(buttons.keys()): # Create the button self.action_buttons[key] = Gtk.Button.new_from_icon_name( buttons[key][1], Gtk.IconSize.LARGE_TOOLBAR) # Add a tooltip self.action_buttons[key].set_tooltip_text(buttons[key][0]) # Enable hiding self.action_buttons[key].set_no_show_all(True) # Connect the clicked event self.action_buttons[key].connect("clicked", self.on_keyboard_button_click, buttons[key][2], buttons[key][3]) # Add the buttons self.hb.pack_start(self.action_buttons["new-game"]) buttonbox = Gtk.Box.new(Gtk.Orientation.HORIZONTAL, 0) ctx = buttonbox.get_style_context() ctx.add_class("linked") buttonbox.pack_start(self.action_buttons["undo"], False, False, 0) buttonbox.pack_start(self.action_buttons["redo"], False, False, 0) self.hb.pack_start(buttonbox) def setup_launcher_view(self, launchers): """Initialize the launcher view with the games""" # Populate the model (name, comment, icon_name, exe) listmodel = Gtk.ListStore(str, str, str, str) for launcher in launchers: listmodel.append(launcher) # Initialize the treeview view = Gtk.TreeView(model=listmodel) view.set_headers_visible(False) # Create and pack the custom column col = Gtk.TreeViewColumn.new() # Pixbuf: icon renderer pixbuf = Gtk.CellRendererPixbuf() pixbuf.props.stock_size = Gtk.IconSize.DIALOG col.pack_start(pixbuf, False) col.add_attribute(pixbuf, "icon-name", 2) # Text: label renderer text = Gtk.CellRendererText() text.props.wrap_mode = Pango.WrapMode.WORD col.pack_start(text, True) col.add_attribute(text, "text", 0) # Draw custom cell col.set_cell_data_func(text, self.treeview_cell_text_func, None) col.set_cell_data_func(pixbuf, self.treeview_cell_pixbuf_func, None) # Add the column and enable typeahead view.append_column(col) view.set_search_column(1) view.connect("row-activated", self.on_activated) # Add the treeview to a scrolled window scrolled = Gtk.ScrolledWindow.new() scrolled.add(view) self.stack.add_named(scrolled, "launcher") def setup_loading_view(self): """Initialize the loading view used to correctly embed the window""" parent_box = Gtk.Box.new(Gtk.Orientation.VERTICAL, 0) child_box = Gtk.Box.new(Gtk.Orientation.VERTICAL, 6) self.launching_image = Gtk.Image.new() self.launching_title = Gtk.Label.new() self.launching_label = Gtk.Label.new(_("Please wait...")) spinner = Gtk.Spinner.new() spinner.start() child_box.pack_start(self.launching_image, False, False, 0) child_box.pack_start(self.launching_title, False, False, 0) child_box.pack_start(self.launching_label, False, False, 0) child_box.pack_start(spinner, False, False, 0) parent_box.set_center_widget(child_box) self.stack.add_named(parent_box, "loading") def setup_game_view(self): """Initialize the game view where the game is embedded""" self.stack.add_named(self.socket, "game") # Callables def hide_actions(self): """Hide the in-game action buttons""" for key in list(self.action_buttons.keys()): self.action_buttons[key].hide() def show_actions(self): """Show the in-game action buttons""" for key in list(self.action_buttons.keys()): self.action_buttons[key].show() def set_subtitle(self, title): """Set the window subtitle""" self.hb.set_subtitle(title) def launch(self, title, icon_name, path): """Launch the specified application""" subtitle = _("Loading %s") % title if os.path.isfile(icon_name): self.launching_image.set_from_file(icon_name) else: self.launching_image.set_from_icon_name(icon_name, Gtk.IconSize.DIALOG) self.launching_title.set_markup("%s" % title) self.set_view("loading", icon_name, subtitle) self.load_icon = icon_name self.load_title = title self.load_retry = 0 self.loading_path = path self.threaded_launch() def threaded_launch(self): """ Run the application launch in a separate thread, ensuring the window is correctly embedded """ if self.loading: # Application is successfully launched, switch to the game view self.loading = False self.load_retry = 0 # Stop the load thread GLib.source_remove(self.load_id) self.load_id = 0 self.set_view("game", self.load_icon, self.load_title) self.grab_focus() return True if self.load_retry < 10: # Application is not fully launched yet self.loading = True self.launcher.launch(self.loading_path) self.load_id = GLib.timeout_add(1000, self.threaded_launch) self.grab_focus() else: # Application failed to load, return to the launcher self.loading = False self.load_retry = 0 self.set_view("launcher") self.grab_focus() return True return False def set_view(self, name, icon_name=None, subtitle=None): """Change the view, setting the icon name and subtitle""" if name is "launcher": self.stack.set_transition_type(Gtk.StackTransitionType.OVER_RIGHT) self.hide_actions() if name is "loading": self.stack.set_transition_type(Gtk.StackTransitionType.OVER_LEFT) self.hide_actions() if name is "game": self.stack.set_transition_type(Gtk.StackTransitionType.OVER_LEFT) self.show_actions() title = self.title if icon_name is None: icon_name = self.appname if subtitle is None: subtitle = "" else: title = "%s - %s" % (title, subtitle) if os.path.isfile(icon_name): self.set_default_icon_from_file(icon_name) else: self.set_default_icon_name(icon_name) self.set_subtitle(subtitle) self.stack.set_visible_child_name(name) self.get_window().set_title(title) if name is "game": self.socket.grab_focus() # Events def socket_connect(self, socket): """Embedded window connected""" self.socket = self.launcher.get_socket() return True def socket_disconnect(self, socket): """Embedded window disconnected""" if self.loading: self.loading = False self.load_retry += 1 GLib.source_remove(self.load_id) self.load_id = GLib.timeout_add(1000, self.threaded_launch) else: self.set_view("launcher") return True def on_keyboard_button_click(self, button, keycode, keyval): """Send keypress to embedded window on button click""" self.socket.grab_focus() event = Gdk.Event.new(Gdk.EventType.KEY_PRESS) event.keyval = keyval event.hardware_keycode = keycode event.window = self.get_window() event.set_device(self.keyboard) event.put() def treeview_cell_text_func(self, col, renderer, model, treeiter, data): """Render the treeview row""" name, comment, icon_name, exe = model[treeiter][:] markup = "%s\n%s" % (name, comment) renderer.set_property('markup', markup) return def treeview_cell_pixbuf_func(self, col, renderer, model, treeiter, data): """Render the treeview row""" name, comment, icon_name, exe = model[treeiter][:] if os.path.isfile(icon_name): pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size(icon_name, 48, 48) renderer.set_property("pixbuf", pixbuf) return def on_activated(self, widget, treeiter, col): """Launch the selected application""" model = widget.get_model() name, comment, icon_name, exe = model[treeiter][:] self.launch(name, icon_name, exe) class MyAboutDialog(Gtk.AboutDialog): def __init__(self, appname, title, parent): Gtk.AboutDialog.__init__(self) self.set_program_name(title) self.set_transient_for(parent) self.set_logo_icon_name(appname) self.set_modal(True) self.set_authors([ "Sean Davis (SGT Puzzles)", "Simon Tatham (Simon Tatham's Portable Puzzle Collection)" ]) self.set_copyright( "SGT Puzzles\n" "© 2016-2017 Sean Davis\n" "\n" "Simon Tatham's Portable Puzzle Collection\n" "© 2004-2012 Simon Tatham" ) self.set_artists([ "Pasi Lallinaho" ]) self.set_website("https://launchpad.net/sgt-launcher") self.set_website_label("SGT Puzzle Launcher on Launchpad") self.set_license_type(Gtk.License.GPL_3_0) self.set_version(sgtlauncher_lib.get_version()) self.connect("response", self.on_response) def on_response(self, dialog, response): self.hide() self.destroy() class MyApplication(Gtk.Application): APPNAME = "sgt-launcher" TITLE = _("SGT Puzzles Collection") GAMES = [ 'blackbox', 'bridges', 'cube', 'dominosa', 'fifteen', 'filling', 'flip', 'flood', 'galaxies', 'guess', 'inertia', 'keen', 'lightup', 'loopy', 'magnets', 'map', 'mines', 'net', 'netslide', 'palisade', 'pattern', 'pearl', 'pegs', 'range', 'rect', 'samegame', 'signpost', 'singles', 'sixteen', 'slant', 'solo', 'tents', 'towers', 'tracks', 'twiddle', 'undead', 'unequal', 'unruly', 'untangle' ] def __init__(self): Gtk.Application.__init__(self) def do_activate(self): launchers = self.get_launchers() self.win = MyWindow(self, self.APPNAME, launchers) self.win.show_all() def do_startup(self): Gtk.Application.do_startup(self) menu = Gio.Menu() # menu.append(_("Preferences"), "app.show-preferences") menu.append(_("About"), "app.about") menu.append(_("Quit"), "app.quit") self.set_app_menu(menu) prefs_action = Gio.SimpleAction.new("show-preferences", None) prefs_action.connect("activate", self.prefs_cb) self.add_action(prefs_action) about_action = Gio.SimpleAction.new("about", None) about_action.connect("activate", self.about_cb) self.add_action(about_action) quit_action = Gio.SimpleAction.new("quit", None) quit_action.connect("activate", self.quit_cb) self.add_action(quit_action) def prefs_cb(self, action, parameter): print("Not implemented") def about_cb(self, action, parameter): """Show the about dialog""" about = MyAboutDialog(self.APPNAME, self.TITLE, self.win) about.run() def quit_cb(self, action, parameter): """Exit application""" self.quit() def exists_in_path(self, binary): realpath = os.path.realpath(binary) if os.path.exists(realpath): return True paths = (os.environ.get("PATH")).split(":") paths.reverse() for path in paths: fullpath = os.path.join(path, binary) if (os.path.exists(fullpath)): return True return False def get_launchers(self): """Get localized launcher contents""" flags = GLib.KeyFileFlags.NONE launchers = [] for game in self.GAMES: for prefix in ["sgt", "puzzle"]: launcher = "applications/%s-%s.desktop" % (prefix, game) keyfile = GLib.KeyFile.new() try: if (keyfile.load_from_data_dirs(launcher, flags)): data = [ keyfile.get_value("Desktop Entry", "Name"), keyfile.get_value("Desktop Entry", "Comment"), keyfile.get_value("Desktop Entry", "Icon"), keyfile.get_value("Desktop Entry", "Exec"), ] if self.exists_in_path(data[3]): launchers.append(data) break except GLib.Error: pass launchers.sort() return launchers sgt-launcher-0.2.4/bin/0000775000175000017500000000000013263502320016611 5ustar bluesabrebluesabre00000000000000sgt-launcher-0.2.4/bin/sgt-launcher0000775000175000017500000000257313263361036021151 0ustar bluesabrebluesabre00000000000000#!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranties of # MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR # PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program. If not, see . import locale import sys import os import gi gi.require_version('Gtk', '3.0') from gi.repository import Gtk # nopep8 locale.textdomain('sgt-launcher') # Check GTK Version, minimum required is 3.20 if Gtk.check_version(3, 20, 0): print("Gtk version too old, version 3.20 required.") sys.exit(1) # Get project root directory (enable symlink and trunk execution) PROJECT_ROOT_DIRECTORY = os.path.abspath( os.path.dirname(os.path.dirname(os.path.realpath(sys.argv[0])))) # Add project root directory to python search path sys.path.append(PROJECT_ROOT_DIRECTORY) import sgtlauncher # nopep8 sgtlauncher.main() sgt-launcher-0.2.4/sgtlauncher_lib/0000775000175000017500000000000013263502320021206 5ustar bluesabrebluesabre00000000000000sgt-launcher-0.2.4/sgtlauncher_lib/helpers.py0000664000175000017500000000633613263361036023241 0ustar bluesabrebluesabre00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranties of # MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR # PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program. If not, see . from locale import gettext as _ # lint:ok import logging import os import gi gi.require_version('Gtk', '3.0') from gi.repository import Gtk # nopep8 from . sgtlauncherconfig import get_data_file # nopep8 def get_builder(builder_file_name): """Return a fully-instantiated Gtk.Builder instance from specified ui file :param builder_file_name: The name of the builder file, without extension. Assumed to be in the 'ui' directory under the data path. """ # Look for the ui file that describes the user interface. ui_filename = get_data_file('ui', '%s.ui' % (builder_file_name,)) if not os.path.exists(ui_filename): ui_filename = None builder = Gtk.Builder() builder.add_from_file(ui_filename) builder.set_translation_domain('menulibre') builder.add_from_file(ui_filename) return builder # lint:disable class NullHandler(logging.Handler): def emit(self, record): pass # lint:enable def set_up_logging(opts): """Set up logging for menulibre""" # add a handler to prevent basicConfig root = logging.getLogger() null_handler = NullHandler() root.addHandler(null_handler) formatter = logging.Formatter("%(levelname)s:%(name)s: " "%(funcName)s() '%(message)s'") logger = logging.getLogger('menulibre') logger_sh = logging.StreamHandler() logger_sh.setFormatter(formatter) logger.addHandler(logger_sh) lib_logger = logging.getLogger('menulibre_lib') lib_logger_sh = logging.StreamHandler() lib_logger_sh.setFormatter(formatter) lib_logger.addHandler(lib_logger_sh) # Set the logging level to show debug messages. try: if opts.verbose: logger.setLevel(logging.DEBUG) logger.debug('logging enabled') if opts.verbose > 1: lib_logger.setLevel(logging.DEBUG) except TypeError: pass def show_uri(parent, link): """Open a web browser to the specified link.""" from gi.repository import Gtk # pylint: disable=E0611 screen = parent.get_screen() Gtk.show_uri(screen, link, Gtk.get_current_event_time()) def alias(alternative_function_name): '''see http://www.drdobbs.com/web-development/184406073#l9''' def decorator(function): '''attach alternative_function_name(s) to function''' if not hasattr(function, 'aliases'): function.aliases = [] function.aliases.append(alternative_function_name) return function return decorator sgt-launcher-0.2.4/sgtlauncher_lib/sgtlauncherconfig.py0000664000175000017500000000431613263361036025300 0ustar bluesabrebluesabre00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranties of # MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR # PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program. If not, see . __all__ = [ 'project_path_not_found', 'get_data_file', 'get_data_path', ] # Where your project will look for your data (for instance, images and ui # files). By default, this is ../data, relative your trunk layout __sgtlauncher_data_directory__ = '../data/' __license__ = 'GPL-3+' __version__ = '0.2.3' import os # nopep8 class project_path_not_found(Exception): """Raised when we can't find the project directory.""" def get_data_file(*path_segments): """Get the full path to a data file. Returns the path to a file underneath the data directory (as defined by `get_data_path`). Equivalent to os.path.join(get_data_path(), *path_segments). """ return os.path.join(get_data_path(), *path_segments) def get_data_path(): """Retrieve sgt-launcher data path This path is by default /../data/ in trunk and /usr/share/sgtlauncher in an installed version but this path is specified at installation time. """ if __sgtlauncher_data_directory__ == '../data/': path = os.path.join( os.path.dirname(__file__), __sgtlauncher_data_directory__) abs_data_path = os.path.abspath(path) else: abs_data_path = os.path.abspath(__sgtlauncher_data_directory__) if not os.path.exists(abs_data_path): print(abs_data_path) raise project_path_not_found return abs_data_path def get_version(): """Retrieve the program version.""" return __version__ sgt-launcher-0.2.4/sgtlauncher_lib/__init__.py0000664000175000017500000000172613263361036023334 0ustar bluesabrebluesabre00000000000000# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranties of # MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR # PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program. If not, see . '''facade - makes menulibre_lib package easy to refactor while keeping its api constant''' # lint:disable from . helpers import get_builder, set_up_logging, show_uri from . sgtlauncherconfig import get_version # lint:enable sgt-launcher-0.2.4/PKG-INFO0000664000175000017500000000121713263502320017137 0ustar bluesabrebluesabre00000000000000Metadata-Version: 1.1 Name: sgt-launcher Version: 0.2.4 Summary: Launcher for Simon Tatham's Portable Puzzle Collection Home-page: https://launchpad.net/sgt-launcher Author: Sean Davis Author-email: smd.seandavis@gmail.com License: GPL-3+ Description: A collection of logic games written by Simon Tatham. This application wraps the games into an all-in-one launcher and game suite. Platform: UNKNOWN Requires: gi Requires: gi.repository.GLib Requires: gi.repository.Gdk Requires: gi.repository.GdkPixbuf Requires: gi.repository.Gio Requires: gi.repository.Gtk Requires: gi.repository.Pango Requires: xcffib Provides: sgtlauncher Provides: sgtlauncher_lib sgt-launcher-0.2.4/README0000664000175000017500000000150413263361036016730 0ustar bluesabrebluesabre00000000000000SGT Puzzles Collection This application provides a single launcher for all the games in Simon Tatham's Portable Puzzle Collection. It wraps each game within the launcher window and seeks to add additional value to the games by adding accessible controls and new features. This application has been tested in Ubuntu 16.10 and later as well as Fedora 24. Dependencies: gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gtk-3.0, python3-gi (>= 3.0), python3-xcffib, sgt-puzzles Installation: 1. Install requirements. For Debian-based systems, this should suffice: sudo apt-get install gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0 \ gir1.2-gtk-3.0 python3 python3-gi python3-xcffib sgt-puzzles 2. Run the installer: sudo python3 setup.py install Please report comments, suggestions, and bugs to: https://launchpad.net/sgt-launchersgt-launcher-0.2.4/sgt-launcher.10000664000175000017500000000077413263361036020536 0ustar bluesabrebluesabre00000000000000.TH SGT-LAUNCHER "1" "December 2016" "sgt-launcher 0.2" "User Commands" .SH NAME sgt-launcher \- launcher for Simon Tatham's Portable Puzzle Collection .SH SYNOPSIS .B sgt-launcher [\fI\,options\/\fR] .SH OPTIONS .TP \fB\-\-version\fR show program's version number and exit .TP \fB\-h\fR, \fB\-\-help\fR show this help message and exit .TP \fB\-v\fR, \fB\-\-verbose\fR Show debug messages .SH BUGS Please report bugs at https://bugs.launchpad.net/sgt-launcher .SH AUTHOR Sean Davis (smd.seandavis@gmail.com) sgt-launcher-0.2.4/AUTHORS0000664000175000017500000000007513263361036017122 0ustar bluesabrebluesabre00000000000000Copyright (C) 2016-2017 Sean Davis sgt-launcher-0.2.4/NEWS0000664000175000017500000000155513263361306016555 0ustar bluesabrebluesabre00000000000000SGT Puzzles Collection (sgt-launcher) NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| 11 Apr 2018, SGT Puzzles Collection 0.2.4 - Translation Updates: Danish, Dutch, French, Lithuanian, Portuguese 03 Oct 2017, SGT Puzzles Collection 0.2.3 - Remove unused Preferences menu item (LP: #1686667) - Translation Updates: Kurdish, Polish, Spanish 29 Jan 2017, SGT Puzzles Collection 0.2.2 - Do not display non-existent launchers - Link the launcher to the correct binary when packaged - Add AppStream data 08 Dec 2016, SGT Puzzles Collection 0.2.1 - Fix typo in sgt-launcher.desktop 08 Dec 2016, SGT Puzzles Collection 0.2 - Install to PREFIX/games - Improved manpage - Add keywords to desktop file - Upgraded license to GPL-3 or newer 03 Nov 2016, SGT Puzzles Collection 0.1 - Initial release sgt-launcher-0.2.4/COPYING0000664000175000017500000010451313263361036017107 0ustar bluesabrebluesabre00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . sgt-launcher-0.2.4/data/0000775000175000017500000000000013263502320016752 5ustar bluesabrebluesabre00000000000000sgt-launcher-0.2.4/data/media/0000775000175000017500000000000013263502320020031 5ustar bluesabrebluesabre00000000000000sgt-launcher-0.2.4/data/media/sgt-launcher.png0000664000175000017500000000276613263361036023155 0ustar bluesabrebluesabre00000000000000PNG  IHDR@@iqbKGD pHYs B(xtIME18\IDATxkLWHqZ"XD1@eˌN)1&fӸ)D3waLvNdlL63ukaXQ0BmcɥjߤIyVsQTѼ*h4f$ APWWKҜdtu9+I„ .XFiiiYYVGz|A #<\TBtt 1H!#IƏ 3qgj07g++WCjjSVWWSX{&SKNj6ma۶֭[D"4{RXT];IbOC ۋ"334{πV $w.@t h46] _dAz}#%(*ZUi 4P)^n&Tf|y%na7DRI@o3#hd'U췳fVlR3Pܑ=$X{vd/t ,S;'O>SB.FrZ_ôhغK`{c,dr[)p60'4d`: 8;)H@\uuS1GG+pMI؛NC tqR`X:< LAG/K2{EaVAv˗QԜ,gs{Q!g΢DD image/svg+xml sgt-launcher-0.2.4/data/appdata/0000775000175000017500000000000013263502320020364 5ustar bluesabrebluesabre00000000000000sgt-launcher-0.2.4/data/appdata/sgt-launcher.appdata.xml0000664000175000017500000001702713263502320025122 0ustar bluesabrebluesabre00000000000000 sgt-launcher.desktopCC0-1.0GPL-3.0+SGT Puzzles CollectionLauncher for Simon Tatham's Portable Puzzle Collection Opstarter til Simon Tatham's transportable spilsamling Lanzadpr de la colección portátil de puzles de Simon Tatham Käynnistin Simon Tathamin siirrettävälle pulmapelikokoelmalle Lanceur pour la collection de puzzles portables de Simon Tatham Leistukas, skirtas Simon'o Tatham'o perkeliamų galvosūkių kolekcijai Starter voor Simon Tathams Draagbare Puzzleverzameling Program uruchamiający gry z Kolekcji Gier Logicznych Simona Tathama Lançador para a colecção portátil de quebra-cabeças de Simon Tatham ​ ​

SGT Puzzles Collection is a simple-to-use launcher for Simon Tatham's Portable Puzzle Collection.

SGT-spilsamling er en letanvendelig opstarter til Simon Tatham's transportable spilsamling.

La colección de puzles SGT es un lanzador simple de usar para la colección portátil de puzles de Simon Tatham.

SGT pulmapelikokoelma on helppokäyttöinen käynnistin Simon Tathamin siirrettävälle pulmapelikokoelmalle.

La collection de puzzles SGT est un lanceur facile à utiliser pour la collection de puzzles portables de Simon Tatham

SGT galvosūkių kolekcija yra paprastas naudoti leistukas, skirtas Simon'o Tatham'o perkeliamų galvosūkių kolekcijai.

SGT Puzzleverzameling is een makkelijk te gebruiken starter voor Simon Tathams Draagbare Puzzleverzameling

SGT Puzzles Collection jest prostym w użyciu programem uruchamiającym gry z kolekcji gier logicznych Simona Tathama.

Colecção Quebra-cabeças SGT é um lançador simples de usar para a colecção portátil de quebra-cabeças de Simon Tatham

The collection is presented as a related but diverse set of logic games. Each game is displayed in the launcher window with simplified controls.

Samlingen præsenteres som relaterede men forskelle sæt af logiske spil. Hvert spil vises i opstartervinduet med simple styringer.

La colección se presenta como un conjunto de juegos relacionados pero diversos de lógica. Cada juego se muestra en la ventana del lanzador con controles simplificados.

Kokoelma on esitelty yhtenä kokonaisuutena ja sisältää erilaisia logiikkapelejä. Jokainen peli esitetään käynnistinikkunassa yksinkertaisella tavalla.

Cette collection est composée d'une série de jeux de logiques liés, mais différents. Chaque jeu est affiché dans la fenêtre du lanceur avec des contrôles simplifiés.

Kolekcija yra pateikiama kaip susijusių, tačiau įvairialypių loginių žaidimų rinkinys. Kiekvienas žaidimas yra rodomas leistuko lange su supaprastintais valdikliais.

De verzameling bevat een verzameling van gerelateerde maar van elkaar verschillende spellen. Elk spel wordt met simpele besturing in de starter getoond.

Kolekcja zawiera różnorodne gry logiczne. Każda jest wyświetlana w tym oknie z uproszczonym sterowaniem.

A coleção é apresentada como jogos relacionados, mas diversos, com jogos de lógica. Cada jogo é exibido na janela do lançador com controlos simplificados.

​ ​ ​ The launcher window Opstartsvinduet La ventana lanzadora Käynnistinikkuna La fenêtre du lanceur Leistuko langas Het startvenster Okno programu uruchamiającego A janela do lançador ​ https://screenshots.smdavis.us/sgt-launcher/sgt-launcher-01.png ​ Playing a short game of Galaxies Spiller er kort spil Galaxies Jugar una partida corta de Galaxias Keskeneräinen lyhyt Galaxies-peli Joue un jeu court de Galaxies Žaidžiamas trumpas "Galaxies" žaidimas Speel een kort Galaxies-spel Krótka rozgrywka w Galaxies Jogando um curto jogo de Galaxies ​ https://screenshots.smdavis.us/sgt-launcher/sgt-launcher-02.png ​ ​ ​ https://launchpad.net/sgt-launcher ​ ​ sgt-launcher ​ ​

This is a minor translations-only release.

The Preferences menu item has been removed and several translations have been included.

Præferencer-menupunktet er blevet fjernet og adskillige oversættelser er inkluderet.

Le menu préférences a été supprimé, et des traductions ont étés incluses.

Nuostatų meniu buvo pašalintas ir buvo įtraukti keli nauji programos vertimai.

O item de menu Preferências foi removido e várias traduções foram incluídas.

Non-existent launchers are no longer displayed. The application launcher now links to the correct binary.

Ikkeeksisterende opstartere vises ikke længere. Programopstarteren linker nu til den korrekte binær.

Los lanzadores inexistentes ya no se muestran. El lanzador de aplicaciones ahora enlaza con el binario correcto.

Käynnistimiä joita ei ole olemassa ei enää näytetä. Sovelluskäynnistin on nyt linkitetty oikeaan binääritiedostoon.

Les lanceurs non-existants ne sont plus affichés. Le lanceur de l'application pointe désormais vers les binaires corrects.

Leistukai, kurių nėra, daugiau neberodomi. Programos leistukas dabar susieja su teisinga dvejetaine.

Niet bestaande starters worden niet langer getoond. De programmastarter verwijst nu naar het juiste programma.

Nieistniejące skróty nie są już wyświetlane. Program uruchamiający kieruje teraz do prawidłowych plików.

Os lançadores inexistentes já não são exibidos. O lançador da aplicação vincula-se agora ao binário correto.

sgt-launcher-0.2.4/data/appdata/sgt-launcher.appdata.xml.in0000664000175000017500000000367013263501737025541 0ustar bluesabrebluesabre00000000000000 sgt-launcher.desktopCC0-1.0GPL-3.0+SGT Puzzles Collection ​ <_summary>Launcher for Simon Tatham's Portable Puzzle Collection ​ ​ ​ <_p>SGT Puzzles Collection is a simple-to-use launcher for Simon Tatham's Portable Puzzle Collection. ​ <_p>The collection is presented as a related but diverse set of logic games. Each game is displayed in the launcher window with simplified controls. ​ ​ ​ <_caption>The launcher windowhttps://screenshots.smdavis.us/sgt-launcher/sgt-launcher-01.png ​ <_caption>Playing a short game of Galaxieshttps://screenshots.smdavis.us/sgt-launcher/sgt-launcher-02.png ​ ​ ​ https://launchpad.net/sgt-launcher ​ ​ sgt-launcher ​ ​ ​ <_p>This is a minor translations-only release. ​ <_p>The Preferences menu item has been removed and several translations have been included. ​ <_p>Non-existent launchers are no longer displayed. The application launcher now links to the correct binary. sgt-launcher-0.2.4/po/0000775000175000017500000000000013263502320016457 5ustar bluesabrebluesabre00000000000000sgt-launcher-0.2.4/po/fi.po0000664000175000017500000000632113263361036017426 0ustar bluesabrebluesabre00000000000000# Finnish translation for sgt-launcher # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 # This file is distributed under the same license as the sgt-launcher package. # FIRST AUTHOR , 2017. # msgid "" msgstr "" "Project-Id-Version: sgt-launcher\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2018-04-10 05:59+0000\n" "PO-Revision-Date: 2017-03-15 10:18+0000\n" "Last-Translator: Pasi Lallinaho \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2018-04-11 05:55+0000\n" "X-Generator: Launchpad (build 18609)\n" #: ../sgt-launcher.desktop.in.h:1 ../sgtlauncher/SgtLauncher.py:38 #: ../sgtlauncher/SgtLauncher.py:365 msgid "SGT Puzzles Collection" msgstr "SGT pulmapelikokoelma" #: ../sgt-launcher.desktop.in.h:2 msgid "Collection of short puzzle games" msgstr "Kokoelma lyhyitä pulmapelejä" #: ../sgt-launcher.desktop.in.h:3 #: ../data/appdata/sgt-launcher.appdata.xml.in.h:1 msgid "Launcher for Simon Tatham's Portable Puzzle Collection" msgstr "Käynnistin Simon Tathamin siirrettävälle pulmapelikokoelmalle" #: ../sgt-launcher.desktop.in.h:4 msgid "Games;Puzzles;" msgstr "Pelit;Pulmapelit;" #: ../sgtlauncher/SgtLauncher.py:83 msgid "New Game" msgstr "Uusi peli" #: ../sgtlauncher/SgtLauncher.py:85 msgid "Undo" msgstr "Kumoa" #: ../sgtlauncher/SgtLauncher.py:86 msgid "Redo" msgstr "Tee uudelleen" #: ../sgtlauncher/SgtLauncher.py:164 msgid "Please wait..." msgstr "Odota..." #: ../sgtlauncher/SgtLauncher.py:199 #, python-format msgid "Loading %s" msgstr "Ladataan %s" #. menu.append(_("Preferences"), "app.show-preferences") #: ../sgtlauncher/SgtLauncher.py:421 msgid "About" msgstr "Tietoja" #: ../sgtlauncher/SgtLauncher.py:422 msgid "Quit" msgstr "Lopeta" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:2 msgid "" "SGT Puzzles Collection is a simple-to-use launcher for Simon Tatham's " "Portable Puzzle Collection." msgstr "" "SGT pulmapelikokoelma on helppokäyttöinen käynnistin Simon Tathamin " "siirrettävälle pulmapelikokoelmalle." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:3 msgid "" "The collection is presented as a related but diverse set of logic games. " "Each game is displayed in the launcher window with simplified controls." msgstr "" "Kokoelma on esitelty yhtenä kokonaisuutena ja sisältää erilaisia " "logiikkapelejä. Jokainen peli esitetään käynnistinikkunassa yksinkertaisella " "tavalla." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:4 msgid "The launcher window" msgstr "Käynnistinikkuna" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:5 msgid "Playing a short game of Galaxies" msgstr "Keskeneräinen lyhyt Galaxies-peli" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:6 msgid "" "The Preferences menu item has been removed and several translations have " "been included." msgstr "" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:7 msgid "" "Non-existent launchers are no longer displayed. The application launcher now " "links to the correct binary." msgstr "" "Käynnistimiä joita ei ole olemassa ei enää näytetä. Sovelluskäynnistin on " "nyt linkitetty oikeaan binääritiedostoon." sgt-launcher-0.2.4/po/es.po0000664000175000017500000000632713263361036017445 0ustar bluesabrebluesabre00000000000000# Spanish translation for sgt-launcher # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 # This file is distributed under the same license as the sgt-launcher package. # FIRST AUTHOR , 2017. # msgid "" msgstr "" "Project-Id-Version: sgt-launcher\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2018-04-10 05:59+0000\n" "PO-Revision-Date: 2017-08-18 05:15+0000\n" "Last-Translator: Xristh \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2018-04-11 05:55+0000\n" "X-Generator: Launchpad (build 18609)\n" #: ../sgt-launcher.desktop.in.h:1 ../sgtlauncher/SgtLauncher.py:38 #: ../sgtlauncher/SgtLauncher.py:365 msgid "SGT Puzzles Collection" msgstr "Colección de puzles SGT" #: ../sgt-launcher.desktop.in.h:2 msgid "Collection of short puzzle games" msgstr "Colección de juegos y puzles cortos" #: ../sgt-launcher.desktop.in.h:3 #: ../data/appdata/sgt-launcher.appdata.xml.in.h:1 msgid "Launcher for Simon Tatham's Portable Puzzle Collection" msgstr "Lanzadpr de la colección portátil de puzles de Simon Tatham" #: ../sgt-launcher.desktop.in.h:4 msgid "Games;Puzzles;" msgstr "Games;Puzzles;" #: ../sgtlauncher/SgtLauncher.py:83 msgid "New Game" msgstr "Jugar una partida" #: ../sgtlauncher/SgtLauncher.py:85 msgid "Undo" msgstr "Desahcer" #: ../sgtlauncher/SgtLauncher.py:86 msgid "Redo" msgstr "Restaurar" #: ../sgtlauncher/SgtLauncher.py:164 msgid "Please wait..." msgstr "Espere un momento…" #: ../sgtlauncher/SgtLauncher.py:199 #, python-format msgid "Loading %s" msgstr "Cargando %s" #. menu.append(_("Preferences"), "app.show-preferences") #: ../sgtlauncher/SgtLauncher.py:421 msgid "About" msgstr "Acerca de" #: ../sgtlauncher/SgtLauncher.py:422 msgid "Quit" msgstr "Salir" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:2 msgid "" "SGT Puzzles Collection is a simple-to-use launcher for Simon Tatham's " "Portable Puzzle Collection." msgstr "" "La colección de puzles SGT es un lanzador simple de usar para la colección " "portátil de puzles de Simon Tatham." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:3 msgid "" "The collection is presented as a related but diverse set of logic games. " "Each game is displayed in the launcher window with simplified controls." msgstr "" "La colección se presenta como un conjunto de juegos relacionados pero " "diversos de lógica. Cada juego se muestra en la ventana del lanzador con " "controles simplificados." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:4 msgid "The launcher window" msgstr "La ventana lanzadora" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:5 msgid "Playing a short game of Galaxies" msgstr "Jugar una partida corta de Galaxias" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:6 msgid "" "The Preferences menu item has been removed and several translations have " "been included." msgstr "" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:7 msgid "" "Non-existent launchers are no longer displayed. The application launcher now " "links to the correct binary." msgstr "" "Los lanzadores inexistentes ya no se muestran. El lanzador de aplicaciones " "ahora enlaza con el binario correcto." sgt-launcher-0.2.4/po/pl.po0000664000175000017500000000622013263361036017441 0ustar bluesabrebluesabre00000000000000# MARCIN MIKOŁAJCZAK , 2017. # Translation of sgt-launcher in Polish # This file is distributed under the same license as the sgt-launcher package. msgid "" msgstr "" "Project-Id-Version: sgt-launcher\n" "Report-Msgid-Bugs-To: , m4sk1n on Freenode\n" "POT-Creation-Date: 2018-04-10 05:59+0000\n" "PO-Revision-Date: 2017-07-05 22:24+0000\n" "Last-Translator: Piotr Sokół \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2018-04-11 05:55+0000\n" "X-Generator: Launchpad (build 18609)\n" "Language: pl\n" #: ../sgt-launcher.desktop.in.h:1 ../sgtlauncher/SgtLauncher.py:38 #: ../sgtlauncher/SgtLauncher.py:365 msgid "SGT Puzzles Collection" msgstr "Kolekcja gier logicznych SGT" #: ../sgt-launcher.desktop.in.h:2 msgid "Collection of short puzzle games" msgstr "Kolekcja prostych gier logicznych" #: ../sgt-launcher.desktop.in.h:3 #: ../data/appdata/sgt-launcher.appdata.xml.in.h:1 msgid "Launcher for Simon Tatham's Portable Puzzle Collection" msgstr "Program uruchamiający gry z Kolekcji Gier Logicznych Simona Tathama" #: ../sgt-launcher.desktop.in.h:4 msgid "Games;Puzzles;" msgstr "Gry;Logiczne;" #: ../sgtlauncher/SgtLauncher.py:83 msgid "New Game" msgstr "Nowa gra" #: ../sgtlauncher/SgtLauncher.py:85 msgid "Undo" msgstr "Cofnij" #: ../sgtlauncher/SgtLauncher.py:86 msgid "Redo" msgstr "Ponów" #: ../sgtlauncher/SgtLauncher.py:164 msgid "Please wait..." msgstr "Proszę czekać…" #: ../sgtlauncher/SgtLauncher.py:199 #, python-format msgid "Loading %s" msgstr "Wczytywanie %s" #. menu.append(_("Preferences"), "app.show-preferences") #: ../sgtlauncher/SgtLauncher.py:421 msgid "About" msgstr "O programie" #: ../sgtlauncher/SgtLauncher.py:422 msgid "Quit" msgstr "Zakończ" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:2 msgid "" "SGT Puzzles Collection is a simple-to-use launcher for Simon Tatham's " "Portable Puzzle Collection." msgstr "" "SGT Puzzles Collection jest prostym w użyciu programem uruchamiającym gry z " "kolekcji gier logicznych Simona Tathama." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:3 msgid "" "The collection is presented as a related but diverse set of logic games. " "Each game is displayed in the launcher window with simplified controls." msgstr "" "Kolekcja zawiera różnorodne gry logiczne. Każda jest wyświetlana w tym oknie " "z uproszczonym sterowaniem." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:4 msgid "The launcher window" msgstr "Okno programu uruchamiającego" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:5 msgid "Playing a short game of Galaxies" msgstr "Krótka rozgrywka w Galaxies" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:6 msgid "" "The Preferences menu item has been removed and several translations have " "been included." msgstr "" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:7 msgid "" "Non-existent launchers are no longer displayed. The application launcher now " "links to the correct binary." msgstr "" "Nieistniejące skróty nie są już wyświetlane. Program uruchamiający kieruje " "teraz do prawidłowych plików." sgt-launcher-0.2.4/po/POTFILES.in0000664000175000017500000000023313263361036020241 0ustar bluesabrebluesabre00000000000000# Desktop File sgt-launcher.desktop.in # Python Files sgtlauncher/SgtLauncher.py # XML Files [type: gettext/xml]data/appdata/sgt-launcher.appdata.xml.in sgt-launcher-0.2.4/po/fr.po0000664000175000017500000000651113263361036017440 0ustar bluesabrebluesabre00000000000000# French translation for sgt-launcher # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 # This file is distributed under the same license as the sgt-launcher package. # FIRST AUTHOR , 2017. # msgid "" msgstr "" "Project-Id-Version: sgt-launcher\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2018-04-10 05:59+0000\n" "PO-Revision-Date: 2017-10-30 16:18+0000\n" "Last-Translator: Teromene \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2018-04-11 05:55+0000\n" "X-Generator: Launchpad (build 18609)\n" #: ../sgt-launcher.desktop.in.h:1 ../sgtlauncher/SgtLauncher.py:38 #: ../sgtlauncher/SgtLauncher.py:365 msgid "SGT Puzzles Collection" msgstr "Collection de puzzles SGT" #: ../sgt-launcher.desktop.in.h:2 msgid "Collection of short puzzle games" msgstr "Une collections de court puzzles" #: ../sgt-launcher.desktop.in.h:3 #: ../data/appdata/sgt-launcher.appdata.xml.in.h:1 msgid "Launcher for Simon Tatham's Portable Puzzle Collection" msgstr "Lanceur pour la collection de puzzles portables de Simon Tatham" #: ../sgt-launcher.desktop.in.h:4 msgid "Games;Puzzles;" msgstr "Jeux;Puzzles;" #: ../sgtlauncher/SgtLauncher.py:83 msgid "New Game" msgstr "Nouvelle partie" #: ../sgtlauncher/SgtLauncher.py:85 msgid "Undo" msgstr "Annuler" #: ../sgtlauncher/SgtLauncher.py:86 msgid "Redo" msgstr "Rétablir" #: ../sgtlauncher/SgtLauncher.py:164 msgid "Please wait..." msgstr "Veuillez patienter..." #: ../sgtlauncher/SgtLauncher.py:199 #, python-format msgid "Loading %s" msgstr "Chargement de %s" #. menu.append(_("Preferences"), "app.show-preferences") #: ../sgtlauncher/SgtLauncher.py:421 msgid "About" msgstr "À propos" #: ../sgtlauncher/SgtLauncher.py:422 msgid "Quit" msgstr "Quitter" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:2 msgid "" "SGT Puzzles Collection is a simple-to-use launcher for Simon Tatham's " "Portable Puzzle Collection." msgstr "" "La collection de puzzles SGT est un lanceur facile à utiliser pour la " "collection de puzzles portables de Simon Tatham" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:3 msgid "" "The collection is presented as a related but diverse set of logic games. " "Each game is displayed in the launcher window with simplified controls." msgstr "" "Cette collection est composée d'une série de jeux de logiques liés, mais " "différents. Chaque jeu est affiché dans la fenêtre du lanceur avec des " "contrôles simplifiés." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:4 msgid "The launcher window" msgstr "La fenêtre du lanceur" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:5 msgid "Playing a short game of Galaxies" msgstr "Joue un jeu court de Galaxies" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:6 msgid "" "The Preferences menu item has been removed and several translations have " "been included." msgstr "" "Le menu préférences a été supprimé, et des traductions ont étés incluses." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:7 msgid "" "Non-existent launchers are no longer displayed. The application launcher now " "links to the correct binary." msgstr "" "Les lanceurs non-existants ne sont plus affichés. Le lanceur de " "l'application pointe désormais vers les binaires corrects." sgt-launcher-0.2.4/po/ku.po0000664000175000017500000000521213263361036017445 0ustar bluesabrebluesabre00000000000000# Kurdish translation for sgt-launcher # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 # This file is distributed under the same license as the sgt-launcher package. # FIRST AUTHOR , 2017. # msgid "" msgstr "" "Project-Id-Version: sgt-launcher\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2018-04-10 05:59+0000\n" "PO-Revision-Date: 2017-07-15 14:38+0000\n" "Last-Translator: Rokar ✌ \n" "Language-Team: Kurdish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2018-04-11 05:55+0000\n" "X-Generator: Launchpad (build 18609)\n" #: ../sgt-launcher.desktop.in.h:1 ../sgtlauncher/SgtLauncher.py:38 #: ../sgtlauncher/SgtLauncher.py:365 msgid "SGT Puzzles Collection" msgstr "" #: ../sgt-launcher.desktop.in.h:2 msgid "Collection of short puzzle games" msgstr "" #: ../sgt-launcher.desktop.in.h:3 #: ../data/appdata/sgt-launcher.appdata.xml.in.h:1 msgid "Launcher for Simon Tatham's Portable Puzzle Collection" msgstr "" #: ../sgt-launcher.desktop.in.h:4 msgid "Games;Puzzles;" msgstr "" #: ../sgtlauncher/SgtLauncher.py:83 msgid "New Game" msgstr "Lîstika Nû" #: ../sgtlauncher/SgtLauncher.py:85 msgid "Undo" msgstr "Vegerîne" #: ../sgtlauncher/SgtLauncher.py:86 msgid "Redo" msgstr "Dîsa bike" #: ../sgtlauncher/SgtLauncher.py:164 msgid "Please wait..." msgstr "Ji kerema xwe re bisekine..." #: ../sgtlauncher/SgtLauncher.py:199 #, python-format msgid "Loading %s" msgstr "%s tê barkirin" #. menu.append(_("Preferences"), "app.show-preferences") #: ../sgtlauncher/SgtLauncher.py:421 msgid "About" msgstr "Derbarê de" #: ../sgtlauncher/SgtLauncher.py:422 msgid "Quit" msgstr "Derkeve" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:2 msgid "" "SGT Puzzles Collection is a simple-to-use launcher for Simon Tatham's " "Portable Puzzle Collection." msgstr "" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:3 msgid "" "The collection is presented as a related but diverse set of logic games. " "Each game is displayed in the launcher window with simplified controls." msgstr "" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:4 msgid "The launcher window" msgstr "" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:5 msgid "Playing a short game of Galaxies" msgstr "" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:6 msgid "" "The Preferences menu item has been removed and several translations have " "been included." msgstr "" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:7 msgid "" "Non-existent launchers are no longer displayed. The application launcher now " "links to the correct binary." msgstr "" sgt-launcher-0.2.4/po/nl.po0000664000175000017500000000625513263361036017447 0ustar bluesabrebluesabre00000000000000# Dutch translation for sgt-launcher # Copyright (c) 2018 Rosetta Contributors and Canonical Ltd 2018 # This file is distributed under the same license as the sgt-launcher package. # FIRST AUTHOR , 2018. # msgid "" msgstr "" "Project-Id-Version: sgt-launcher\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2018-04-10 05:59+0000\n" "PO-Revision-Date: 2018-03-31 14:46+0000\n" "Last-Translator: Willem Hobers \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2018-04-11 05:55+0000\n" "X-Generator: Launchpad (build 18609)\n" #: ../sgt-launcher.desktop.in.h:1 ../sgtlauncher/SgtLauncher.py:38 #: ../sgtlauncher/SgtLauncher.py:365 msgid "SGT Puzzles Collection" msgstr "SGT Puzzleverzameling" #: ../sgt-launcher.desktop.in.h:2 msgid "Collection of short puzzle games" msgstr "Verzameling van korte puzzlespelletjes" #: ../sgt-launcher.desktop.in.h:3 #: ../data/appdata/sgt-launcher.appdata.xml.in.h:1 msgid "Launcher for Simon Tatham's Portable Puzzle Collection" msgstr "Starter voor Simon Tathams Draagbare Puzzleverzameling" #: ../sgt-launcher.desktop.in.h:4 msgid "Games;Puzzles;" msgstr "Spellen;Puzzles" #: ../sgtlauncher/SgtLauncher.py:83 msgid "New Game" msgstr "Nieuw spel" #: ../sgtlauncher/SgtLauncher.py:85 msgid "Undo" msgstr "Ongedaan maken" #: ../sgtlauncher/SgtLauncher.py:86 msgid "Redo" msgstr "Opnieuw" #: ../sgtlauncher/SgtLauncher.py:164 msgid "Please wait..." msgstr "Even geduld a.u.b.…" #: ../sgtlauncher/SgtLauncher.py:199 #, python-format msgid "Loading %s" msgstr "Laden van %s" #. menu.append(_("Preferences"), "app.show-preferences") #: ../sgtlauncher/SgtLauncher.py:421 msgid "About" msgstr "Info" #: ../sgtlauncher/SgtLauncher.py:422 msgid "Quit" msgstr "Afsluiten" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:2 msgid "" "SGT Puzzles Collection is a simple-to-use launcher for Simon Tatham's " "Portable Puzzle Collection." msgstr "" "SGT Puzzleverzameling is een makkelijk te gebruiken starter voor Simon " "Tathams Draagbare Puzzleverzameling" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:3 msgid "" "The collection is presented as a related but diverse set of logic games. " "Each game is displayed in the launcher window with simplified controls." msgstr "" "De verzameling bevat een verzameling van gerelateerde maar van elkaar " "verschillende spellen. Elk spel wordt met simpele besturing in de starter " "getoond." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:4 msgid "The launcher window" msgstr "Het startvenster" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:5 msgid "Playing a short game of Galaxies" msgstr "Speel een kort Galaxies-spel" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:6 msgid "" "The Preferences menu item has been removed and several translations have " "been included." msgstr "" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:7 msgid "" "Non-existent launchers are no longer displayed. The application launcher now " "links to the correct binary." msgstr "" "Niet bestaande starters worden niet langer getoond. De programmastarter " "verwijst nu naar het juiste programma." sgt-launcher-0.2.4/po/pt.po0000664000175000017500000000652313263361036017457 0ustar bluesabrebluesabre00000000000000# Portuguese translation for sgt-launcher # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 # This file is distributed under the same license as the sgt-launcher package. # FIRST AUTHOR , 2017. # msgid "" msgstr "" "Project-Id-Version: sgt-launcher\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2018-04-10 05:59+0000\n" "PO-Revision-Date: 2017-10-03 11:05+0000\n" "Last-Translator: David Pires \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2018-04-11 05:55+0000\n" "X-Generator: Launchpad (build 18609)\n" #: ../sgt-launcher.desktop.in.h:1 ../sgtlauncher/SgtLauncher.py:38 #: ../sgtlauncher/SgtLauncher.py:365 msgid "SGT Puzzles Collection" msgstr "Colecção Quebra-cabeças SGT" #: ../sgt-launcher.desktop.in.h:2 msgid "Collection of short puzzle games" msgstr "Coleccção de pequenos jogos quebra-cabeças" #: ../sgt-launcher.desktop.in.h:3 #: ../data/appdata/sgt-launcher.appdata.xml.in.h:1 msgid "Launcher for Simon Tatham's Portable Puzzle Collection" msgstr "Lançador para a colecção portátil de quebra-cabeças de Simon Tatham" #: ../sgt-launcher.desktop.in.h:4 msgid "Games;Puzzles;" msgstr "Jogos;Quebra-cabeças;" #: ../sgtlauncher/SgtLauncher.py:83 msgid "New Game" msgstr "Novo Jogo" #: ../sgtlauncher/SgtLauncher.py:85 msgid "Undo" msgstr "Desfazer" #: ../sgtlauncher/SgtLauncher.py:86 msgid "Redo" msgstr "Refazer" #: ../sgtlauncher/SgtLauncher.py:164 msgid "Please wait..." msgstr "Aguarde por favor..." #: ../sgtlauncher/SgtLauncher.py:199 #, python-format msgid "Loading %s" msgstr "A carregar %s" #. menu.append(_("Preferences"), "app.show-preferences") #: ../sgtlauncher/SgtLauncher.py:421 msgid "About" msgstr "Acerca" #: ../sgtlauncher/SgtLauncher.py:422 msgid "Quit" msgstr "Sair" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:2 msgid "" "SGT Puzzles Collection is a simple-to-use launcher for Simon Tatham's " "Portable Puzzle Collection." msgstr "" "Colecção Quebra-cabeças SGT é um lançador simples de usar para a colecção " "portátil de quebra-cabeças de Simon Tatham" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:3 msgid "" "The collection is presented as a related but diverse set of logic games. " "Each game is displayed in the launcher window with simplified controls." msgstr "" "A coleção é apresentada como jogos relacionados, mas diversos, com jogos de " "lógica. Cada jogo é exibido na janela do lançador com controlos " "simplificados." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:4 msgid "The launcher window" msgstr "A janela do lançador" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:5 msgid "Playing a short game of Galaxies" msgstr "Jogando um curto jogo de Galaxies" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:6 msgid "" "The Preferences menu item has been removed and several translations have " "been included." msgstr "" "O item de menu Preferências foi removido e várias traduções foram incluídas." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:7 msgid "" "Non-existent launchers are no longer displayed. The application launcher now " "links to the correct binary." msgstr "" "Os lançadores inexistentes já não são exibidos. O lançador da aplicação " "vincula-se agora ao binário correto." sgt-launcher-0.2.4/po/da.po0000664000175000017500000000626613263361036017424 0ustar bluesabrebluesabre00000000000000# Danish translation for sgt-launcher # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 # This file is distributed under the same license as the sgt-launcher package. # FIRST AUTHOR , 2017. # msgid "" msgstr "" "Project-Id-Version: sgt-launcher\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2018-04-10 05:59+0000\n" "PO-Revision-Date: 2017-11-23 22:16+0000\n" "Last-Translator: scootergrisen \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2018-04-11 05:55+0000\n" "X-Generator: Launchpad (build 18609)\n" #: ../sgt-launcher.desktop.in.h:1 ../sgtlauncher/SgtLauncher.py:38 #: ../sgtlauncher/SgtLauncher.py:365 msgid "SGT Puzzles Collection" msgstr "SGT-spilsamling" #: ../sgt-launcher.desktop.in.h:2 msgid "Collection of short puzzle games" msgstr "Samling af korte spil" #: ../sgt-launcher.desktop.in.h:3 #: ../data/appdata/sgt-launcher.appdata.xml.in.h:1 msgid "Launcher for Simon Tatham's Portable Puzzle Collection" msgstr "Opstarter til Simon Tatham's transportable spilsamling" #: ../sgt-launcher.desktop.in.h:4 msgid "Games;Puzzles;" msgstr "Spil;" #: ../sgtlauncher/SgtLauncher.py:83 msgid "New Game" msgstr "Nyt spil" #: ../sgtlauncher/SgtLauncher.py:85 msgid "Undo" msgstr "Fortryd" #: ../sgtlauncher/SgtLauncher.py:86 msgid "Redo" msgstr "Omgør" #: ../sgtlauncher/SgtLauncher.py:164 msgid "Please wait..." msgstr "Vent venligst..." #: ../sgtlauncher/SgtLauncher.py:199 #, python-format msgid "Loading %s" msgstr "Indlæser %s" #. menu.append(_("Preferences"), "app.show-preferences") #: ../sgtlauncher/SgtLauncher.py:421 msgid "About" msgstr "Om" #: ../sgtlauncher/SgtLauncher.py:422 msgid "Quit" msgstr "Afslut" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:2 msgid "" "SGT Puzzles Collection is a simple-to-use launcher for Simon Tatham's " "Portable Puzzle Collection." msgstr "" "SGT-spilsamling er en letanvendelig opstarter til Simon Tatham's " "transportable spilsamling." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:3 msgid "" "The collection is presented as a related but diverse set of logic games. " "Each game is displayed in the launcher window with simplified controls." msgstr "" "Samlingen præsenteres som relaterede men forskelle sæt af logiske spil. " "Hvert spil vises i opstartervinduet med simple styringer." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:4 msgid "The launcher window" msgstr "Opstartsvinduet" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:5 msgid "Playing a short game of Galaxies" msgstr "Spiller er kort spil Galaxies" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:6 msgid "" "The Preferences menu item has been removed and several translations have " "been included." msgstr "" "Præferencer-menupunktet er blevet fjernet og adskillige oversættelser er " "inkluderet." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:7 msgid "" "Non-existent launchers are no longer displayed. The application launcher now " "links to the correct binary." msgstr "" "Ikkeeksisterende opstartere vises ikke længere. Programopstarteren linker nu " "til den korrekte binær." sgt-launcher-0.2.4/po/lt.po0000664000175000017500000000652713263361036017457 0ustar bluesabrebluesabre00000000000000# Lithuanian translation for sgt-launcher # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 # This file is distributed under the same license as the sgt-launcher package. # FIRST AUTHOR , 2017. # msgid "" msgstr "" "Project-Id-Version: sgt-launcher\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2018-04-10 05:59+0000\n" "PO-Revision-Date: 2018-02-03 12:00+0000\n" "Last-Translator: Moo \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2018-04-11 05:55+0000\n" "X-Generator: Launchpad (build 18609)\n" #: ../sgt-launcher.desktop.in.h:1 ../sgtlauncher/SgtLauncher.py:38 #: ../sgtlauncher/SgtLauncher.py:365 msgid "SGT Puzzles Collection" msgstr "SGT galvosūkių kolekcija" #: ../sgt-launcher.desktop.in.h:2 msgid "Collection of short puzzle games" msgstr "Trumpų galvosūkių žaidimų kolekcija" #: ../sgt-launcher.desktop.in.h:3 #: ../data/appdata/sgt-launcher.appdata.xml.in.h:1 msgid "Launcher for Simon Tatham's Portable Puzzle Collection" msgstr "Leistukas, skirtas Simon'o Tatham'o perkeliamų galvosūkių kolekcijai" #: ../sgt-launcher.desktop.in.h:4 msgid "Games;Puzzles;" msgstr "Žaidimai;Galvosūkiai;" #: ../sgtlauncher/SgtLauncher.py:83 msgid "New Game" msgstr "Naujas žaidimas" #: ../sgtlauncher/SgtLauncher.py:85 msgid "Undo" msgstr "Atšaukti" #: ../sgtlauncher/SgtLauncher.py:86 msgid "Redo" msgstr "Pakartoti" #: ../sgtlauncher/SgtLauncher.py:164 msgid "Please wait..." msgstr "Prašome palaukti..." #: ../sgtlauncher/SgtLauncher.py:199 #, python-format msgid "Loading %s" msgstr "Įkeliama %s" #. menu.append(_("Preferences"), "app.show-preferences") #: ../sgtlauncher/SgtLauncher.py:421 msgid "About" msgstr "Apie" #: ../sgtlauncher/SgtLauncher.py:422 msgid "Quit" msgstr "Išeiti" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:2 msgid "" "SGT Puzzles Collection is a simple-to-use launcher for Simon Tatham's " "Portable Puzzle Collection." msgstr "" "SGT galvosūkių kolekcija yra paprastas naudoti leistukas, skirtas Simon'o " "Tatham'o perkeliamų galvosūkių kolekcijai." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:3 msgid "" "The collection is presented as a related but diverse set of logic games. " "Each game is displayed in the launcher window with simplified controls." msgstr "" "Kolekcija yra pateikiama kaip susijusių, tačiau įvairialypių loginių žaidimų " "rinkinys. Kiekvienas žaidimas yra rodomas leistuko lange su supaprastintais " "valdikliais." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:4 msgid "The launcher window" msgstr "Leistuko langas" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:5 msgid "Playing a short game of Galaxies" msgstr "Žaidžiamas trumpas \"Galaxies\" žaidimas" #: ../data/appdata/sgt-launcher.appdata.xml.in.h:6 msgid "" "The Preferences menu item has been removed and several translations have " "been included." msgstr "" "Nuostatų meniu buvo pašalintas ir buvo įtraukti keli nauji programos " "vertimai." #: ../data/appdata/sgt-launcher.appdata.xml.in.h:7 msgid "" "Non-existent launchers are no longer displayed. The application launcher now " "links to the correct binary." msgstr "" "Leistukai, kurių nėra, daugiau neberodomi. Programos leistukas dabar susieja " "su teisinga dvejetaine." sgt-launcher-0.2.4/setup.py0000664000175000017500000002461213263501634017567 0ustar bluesabrebluesabre00000000000000#!/usr/bin/python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranties of # MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR # PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program. If not, see . import os import sys import subprocess from gi.repository import GLib try: import DistUtilsExtra.auto except ImportError: sys.stderr.write("To build sgt-launcher you need " "https://launchpad.net/python-distutils-extra\n") sys.exit(1) assert DistUtilsExtra.auto.__version__ >= '2.18', \ 'needs DistUtilsExtra.auto >= 2.18' def build_launchers(): applications_dir = "build/applications/" if not os.path.exists(applications_dir): os.makedirs(applications_dir) if '--build-launchers' in sys.argv: print("building launchers") games = [ 'blackbox', 'bridges', 'cube', 'dominosa', 'fifteen', 'filling', 'flip', 'flood', 'galaxies', 'guess', 'inertia', 'keen', 'lightup', 'loopy', 'magnets', 'map', 'mines', 'net', 'netslide', 'palisade', 'pattern', 'pearl', 'pegs', 'range', 'rect', 'samegame', 'signpost', 'singles', 'sixteen', 'slant', 'solo', 'tents', 'towers', 'tracks', 'twiddle', 'undead', 'unequal', 'unruly', 'untangle' ] flags = GLib.KeyFileFlags.KEEP_TRANSLATIONS for game in games: for prefix in ["sgt", "puzzle"]: desktop = "%s-%s.desktop" % (prefix, game) launcher = "applications/%s" % desktop keyfile = GLib.KeyFile.new() try: if (keyfile.load_from_data_dirs(launcher, flags)): keyfile.set_value("Desktop Entry", "NoDisplay", "true") keyfile.save_to_file("%s%s" % (applications_dir, desktop)) break except GLib.Error: pass sys.argv.remove("--build-launchers") def update_config(libdir, values={}): """Update the configuration file at installation time.""" filename = os.path.join(libdir, 'sgtlauncher_lib', 'sgtlauncherconfig.py') oldvalues = {} try: fin = open(filename, 'r', encoding='utf-8') fout = open(filename + '.new', 'w', encoding='utf-8') for line in fin: fields = line.split(' = ') # Separate variable from value if fields[0] in values: oldvalues[fields[0]] = fields[1].strip() line = "%s = %s\n" % (fields[0], values[fields[0]]) fout.write(line) fout.flush() fout.close() fin.close() os.rename(fout.name, fin.name) except (OSError, IOError): print(("ERROR: Can't find %s" % filename)) sys.exit(1) return oldvalues def move_icon_file(root, target_data, prefix): """Move the icon files to their installation prefix.""" old_icon_path = os.path.normpath( os.path.join(root, target_data, 'share', 'sgt-launcher', 'media')) for icon_size in ['scalable', 'pixmap']: # Install sgt-launcher.png to share/pixmaps if icon_size == 'pixmap': old_icon_file = os.path.join(old_icon_path, 'sgt-launcher.png') icon_path = os.path.normpath( os.path.join(root, target_data, 'share', 'pixmaps')) icon_file = os.path.join(icon_path, 'sgt-launcher.png') # Install everything else to share/icons/hicolor else: old_icon_file = os.path.join(old_icon_path, 'sgt-launcher.svg') icon_path = os.path.normpath( os.path.join(root, target_data, 'share', 'icons', 'hicolor', icon_size, 'apps')) icon_file = os.path.join(icon_path, 'sgt-launcher.svg') # Get the real paths. old_icon_file = os.path.realpath(old_icon_file) icon_file = os.path.realpath(icon_file) if not os.path.exists(old_icon_file): print(("ERROR: Can't find", old_icon_file)) sys.exit(1) if not os.path.exists(icon_path): os.makedirs(icon_path) if old_icon_file != icon_file: print(("Moving icon file: %s -> %s" % (old_icon_file, icon_file))) os.rename(old_icon_file, icon_file) # Media is now empty if len(os.listdir(old_icon_path)) == 0: print(("Removing empty directory: %s" % old_icon_path)) os.rmdir(old_icon_path) return icon_file def get_desktop_file(root, target_data, prefix): """Move the desktop file to its installation prefix.""" desktop_path = os.path.realpath( os.path.join(root, target_data, 'share', 'applications')) desktop_file = os.path.join(desktop_path, 'sgt-launcher.desktop') return desktop_file def update_desktop_file(filename, script_path): """Update the desktop file with prefixed paths.""" try: fin = open(filename, 'r', encoding='utf-8') fout = open(filename + '.new', 'w', encoding='utf-8') for line in fin: if 'Exec=' in line: cmd = line.split("=")[1].split(None, 1) line = "Exec=%s" % os.path.join(script_path, 'sgt-launcher') if len(cmd) > 1: line += " %s" % cmd[1].strip() # Add script arguments back line += "\n" fout.write(line) fout.flush() fout.close() fin.close() os.rename(fout.name, fin.name) except (OSError, IOError): print(("ERROR: Can't find %s" % filename)) sys.exit(1) def write_appdata_file(filename_in): filename_out = filename_in.rstrip('.in') cmd = ["intltool-merge", "-x", "-d", "po", filename_in, filename_out] print(" ".join(cmd)) subprocess.call(cmd, shell=False) def remove_appdata_in(root, target_data): appdata_directory = os.path.normpath( os.path.join(root, target_data, 'share', 'sgt-launcher', 'appdata')) if not os.path.exists(appdata_directory): return appdata_in = os.path.join(appdata_directory, "sgt-launcher.appdata.xml.in") if os.path.exists(appdata_in): os.remove(appdata_in) if len(os.listdir(appdata_directory)) == 0: print(("Removing empty directory: %s" % appdata_directory)) os.rmdir(appdata_directory) # Update AppData with latest translations first. write_appdata_file("data/appdata/sgt-launcher.appdata.xml.in") # Build the replacement launchers build_launchers() class InstallAndUpdateDataDirectory(DistUtilsExtra.auto.install_auto): """Command Class to install and update the directory.""" def run(self): """Run the setup commands.""" DistUtilsExtra.auto.install_auto.run(self) print(("=== Installing %s, version %s ===" % (self.distribution.get_name(), self.distribution.get_version()))) if not self.prefix: self.prefix = '' if self.root: target_data = os.path.relpath(self.install_data, self.root) + \ os.sep target_pkgdata = os.path.join(target_data, 'share', 'sgt-launcher', '') target_scripts = os.path.join(target_data, 'games') data_dir = os.path.join(self.prefix, 'share', 'sgt-launcher', '') script_path = os.path.join(self.prefix, 'games') else: # --user install self.root = '' target_data = os.path.relpath(self.install_data) + os.sep target_pkgdata = os.path.join(target_data, 'share', 'sgt-launcher', '') target_scripts = os.path.join(target_data, 'games') # Use absolute paths target_data = os.path.realpath(target_data) target_pkgdata = os.path.realpath(target_pkgdata) target_scripts = os.path.realpath(target_scripts) data_dir = target_pkgdata script_path = target_scripts print(("Root: %s" % self.root)) print(("Prefix: %s\n" % self.prefix)) print(("Target Data: %s" % target_data)) print(("Target PkgData: %s" % target_pkgdata)) print(("Target Scripts: %s\n" % target_scripts)) print(("Data Directory: %s" % data_dir)) values = {'__sgtlauncher_data_directory__': "'%s'" % (data_dir), '__version__': "'%s'" % self.distribution.get_version()} update_config(self.install_lib, values) desktop_file = get_desktop_file(self.root, target_data, self.prefix) print(("Desktop File: %s\n" % desktop_file)) move_icon_file(self.root, target_data, self.prefix) update_desktop_file(desktop_file, script_path) remove_appdata_in(self.root, target_data) DistUtilsExtra.auto.setup( name='sgt-launcher', version='0.2.4', license='GPL-3+', author='Sean Davis', author_email='smd.seandavis@gmail.com', description='Launcher for Simon Tatham\'s Portable Puzzle Collection', long_description='A collection of logic games written by Simon Tatham. ' 'This application wraps the games into an all-in-one ' 'launcher and game suite.', url='https://launchpad.net/sgt-launcher', data_files=[ ('games', ['bin/sgt-launcher']), ('share/man/man1', ['sgt-launcher.1']), ('share/appdata', ['data/appdata/sgt-launcher.appdata.xml']) ], cmdclass={'install': InstallAndUpdateDataDirectory} ) sgt-launcher-0.2.4/sgt-launcher.desktop.in0000664000175000017500000000050213263361036022441 0ustar bluesabrebluesabre00000000000000[Desktop Entry] _Name=SGT Puzzles Collection _GenericName=Collection of short puzzle games _Comment=Launcher for Simon Tatham's Portable Puzzle Collection Exec=sgt-launcher Terminal=false Type=Application StartupNotify=true StartupWMClass=sgt-launcher Icon=sgt-launcher Categories=Game;LogicGame; _Keywords=Games;Puzzles;