aidevops 3.29.30 → 3.29.32

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.
package/README.md CHANGED
@@ -58,7 +58,7 @@ The result: an AI operations platform that manages projects across every busines
58
58
  [![Copyright](https://img.shields.io/badge/Copyright-Marcus%20Quinn%202025--2026-blue.svg)](https://github.com/marcusquinn)
59
59
 
60
60
  <!-- Release & Version Info -->
61
- [![Version](https://img.shields.io/badge/Version-3.29.30-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
61
+ [![Version](https://img.shields.io/badge/Version-3.29.32-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
62
62
  [![npm version](https://img.shields.io/npm/v/aidevops)](https://www.npmjs.com/package/aidevops)
63
63
  [![Homebrew](https://img.shields.io/badge/homebrew-marcusquinn%2Ftap-orange)](https://github.com/marcusquinn/homebrew-tap)
64
64
  [![GitHub repository](https://img.shields.io/badge/github-repository-181717.svg?logo=github)](https://github.com/marcusquinn/aidevops)
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.29.30
1
+ 3.29.32
package/aidevops.sh CHANGED
@@ -5,7 +5,7 @@
5
5
  # AI DevOps Framework CLI
6
6
  # Usage: aidevops <command> [options]
7
7
  #
8
- # Version: 3.29.30
8
+ # Version: 3.29.32
9
9
 
10
10
  set -euo pipefail
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.29.30",
3
+ "version": "3.29.32",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "workspaces": [
@@ -134,7 +134,7 @@
134
134
  --border-danger: transparent;
135
135
  --border-hover: transparent;
136
136
  --border-warning: transparent;
137
- --glass-panel-shadow: var(--shadow-soft);
137
+ --glass-panel-shadow: none;
138
138
  }
139
139
 
140
140
  :root[data-borders="hidden"] :where(
@@ -142,6 +142,10 @@
142
142
  .app-sidebar,
143
143
  .app-inset,
144
144
  .desktop-status-bar,
145
+ .app-global-tooltip,
146
+ .confirm-modal,
147
+ .loading-brand-overlay,
148
+ .popover-menu,
145
149
  .workspace-header,
146
150
  button,
147
151
  input,
@@ -151,30 +155,44 @@
151
155
  [class*="button"],
152
156
  [class*="card"],
153
157
  [class*="control"],
158
+ [class*="dot"],
154
159
  [class*="entry"],
155
160
  [class*="item"],
161
+ [class*="loading"],
162
+ [class*="mark"],
156
163
  [class*="menu"],
164
+ [class*="modal"],
157
165
  [class*="orb"],
158
166
  [class*="panel"],
159
167
  [class*="pill"],
168
+ [class*="popover"],
160
169
  [class*="preview"],
161
170
  [class*="row"],
162
171
  [class*="selector"],
163
172
  [class*="surface"],
164
173
  [class*="switch"],
165
- [class*="tag"]
174
+ [class*="tag"],
175
+ [class*="tooltip"]
166
176
  ) {
167
177
  border-color: transparent !important;
178
+ box-shadow: none !important;
179
+ outline-color: transparent !important;
168
180
  }
169
181
 
170
- :root[data-borders="hidden"] :where(
171
- .github-notification-card,
172
- .managed-app-card,
173
- .notification-preview,
174
- .status-dot,
175
- .terminal-mark
176
- ) {
177
- box-shadow: none;
182
+ :root[data-borders="hidden"] *,
183
+ :root[data-borders="hidden"] *::before,
184
+ :root[data-borders="hidden"] *::after {
185
+ border-color: transparent !important;
186
+ outline-color: transparent !important;
187
+ }
188
+
189
+ :root[data-borders="hidden"] [data-tooltip]::after {
190
+ border-color: transparent !important;
191
+ box-shadow: none !important;
192
+ }
193
+
194
+ :root[data-borders="hidden"] .desktop-status-bar span:not(.status-dot)::before {
195
+ color: transparent !important;
178
196
  }
179
197
 
180
198
  *,
package/setup.sh CHANGED
@@ -12,7 +12,7 @@ shopt -s inherit_errexit 2>/dev/null || true
12
12
  # AI Assistant Server Access Framework Setup Script
13
13
  # Helps developers set up the framework for their infrastructure
14
14
  #
15
- # Version: 3.29.30
15
+ # Version: 3.29.32
16
16
  #
17
17
  # Quick Install:
18
18
  # npm install -g aidevops && aidevops update (recommended)