Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
912543a
save change
wyapx Feb 15, 2024
c40b38f
6
Feb 15, 2024
0e2ac18
save changes
wyapx Feb 15, 2024
2fc4e49
save changes
wyapx Feb 16, 2024
b092d5d
fixed wtlogin.trans_emp cmd 0x31
Feb 16, 2024
fd27b6c
save changes
wyapx Feb 16, 2024
0bd9fa8
fixed parser for sso
Linwenxuan04 Feb 17, 2024
c3f4a18
Merge remote-tracking branch 'origin/broken' into back
wyapx Feb 17, 2024
d16b25c
save changes
wyapx Feb 17, 2024
695dcc2
save changes: network.send
wyapx Feb 17, 2024
4da4c1b
save changes: network.send
wyapx Feb 17, 2024
9673bc9
parse qrcode
Linwenxuan04 Feb 17, 2024
b9a7b23
save changes
wyapx Feb 17, 2024
01b44df
qrcode_login stuck on 0xa
wyapx Feb 17, 2024
9e454ca
avoid seq overflow
wyapx Feb 17, 2024
570b6d0
save changes
wyapx Feb 17, 2024
e052ed8
optimized code
wyapx Feb 17, 2024
09fced6
fix pb varint encoded
wyapx Feb 17, 2024
35cb2ca
password & temp_pwd login
wyapx Feb 17, 2024
2d94f9d
register & sso_heartbeat
wyapx Feb 18, 2024
c1e093e
uni sign
wyapx Feb 18, 2024
f5a427e
fixed wtlogin.login
Linwenxuan04 Feb 18, 2024
cb8e777
uni sign
wyapx Feb 18, 2024
0a9069e
fix sign
Linwenxuan04 Feb 18, 2024
388363c
logics of login
wyapx Feb 19, 2024
922f4cd
fix sso header
Linwenxuan04 Feb 19, 2024
726c635
fix status_service.py
Linwenxuan04 Feb 19, 2024
50702bf
remove unused sign
wyapx Feb 19, 2024
24ccd7a
can recv msg
wyapx Feb 19, 2024
4d5e20d
optimized login stage
wyapx Feb 19, 2024
cafca04
simple reconnect
wyapx Feb 19, 2024
6f7d4a5
simple reconnect
wyapx Feb 19, 2024
d0deae2
add log
wyapx Feb 19, 2024
e36ba2d
heartbeat test
wyapx Feb 19, 2024
dfbc46d
fix some pb issue
wyapx Feb 20, 2024
2265203
msg send & recv
wyapx Feb 20, 2024
93937a0
msg parser fix
wyapx Feb 20, 2024
62bcd07
ev, some fix
wyapx Feb 21, 2024
6d9f6a0
send grp msg, msg encode
wyapx Feb 22, 2024
c265fd0
fix first login
wyapx Feb 22, 2024
59bac57
:art: adjust format
RF-Tar-Railt Feb 22, 2024
94e4c3e
Merge pull request #1 from RF-Tar-Railt/broken
wyapx Feb 22, 2024
f8aaacb
add some event
wyapx Feb 22, 2024
e01fb1a
Merge remote-tracking branch 'origin/broken' into back
wyapx Feb 22, 2024
1e280e9
optimized log
wyapx Feb 22, 2024
3f97832
bug fix
wyapx Feb 23, 2024
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
268 changes: 268 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,268 @@
### venv template
# Virtualenv
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
.Python
[Bb]in
[Ii]nclude
[Ll]ib
[Ll]ib64
[Ll]ocal
[Ss]cripts
pyvenv.cfg
.venv
pip-selfcheck.json

### VisualStudioCode template
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix

### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# AWS User-specific
.idea/**/aws.xml

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# SonarLint plugin
.idea/sonarlint/

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

### Python template
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml
.pdm-python

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
.idea/

Loading