This commit is contained in:
Maxim Slipenko 2024-02-11 21:03:54 +03:00
parent ae51b6e6f0
commit 544cfa355f
3 changed files with 26 additions and 8 deletions

View File

@ -3,7 +3,7 @@ ignored-modules=PySide2
extension-pkg-whitelist=PySide2
[MASTER]
init-hook="import sys; sys.path.append('./statapp')"
init-hook="import sys; sys.path.append('.')"
ignore-patterns=ui_.+\.py
[BASIC]

View File

@ -1,4 +1,23 @@
<!DOCTYPE html>
<!--
-- Copyright (c) 2024 Maxim Slipenko, Eugene Lazurenko.
--
-- This file is part of Statapp
-- (see https://github.com/shizand/statapp).
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<html lang="en">
<head>
<meta charset="utf-8" />

View File

@ -54,4 +54,3 @@ class UsageWindow(QMainWindow):
def onLinkClicked(self, url):
# Open the URL in the default web browser instead of the QWebEngineView
QDesktopServices.openUrl(url)