Skip to content

Commit 6cc3436

Browse files
committed
fixed a position of TES4 version label in the mod datail pane.
1 parent 6955226 commit 6cc3436

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Mopy/bash/basher.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1812,7 +1812,7 @@ def __init__(self,parent):
18121812
self.edited = False
18131813
textWidth = 200
18141814
#--Version
1815-
self.version = staticText(self,'v0.0')
1815+
self.version = staticText(self,'v0.0 ')
18161816
id = self.fileId = wx.NewId()
18171817
#--File Name
18181818
self.file = textCtrl(self,id,size=(textWidth,-1))
@@ -1896,7 +1896,7 @@ def SetFile(self,fileName='SAME'):
18961896
self.authorStr = Unicode('')
18971897
self.modifiedStr = Unicode('')
18981898
self.descriptionStr = Unicode('')
1899-
self.versionStr = Unicode('v0.0')
1899+
self.versionStr = Unicode('v0.0 ')
19001900
tagsStr = Unicode('')
19011901
#--Valid fileName?
19021902
else:
@@ -1906,7 +1906,7 @@ def SetFile(self,fileName='SAME'):
19061906
self.authorStr = Unicode(modInfo.header.author,'mbcs')
19071907
self.modifiedStr = Unicode(formatDate(modInfo.mtime))
19081908
self.descriptionStr = Unicode(modInfo.header.description,'mbcs')
1909-
self.versionStr = Unicode('v%0.1f' % (modInfo.header.version,))
1909+
self.versionStr = Unicode('v%0.2f' % (modInfo.header.version,))
19101910
tagsStr = Unicode('\n').join(sorted(modInfo.getBashTags()))
19111911
#--Editable mtime?
19121912
if fileName in bosh.modInfos.autoSorted:

Mopy/bash/l10n/Japanese.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1809,7 +1809,7 @@ Mods with non standard TES4 versions
18091809
=== bash\bosh.py, 12187
18101810
Following mods have a TES4 version that isn't recognized as one of the standard versions (1.32, 1.33 and 1.34). It is untested what effect this can have on the game, but presumably Fallout New Vegas will refuse to load anything above 1.34
18111811
>>>>
1812-
1812+
�ȉ���MOD�͈�ʓI��TES4�o�[�W����(1.32, 1.33 and 1.34)�̂�����ɂ��Y�����Ȃ��o�[�W������L���Ă��܂�. �Q�[���ɂǂ̂悤�ȉe�����y�ڂ����͕s���ł����A1.34���傫�����l�̂��̂�FalloutNV�����[�h�����ۂ���”\��������܂�
18131813
=== bash\bosh.py, 12194
18141814
Missing/Delinquent Masters
18151815
>>>>

0 commit comments

Comments
 (0)