argus-overview 2.4.5__tar.gz

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 (62) hide show
  1. argus_overview-2.4.5/LICENSE +21 -0
  2. argus_overview-2.4.5/PKG-INFO +388 -0
  3. argus_overview-2.4.5/README.md +348 -0
  4. argus_overview-2.4.5/pyproject.toml +81 -0
  5. argus_overview-2.4.5/setup.cfg +4 -0
  6. argus_overview-2.4.5/src/argus_overview.egg-info/PKG-INFO +388 -0
  7. argus_overview-2.4.5/src/argus_overview.egg-info/SOURCES.txt +60 -0
  8. argus_overview-2.4.5/src/argus_overview.egg-info/dependency_links.txt +1 -0
  9. argus_overview-2.4.5/src/argus_overview.egg-info/entry_points.txt +2 -0
  10. argus_overview-2.4.5/src/argus_overview.egg-info/requires.txt +13 -0
  11. argus_overview-2.4.5/src/argus_overview.egg-info/top_level.txt +1 -0
  12. argus_overview-2.4.5/src/eve_overview_pro/__init__.py +2 -0
  13. argus_overview-2.4.5/src/eve_overview_pro/core/__init__.py +1 -0
  14. argus_overview-2.4.5/src/eve_overview_pro/core/alert_detector.py +182 -0
  15. argus_overview-2.4.5/src/eve_overview_pro/core/character_manager.py +349 -0
  16. argus_overview-2.4.5/src/eve_overview_pro/core/config_watcher.py +148 -0
  17. argus_overview-2.4.5/src/eve_overview_pro/core/discovery.py +378 -0
  18. argus_overview-2.4.5/src/eve_overview_pro/core/eve_settings_sync.py +412 -0
  19. argus_overview-2.4.5/src/eve_overview_pro/core/hotkey_manager.py +273 -0
  20. argus_overview-2.4.5/src/eve_overview_pro/core/layout_manager.py +326 -0
  21. argus_overview-2.4.5/src/eve_overview_pro/core/position.py +323 -0
  22. argus_overview-2.4.5/src/eve_overview_pro/core/window_capture_threaded.py +164 -0
  23. argus_overview-2.4.5/src/eve_overview_pro/ui/__init__.py +32 -0
  24. argus_overview-2.4.5/src/eve_overview_pro/ui/about_dialog.py +163 -0
  25. argus_overview-2.4.5/src/eve_overview_pro/ui/action_registry.py +709 -0
  26. argus_overview-2.4.5/src/eve_overview_pro/ui/characters_teams_tab.py +830 -0
  27. argus_overview-2.4.5/src/eve_overview_pro/ui/hotkeys_tab.py +559 -0
  28. argus_overview-2.4.5/src/eve_overview_pro/ui/layouts_tab.py +758 -0
  29. argus_overview-2.4.5/src/eve_overview_pro/ui/main_tab.py +1688 -0
  30. argus_overview-2.4.5/src/eve_overview_pro/ui/main_window_v21.py +646 -0
  31. argus_overview-2.4.5/src/eve_overview_pro/ui/menu_builder.py +517 -0
  32. argus_overview-2.4.5/src/eve_overview_pro/ui/settings_manager.py +367 -0
  33. argus_overview-2.4.5/src/eve_overview_pro/ui/settings_sync_tab.py +674 -0
  34. argus_overview-2.4.5/src/eve_overview_pro/ui/settings_tab.py +790 -0
  35. argus_overview-2.4.5/src/eve_overview_pro/ui/themes.py +311 -0
  36. argus_overview-2.4.5/src/eve_overview_pro/ui/tray.py +224 -0
  37. argus_overview-2.4.5/src/eve_overview_pro/utils/__init__.py +35 -0
  38. argus_overview-2.4.5/src/eve_overview_pro/utils/constants.py +26 -0
  39. argus_overview-2.4.5/src/eve_overview_pro/utils/window_utils.py +135 -0
  40. argus_overview-2.4.5/tests/test_about_dialog.py +374 -0
  41. argus_overview-2.4.5/tests/test_action_registry.py +623 -0
  42. argus_overview-2.4.5/tests/test_alert_detector.py +459 -0
  43. argus_overview-2.4.5/tests/test_character_manager.py +742 -0
  44. argus_overview-2.4.5/tests/test_characters_teams_tab.py +269 -0
  45. argus_overview-2.4.5/tests/test_config_watcher.py +406 -0
  46. argus_overview-2.4.5/tests/test_discovery.py +585 -0
  47. argus_overview-2.4.5/tests/test_eve_settings_sync.py +1231 -0
  48. argus_overview-2.4.5/tests/test_hotkey_manager.py +714 -0
  49. argus_overview-2.4.5/tests/test_hotkeys_tab.py +273 -0
  50. argus_overview-2.4.5/tests/test_layout_manager.py +552 -0
  51. argus_overview-2.4.5/tests/test_layouts_tab.py +475 -0
  52. argus_overview-2.4.5/tests/test_main_tab.py +687 -0
  53. argus_overview-2.4.5/tests/test_main_window_v21.py +873 -0
  54. argus_overview-2.4.5/tests/test_menu_builder.py +813 -0
  55. argus_overview-2.4.5/tests/test_position.py +551 -0
  56. argus_overview-2.4.5/tests/test_settings_manager.py +907 -0
  57. argus_overview-2.4.5/tests/test_settings_sync_tab.py +367 -0
  58. argus_overview-2.4.5/tests/test_settings_tab.py +376 -0
  59. argus_overview-2.4.5/tests/test_themes.py +649 -0
  60. argus_overview-2.4.5/tests/test_tray.py +629 -0
  61. argus_overview-2.4.5/tests/test_utils.py +252 -0
  62. argus_overview-2.4.5/tests/test_window_capture_threaded.py +888 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024-2025 Argus Overview Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,388 @@
