48
48
];
49
49
preset_features = [
50
50
str (),
51
- "Fix Bow & Arrow|Fix Attacking|Mob Spawning|Fancy Graphics|Fix Sign Placement|ModPi" ,
52
- "Touch GUI|Survival Mode|Fix Bow & Arrow|Fix Attacking|Mob Spawning|Fancy Graphics| Disable Autojump By Default|Fix Sign Placement|Show Block Outlines "
51
+ "Fix Bow & Arrow|Fix Attacking|Mob Spawning|Fancy Graphics|Fix Sign Placement|Expand Creative Inventory| ModPi" ,
52
+ "Touch GUI|Survival Mode|Fix Bow & Arrow|Fix Attacking|Mob Spawning|Disable Autojump By Default|Fix Sign Placement|Fancy Graphics "
53
53
];
54
54
55
55
features = [
60
60
"Mob Spawning" ,
61
61
"Fancy Graphics" ,
62
62
"Disable Autojump By Default" ,
63
- "Fix Sign Placement" ,
64
63
"Show Block Outlines" ,
64
+ "Fix Sign Placement" ,
65
+ "Expand Creative Inventory" ,
66
+ "Peaceful Mode" ,
65
67
"ModPi"
66
68
];
67
69
enabled_features = str ();
@@ -196,7 +198,7 @@ def update_dlls():
196
198
dll_files = glob ("/usr/lib/libmcpi-docker/lib*.so" );
197
199
bk = environ .get ("LD_LIBRARY_PATH" ) or str ();
198
200
environ .update ({
199
- "LD_LIBRARY_PATH" : f"/opt/minecraft-pi/minecraft-pi/lib/brcm:/usr/lib/libmcpi-docker:/usr/arm-linux-gnueabihf/lib :{ bk } " ,
201
+ "LD_LIBRARY_PATH" : f"/opt/minecraft-pi/minecraft-pi/lib/brcm:/usr/lib/libmcpi-docker:/usr/lib/ arm-linux-gnueabihf:{ bk } " ,
200
202
"LD_PRELOAD" : ":" .join (dll_files )
201
203
});
202
204
return 0 ;
@@ -538,7 +540,7 @@ def about_tab(parent):
538
540
title .config (font = ("" , 24 ));
539
541
title .pack ();
540
542
541
- version = Label (tab , text = "v0.7.1 " );
543
+ version = Label (tab , text = "v0.7.2 " );
542
544
version .config (font = ("" , 10 ));
543
545
version .pack ();
544
546
@@ -562,7 +564,7 @@ def main(args):
562
564
563
565
window = Tk ();
564
566
window .title ("MCPI Laucher" );
565
- window .geometry ("480x348 " );
567
+ window .geometry ("512x400 " );
566
568
window .resizable (False , False );
567
569
window .iconphoto (True , PhotoImage (file = "/usr/share/icons/hicolor/48x48/apps/mcpil.png" ));
568
570
@@ -593,3 +595,4 @@ def main(args):
593
595
594
596
if __name__ == "__main__" :
595
597
sys .exit (main (sys .argv ));
598
+
0 commit comments