EmaNymton
|
2013-01-26
, 19:20
|
|
Posts: 141 |
Thanked: 267 times |
Joined on May 2010
@ Germany
|
#131
|
|
2013-01-26
, 19:40
|
Posts: 239 |
Thanked: 70 times |
Joined on Oct 2010
@ Germany
|
#132
|
|
2013-01-26
, 19:44
|
|
Posts: 141 |
Thanked: 267 times |
Joined on May 2010
@ Germany
|
#133
|
rm /home/user/.config/meegoal*
|
2013-01-26
, 20:06
|
Posts: 239 |
Thanked: 70 times |
Joined on Oct 2010
@ Germany
|
#134
|
|
2013-01-30
, 14:44
|
|
Posts: 141 |
Thanked: 267 times |
Joined on May 2010
@ Germany
|
#135
|
have you an old .deb file? previous version...
|
2016-08-19
, 15:50
|
Posts: 12 |
Thanked: 3 times |
Joined on Jun 2015
@ Krf
|
#136
|
|
2016-08-19
, 18:19
|
|
Posts: 141 |
Thanked: 267 times |
Joined on May 2010
@ Germany
|
#137
|
|
2016-08-20
, 14:34
|
Posts: 12 |
Thanked: 3 times |
Joined on Jun 2015
@ Krf
|
#138
|
|
2016-09-21
, 03:51
|
Posts: 198 |
Thanked: 271 times |
Joined on Mar 2015
@ Germany
|
#139
|
The Following User Says Thank You to monkeyisland For This Useful Post: | ||
|
2016-10-22
, 19:07
|
Posts: 807 |
Thanked: 1,589 times |
Joined on Aug 2014
|
#140
|
But maybe you can try to change it for yourself:
You find the source code in /opt/meegoal/main.py. Somewhere near line 30 should be a variable definition year='2013'. Change it's value to '2016' and try to launch Meegoal.
matchdays_count = {'bl1':34,'bl2':34,'bl3':38,'dfb2013':1,'PL':38,'PD':38,'SA':38,'cl':2,'OBL':36} year = '2016' leagues =['1.Bundesliga', '2.Bundesliga', '3.Bundesliga', 'DFB-Pokal', 'Premiere League', u'tipp3 Bundesliga']
class LoadData(QThread): def __init__(self, league, lpm_view, fav_team, parent = None): QThread.__init__(self, parent) self.league_shortcut = league self.lpm_view = lpm_view self.fav_team = fav_team print "Data", self.league_shortcut self.oldb = OpenLigaDB() self.data = {'bl1': {},'bl2':{},'bl3':{},'dfb12':{},'dfb2016':{}, 'PL':{},'PD':{},'em12':{},'SA':{},'cl':{}, 'OBL':{}}
if __name__ == "__main__": from OpenLigaDB import OpenLigaDB oldb = OpenLigaDB() matches = [] for matchdata in oldb.GetMatchdataByGroupLeagueSaison(1,'bl2','2012').Matchdata: matches.append(Match(matchdata))
rm /home/user/.config/meegoal*