1
+ Metadata-Version: 2.4
2
+ Name: argus-overview
3
+ Version: 2.4.5
4
+ Summary: Professional multi-boxing tool for EVE Online on Linux
5
+ Author: AreteDriver
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/AreteDriver/Argus_Overview
8
+ Project-URL: Repository, https://github.com/AreteDriver/Argus_Overview.git
9
+ Project-URL: Issues, https://github.com/AreteDriver/Argus_Overview/issues
10
+ Project-URL: Changelog, https://github.com/AreteDriver/Argus_Overview/blob/main/CHANGELOG.md
11
+ Keywords: eve-online,multiboxing,linux,gaming,preview,pyside6,argus,overview
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Environment :: X11 Applications :: Qt
14
+ Classifier: Intended Audience :: End Users/Desktop
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Operating System :: POSIX :: Linux
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.8
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Topic :: Games/Entertainment
24
+ Requires-Python: >=3.8
25
+ Description-Content-Type: text/markdown
26
+ License-File: LICENSE
27
+ Requires-Dist: PySide6>=6.6.0
28
+ Requires-Dist: python-xlib>=0.33
29
+ Requires-Dist: Pillow>=10.0.0
30
+ Requires-Dist: pynput>=1.7.0
31
+ Requires-Dist: numpy>=1.24.0
32
+ Requires-Dist: watchdog>=4.0.0
33
+ Provides-Extra: dev
34
+ Requires-Dist: ruff; extra == "dev"
35
+ Requires-Dist: black; extra == "dev"
36
+ Requires-Dist: isort; extra == "dev"
37
+ Requires-Dist: pytest; extra == "dev"
38
+ Requires-Dist: pytest-cov; extra == "dev"
39
+ Dynamic: license-file
40
+
41
+ # Argus Overview v2.4 Argus Edition
42
+
43
+ **The Complete Professional Multi-Boxing Solution for EVE Online**
44
+
45
+ [![CI](https://github.com/AreteDriver/Argus_Overview/actions/workflows/ci.yml/badge.svg)](https://github.com/AreteDriver/Argus_Overview/actions)
46
+ [![Version](https://img.shields.io/badge/version-2.4.2-blue)](https://github.com/AreteDriver/Argus_Overview/releases)
47
+ [![License](https://img.shields.io/badge/license-MIT-orange)](LICENSE)
48
+ [![Python](https://img.shields.io/badge/python-3.8+-green)](https://python.org)
49
+ [![Platform](https://img.shields.io/badge/platform-Linux%20%7C%20Windows-lightgrey)]()
50
+ [![Downloads](https://img.shields.io/github/downloads/AreteDriver/Argus_Overview/total)](https://github.com/AreteDriver/Argus_Overview/releases)
51
+
52
+ ## Screenshots
53
+
54
+ <p align="center">
55
+ <img src="docs/screenshots/main-window.png" alt="Main Window" width="800"/>
56
+ </p>
57
+
58
+ <details>
59
+ <summary>More Screenshots</summary>
60
+
61
+ ### Team Management
62
+ ![Team Management](docs/screenshots/team-management.png)
63
+
64
+ ### Layout Presets
65
+ ![Layouts](docs/screenshots/layout-presets.png)
66
+
67
+ ### Visual Alerts
68
+ ![Alerts](docs/screenshots/visual-alerts.png)
69
+
70
+ </details>
71
+
72
+ ## Demo
73
+
74
+ ![Demo GIF](docs/screenshots/demo.gif)
75
+
76
+ ---
77
+
78
+ ## Platform Support
79
+
80
+ | Platform | Status | Download |
81
+ |----------|--------|----------|
82
+ | **Linux** | Full-featured native application | [AppImage / Install Script](https://github.com/AreteDriver/Argus_Overview/releases) |
83
+ | **Windows** | Standalone .exe available | [Download Windows .exe](https://github.com/AreteDriver/Argus_Overview_Windows/releases/latest) |
84
+
85
+ - **Linux**: This repository - X11/Wayland support with native tools
86
+ - **Windows**: [Argus_Overview_Windows](https://github.com/AreteDriver/Argus_Overview_Windows) - Native Win32 API implementation
87
+
88
+ ## ☕ Support Development
89
+
90
+ If you find Argus Overview useful, consider supporting development:
91
+
92
+ - **In-Game**: Send ISK donations to **AreteDriver** in EVE Online
93
+ - **Buy Me a Coffee**: [buymeacoffee.com/aretedriver](https://buymeacoffee.com/aretedriver)
94
+
95
+ Your support helps keep this project maintained and improving! o7
96
+
97
+ ---
98
+
99
+ ## 🌟 **v2.2 Ultimate Edition - Major UX Overhaul!**
100
+
101
+ This release focuses on **usability, automation, and polish** with 14 new features!
102
+
103
+ ### ✅ **NEW in v2.2:**
104
+
105
+ #### 1. **System Tray Integration** ⭐⭐⭐⭐⭐
106
+ - Orange "V" icon in system tray
107
+ - Minimize to tray instead of closing
108
+ - Quick access menu (Show/Hide, Profiles, Settings)
109
+ - Double-click to show/hide main window
110
+ - Notifications for new characters
111
+
112
+ #### 2. **One-Click Import** ⭐⭐⭐⭐⭐
113
+ - Scan and import ALL EVE windows with one button
114
+ - Automatically detects character names from window titles
115
+ - Skip duplicates automatically
116
+ - Shows count of imported characters
117
+
118
+ #### 3. **Auto-Discovery** ⭐⭐⭐⭐⭐
119
+ - Background process scans every 5 seconds (configurable)
120
+ - Automatically adds new EVE windows when they launch
121
+ - Shows notification for each new character
122
+ - No more manual adding required!
123
+
124
+ #### 4. **Per-Character Hotkeys** ⭐⭐⭐⭐
125
+ - Bind Ctrl+1 to "Main Character", Ctrl+2 to "Scout Alt"
126
+ - Global hotkeys work even when EVE has focus
127
+ - Configure in settings.json
128
+
129
+ #### 5. **Position Lock** ⭐⭐⭐⭐
130
+ - Lock thumbnail positions to prevent accidental moves
131
+ - Lock button in toolbar + Ctrl+Shift+L hotkey
132
+ - Visual lock icon on thumbnails when locked
133
+
134
+ #### 6. **Custom Labels** ⭐⭐⭐⭐
135
+ - Right-click thumbnail → "Set Label..."
136
+ - Display "Scout", "Logi", "DPS" instead of character names
137
+ - Persists across sessions
138
+
139
+ #### 7. **Hover Effects** ⭐⭐⭐
140
+ - Opacity fade on hover (30% default, configurable)
141
+ - See through thumbnails to underlying windows
142
+ - Smooth transitions
143
+
144
+ #### 8. **Activity Indicators** ⭐⭐⭐
145
+ - Small colored dot on each thumbnail
146
+ - Green = focused, Yellow = recent activity, Gray = idle
147
+ - Quickly identify active windows
148
+
149
+ #### 9. **Session Timers** ⭐⭐⭐
150
+ - Optional "2h 15m" display on thumbnails
151
+ - Shows how long each character has been logged in
152
+ - Enable in settings
153
+
154
+ #### 10. **Themes** ⭐⭐⭐
155
+ - Dark (default), Light, EVE (orange accents)
156
+ - Configure in settings.json
157
+ - Affects all UI elements
158
+
159
+ #### 11. **Quick Minimize/Restore All** ⭐⭐⭐
160
+ - Ctrl+Shift+M: Minimize all EVE windows
161
+ - Ctrl+Shift+R: Restore all EVE windows
162
+ - Tray notifications show count
163
+
164
+ #### 12. **Hot Reload Config** ⭐⭐⭐
165
+ - Edit settings.json while running
166
+ - Click "Reload Config" in tray menu
167
+ - Changes apply without restart
168
+
169
+ #### 13. **Enhanced Context Menu** ⭐⭐⭐
170
+ - Focus Window, Minimize, Close (with confirmation)
171
+ - Set Label, Zoom Level
172
+ - Remove from Preview
173
+
174
+ #### 14. **Smart Position Inheritance** ⭐⭐⭐
175
+ - New thumbnails position relative to existing ones
176
+ - Fills right-to-left, then starts new row
177
+ - Respects screen boundaries
178
+ - Grid snapping (10px)
179
+
180
+ ---
181
+
182
+ ### From v2.1:
183
+
184
+ #### Layout Presets ⭐⭐⭐⭐⭐
185
+ - Save and restore complete window arrangements
186
+ - Named layouts for different activities
187
+ - One-click switching between configurations
188
+
189
+ #### Auto-Tiling & Grid Layouts ⭐⭐⭐⭐⭐
190
+ - Professional grid patterns: 2x2, 3x1, 1x3, 4x1
191
+ - Main+Sides pattern for focus gameplay
192
+ - Cascade layout for quick overview
193
+
194
+ #### Team & Character Management ⭐⭐⭐⭐⭐
195
+ - Full character database
196
+ - Account grouping
197
+ - Activity-based teams
198
+ - Auto-assignment when characters log in
199
+
200
+ #### Visual Activity Alerts ⭐⭐⭐⭐
201
+ - Red flash detection (damage/combat alerts!)
202
+ - Screen change monitoring
203
+ - Visual border flashing
204
+
205
+ #### Multi-Monitor Support ⭐⭐⭐⭐
206
+ - Auto-detect all monitors
207
+ - Per-monitor layouts
208
+ - Spread windows across monitors
209
+
210
+ #### EVE Settings Sync ⭐⭐⭐⭐⭐
211
+ - Copy keybindings between characters
212
+ - Sync UI layouts, overview settings
213
+ - Batch sync to entire team
214
+
215
+ ---
216
+
217
+ ## 🚀 **Quick Start**
218
+
219
+ ### Installation
220
+
221
+ ```bash
222
+ # One-liner install
223
+ curl -sSL https://raw.githubusercontent.com/AreteDriver/Argus_Overview/main/install.sh | bash
224
+
225
+ # Or manual installation
226
+ git clone https://github.com/AreteDriver/Argus_Overview
227
+ cd Argus_Overview
228
+ ./install.sh
229
+
230
+ # Run
231
+ ~/argus-overview/run.sh
232
+ ```
233
+
234
+ ### First-Time Setup
235
+
236
+ 1. **Main Tab**: Add EVE windows, minimize inactive to save GPU
237
+ 2. **Characters & Teams Tab**: Add your characters, create teams
238
+ 3. **Layouts Tab**: Save your window arrangements
239
+ 4. **Settings Sync Tab**: Copy settings from your main to alts
240
+
241
+ ---
242
+
243
+ ## 📋 **Features Overview**
244
+
245
+ ### From v2.0:
246
+ - ✅ Low-latency multi-window previews
247
+ - ✅ Draggable, resizable preview frames
248
+ - ✅ Global hotkeys (Ctrl+Alt+1-9)
249
+ - ✅ Profile management
250
+ - ✅ Adjustable refresh rates (1-60 FPS)
251
+ - ✅ Always-on-top mode
252
+ - ✅ Click-to-activate
253
+ - ✅ Minimize inactive windows (50-80% GPU savings!)
254
+ - ✅ Threaded capture system (no UI lag!)
255
+
256
+ ### NEW in v2.1:
257
+ - ✅ Layout presets with quick-switch
258
+ - ✅ Auto-grid tiling (6+ patterns)
259
+ - ✅ Character & team management
260
+ - ✅ Visual activity alerts
261
+ - ✅ Multi-monitor support
262
+ - ✅ EVE settings synchronization
263
+
264
+ ---
265
+
266
+ ## 💡 **Usage Examples**
267
+
268
+ ### Mining Fleet
269
+ ```
270
+ 1. Create "Mining Team" with Orca + 3 miners
271
+ 2. Arrange in 2x2 grid
272
+ 3. Save as "Mining Layout"
273
+ 4. Enable visual alerts for danger
274
+ 5. Minimize inactive miners to save GPU
275
+ ```
276
+
277
+ ### PvP Fleet
278
+ ```
279
+ 1. Create "PvP Team" with FC + Logi + DPS
280
+ 2. Use Main+Sides layout (FC center, others on side)
281
+ 3. Link to "PvP Layout"
282
+ 4. Enable red flash alerts for all
283
+ 5. Quick-switch with Ctrl+Tab
284
+ ```
285
+
286
+ ### Multi-Account Trading
287
+ ```
288
+ 1. Create "Market Team" with trader alts
289
+ 2. Use 3x1 horizontal layout
290
+ 3. Sync overview settings from main to all alts
291
+ 4. Monitor all markets simultaneously
292
+ ```
293
+
294
+ ---
295
+
296
+ ## ⚙️ **System Requirements**
297
+
298
+ - **OS**: Linux (X11 or Wayland/XWayland)
299
+ - **Python**: 3.8 or higher
300
+ - **System Tools**: wmctrl, xdotool, ImageMagick, x11-apps
301
+
302
+ ### Dependencies
303
+ ```bash
304
+ # Ubuntu/Debian
305
+ sudo apt-get install wmctrl xdotool imagemagick x11-apps python3-pip
306
+
307
+ # Fedora/RHEL
308
+ sudo dnf install wmctrl xdotool ImageMagick xorg-x11-apps python3-pip
309
+
310
+ # Arch Linux
311
+ sudo pacman -S wmctrl xdotool imagemagick xorg-xwd python-pip
312
+ ```
313
+
314
+ ---
315
+
316
+ ## 📖 **Documentation**
317
+
318
+ - `WHATS_NEW.md` - Complete feature changelog
319
+ - `QUICKSTART.md` - Get started in 5 minutes
320
+ - `USER_GUIDE.md` - Comprehensive user manual
321
+ - `INTEGRATION_GUIDE.md` - Developer integration guide
322
+
323
+ ---
324
+
325
+ ## 🎯 **Performance**
326
+
327
+ - **Memory**: ~50-100 MB per preview
328
+ - **CPU**: 2-5% per preview at 30 FPS
329
+ - **GPU Savings**: 50-80% with minimize inactive feature
330
+ - **Capture Latency**: <50ms with threaded system
331
+
332
+ ---
333
+
334
+ ## 🛠️ **Troubleshooting**
335
+
336
+ **Characters not found for settings sync?**
337
+ → Add custom EVE installation path in Settings Sync tab
338
+
339
+ **Alerts not triggering?**
340
+ → Adjust sensitivity thresholds in Settings
341
+
342
+ **Windows not auto-arranging?**
343
+ → Ensure character names match EVE window titles
344
+
345
+ **High CPU usage?**
346
+ → Reduce refresh rate or number of active previews
347
+
348
+ ---
349
+
350
+ ## 🤝 **Contributing**
351
+
352
+ Contributions welcome! This is a community project.
353
+
354
+ - Feature requests
355
+ - Bug reports
356
+ - Code improvements
357
+ - Documentation
358
+ - Translations
359
+
360
+ ---
361
+
362
+ ## 📄 **License**
363
+
364
+ MIT License - See LICENSE file
365
+
366
+ ---
367
+
368
+ ## 🎮 **Credits**
369
+
370
+ - Inspired by EVE-O-Preview for Windows
371
+ - Built for the EVE Online community
372
+ - Special thanks to all contributors and testers
373
+
374
+ ---
375
+
376
+ ## 💬 **Support**
377
+
378
+ - Check documentation
379
+ - Review troubleshooting section
380
+ - Check logs: `~/.config/argus-overview/argus-overview.log`
381
+ - Report issues with full details
382
+
383
+ ---
384
+
385
+ **Fly safe, capsuleers! o7**
386
+
387
+ *Argus Overview v2.4 Argus Edition*
388
+ *The Complete Professional Solution for Linux Multi-Boxing*