Skip to content

Commit

Permalink
版本号提升至0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
DancingSnow0517 committed May 7, 2023
1 parent ab680fc commit 3dcc5de
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/star_rail_gacha/app/pages/home_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@
from PyQt5.QtCore import QSize, Qt, QThread, pyqtSignal
from PyQt5.QtGui import QPainter, QColor, QFont
from PyQt5.QtWidgets import QFrame, QHBoxLayout, QVBoxLayout, QSpacerItem, QSizePolicy, QLabel, QFileDialog
from qfluentwidgets import PushButton, FluentIcon, ComboBox, ToggleButton, MessageBox, InfoBar, InfoBarPosition, Theme, \
qconfig, setTheme, setThemeColor, StateToolTip
from qfluentwidgets import PushButton, FluentIcon, ComboBox, ToggleButton, MessageBox, Theme, StateToolTip, qconfig, \
setTheme, setThemeColor

from ...utils.files import get_local_api_url, get_doc_path
from ...gacha.gacha import Gacha
from ...gacha.gachaManager import GachaManager
from ...gacha.http import fetch
Expand All @@ -20,6 +19,7 @@
from ...utils.QtStringUtil import coloredText
from ...utils.colormap import now_color, next_color, reset_index
from ...utils.config import config
from ...utils.files import get_local_api_url, get_doc_path
from ...utils.style_sheet import StyleSheet

log = logging.getLogger(__name__)
Expand Down
4 changes: 2 additions & 2 deletions src/star_rail_gacha/app/pages/settings_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def __init__(self, parent=None) -> None:
def __initWidget(self):
self.resize(1000, 800)
self.setHorizontalScrollBarPolicy(Qt.ScrollBarAlwaysOff)
self.setViewportMargins(0, 10, 0, 20)
self.setViewportMargins(0, 80, 0, 20)
self.setWidget(self.scrollWidget)
self.setWidgetResizable(True)

Expand Down Expand Up @@ -133,7 +133,7 @@ def __initLayout(self):
self.aboutGroup.addSettingCard(self.qqGroupCard)

self.expandLayout.setSpacing(28)
self.expandLayout.setContentsMargins(36, 76, 36, 0)
self.expandLayout.setContentsMargins(36, 10, 36, 0)
self.expandLayout.addWidget(self.gachaSettingGroup)
self.expandLayout.addWidget(self.personalGroup)
self.expandLayout.addWidget(self.otherGroup)
Expand Down
2 changes: 1 addition & 1 deletion src/star_rail_gacha/constant.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.3.4'
VERSION = '0.3.5'

0 comments on commit 3dcc5de

Please sign in to comment.