Skip to content

Commit

Permalink
Merge pull request #5 from erkanisik1/main
Browse files Browse the repository at this point in the history
installing'de gösterilen % bölümü kaldırıldı.
  • Loading branch information
erkanisik1 committed Nov 10, 2022
2 parents b9909dc + f1d4992 commit afdf0b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion yali/gui/ScrInstall.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,10 @@ def checkQueueEvent(self):
self.installProgress.ui.info.setText(
_("General",
# "Installing <b>{percent:.2f}%</b>".format(percent=percent)))
"Installing <b>{percent:.2f}%</b> : {file}".format(**info)))
#"Installing <b>{percent:.2f}%</b> : {file}".format(**info)))
#09-11-2022 tarihinde değiştirildi
"Installing: {file}".format(**info)))

if percent >= self.cur + 0.5:
ctx.logger.debug("Sqfs: installing {}%".format(percent))
self.cur = percent
Expand Down
2 changes: 1 addition & 1 deletion yali/pisiiface.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def configurePending():
# Make baselayout configure first
pisi.api.configure_pending(['baselayout'])
# And all of pending packages
pisi.api.configure_pending()
pisi.api.configure_pending()
os.unlink(ctx.consts.target_dir + ctx.consts.target_dir)


Expand Down

0 comments on commit afdf0b4

Please sign in to comment.