Skip to content

Commit

Permalink
Rename GUI folder
Browse files Browse the repository at this point in the history
  • Loading branch information
layday committed Feb 15, 2024
1 parent 73cb7bd commit 646856a
Show file tree
Hide file tree
Showing 64 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/freeze.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,13 @@ jobs:
python -m pip install 'briefcase @ git+https://github.com/layday/briefcase@instawow'
python -m briefcase build ${{ matrix.build-env.briefcase-build-opts }}
python -m briefcase package ${{ matrix.build-env.briefcase-package-opts }}
working-directory: gui-webview
working-directory: instawow-gui
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: instawow-gui-${{ needs.build-package.outputs.wheel-version }}-${{ matrix.build-env.os }}
path: |
gui-webview/dist/instawow-gui-*
instawow-gui/dist/instawow-gui-*
if-no-files-found: error
create-release:
if: startsWith(github.ref, 'refs/tags/')
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ and several other goodies.
:target: https://asciinema.org/a/8m36ncAoyTmig4MXfQM8YjE6a?autoplay=1
:alt: Asciicast demonstrating the operation of instawow
:width: 640
- .. figure:: https://raw.githubusercontent.com/layday/instawow/main/gui-webview/screenshots/v1.34.1.png
- .. figure:: https://raw.githubusercontent.com/layday/instawow/main/instawow-gui/screenshots/v1.34.1.png
:target: https://github.com/layday/instawow/releases/latest
:alt: instawow-gui main window
:width: 640
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def format_(session: nox.Session):
session.run('ruff', 'format', *['--check'] if check else [], '.')

if '--skip-prettier' not in session.posargs:
with session.chdir('gui-webview/frontend'):
with session.chdir('instawow-gui/frontend'):
session.run('npm', 'install', external=True)
session.run(
'npx',
Expand Down Expand Up @@ -145,7 +145,7 @@ def type_check(session: nox.Session):
@nox.session(python=False)
def bundle_frontend(session: nox.Session):
"Bundle the frontend."
with session.chdir('gui-webview/frontend'):
with session.chdir('instawow-gui/frontend'):
session.run('git', 'clean', '-fX', '../src/instawow_gui/frontend', external=True)
session.run('npm', 'install', external=True)
session.run('npx', 'svelte-check', external=True)
Expand Down Expand Up @@ -237,7 +237,7 @@ def patch_frontend_spec(session: nox.Session):

options = parser.parse_args(session.posargs)

spec_path = Path(__file__).parent.joinpath('gui-webview', 'pyproject.toml')
spec_path = Path(__file__).parent.joinpath('instawow-gui', 'pyproject.toml')
spec = spec_path.read_text(encoding='utf-8')

if options.version:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ urls.homepage = "http://github.com/layday/instawow"
packages = [
{ include = "instawow", from = "src" },
{ include = "instawow_wa_updater", from = "src" },
{ include = "instawow_gui", from = "gui-webview/src" },
{ include = "instawow_gui", from = "instawow-gui/src" },
]
include = [
{ path = "CHANGELOG.rst", format = "sdist" },
{ path = "COPYING", format = "sdist" },
{ path = "gui-webview/src/instawow_gui/frontend/*" },
{ path = "instawow-gui/src/instawow_gui/frontend/*" },
{ path = "tests", format = "sdist" },
]
scripts.instawow = "instawow.cli:main"
Expand Down
4 changes: 2 additions & 2 deletions pyrightconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"include": ["src", "gui-webview/src", "tests/plugin"],
"include": ["src", "instawow-gui/src", "tests/plugin"],
"ignore": ["src/instawow/_migrations"],
"strict": [
"src",
"gui-webview/src/instawow_gui/json_rpc_server.py",
"instawow-gui/src/instawow_gui/json_rpc_server.py",
"tests/plugin"
]
}

0 comments on commit 646856a

Please sign in to comment.