From 72985e834b3ba35245d6d47edad2e76dbd621955 Mon Sep 17 00:00:00 2001 From: Lars Bergmann Date: Sun, 23 Dec 2018 19:50:17 +0100 Subject: [PATCH] Finalized version 0.8.0 --- README.md | 4 +--- bla/engine.org | 16 ++++++++-------- buildozer.spec | 2 +- creditsscreen.py | 2 -- main.py | 4 +++- pc_tape.py | 2 -- 6 files changed, 13 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index b29099d..fef7b80 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,7 @@ Unzip the windows release to a place you trust. Then Navigate into the `main` folder and start `main.exe`. Expect missing `missing *.dll` errors on startup, these are caused by the sound -module and must be investigated in future releases. Currenty all windows releases -work with debug console activated, so expect one window showing the app and another -one showing a terminal showing strange errors. +module and must be investigated in future releases. ## Android diff --git a/bla/engine.org b/bla/engine.org index 8c541b9..e33ba7c 100644 --- a/bla/engine.org +++ b/bla/engine.org @@ -1,16 +1,8 @@ -* TODO [#A] RK4-Engine: dynamisch, wie engine_rk4.py -* TODO [#A] BuildHelper: Wine Windows Build * TODO [#B] Sound ** DONE [#A] Musik *** Play/pause checken ** TODO [#B] Effekte -* TODO [#A] Icons -** DONE Besseres Icon? -** DONE ShowOrbit Icon -** DONE Show/Hide Toggle -** Info Icon -** DONE Gewicht Plus/Minus * TODO [#B] Planeten-Texturen ** DONE [#A] Texturen für HD-Screens ** TODO [#B] Noch eine Textur um Glow abzubilden @@ -25,6 +17,14 @@ *** Auswertung der Distanz --> Orbits *** Zählen von Kollisionen ** TODO [#B] Auswertung der Trajekorie TUTORIAL +* DONE Icons +** DONE Besseres Icon? +** DONE ShowOrbit Icon +** DONE Show/Hide Toggle +** Info Icon +** DONE Gewicht Plus/Minus +* DONE BuildHelper: Wine Windows Build +* DONE RK4-Engine: dynamisch, wie engine_rk4.py * DONE Online Saves ** TODO [#B] Screen für Up-/Download ** TODO [#C] Preview? Description? Daten für Savegame? diff --git a/buildozer.spec b/buildozer.spec index ea6a463..07af41d 100644 --- a/buildozer.spec +++ b/buildozer.spec @@ -29,7 +29,7 @@ source.exclude_dirs = tests, bin, build #version.filename = %(source.dir)s/main.py # (str) Application versioning (method 2) -version = 0.7.5 +version = 0.8.0 # (list) Application requirements # comma seperated e.g. requirements = sqlite3,kivy diff --git a/creditsscreen.py b/creditsscreen.py index a1135c8..55870c2 100644 --- a/creditsscreen.py +++ b/creditsscreen.py @@ -17,7 +17,6 @@ class CreditsScreen(Screen): - logic = ObjectProperty(None) mainlayout = ObjectProperty(None) @@ -97,6 +96,5 @@ def creditlines(self): 'many many more people from FLAFLA', '', '## Thanks to ##', - 'My roommates for enduring my endless hours of talk about this project', 'Everyone else i forgtot to mention' ] diff --git a/main.py b/main.py index ebbba8e..0b27b58 100644 --- a/main.py +++ b/main.py @@ -3,8 +3,10 @@ Config.set('graphics', 'maxfps', '30') Config.set('kivy', 'log_enable', '0') -# resize window when using windows to beautify layout +# resize window when using windows to beautify layout... if platform.system() == 'Windows': + # ...and set window icon. ATTENTION! only do this on windows! android app + # crashed with this option set Config.set('kivy', 'window_icon', 'media/pocketcosmos.ico') Config.set('graphics', 'width', '1280') Config.set('graphics', 'height', '720') diff --git a/pc_tape.py b/pc_tape.py index 1ff7dd2..9eb4b42 100644 --- a/pc_tape.py +++ b/pc_tape.py @@ -136,7 +136,6 @@ def tick_clone(self, dt): else: ticks = diff - #print('Plan is doing %s ticks' % ticks) timeleft = self.logic.intervals['tick'] * 0.8 time_took = 0 @@ -145,7 +144,6 @@ def tick_clone(self, dt): self.future_data.append(self.fetch_data(self.temp_engine)) time_took += self.tick_time if ticksdone > 1 and time_took > timeleft: - #print('aborted after %s ticks' % (ticksdone + 1)) break # print('Buffer length: %s' % len(self.future_data))