Skip to content

Complete rename of the project - from jupyter_desktop/jupyter-desktop-server to jupyter_remote_desktop_proxy #20

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 19, 2023
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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN wget -q "https://sourceforge.net/projects/turbovnc/files/${TURBOVNC_VERSION}
&& rm ./turbovnc.deb \
&& ln -s /opt/TurboVNC/bin/* /usr/local/bin/

COPY jupyter_desktop /opt/install/jupyter_desktop
COPY jupyter_remote_desktop_proxy /opt/install/jupyter_remote_desktop_proxy
COPY setup.py MANIFEST.in README.md LICENSE /opt/install/
RUN fix-permissions /opt/install

Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
graft jupyter_desktop/share
graft jupyter_remote_desktop_proxy/share
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--- jupyter_desktop/share/web/noVNC-1.2.0/vnc_lite.html.orig 2021-07-23 15:53:07.951581766 +0100
+++ jupyter_desktop/share/web/noVNC-1.2.0/vnc_lite.html 2021-07-23 15:52:29.893284532 +0100
diff --git a/jupyter_remote_desktop_proxy/share/web/noVNC-1.2.0/vnc_lite.html b/jupyter_remote_desktop_proxy/share/web/noVNC-1.2.0/vnc_lite.html
index d17ab9e..a9e3e9b 100644
--- a/jupyter_remote_desktop_proxy/share/web/noVNC-1.2.0/vnc_lite.html
+++ b/jupyter_remote_desktop_proxy/share/web/noVNC-1.2.0/vnc_lite.html
@@ -3,6 +3,8 @@
<head>

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@


setup(
name="jupyter-desktop-server",
name="jupyter-remote-desktop-proxy",
packages=find_packages(),
version='0.1.3',
version='0.2.0',
author="Jupyter Development Team",
author_email="[email protected]",
classifiers=[
Expand All @@ -22,7 +22,7 @@
description="Run a desktop environments on Jupyter",
entry_points={
'jupyter_serverproxy_servers': [
'desktop = jupyter_desktop:setup_desktop',
'desktop = jupyter_remote_desktop_proxy:setup_desktop',
]
},
install_requires=[
Expand Down