-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
146 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ Credits | |
Authors | ||
~~~~~~~ | ||
|
||
OpenBST is written and maintained by: | ||
Kng is written and maintained by: | ||
|
||
- `Giuseppe Masetti <mailto:[email protected]>`_ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
History | ||
------- | ||
|
||
1.3 | ||
~~~ | ||
|
||
2024-02-17 | ||
|
||
- Added #SSM datagrams. | ||
- Switch to PySide6 | ||
|
||
|
||
0.2 | ||
~~~ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,29 @@ | ||
import logging | ||
import os | ||
|
||
from hyo2.abc.lib.lib_info import LibInfo | ||
from hyo2.abc2.lib.package.pkg_info import PkgInfo | ||
|
||
logger = logging.getLogger(__name__) | ||
logger.addHandler(logging.NullHandler()) | ||
|
||
name = "Kng" | ||
__version__ = "1.3.0" | ||
__author__ = "[email protected]" | ||
__license__ = "LGPLv3 license" | ||
__copyright__ = "Copyright 2024 University of New Hampshire, Center for Coastal and Ocean Mapping." | ||
|
||
lib_info = LibInfo() | ||
|
||
lib_info.lib_name = name | ||
lib_info.lib_version = __version__ | ||
lib_info.lib_author = "Giuseppe Masetti(UNH,JHC-CCOM)" | ||
lib_info.lib_author_email = "[email protected]" | ||
|
||
lib_info.lib_license = "LGPLv3" | ||
lib_info.lib_license_url = "https://www.hydroffice.org/license/" | ||
|
||
lib_info.lib_path = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
lib_info.lib_url = "https://www.hydroffice.org/sis_emu/" | ||
lib_info.lib_manual_url = "https://www.hydroffice.org/manuals/kng/index.html" | ||
lib_info.lib_support_email = "[email protected]" | ||
lib_info.lib_latest_url = "https://www.hydroffice.org/latest/sis_emu.txt" | ||
|
||
lib_info.lib_dep_dict = { | ||
"hyo2.abc": "hyo2.abc", | ||
"PySide2": "PySide2" | ||
} | ||
pkg_info = PkgInfo( | ||
name=name, | ||
version=__version__, | ||
author="Giuseppe Masetti", | ||
author_email="[email protected]", | ||
lic="LGPLv3", | ||
lic_url="https://www.hydroffice.org/license/", | ||
path=os.path.abspath(os.path.dirname(__file__)), | ||
url="https://www.hydroffice.org/sis_emu/", | ||
manual_url="https://www.hydroffice.org/manuals/kng/index.html", | ||
support_email="[email protected]", | ||
latest_url="https://www.hydroffice.org/latest/sis_emu.txt", | ||
deps_dict={ | ||
"hyo2.abc2": "hyo2.abc2", | ||
"PySide6": "PySide6" | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,12 @@ | ||
import os | ||
from hyo2.abc.app.app_info import AppInfo | ||
from hyo2.kng import name, __version__ | ||
|
||
app_info = AppInfo() | ||
|
||
app_info.app_name = name | ||
app_info.app_version = __version__ | ||
app_info.app_author = "Giuseppe Masetti(UNH,JHC-CCOM)" | ||
app_info.app_author_email = "[email protected]" | ||
|
||
app_info.app_license = "LGPLv3" | ||
app_info.app_license_url = "https://www.hydroffice.org/license/" | ||
|
||
app_info.app_path = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
app_info.app_url = "https://www.hydroffice.org/sis_emu/" | ||
app_info.app_manual_url = "https://www.hydroffice.org/manuals/kng/index.html" | ||
app_info.app_support_email = "[email protected]" | ||
app_info.app_latest_url = "https://www.hydroffice.org/latest/sis_emu.txt" | ||
|
||
app_info.app_media_path = os.path.join(app_info.app_path, "media") | ||
app_info.app_main_window_object_name = "MainWindow" | ||
app_info.app_license_path = os.path.join(app_info.app_media_path, "LICENSE") | ||
app_info.app_icon_path = os.path.join(app_info.app_media_path, "app_icon.png") | ||
from hyo2.kng import pkg_info | ||
|
||
app_path = os.path.abspath(os.path.dirname(__file__)) | ||
app_media_path = os.path.join(app_path, "media") | ||
app_info = pkg_info.app_info( | ||
app_name="SISEmu", | ||
app_path=app_path, | ||
app_media_path=app_media_path, | ||
app_license_path=os.path.join(app_media_path, "LICENSE"), | ||
app_icon_path=os.path.join(app_media_path, "app_icon.png") | ||
) |
Oops, something went wrong.