clipsy 1.6.0__tar.gz → 1.7.0__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 (25) hide show
  1. {clipsy-1.6.0/src/clipsy.egg-info → clipsy-1.7.0}/PKG-INFO +8 -8
  2. {clipsy-1.6.0 → clipsy-1.7.0}/README.md +7 -7
  3. {clipsy-1.6.0 → clipsy-1.7.0}/pyproject.toml +1 -1
  4. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy/__init__.py +1 -1
  5. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy/__main__.py +10 -8
  6. {clipsy-1.6.0 → clipsy-1.7.0/src/clipsy.egg-info}/PKG-INFO +8 -8
  7. {clipsy-1.6.0 → clipsy-1.7.0}/LICENSE +0 -0
  8. {clipsy-1.6.0 → clipsy-1.7.0}/setup.cfg +0 -0
  9. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy/app.py +0 -0
  10. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy/config.py +0 -0
  11. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy/models.py +0 -0
  12. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy/monitor.py +0 -0
  13. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy/redact.py +0 -0
  14. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy/storage.py +0 -0
  15. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy/utils.py +0 -0
  16. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy.egg-info/SOURCES.txt +0 -0
  17. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy.egg-info/dependency_links.txt +0 -0
  18. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy.egg-info/entry_points.txt +0 -0
  19. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy.egg-info/requires.txt +0 -0
  20. {clipsy-1.6.0 → clipsy-1.7.0}/src/clipsy.egg-info/top_level.txt +0 -0
  21. {clipsy-1.6.0 → clipsy-1.7.0}/tests/test_app.py +0 -0
  22. {clipsy-1.6.0 → clipsy-1.7.0}/tests/test_monitor.py +0 -0
  23. {clipsy-1.6.0 → clipsy-1.7.0}/tests/test_redact.py +0 -0
  24. {clipsy-1.6.0 → clipsy-1.7.0}/tests/test_storage.py +0 -0
  25. {clipsy-1.6.0 → clipsy-1.7.0}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clipsy
3
- Version: 1.6.0
3
+ Version: 1.7.0
4
4
  Summary: Lightweight clipboard history manager for macOS
5
5
  Author-email: Brendan Conrad <brendan.conrad@gmail.com>
6
6
  License: MIT
@@ -64,14 +64,14 @@ A lightweight clipboard history manager for macOS. Runs as a menu bar icon — n
64
64
  ```bash
65
65
  brew install pipx
66
66
  pipx install clipsy
67
- clipsy install
67
+ clipsy
68
68
  ```
69
69
 
70
70
  ### Via pip
71
71
 
72
72
  ```bash
73
73
  pip install clipsy
74
- clipsy install
74
+ clipsy
75
75
  ```
76
76
 
77
77
  ### From source
@@ -81,12 +81,12 @@ git clone https://github.com/brencon/clipsy.git
81
81
  cd clipsy
82
82
  python3 -m venv .venv
83
83
  .venv/bin/pip install -e .
84
- .venv/bin/clipsy install
84
+ .venv/bin/clipsy
85
85
  ```
86
86
 
87
87
  ## Usage
88
88
 
89
- After running `clipsy install`, the app runs in the background and starts automatically on login. A scissors icon (✂️) appears in your menu bar.
89
+ After running `clipsy`, the app installs as a background service and starts automatically on login. A scissors icon (✂️) appears in your menu bar.
90
90
 
91
91
  Then just use your Mac normally. Every time you copy something, it shows up in the Clipsy menu:
92
92
 
@@ -112,10 +112,10 @@ Then just use your Mac normally. Every time you copy something, it shows up in t
112
112
  ## Commands
113
113
 
114
114
  ```bash
115
- clipsy install # Install as background service (starts on login)
116
- clipsy uninstall # Remove from login items
115
+ clipsy # Install and start as background service (default)
117
116
  clipsy status # Check if running
118
- clipsy # Run in foreground (for debugging)
117
+ clipsy uninstall # Remove from login items
118
+ clipsy run # Run in foreground (for debugging)
119
119
  ```
120
120
 
121
121
  ## Data Storage
@@ -33,14 +33,14 @@ A lightweight clipboard history manager for macOS. Runs as a menu bar icon — n
33
33
  ```bash
34
34
  brew install pipx
35
35
  pipx install clipsy
36
- clipsy install
36
+ clipsy
37
37
  ```
38
38
 
39
39
  ### Via pip
40
40
 
41
41
  ```bash
42
42
  pip install clipsy
43
- clipsy install
43
+ clipsy
44
44
  ```
45
45
 
46
46
  ### From source
@@ -50,12 +50,12 @@ git clone https://github.com/brencon/clipsy.git
50
50
  cd clipsy
51
51
  python3 -m venv .venv
52
52
  .venv/bin/pip install -e .
53
- .venv/bin/clipsy install
53
+ .venv/bin/clipsy
54
54
  ```
55
55
 
56
56
  ## Usage
57
57
 
