pinokiod 8.0.68 → 8.0.69

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "8.0.68",
3
+ "version": "8.0.69",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -4115,13 +4115,10 @@ body.dark .disk-usage {
4115
4115
  inset: 0;
4116
4116
  z-index: 0;
4117
4117
  border-radius: inherit;
4118
- background: rgba(180, 83, 9, 0.16);
4118
+ background: var(--pinokio-sidebar-notice-flash-bg);
4119
4119
  opacity: 0;
4120
4120
  pointer-events: none;
4121
4121
  }
4122
- body.dark .appcanvas.vertical > aside .menu-actions #save-space-tab::before {
4123
- background: rgba(224, 165, 75, 0.18);
4124
- }
4125
4122
  .appcanvas.vertical > aside .menu-actions #save-space-tab > .tab {
4126
4123
  position: relative;
4127
4124
  z-index: 1;
@@ -4132,10 +4129,10 @@ body.dark .appcanvas.vertical > aside .menu-actions #save-space-tab::before {
4132
4129
  justify-content: center;
4133
4130
  flex: 0 0 auto;
4134
4131
  padding: 1px 5px;
4135
- border: 1px solid rgba(180, 83, 9, 0.28);
4132
+ border: 1px solid rgba(255,255,255,0.28);
4136
4133
  border-radius: 4px;
4137
- color: #92400e;
4138
- background: rgba(180, 83, 9, 0.1);
4134
+ color: #fff;
4135
+ background: #b91c1c;
4139
4136
  font-size: 10px;
4140
4137
  font-weight: 600;
4141
4138
  line-height: 1.2;
@@ -4146,9 +4143,9 @@ body.dark .appcanvas.vertical > aside .menu-actions #save-space-tab::before {
4146
4143
  display: none;
4147
4144
  }
4148
4145
  body.dark .app-vault-result-badge {
4149
- border-color: rgba(224, 165, 75, 0.34);
4150
- color: #e8b45f;
4151
- background: rgba(224, 165, 75, 0.12);
4146
+ border-color: rgba(255,255,255,0.22);
4147
+ color: #fff;
4148
+ background: #dc2626;
4152
4149
  }
4153
4150
  #save-space-tab.app-vault-result-attention::before {
4154
4151
  animation: app-vault-result-attention 800ms cubic-bezier(0.22, 1, 0.36, 1);
@@ -8573,7 +8570,7 @@ body.dark .pinokio-custom-terminal-header {
8573
8570
  <i class="fa-solid fa-hard-drive menu-action-leading-icon"></i>
8574
8571
  <div class='display'>Disk Saver</div>
8575
8572
  <% if (vaultAutomaticSupported) { %>
8576
- <span class="app-vault-result-badge" data-app-vault-result-badge title="Possible duplicate files found" aria-hidden="true" <%=vaultAutomaticResultSignature ? '' : 'hidden'%>>Review</span>
8573
+ <span class="app-vault-result-badge" data-app-vault-result-badge title="New possible duplicate matches found" aria-hidden="true" <%=vaultAutomaticResultSignature ? '' : 'hidden'%>>New</span>
8577
8574
  <% } %>
8578
8575
  <div class='flexible'></div>
8579
8576
  <% if (vaultAutomaticSupported) { %>
@@ -435,9 +435,13 @@ test("the app sidebar mirrors the shared layout state without another event stre
435
435
  assert.match(template, /data-app-vault-mode/)
436
436
  assert.match(template, /data-app-vault-result-badge/)
437
437
  assert.match(template,
438
- /class="app-vault-result-badge"[\s\S]{0,200}>Review<\/span>/)
438
+ /class="app-vault-result-badge"[\s\S]{0,200}>New<\/span>/)
439
439
  assert.match(template,
440
- /\.app-vault-result-badge\s*\{[^}]*display:\s*inline-flex;[^}]*padding:\s*1px 5px;[^}]*font-size:\s*10px;[^}]*font-weight:\s*600;/s)
440
+ /\.app-vault-result-badge\s*\{[^}]*color:\s*#fff;[^}]*background:\s*#b91c1c;/s)
441
+ assert.match(template,
442
+ /body\.dark \.app-vault-result-badge\s*\{[^}]*background:\s*#dc2626;/s)
443
+ assert.match(template,
444
+ /#save-space-tab::before\s*\{[^}]*background:\s*var\(--pinokio-sidebar-notice-flash-bg\);/s)
441
445
  assert.doesNotMatch(template,
442
446
  /\.app-vault-result-badge\s*\{[^}]*border-radius:\s*50%/s)
443
447
  assert.match(template, /app-vault-mode\.js/)