Skip to content

Commit

Permalink
Finalized version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gandie committed Dec 23, 2018
1 parent ee36cb5 commit 72985e8
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 17 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
16 changes: 8 additions & 8 deletions bla/engine.org
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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?
Expand Down
2 changes: 1 addition & 1 deletion buildozer.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions creditsscreen.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

class CreditsScreen(Screen):


logic = ObjectProperty(None)
mainlayout = ObjectProperty(None)

Expand Down Expand Up @@ -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'
]
4 changes: 3 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 0 additions & 2 deletions pc_tape.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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))
Expand Down

0 comments on commit 72985e8

Please sign in to comment.