58
- After running `clipsy install`, the app runs in the background and starts automatically on login. A scissors icon (✂️) appears in your menu bar.
58
+ After running `clipsy`, the app installs as a background service and starts automatically on login. A scissors icon (✂️) appears in your menu bar.
59
59
 
60
60
  Then just use your Mac normally. Every time you copy something, it shows up in the Clipsy menu:
61
61
 
@@ -81,10 +81,10 @@ Then just use your Mac normally. Every time you copy something, it shows up in t
81
81
  ## Commands
82
82
 
83
83
  ```bash
84
- clipsy install # Install as background service (starts on login)
85
- clipsy uninstall # Remove from login items
84
+ clipsy # Install and start as background service (default)
86
85
  clipsy status # Check if running
87
- clipsy # Run in foreground (for debugging)
86
+ clipsy uninstall # Remove from login items
87
+ clipsy run # Run in foreground (for debugging)
88
88
  ```
89
89
 
90
90
  ## Data Storage
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "clipsy"
7
- version = "1.6.0"
7
+ version = "1.7.0"
8
8
  description = "Lightweight clipboard history manager for macOS"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -1,2 +1,2 @@
1
- __version__ = "1.6.0"
1
+ __version__ = "1.7.0"
2
2
  __app_name__ = "Clipsy"
@@ -154,34 +154,36 @@ def main():
154
154
  formatter_class=argparse.RawDescriptionHelpFormatter,
155
155
  epilog="""
156
156
  Commands:
157
- (none) Run Clipsy in foreground
158
- install Install as LaunchAgent (runs on login)
157
+ (none) Install and run as background service (default)
159
158
  uninstall Remove LaunchAgent
160
159
  status Check if Clipsy is running
160
+ run Run in foreground (for debugging)
161
161
 
162
162
  Examples:
163
- clipsy install # Install and start as background service
163
+ clipsy # Install and start as background service
164
164
  clipsy status # Check if running
165
165
  clipsy uninstall # Stop and remove from login items
166
+ clipsy run # Run in foreground (debugging)
166
167
  """,
167
168
  )
168
169
  parser.add_argument(
169
170
  "command",
170
171
  nargs="?",
171
- choices=["install", "uninstall", "status"],
172
+ choices=["uninstall", "status", "run"],
172
173
  help="Command to run",
173
174
  )
174
175
 
175
176
  args = parser.parse_args()
176
177
 
177
- if args.command == "install":
178
- sys.exit(install_launchagent())
179
- elif args.command == "uninstall":
178
+ if args.command == "uninstall":
180
179
  sys.exit(uninstall_launchagent())
181
180
  elif args.command == "status":
182
181
  sys.exit(check_status())
183
- else:
182
+ elif args.command == "run":
184
183
  run_app()
184
+ else:
185
+ # Default: install and start as background service
186
+ sys.exit(install_launchagent())
185
187
 
186
188
 
187
189
  if __name__ == "__main__":
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clipsy
3
- Version: 1.6.0
3
+ Version: 1.7.0
4
4
  Summary: Lightweight clipboard history manager for macOS
5
5
  Author-email: Brendan Conrad <brendan.conrad@gmail.com>
6
6
  License: MIT
@@ -64,14 +64,14 @@ A lightweight clipboard history manager for macOS. Runs as a menu bar icon — n
64
64
  ```bash
65
65
  brew install pipx
66
66
  pipx install clipsy
67
- clipsy install
67
+ clipsy
68
68
  ```
69
69
 
70
70
  ### Via pip
71
71
 
72
72
  ```bash
73
73
  pip install clipsy
74
- clipsy install
74
+ clipsy
75
75
  ```
76
76
 
77
77
  ### From source
@@ -81,12 +81,12 @@ git clone https://github.com/brencon/clipsy.git
81
81
  cd clipsy
82
82
  python3 -m venv .venv
83
83
  .venv/bin/pip install -e .
84
- .venv/bin/clipsy install
84
+ .venv/bin/clipsy
85
85
  ```
86
86
 
87
87
  ## Usage
88
88
 
89
- After running `clipsy install`, the app runs in the background and starts automatically on login. A scissors icon (✂️) appears in your menu bar.
89
+ After running `clipsy`, the app installs as a background service and starts automatically on login. A scissors icon (✂️) appears in your menu bar.
90
90
 
91
91
  Then just use your Mac normally. Every time you copy something, it shows up in the Clipsy menu:
92
92
 
@@ -112,10 +112,10 @@ Then just use your Mac normally. Every time you copy something, it shows up in t
112
112
  ## Commands
113
113
 
114
114
  ```bash
115
- clipsy install # Install as background service (starts on login)
116
- clipsy uninstall # Remove from login items
115
+ clipsy # Install and start as background service (default)
117
116
  clipsy status # Check if running
118
- clipsy # Run in foreground (for debugging)
117
+ clipsy uninstall # Remove from login items
118
+ clipsy run # Run in foreground (for debugging)
119
119
  ```
120
120
 
121
121
  ## Data Storage
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes