Skip to content

Commit

Permalink
Merge pull request #172 from condoratberlin/development
Browse files Browse the repository at this point in the history
fixing support for empty callsign
  • Loading branch information
GliderGeek committed Feb 11, 2024
2 parents 4c708de + fc9001b commit 92f2f12
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Master

[unreleased]
- bump opensoar to 1.1.2: now support empty callsign
- fix internal typo in settingsclass

v0.64.0 - 2023-08-25
- made export more robust when certain attributes not present
Expand Down
4 changes: 2 additions & 2 deletions PySoar/exportClass.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ class ExcelExport(object):

def initiate_style_dict(self):
self.style_dict['text'] = xlwt.easyxf('font: name Times New Roman')
self.style_dict['text_bst'] = xlwt.easyxf('font: name Times New Roman, bold on; pattern: pattern solid, fore_colour light_green')
self.style_dict['text_wrst'] = xlwt.easyxf('font: name Times New Roman, bold on; pattern: pattern solid, fore_colour rose')
self.style_dict['text_best'] = xlwt.easyxf('font: name Times New Roman, bold on; pattern: pattern solid, fore_colour light_green')
self.style_dict['text_worst'] = xlwt.easyxf('font: name Times New Roman, bold on; pattern: pattern solid, fore_colour rose')

self.style_dict['number'] = xlwt.easyxf('font: name Times New Roman, bold off', num_format_str='#,##0.00')
self.style_dict['number_best'] = xlwt.easyxf('font: name Times New Roman, bold on; pattern: pattern solid, fore_colour light_green', num_format_str='#,##0.00')
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
xlwt==1.3.0
pyinstaller==5.9.0
opensoar==1.1.1
opensoar==1.1.2
wxpython==4.2.0 # python <= 3.10
requests==2.28.2

0 comments on commit 92f2f12

Please sign in to comment.