Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/stable_python3_10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
contents: read

jobs:
build_dev_version:
build_stable_version:
runs-on: windows-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable_python3_11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
contents: read

jobs:
build_dev_version:
build_stable_version:
runs-on: windows-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable_python3_12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
contents: read

jobs:
build_dev_version:
build_stable_version:
runs-on: windows-latest

steps:
Expand Down
4 changes: 2 additions & 2 deletions automation_ide/automation_editor_ui/menu/menu_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from typing import TYPE_CHECKING

from je_editor import BrowserWidget
from je_editor import MainBrowserWidget

if TYPE_CHECKING:
from automation_ide.automation_editor_ui.editor_main.main_ui import AutomationEditor
Expand All @@ -11,6 +11,6 @@
def open_web_browser(
automation_editor_instance: AutomationEditor, url: str, tab_name: str) -> None:
automation_editor_instance.tab_widget.addTab(
BrowserWidget(start_url=url),
MainBrowserWidget(start_url=url),
f"{tab_name}{automation_editor_instance.tab_widget.count()}"
)
3 changes: 2 additions & 1 deletion dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
build
twine
PySide6
je-api-testka
je-load-density
je-auto-control
Expand All @@ -8,6 +9,6 @@ je-mail-thunder
automation_ide_dev
sphinx
sphinx-rtd-theme
PySide6==6.10.0
PySide6
auto-py-to-exe
test_pioneer
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Rename to build stable version
# This is stable version
# Rename to dev version
# This is dev version
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "automation_ide"
version = "0.0.48"
name = "automation_ide_dev"
version = "0.0.56"
authors = [
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
]
description = "AutomationEditor for multi automation"
requires-python = ">=3.10"
license-files = ["LICENSE"]
dependencies = [
"je-editor", "je_auto_control", "je_web_runner",
"je_editor_dev", "je_auto_control", "je_web_runner",
"je_load_density", "je_api_testka", "je-mail-thunder",
"automation-file", "PySide6==6.10.0", "test_pioneer"
]
Expand All @@ -35,5 +35,6 @@ Code = "https://github.com/Intergration-Automation-Testing/AutomationEditor"
file = "README.md"
content-type = "text/markdown"


[tool.setuptools.packages]
find = { namespaces = false }
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
automation_ide
PySide6==6.10.0
PySide6
9 changes: 4 additions & 5 deletions dev.toml → stable.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Rename to dev version
# This is dev version
# Rename to build stable version
# This is stable version
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "automation_ide_dev"
version = "0.0.54"
name = "automation_ide"
version = "0.0.49"
authors = [
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
]
Expand Down Expand Up @@ -35,6 +35,5 @@ Code = "https://github.com/Intergration-Automation-Testing/AutomationEditor"
file = "README.md"
content-type = "text/markdown"


[tool.setuptools.packages]
find = { namespaces = false }