@@ -730,9 +730,9 @@ def bnr_reset_info(self):
730730 for p in self .rootPath .rglob ("*.bnr" ):
731731 if p .is_file ():
732732 with p .open ("rb" ) as pp :
733- self .bnrMap [
734- p . relative_to ( self . rootPath / "files" )
735- ] = BNR . from_data ( pp , size = p . stat (). st_size )
733+ self .bnrMap [p . relative_to ( self . rootPath / "files" )] = (
734+ BNR . from_data ( pp , size = p . stat (). st_size )
735+ )
736736
737737 self .ui .bannerComboBox .clear ()
738738 self .ui .bannerComboBox .addItems (
@@ -863,7 +863,7 @@ def help_about(self):
863863 "\n \n " ,
864864 "Please see the readme for more details." ,
865865 "\n \n " ,
866- "Copyright © 2023 ; All rights reserved." ,
866+ "Copyright © 2025 ; All rights reserved." ,
867867 "\n \n " ,
868868 "JoshuaMK <joshuamkw2002@gmail.com>" ,
869869 "\n \n " ,
@@ -886,6 +886,13 @@ def help_file_alignment(self):
886886 "\n \n " ,
887887 "Valid alignments:\n " ,
888888 "4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768" ,
889+ "\n \n " ,
890+ "Note: There are recommended alignments for certain applications.\n " ,
891+ "For example, some games use streamed audio files (.adp) that require\n " ,
892+ "a 32768 alignment to adhere with the DVD streaming hardware.\n \n " ,
893+ "Still, other games are finniky and require 32 byte alignment\n " ,
894+ "of all files to work properly.\n \n " ,
895+ "File alignment is your friend; don't be afraid to experiment!" ,
889896 ]
890897 )
891898
@@ -902,6 +909,17 @@ def help_file_position(self):
902909 "to set the internal ISO position of that node." ,
903910 "\n \n " ,
904911 "Default position: -1" ,
912+ "\n \n " ,
913+ "This is a useful tool for exotic DVD optimizations.\n " ,
914+ "Files with a smaller/lower position are placed closer to\n " ,
915+ "the center of the DVD, while files with a larger/higher\n " ,
916+ "position are placed closer to the edge of the DVD.\n " ,
917+ "Since the outer edge of the DVD has a higher read speed,\n " ,
918+ "place lower priority (and smaller) files closer to the center\n " ,
919+ "by using a lower position, leaving room for larger files\n "
920+ "to be automatic placed at the edge of the DVD." ,
921+ "\n \n " ,
922+ "Note: This feature is for advanced modding only!\n " ,
905923 ]
906924 )
907925
@@ -915,7 +933,7 @@ def help_file_exclusion(self):
915933 info = "" .join (
916934 [
917935 "When an extracted root is opened, you can right click on each node\n " ,
918- "to set if it ( and all children) is excluded from the build process." ,
936+ "to set if it-- and all its children--are excluded from the build process." ,
919937 ]
920938 )
921939
0 commit comments