Skip to content

Commit

Permalink
版本推进至0.11.14,解决账号编辑器漏洞
Browse files Browse the repository at this point in the history
  • Loading branch information
lunzhiPenxil committed Aug 5, 2023
1 parent 50e8e80 commit a4b0e76
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions OlivOS/infoAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
import OlivOS


OlivOS_Version = '0.11.13'
OlivOS_SVN = 133
OlivOS_Version = '0.11.14'
OlivOS_SVN = 134

# Compatible <= Plugin[compatible_svn] : Compatible
# OldCompatible <= Plugin[compatible_svn] < Compatible : OldCompatible Warn
Expand Down
14 changes: 9 additions & 5 deletions OlivOS/multiLoginUIAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -1400,11 +1400,15 @@ def tree_edit_UI_Entry_update(self, action, con_action):
for tmp_Entry_this in self.UIData['edit_root_Combobox_dict']['type_extends_name_note_list'][type_this]:
if tmp_offset >= len(self.UIData['edit_root_Entry_Extend_list']):
break
self.UIData[self.UIData['edit_root_Entry_Extend_list'][tmp_offset] + '_StringVar'].set(
self.UIData['Account_data'][self.hash_key].extends[
self.UIData['edit_root_Combobox_dict']['type_extends_note_list'][type_this][tmp_Entry_this]
]
)
if self.UIData['edit_root_Combobox_dict']['type_extends_note_list'][type_this][tmp_Entry_this] \
in self.UIData['Account_data'][self.hash_key].extends:
self.UIData[self.UIData['edit_root_Entry_Extend_list'][tmp_offset] + '_StringVar'].set(
self.UIData['Account_data'][self.hash_key].extends[
self.UIData['edit_root_Combobox_dict']['type_extends_note_list'][type_this][tmp_Entry_this]
]
)
else:
self.UIData[self.UIData['edit_root_Entry_Extend_list'][tmp_offset] + '_StringVar'].set('')
tmp_offset += 1


Expand Down

0 comments on commit a4b0e76

Please sign in to comment.