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 extension-pkg-whitelist=PySide2
[MASTER] [MASTER]
init-hook="import sys; sys.path.append('./statapp')" init-hook="import sys; sys.path.append('.')"
ignore-patterns=ui_.+\.py ignore-patterns=ui_.+\.py
[BASIC] [BASIC]

View File

@ -1,4 +1,23 @@
<!DOCTYPE html> <!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"> <html lang="en">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
@ -320,10 +339,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<div class="Layout Layout--flowRow-until-md Layout--sidebarPosition-end Layout--sidebarPosition-flowRow-end"> <div class="Layout Layout--flowRow-until-md Layout--sidebarPosition-end Layout--sidebarPosition-flowRow-end">
<div class="Layout-main"> <div class="Layout-main">
<div id="readme" class="Box md Box--responsive"> <div id="readme" class="Box md Box--responsive">
<div class="Box-header d-flex border-bottom-0 flex-items-center flex-justify-between color-bg-default rounded-top-2"> <div class="Box-header d-flex border-bottom-0 flex-items-center flex-justify-between color-bg-default rounded-top-2">
<div class="d-flex flex-items-center"> <div class="d-flex flex-items-center">
<h2 class="Box-title"> <h2 class="Box-title">
@ -331,10 +350,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
</h2> </h2>
</div> </div>
</div> </div>
<div class="Box-body px-5 pb-5"> <div class="Box-body px-5 pb-5">
<article id="grip-content" class="markdown-body entry-content container-lg"> <article id="grip-content" class="markdown-body entry-content container-lg">
<h1><a id="user-content-руководство-пользователя-для-программы-statapp" class="anchor" aria-hidden="true" tabindex="-1" href="#руководство-пользователя-для-программы-statapp"><span aria-hidden="true" class="octicon octicon-link"></span></a>Руководство пользователя для программы "Statapp"</h1> <h1><a id="user-content-руководство-пользователя-для-программы-statapp" class="anchor" aria-hidden="true" tabindex="-1" href="#руководство-пользователя-для-программы-statapp"><span aria-hidden="true" class="octicon octicon-link"></span></a>Руководство пользователя для программы "Statapp"</h1>
<h2><a id="user-content-условные-обозначения" class="anchor" aria-hidden="true" tabindex="-1" href="#условные-обозначения"><span aria-hidden="true" class="octicon octicon-link"></span></a>Условные обозначения</h2> <h2><a id="user-content-условные-обозначения" class="anchor" aria-hidden="true" tabindex="-1" href="#условные-обозначения"><span aria-hidden="true" class="octicon octicon-link"></span></a>Условные обозначения</h2>
<p><code>Взаимодействие</code> - так отображается интерфестные части приложения с которыми пользователь может и должен взаимодействовать. к тами относятся кнопки, пункты меню, окна приложения, страницы в моделировании и тд.</p> <p><code>Взаимодействие</code> - так отображается интерфестные части приложения с которыми пользователь может и должен взаимодействовать. к тами относятся кнопки, пункты меню, окна приложения, страницы в моделировании и тд.</p>
@ -486,7 +505,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
</div> </div>
</div> </div>
</div> </div>
</div> </div>
@ -561,4 +580,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
} }
</script> </script>
</body> </body>
</html> </html>

View File

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