albibong 1.0.3__py3-none-any.whl → 1.0.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. albibong/__init__.py +10 -4
  2. albibong/assets/boom_small.mp3 +0 -0
  3. albibong/classes/character.py +29 -9
  4. albibong/classes/event_handler/__init__.py +116 -0
  5. albibong/classes/event_handler/handle_event_character_equipment_changed.py +24 -0
  6. albibong/classes/event_handler/handle_event_health.py +35 -0
  7. albibong/classes/event_handler/handle_event_in_combat_state_update.py +17 -0
  8. albibong/classes/event_handler/handle_event_new_character.py +44 -0
  9. albibong/classes/event_handler/handle_event_other_grabbed_loot.py +14 -0
  10. albibong/classes/event_handler/handle_event_party.py +38 -0
  11. albibong/classes/event_handler/handle_event_update_fame.py +7 -0
  12. albibong/classes/event_handler/handle_event_update_re_spec_points.py +11 -0
  13. albibong/classes/event_handler/handle_operation_change_cluster.py +43 -0
  14. albibong/classes/event_handler/handle_operation_join.py +78 -0
  15. albibong/classes/event_handler/handle_operation_move.py +8 -0
  16. albibong/classes/event_handler/world_data_utils.py +102 -0
  17. albibong/classes/item.py +1 -1
  18. albibong/classes/logger.py +1 -1
  19. albibong/classes/packet_handler.py +6 -4
  20. albibong/classes/world_data.py +14 -278
  21. albibong/gui_dist/Albibong.png +0 -0
  22. albibong/gui_dist/assets/{index-BFSx0nua.css → index-DZvgNqlG.css} +1 -1
  23. albibong/gui_dist/assets/{index-DAndaN_4.js → index-E7pha23k.js} +20 -20
  24. albibong/gui_dist/index.html +5 -5
  25. albibong/requirements.txt +2 -1
  26. albibong/resources/EventCode.py +578 -577
  27. albibong/resources/event_code.json +578 -577
  28. albibong/resources/items.json +16421 -16051
  29. albibong/threads/http_server.py +2 -2
  30. albibong/threads/sniffer_thread.py +1 -0
  31. albibong/threads/websocket_server.py +2 -0
  32. {albibong-1.0.3.dist-info → albibong-1.0.5.dist-info}/METADATA +3 -2
  33. albibong-1.0.5.dist-info/RECORD +64 -0
  34. {albibong-1.0.3.dist-info → albibong-1.0.5.dist-info}/WHEEL +1 -1
  35. albibong-1.0.3.dist-info/RECORD +0 -49
  36. {albibong-1.0.3.dist-info → albibong-1.0.5.dist-info}/entry_points.txt +0 -0
  37. {albibong-1.0.3.dist-info → albibong-1.0.5.dist-info}/licenses/LICENSE +0 -0
@@ -1,12 +1,12 @@
1
- <!doctype html>
1
+ <!DOCTYPE html>
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
5
+ <link rel="icon" type="image/png" href="/Albibong.png" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
- <title>Vite + React + TS</title>
8
- <script type="module" crossorigin src="/assets/index-DAndaN_4.js"></script>
9
- <link rel="stylesheet" crossorigin href="/assets/index-BFSx0nua.css">
7
+ <title>Albibong - Albion Data Tracker</title>
8
+ <script type="module" crossorigin src="/assets/index-E7pha23k.js"></script>
9
+ <link rel="stylesheet" crossorigin href="/assets/index-DZvgNqlG.css">
10
10
  </head>
11
11
  <body>
12
12
  <div id="root"></div>
albibong/requirements.txt CHANGED
@@ -1,3 +1,4 @@
1
1
  scapy==2.5.0
2
2
  websockets==12.0
3
- pywebview==5.1
3
+ pywebview==5.1
4
+ playsound==1.3.0