neoagent 2.4.4-beta.0 → 2.4.4-beta.11
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/.env.example +17 -0
- package/README.md +9 -3
- package/docs/capabilities.md +16 -7
- package/docs/configuration.md +1 -0
- package/docs/getting-started.md +6 -0
- package/docs/index.md +1 -0
- package/docs/security-boundaries.md +122 -0
- package/docs/supermemory-memory-review.md +852 -0
- package/flutter_app/lib/features/memory/views/retrieval_inspector_view.dart +128 -0
- package/flutter_app/lib/main.dart +3 -0
- package/flutter_app/lib/main_account_settings.dart +79 -15
- package/flutter_app/lib/main_app_shell.dart +22 -0
- package/flutter_app/lib/main_chat.dart +155 -8
- package/flutter_app/lib/main_controller.dart +74 -5
- package/flutter_app/lib/main_devices.dart +9 -3
- package/flutter_app/lib/main_models.dart +32 -0
- package/flutter_app/lib/main_operations.dart +13 -0
- package/flutter_app/lib/main_security.dart +967 -0
- package/flutter_app/lib/main_settings.dart +56 -0
- package/flutter_app/lib/src/backend_client.dart +60 -3
- package/flutter_app/macos/Flutter/GeneratedPluginRegistrant.swift +2 -0
- package/flutter_app/pubspec.lock +32 -0
- package/flutter_app/pubspec.yaml +1 -0
- package/lib/install_helpers.js +1 -0
- package/lib/manager.js +63 -1
- package/lib/schema_migrations.js +262 -0
- package/package.json +4 -2
- package/server/admin/admin.js +151 -0
- package/server/admin/index.html +55 -3
- package/server/db/database.js +3 -0
- package/server/http/routes.js +2 -1
- package/server/public/.last_build_id +1 -1
- package/server/public/assets/NOTICES +86 -0
- package/server/public/assets/fonts/MaterialIcons-Regular.otf +0 -0
- package/server/public/flutter_bootstrap.js +1 -1
- package/server/public/main.dart.js +82243 -80308
- package/server/routes/account.js +2 -23
- package/server/routes/admin.js +18 -2
- package/server/routes/agents.js +5 -1
- package/server/routes/memory.js +41 -4
- package/server/routes/security.js +112 -0
- package/server/services/account/service_email_settings.js +167 -0
- package/server/services/ai/engine.js +269 -27
- package/server/services/ai/rate_limits.js +150 -0
- package/server/services/ai/systemPrompt.js +26 -3
- package/server/services/ai/tools.js +11 -8
- package/server/services/cli/shell_worker.js +135 -0
- package/server/services/cli/shell_worker_pool.js +125 -0
- package/server/services/integrations/google/gmail.js +7 -7
- package/server/services/manager.js +20 -1
- package/server/services/memory/consolidation.js +111 -0
- package/server/services/memory/embedding_index.js +175 -0
- package/server/services/memory/embeddings.js +22 -2
- package/server/services/memory/evaluation.js +187 -0
- package/server/services/memory/ingestion_chunking.js +191 -0
- package/server/services/memory/ingestion_documents.js +96 -26
- package/server/services/memory/intelligence.js +3 -1
- package/server/services/memory/manager.js +855 -43
- package/server/services/memory/policy.js +0 -40
- package/server/services/memory/retrieval_reasoning.js +191 -0
- package/server/services/runtime/manager.js +7 -0
- package/server/services/security/approval_gate_service.js +93 -0
- package/server/services/security/tool_categories.js +105 -0
- package/server/services/security/tool_policy_service.js +92 -0
- package/server/services/security/tool_security_hook.js +77 -0
- package/server/services/websocket.js +5 -1
package/server/admin/admin.js
CHANGED
|
@@ -225,6 +225,7 @@ async function triggerUpdate() {
|
|
|
225
225
|
async function loadConfig() {
|
|
226
226
|
const el = document.getElementById('config-content');
|
|
227
227
|
if (!el) return;
|
|
228
|
+
loadEmailConfig();
|
|
228
229
|
try {
|
|
229
230
|
const data = await api('/admin/api/config').then((r) => r.json());
|
|
230
231
|
const cfg = data.config || {};
|
|
@@ -246,6 +247,156 @@ async function loadConfig() {
|
|
|
246
247
|
}
|
|
247
248
|
}
|
|
248
249
|
|
|
250
|
+
async function loadEmailConfig() {
|
|
251
|
+
const el = document.getElementById('email-config-content');
|
|
252
|
+
if (!el) return;
|
|
253
|
+
try {
|
|
254
|
+
const data = await api('/admin/api/config/email').then((r) => r.json());
|
|
255
|
+
const s = data.settings || {};
|
|
256
|
+
const status = data.configured
|
|
257
|
+
? '<span class="badge badge-ok">configured</span><span>Account emails are enabled.</span>'
|
|
258
|
+
: `<span class="badge badge-idle">not configured</span><span>Missing: ${esc((data.missing || []).join(', '))}</span>`;
|
|
259
|
+
|
|
260
|
+
el.innerHTML = `
|
|
261
|
+
<div class="email-settings-status">${status}</div>
|
|
262
|
+
<form id="email-settings-form" onsubmit="saveEmailConfig(event)">
|
|
263
|
+
<div class="email-settings-grid">
|
|
264
|
+
<div class="field field-wide">
|
|
265
|
+
<label for="email-from">Sender address</label>
|
|
266
|
+
<input type="text" id="email-from" value="${esc(s.from)}" autocomplete="off">
|
|
267
|
+
</div>
|
|
268
|
+
<div class="field">
|
|
269
|
+
<label for="email-smtp-host">SMTP host</label>
|
|
270
|
+
<input type="text" id="email-smtp-host" value="${esc(s.smtpHost)}" autocomplete="off" spellcheck="false">
|
|
271
|
+
</div>
|
|
272
|
+
<div class="field">
|
|
273
|
+
<label for="email-smtp-port">SMTP port</label>
|
|
274
|
+
<input type="text" inputmode="numeric" id="email-smtp-port" value="${esc(s.smtpPort)}" autocomplete="off">
|
|
275
|
+
</div>
|
|
276
|
+
<div class="field">
|
|
277
|
+
<label for="email-smtp-user">SMTP username</label>
|
|
278
|
+
<input type="text" id="email-smtp-user" value="${esc(s.smtpUser)}" autocomplete="off" spellcheck="false">
|
|
279
|
+
</div>
|
|
280
|
+
<div class="field">
|
|
281
|
+
<label for="email-smtp-password">SMTP password</label>
|
|
282
|
+
<input type="password" id="email-smtp-password" value="" autocomplete="new-password">
|
|
283
|
+
<div style="font-size:11px;color:var(--text-muted);margin-top:6px;">
|
|
284
|
+
${s.smtpPasswordConfigured ? 'A password is stored. Leave blank to keep it.' : 'No password is stored.'}
|
|
285
|
+
</div>
|
|
286
|
+
</div>
|
|
287
|
+
<div class="field">
|
|
288
|
+
<label for="email-reply-to">Reply-To address</label>
|
|
289
|
+
<input type="text" id="email-reply-to" value="${esc(s.replyTo)}" autocomplete="off">
|
|
290
|
+
</div>
|
|
291
|
+
<div class="field">
|
|
292
|
+
<label for="email-brand-name">Brand name</label>
|
|
293
|
+
<input type="text" id="email-brand-name" value="${esc(s.brandName)}" autocomplete="off">
|
|
294
|
+
</div>
|
|
295
|
+
<div class="field">
|
|
296
|
+
<label for="email-public-url">Public URL override</label>
|
|
297
|
+
<input type="text" id="email-public-url" value="${esc(s.publicUrl)}" autocomplete="off" spellcheck="false">
|
|
298
|
+
</div>
|
|
299
|
+
<div class="field">
|
|
300
|
+
<label for="email-support-url">Support URL</label>
|
|
301
|
+
<input type="text" id="email-support-url" value="${esc(s.supportUrl)}" autocomplete="off" spellcheck="false">
|
|
302
|
+
</div>
|
|
303
|
+
<div class="field">
|
|
304
|
+
<label for="email-token-ttl">Link lifetime (hours)</label>
|
|
305
|
+
<input type="text" inputmode="numeric" id="email-token-ttl" value="${esc(s.tokenTtlHours)}" autocomplete="off">
|
|
306
|
+
</div>
|
|
307
|
+
</div>
|
|
308
|
+
<div class="email-settings-checks">
|
|
309
|
+
${emailConfigCheckbox('email-smtp-secure', 'Implicit TLS', s.smtpSecure)}
|
|
310
|
+
${emailConfigCheckbox('email-smtp-require-tls', 'Require STARTTLS', s.smtpRequireTls)}
|
|
311
|
+
${emailConfigCheckbox('email-smtp-reject-unauthorized', 'Reject invalid TLS certificates', s.smtpRejectUnauthorized)}
|
|
312
|
+
${emailConfigCheckbox('email-signup-confirmation', 'Require signup confirmation', s.requireSignupConfirmation)}
|
|
313
|
+
${emailConfigCheckbox('email-change-confirmation', 'Require email change confirmation', s.requireEmailChangeConfirmation)}
|
|
314
|
+
${emailConfigCheckbox('email-notify-login', 'Notify on unusual login', s.notifyUnusualLogin)}
|
|
315
|
+
${emailConfigCheckbox('email-notify-account', 'Notify on account changes', s.notifyAccountChanges)}
|
|
316
|
+
</div>
|
|
317
|
+
<div style="display:flex;gap:8px;align-items:center;flex-wrap:wrap;">
|
|
318
|
+
<button class="btn btn-primary" type="submit">Save Email Settings</button>
|
|
319
|
+
${s.smtpPasswordConfigured ? '<button class="btn btn-danger" type="button" onclick="clearEmailPassword(this)">Remove SMTP Password</button>' : ''}
|
|
320
|
+
</div>
|
|
321
|
+
</form>`;
|
|
322
|
+
} catch (err) {
|
|
323
|
+
if (err.message !== 'unauthorized') {
|
|
324
|
+
el.innerHTML = '<div class="empty">Failed to load email configuration</div>';
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
function emailConfigCheckbox(id, label, checked) {
|
|
330
|
+
return `<label class="email-setting-check" for="${id}">
|
|
331
|
+
<input type="checkbox" id="${id}" ${checked ? 'checked' : ''}>
|
|
332
|
+
<span>${esc(label)}</span>
|
|
333
|
+
</label>`;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
function emailConfigValue(id) {
|
|
337
|
+
return document.getElementById(id)?.value?.trim() || '';
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
function collectEmailConfig(clearSmtpPassword = false) {
|
|
341
|
+
return {
|
|
342
|
+
from: emailConfigValue('email-from'),
|
|
343
|
+
smtpHost: emailConfigValue('email-smtp-host'),
|
|
344
|
+
smtpPort: emailConfigValue('email-smtp-port'),
|
|
345
|
+
smtpUser: emailConfigValue('email-smtp-user'),
|
|
346
|
+
smtpPassword: clearSmtpPassword ? '' : emailConfigValue('email-smtp-password'),
|
|
347
|
+
clearSmtpPassword,
|
|
348
|
+
smtpSecure: document.getElementById('email-smtp-secure')?.checked === true,
|
|
349
|
+
smtpRequireTls: document.getElementById('email-smtp-require-tls')?.checked === true,
|
|
350
|
+
smtpRejectUnauthorized: document.getElementById('email-smtp-reject-unauthorized')?.checked === true,
|
|
351
|
+
replyTo: emailConfigValue('email-reply-to'),
|
|
352
|
+
requireSignupConfirmation: document.getElementById('email-signup-confirmation')?.checked === true,
|
|
353
|
+
requireEmailChangeConfirmation: document.getElementById('email-change-confirmation')?.checked === true,
|
|
354
|
+
notifyUnusualLogin: document.getElementById('email-notify-login')?.checked === true,
|
|
355
|
+
notifyAccountChanges: document.getElementById('email-notify-account')?.checked === true,
|
|
356
|
+
brandName: emailConfigValue('email-brand-name'),
|
|
357
|
+
supportUrl: emailConfigValue('email-support-url'),
|
|
358
|
+
publicUrl: emailConfigValue('email-public-url'),
|
|
359
|
+
tokenTtlHours: emailConfigValue('email-token-ttl'),
|
|
360
|
+
};
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
async function persistEmailConfig(payload, btn) {
|
|
364
|
+
const original = btn?.textContent;
|
|
365
|
+
if (btn) {
|
|
366
|
+
btn.disabled = true;
|
|
367
|
+
btn.textContent = 'Saving…';
|
|
368
|
+
}
|
|
369
|
+
try {
|
|
370
|
+
const res = await api('/admin/api/config/email', {
|
|
371
|
+
method: 'PUT',
|
|
372
|
+
headers: { 'Content-Type': 'application/json' },
|
|
373
|
+
body: JSON.stringify(payload),
|
|
374
|
+
});
|
|
375
|
+
const body = await res.json().catch(() => ({}));
|
|
376
|
+
if (!res.ok) {
|
|
377
|
+
alert(body.error || 'Failed to save email settings');
|
|
378
|
+
return;
|
|
379
|
+
}
|
|
380
|
+
await loadEmailConfig();
|
|
381
|
+
} catch (err) {
|
|
382
|
+
if (err.message !== 'unauthorized') alert('Network error');
|
|
383
|
+
} finally {
|
|
384
|
+
if (btn?.isConnected) {
|
|
385
|
+
btn.disabled = false;
|
|
386
|
+
btn.textContent = original;
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
async function saveEmailConfig(event) {
|
|
392
|
+
event.preventDefault();
|
|
393
|
+
await persistEmailConfig(collectEmailConfig(), event.submitter);
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
async function clearEmailPassword(btn) {
|
|
397
|
+
await persistEmailConfig(collectEmailConfig(true), btn);
|
|
398
|
+
}
|
|
399
|
+
|
|
249
400
|
// ── Providers ──────────────────────────────────────────────────────────────
|
|
250
401
|
|
|
251
402
|
async function loadProviders() {
|
package/server/admin/index.html
CHANGED
|
@@ -326,6 +326,54 @@
|
|
|
326
326
|
color: var(--text-muted) !important;
|
|
327
327
|
}
|
|
328
328
|
|
|
329
|
+
.email-settings-grid {
|
|
330
|
+
display: grid;
|
|
331
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
332
|
+
gap: 0 16px;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.email-settings-grid .field-wide {
|
|
336
|
+
grid-column: 1 / -1;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.email-settings-checks {
|
|
340
|
+
display: grid;
|
|
341
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
342
|
+
gap: 10px 16px;
|
|
343
|
+
margin: 4px 0 20px;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.email-setting-check {
|
|
347
|
+
display: flex;
|
|
348
|
+
align-items: center;
|
|
349
|
+
gap: 9px;
|
|
350
|
+
color: var(--text-secondary);
|
|
351
|
+
font-size: 13px;
|
|
352
|
+
text-transform: none;
|
|
353
|
+
letter-spacing: 0;
|
|
354
|
+
margin: 0;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.email-setting-check input {
|
|
358
|
+
accent-color: var(--accent);
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.email-settings-status {
|
|
362
|
+
display: flex;
|
|
363
|
+
align-items: center;
|
|
364
|
+
gap: 9px;
|
|
365
|
+
margin-bottom: 18px;
|
|
366
|
+
color: var(--text-muted);
|
|
367
|
+
font-size: 12px;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
@media (max-width: 760px) {
|
|
371
|
+
.email-settings-grid,
|
|
372
|
+
.email-settings-checks {
|
|
373
|
+
grid-template-columns: 1fr;
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
|
|
329
377
|
/* ── Stats grid ────────────────────────────────────────────── */
|
|
330
378
|
.stat-grid {
|
|
331
379
|
display: grid;
|
|
@@ -948,7 +996,7 @@
|
|
|
948
996
|
<div>
|
|
949
997
|
<div style="font-size:15px;font-weight:700;color:var(--text);margin-bottom:4px;">Default Rate Limits</div>
|
|
950
998
|
<div style="font-size:12px;color:var(--text-muted);max-width:480px;">
|
|
951
|
-
Applied to every user unless they have a custom override.
|
|
999
|
+
Applied to every user unless they have a custom override. Empty values restore the built-in defaults.
|
|
952
1000
|
</div>
|
|
953
1001
|
</div>
|
|
954
1002
|
<button class="btn btn-primary" style="flex-shrink:0;" onclick="saveDefaultRateLimits(this)">Save Defaults</button>
|
|
@@ -956,12 +1004,12 @@
|
|
|
956
1004
|
<div style="display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:18px;" id="default-limits-fields">
|
|
957
1005
|
<div>
|
|
958
1006
|
<label style="display:block;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:0.05em;color:var(--text-muted);margin-bottom:6px;">4-Hour Limit (tokens)</label>
|
|
959
|
-
<input type="number" min="0" step="1" id="default-limit-4h" placeholder="
|
|
1007
|
+
<input type="number" min="0" step="1" id="default-limit-4h" placeholder="Default: 2500000"
|
|
960
1008
|
style="width:100%;padding:9px 12px;background:var(--bg-input);border:1px solid var(--border);border-radius:6px;color:var(--text);font-size:13px;">
|
|
961
1009
|
</div>
|
|
962
1010
|
<div>
|
|
963
1011
|
<label style="display:block;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:0.05em;color:var(--text-muted);margin-bottom:6px;">Weekly Limit (tokens)</label>
|
|
964
|
-
<input type="number" min="0" step="1" id="default-limit-weekly" placeholder="
|
|
1012
|
+
<input type="number" min="0" step="1" id="default-limit-weekly" placeholder="Default: 10000000"
|
|
965
1013
|
style="width:100%;padding:9px 12px;background:var(--bg-input);border:1px solid var(--border);border-radius:6px;color:var(--text);font-size:13px;">
|
|
966
1014
|
</div>
|
|
967
1015
|
</div>
|
|
@@ -1051,6 +1099,10 @@
|
|
|
1051
1099
|
</div>
|
|
1052
1100
|
</div>
|
|
1053
1101
|
<div class="content">
|
|
1102
|
+
<div class="card" style="margin-bottom:20px;">
|
|
1103
|
+
<div class="card-title">Service Email</div>
|
|
1104
|
+
<div id="email-config-content"><div class="empty"><span class="spinner"></span></div></div>
|
|
1105
|
+
</div>
|
|
1054
1106
|
<div class="card">
|
|
1055
1107
|
<div class="card-title">Environment</div>
|
|
1056
1108
|
<div id="config-content"><div class="empty"><span class="spinner"></span></div></div>
|
package/server/db/database.js
CHANGED
|
@@ -7,6 +7,7 @@ const {
|
|
|
7
7
|
encryptValue,
|
|
8
8
|
isEncryptedValue,
|
|
9
9
|
} = require('../services/integrations/secrets');
|
|
10
|
+
const { runSchemaMigrations } = require('../../lib/schema_migrations');
|
|
10
11
|
ensureRuntimeDirs();
|
|
11
12
|
|
|
12
13
|
const DB_PATH = path.join(DATA_DIR, 'neoagent.db');
|
|
@@ -1075,6 +1076,8 @@ db.exec(`
|
|
|
1075
1076
|
END;
|
|
1076
1077
|
`);
|
|
1077
1078
|
|
|
1079
|
+
runSchemaMigrations(db);
|
|
1080
|
+
|
|
1078
1081
|
try {
|
|
1079
1082
|
db.exec(`
|
|
1080
1083
|
CREATE VIRTUAL TABLE IF NOT EXISTS screen_history_fts USING fts5(
|
package/server/http/routes.js
CHANGED
|
@@ -34,7 +34,8 @@ const routeRegistry = [
|
|
|
34
34
|
{ basePath: '/api/wearable', modulePath: '../routes/wearable' },
|
|
35
35
|
{ basePath: '/api/mobile/health', modulePath: '../routes/mobile-health' },
|
|
36
36
|
{ basePath: '/api/screen-history', modulePath: '../routes/screenHistory' },
|
|
37
|
-
{ basePath: '/api/triggers', modulePath: '../routes/triggers' }
|
|
37
|
+
{ basePath: '/api/triggers', modulePath: '../routes/triggers' },
|
|
38
|
+
{ basePath: '/api/security', modulePath: '../routes/security' },
|
|
38
39
|
];
|
|
39
40
|
|
|
40
41
|
function registerApiRoutes(app) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
e5e028ecf14ede4c087c3b8cc9b39300
|
|
@@ -5943,6 +5943,67 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
5943
5943
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
5944
5944
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5945
5945
|
|
|
5946
|
+
--------------------------------------------------------------------------------
|
|
5947
|
+
flutter_local_notifications
|
|
5948
|
+
flutter_local_notifications_linux
|
|
5949
|
+
|
|
5950
|
+
Copyright 2018 Michael Bui. All rights reserved.
|
|
5951
|
+
|
|
5952
|
+
Redistribution and use in source and binary forms, with or without
|
|
5953
|
+
modification, are permitted provided that the following conditions are
|
|
5954
|
+
met:
|
|
5955
|
+
|
|
5956
|
+
* Redistributions of source code must retain the above copyright
|
|
5957
|
+
notice, this list of conditions and the following disclaimer.
|
|
5958
|
+
* Redistributions in binary form must reproduce the above
|
|
5959
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
5960
|
+
in the documentation and/or other materials provided with the
|
|
5961
|
+
distribution.
|
|
5962
|
+
* Neither the name of the copyright holder nor the names of its
|
|
5963
|
+
contributors may be used to endorse or promote products derived from
|
|
5964
|
+
this software without specific prior written permission.
|
|
5965
|
+
|
|
5966
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
5967
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
5968
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
5969
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
5970
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
5971
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
5972
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
5973
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
5974
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
5975
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
5976
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5977
|
+
--------------------------------------------------------------------------------
|
|
5978
|
+
flutter_local_notifications_platform_interface
|
|
5979
|
+
|
|
5980
|
+
Copyright 2020 Michael Bui. All rights reserved.
|
|
5981
|
+
|
|
5982
|
+
Redistribution and use in source and binary forms, with or without
|
|
5983
|
+
modification, are permitted provided that the following conditions are
|
|
5984
|
+
met:
|
|
5985
|
+
|
|
5986
|
+
* Redistributions of source code must retain the above copyright
|
|
5987
|
+
notice, this list of conditions and the following disclaimer.
|
|
5988
|
+
* Redistributions in binary form must reproduce the above
|
|
5989
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
5990
|
+
in the documentation and/or other materials provided with the
|
|
5991
|
+
distribution.
|
|
5992
|
+
* Neither the name of the copyright holder nor the names of its
|
|
5993
|
+
contributors may be used to endorse or promote products derived from
|
|
5994
|
+
this software without specific prior written permission.
|
|
5995
|
+
|
|
5996
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
5997
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
5998
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
5999
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
6000
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
6001
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
6002
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
6003
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
6004
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
6005
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
6006
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5946
6007
|
--------------------------------------------------------------------------------
|
|
5947
6008
|
flutter_secure_storage
|
|
5948
6009
|
flutter_secure_storage_macos
|
|
@@ -29226,6 +29287,31 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
29226
29287
|
|
|
29227
29288
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
29228
29289
|
--------------------------------------------------------------------------------
|
|
29290
|
+
timezone
|
|
29291
|
+
|
|
29292
|
+
Copyright (c) 2014, timezone project authors.
|
|
29293
|
+
All rights reserved.
|
|
29294
|
+
|
|
29295
|
+
Redistribution and use in source and binary forms, with or without
|
|
29296
|
+
modification, are permitted provided that the following conditions are met:
|
|
29297
|
+
|
|
29298
|
+
* Redistributions of source code must retain the above copyright
|
|
29299
|
+
notice, this list of conditions and the following disclaimer.
|
|
29300
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
29301
|
+
notice, this list of conditions and the following disclaimer in the
|
|
29302
|
+
documentation and/or other materials provided with the distribution.
|
|
29303
|
+
|
|
29304
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
29305
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
29306
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
29307
|
+
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
|
29308
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
29309
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
29310
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
29311
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
29312
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
29313
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
29314
|
+
--------------------------------------------------------------------------------
|
|
29229
29315
|
tray_manager
|
|
29230
29316
|
window_manager
|
|
29231
29317
|
|
|
Binary file
|
|
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"77e2e94772b6eb43759e34ed1ad7da4674e19c
|
|
|
37
37
|
|
|
38
38
|
_flutter.loader.load({
|
|
39
39
|
serviceWorkerSettings: {
|
|
40
|
-
serviceWorkerVersion: "
|
|
40
|
+
serviceWorkerVersion: "469569152" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|