Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.3.2
- update proyect for python 3.14


# 3.3.1

- Update proyect for python 3.12
Expand Down
14 changes: 7 additions & 7 deletions client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@

from setuptools import setup

__version__ = '3.3.1'
__version__ = "3.3.2"

requires = [
"log_colorizer>=1.8.3",
"jedi>=0.9.0",
'uncompyle6',
'python-magic>=0.4.15',
"uncompyle6",
"python-magic>=0.4.15",
]

options = dict(
Expand All @@ -26,12 +26,12 @@
url="http://github.com/Kozea/wdb",
license="GPLv3",
platforms="Any",
packages=['wdb'],
packages=["wdb"],
install_requires=requires,
entry_points={
'console_scripts': [
'wdb=wdb.__main__:main',
'wdb-%s=wdb.__main__:main' % sys.version[:3],
"console_scripts": [
"wdb=wdb.__main__:main",
"wdb-%s=wdb.__main__:main" % sys.version[:3],
]
},
classifiers=[
Expand Down
1 change: 0 additions & 1 deletion flask_wdb_hook/.gitignore

This file was deleted.

26 changes: 0 additions & 26 deletions flask_wdb_hook/README.md

This file was deleted.

Binary file removed flask_wdb_hook/demo.gif
Binary file not shown.
1 change: 0 additions & 1 deletion flask_wdb_hook/flask-wdb.pth

This file was deleted.

20 changes: 0 additions & 20 deletions flask_wdb_hook/setup.py

This file was deleted.

35 changes: 20 additions & 15 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
# ============================================================================
# WDB Fork - Enhanced Web Debugger
# Based on the original project by Florian Mounier (Kozea)
# License: GPLv3
# Maintainer: Jorge Obiols <[email protected]>
# ============================================================================

FROM python:3.13.5-alpine

FROM python:3.14-slim
LABEL maintainer="Jorge Obiols <[email protected]>" \
license="GPLv3" \
description="Fork of WDB with improvements and Python 3.13 compatibility. Based on the original project by Florian Mounier (Kozea)."
description="WDB server with Python 3.14 compatibility."

ARG WDB_VERSION="3.3.2"

# Dependencias necesarias para compilar e instalar
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
build-essential \
&& rm -rf /var/lib/apt/lists/*

# Clonar e instalar WDB desde GitHub público
RUN git clone https://github.com/jobiols/wdb.git /opt/wdb \
&& pip install /opt/wdb/client \
&& pip install /opt/wdb/server \
&& rm -rf /opt/wdb

RUN apk add --no-cache git gcc musl-dev linux-headers
EXPOSE 19840
EXPOSE 1984

RUN pip install --no-cache-dir \
git+https://github.com/jobiols/[email protected]#subdirectory=client \
git+https://github.com/jobiols/[email protected]#subdirectory=server

EXPOSE 19840 1984
CMD ["wdb.server.py", "--detached_session"]
# para debug
#CMD ["wdb.server.py", "--detached_session", "--debug", "--more"]
2 changes: 1 addition & 1 deletion server/bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wdb",
"version": "3.3.1",
"version": "3.3.2",
"homepage": "https://github.com/Kozea/wdb",
"authors": [
"Florian Mounier <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion server/coffees/wdb.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

class Wdb extends Log
__version__: '3.3.1'
__version__: '3.3.2'

constructor: ->
super()
Expand Down
4 changes: 2 additions & 2 deletions server/make_dockerfile.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
sd build --rm=true -t jobiols/wdb:3.3.1 ./
sd build --rm=true --no-cache=true -t jobiols/wdb:3.3.2 ./
result=$?
if [ "$result" -eq 0 ]; then
sd push jobiols/wdb:3.3.1
sd push jobiols/wdb:3.3.2
else
echo "Falló la creación de la imagen"
fi
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wdb",
"version": "3.3.1",
"version": "3.3.2",
"description": "An improbable python web debugger through WebSockets",
"repository": {
"type": "git",
Expand Down
28 changes: 14 additions & 14 deletions server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@

from setuptools import setup

__version__ = '3.3.1'
__version__ = "3.3.2"

requires = [
"wdb==%s" % __version__,
"tornado>=5.0",
"psutil>=2.1",
'tornado_systemd',
'psutil'
"tornado_systemd",
"psutil",
]
if sys.platform == 'linux':
requires.append('pyinotify')
if sys.platform == "linux":
requires.append("pyinotify")

options = dict(
name="wdb.server",
Expand All @@ -29,17 +29,17 @@
url="http://github.com/Kozea/wdb",
license="GPLv3",
platforms="Any",
scripts=['wdb.server.py'],
packages=['wdb_server'],
scripts=["wdb.server.py"],
packages=["wdb_server"],
install_requires=requires,
package_data={
'wdb_server': [
'static/libs/material-design-lite/*',
'static/stylesheets/*',
'static/hipster.jpg',
'static/img/*.png',
'static/javascripts/wdb/*.min.js',
'templates/*.html',
"wdb_server": [
"static/libs/material-design-lite/*",
"static/stylesheets/*",
"static/hipster.jpg",
"static/img/*.png",
"static/javascripts/wdb/*.min.js",
"templates/*.html",
]
},
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion server/wdb_server/static/javascripts/wdb.js
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,7 @@ help = "<div class=\"mdl-tabs mdl-js-tabs mdl-js-ripple-effect\">\n <div class=
Wdb = (function(superClass) {
extend(Wdb, superClass);

Wdb.prototype.__version__ = '3.3.1';
Wdb.prototype.__version__ = '3.3.2';

function Wdb() {
Wdb.__super__.constructor.call(this);
Expand Down
2 changes: 1 addition & 1 deletion server/wdb_server/static/javascripts/wdb/wdb.min.js

Large diffs are not rendered by default.