Move assets to work in new setup.

This commit is contained in:
Dorian 2017-02-24 00:10:50 -05:00
parent c98a7d15d5
commit c6b39091ad
16 changed files with 3 additions and 7 deletions

View File

@ -46,7 +46,7 @@ requirements = kivy,hostpython2,docutils
#garden_requirements = #garden_requirements =
# (str) Presplash of the application # (str) Presplash of the application
presplash.filename = %(source.dir)s/images/splash.png presplash.filename = %(source.dir)s/images/splash.jpg
# (str) Icon of the application # (str) Icon of the application
icon.filename = %(source.dir)s/images/icon.png icon.filename = %(source.dir)s/images/icon.png

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

Before

Width:  |  Height:  |  Size: 9.8 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

@ -21,7 +21,7 @@ LOG = logging.getLogger(__name__)
class JustCheckersApp(App): class JustCheckersApp(App):
title = 'justCheckers' title = 'justCheckers'
icon = 'images/icon.png' icon = 'justcheckers/images/icon.png'
use_kivy_settings = False use_kivy_settings = False
def on_start(self): def on_start(self):
@ -62,7 +62,3 @@ def log_system_and_game_info():
os_sys = '{name} {arch}'.format(name=os_name, arch=os_arch) os_sys = '{name} {arch}'.format(name=os_name, arch=os_arch)
Logger.info(message.format(os=os_sys, height=root_window.height, width=root_window.width)) Logger.info(message.format(os=os_sys, height=root_window.height, width=root_window.width))
if __name__ == '__main__':
JustCheckersApp().run()

View File

@ -91,7 +91,7 @@ ScreenManager:
Label: Label:
size_hint_y: 0.1 size_hint_y: 0.1
RstDocument: RstDocument:
source: "justcheckers/assets/{}.md".format(root.documentation) source: "assets/{}.md".format(root.documentation)
size_hint_y: 0.75 size_hint_y: 0.75
size_hint_x: 0.9 size_hint_x: 0.9
pos_hint: {'center_x': 0.5} pos_hint: {'center_x': 0.5}