-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlicense.html
More file actions
550 lines (480 loc) · 17.3 KB
/
license.html
File metadata and controls
550 lines (480 loc) · 17.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>License — Librarius</title>
<meta name="description" content="Licensing overview for Librarius source code and binary distribution.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #ffffff;
--bg-subtle: #f8fafc;
--text: #0f172a;
--text-muted: #64748b;
--accent: #6366f1;
--border: #e5e7eb;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
color: var(--text);
background: var(--bg);
line-height: 1.7;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 60px 24px;
}
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 8px; }
.subtitle { color: var(--text-muted); margin-bottom: 48px; }
h2 { font-size: 1.25rem; font-weight: 600; margin-top: 32px; margin-bottom: 16px; }
p { margin-bottom: 16px; color: var(--text-muted); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px; font-weight: 500; }
.last-updated { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.875rem; }
pre.license-text {
margin-top: 24px;
padding: 20px;
background: var(--bg-subtle);
border: 1px solid var(--border);
border-radius: 12px;
color: var(--text);
white-space: pre-wrap;
font-size: 0.95rem;
line-height: 1.6;
}
</style>
<style>
/* Theme Toggle */
.theme-toggle-group {
display: flex;
align-items: center;
gap: 4px;
padding: 4px;
background: var(--bg-subtle, #f8fafc);
border-radius: 999px;
border: 1px solid var(--border, #e5e7eb);
}
.theme-toggle-float {
position: fixed;
top: 16px;
right: 16px;
z-index: 1000;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.theme-btn {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border: none;
border-radius: 999px;
background: transparent;
color: var(--text-dim, #64748b);
cursor: pointer;
transition: all 0.2s;
}
.theme-btn:hover {
color: var(--text, #0f172a);
}
.theme-btn.active {
background: var(--accent, #2563eb);
color: #ffffff;
}
[data-theme="dark"] .theme-toggle-group {
background: var(--bg-subtle, #1e293b);
border-color: var(--border, #334155);
}
[data-theme="dark"] .theme-btn.active {
color: var(--bg, #0f172a);
}
[data-theme="dark"] {
color-scheme: dark;
--bg: #0f172a;
--bg-subtle: #1e293b;
--border: #334155;
--border-hover: #475569;
--text: #f1f5f9;
--text-muted: #94a3b8;
--text-dim: #64748b;
--accent: #7aa2f7;
--accent-dark: #7aa2f7;
}
/* Dark Theme Base */
[data-theme="dark"] body {
background: var(--bg, #0f172a);
color: var(--text, #f1f5f9);
}
[data-theme="dark"] a {
color: var(--accent, #7aa2f7);
}
</style>
<style>
/* Modern Footer */
.modern-footer {
background: var(--footer-bg, #f7f2ec);
border-top: 1px solid var(--footer-border, #e5ded5);
padding: 48px 0 24px;
}
.modern-footer .footer-wrap {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
.modern-footer .footer-grid {
display: grid;
grid-template-columns: minmax(220px, 2.2fr) repeat(3, minmax(140px, 1fr));
gap: 32px;
}
.modern-footer .footer-brand {
display: flex;
flex-direction: column;
gap: 12px;
}
.modern-footer .footer-logo {
display: flex;
align-items: center;
gap: 12px;
font-size: 1.1rem;
font-weight: 600;
}
.modern-footer .footer-mark {
width: 34px;
height: 34px;
border-radius: 10px;
background: linear-gradient(135deg, #9bd0c6, #a5b9f6);
color: #1f2937;
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 700;
letter-spacing: 0.02em;
}
.modern-footer .footer-desc {
color: var(--text-muted, #6b6b6b);
line-height: 1.6;
max-width: 320px;
}
.modern-footer .footer-email {
display: inline-flex;
align-items: center;
justify-content: center;
width: 56px;
height: 56px;
border-radius: 50%;
border: 1px solid var(--footer-border, #e5ded5);
background: var(--footer-pill, #ffffff);
color: var(--text, #2b2b2b);
text-decoration: none;
transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.modern-footer .footer-email svg {
width: 26px;
height: 26px;
stroke: currentColor;
}
.modern-footer .footer-email:hover {
color: var(--accent, #2563eb);
border-color: var(--accent, #2563eb);
transform: translateY(-1px);
box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}
.modern-footer .footer-col h4 {
font-size: 0.78rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--text-muted, #7b7b7b);
margin-bottom: 12px;
}
.modern-footer .footer-links {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.modern-footer .footer-links a {
color: var(--text, #2b2b2b);
text-decoration: none;
}
.modern-footer .footer-links a:hover {
color: var(--accent, #2563eb);
}
.modern-footer .footer-bottom {
margin-top: 32px;
padding-top: 16px;
border-top: 1px solid var(--footer-border, #e5ded5);
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
color: var(--text-muted, #6b6b6b);
font-size: 0.9rem;
}
.modern-footer .footer-bottom a {
color: var(--accent, #2563eb);
text-decoration: none;
}
.modern-footer .footer-badges {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.modern-footer .footer-badge {
padding: 4px 10px;
border-radius: 999px;
border: 1px solid var(--footer-border, #e5ded5);
background: var(--footer-pill, #ffffff);
font-size: 0.78rem;
color: var(--text-muted, #6b6b6b);
}
[data-theme="dark"] .modern-footer {
background: #0b1220;
border-color: #1f2a3a;
}
[data-theme="dark"] .modern-footer .footer-mark {
color: #0f172a;
}
[data-theme="dark"] .modern-footer .footer-email,
[data-theme="dark"] .modern-footer .footer-links a {
color: #e2e8f0;
}
[data-theme="dark"] .modern-footer .footer-email {
background: #0f172a;
border-color: #1f2a3a;
}
[data-theme="dark"] .modern-footer .footer-email:hover {
border-color: #334155;
color: #f8fafc;
}
[data-theme="dark"] .modern-footer .footer-desc,
[data-theme="dark"] .modern-footer .footer-bottom,
[data-theme="dark"] .modern-footer .footer-col h4 {
color: #94a3b8;
}
[data-theme="dark"] .modern-footer .footer-badge {
background: #0f172a;
border-color: #1f2a3a;
color: #94a3b8;
}
@media (max-width: 900px) {
.modern-footer .footer-grid {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 640px) {
.modern-footer .footer-grid {
grid-template-columns: 1fr;
}
.modern-footer .footer-bottom {
flex-direction: column;
align-items: flex-start;
}
}
</style>
</head>
<body>
<div class="theme-toggle-group theme-toggle-float">
<button class="theme-btn" data-theme-value="light" aria-label="Light mode">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="5"/>
<line x1="12" y1="1" x2="12" y2="3"/>
<line x1="12" y1="21" x2="12" y2="23"/>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"/>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"/>
<line x1="1" y1="12" x2="3" y2="12"/>
<line x1="21" y1="12" x2="23" y2="12"/>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"/>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"/>
</svg>
</button>
<button class="theme-btn" data-theme-value="dark" aria-label="Dark mode">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/>
</svg>
</button>
</div>
<div class="container">
<a href="index.html" class="back-link">← Back to Librarius</a>
<h1>Licensing Overview</h1>
<p class="subtitle">Source code and binary distribution terms for Librarius</p>
<p>Librarius is source-available under a BSL-style license. Source code use is
allowed, while the official binary distribution has stricter terms.</p>
<h2>Source Code License (BSL 1.1)</h2>
<p>The Business Source License 1.1 applies to the Librarius source code. Production
use is permitted under the Additional Use Grant.</p>
<pre class="license-text">Business Source License 1.1
Copyright (C) 2017 MariaDB Corporation Ab, All Rights Reserved.
"Business Source License" is a trademark of MariaDB Corporation Ab.
Parameters
Licensor: QNeura.ai
Licensed Work: Librarius Source Code
Additional Use Grant: You may use the Licensed Work for any purpose, including production use.
Change Date: 2030-02-01
Change License: GPL-2.0-or-later
Terms
The Licensor hereby grants you the right to copy, modify, create derivative
works, redistribute, and make non-production use of the Licensed Work. The
Licensor may make an Additional Use Grant, above, permitting limited
production use.
Effective on the Change Date, or the fourth anniversary of the first publicly
available distribution of a specific version of the Licensed Work under this
License, whichever comes first, the Licensor hereby grants you rights under
the terms of the Change License, and the rights granted in the paragraph
above terminate.
If your use of the Licensed Work does not comply with the requirements
currently in effect as described in this License, you must purchase a
commercial license from the Licensor, its affiliated entities, or authorized
resellers, or you must refrain from using the Licensed Work.
All copies of the original and modified Licensed Work, and derivative works
of the Licensed Work, are subject to this License. This License applies
separately for each version of the Licensed Work and the Change Date may vary
for each version of the Licensed Work released by Licensor.
You must conspicuously display this License on each original or modified copy
of the Licensed Work. If you receive the Licensed Work in original or
modified form from a third party, the terms and conditions set forth in this
License apply to your use of that work.
Any use of the Licensed Work in violation of this License will automatically
terminate your rights under this License for the current and all other
versions of the Licensed Work.
This License does not grant you any right in any trademark or logo of
Licensor or its affiliates (provided that you may use a trademark or logo of
Licensor as expressly required by this License).
TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
TITLE.
MariaDB hereby grants you permission to use this License's text to license
your works, and to refer to it using the trademark "Business Source License",
as long as you comply with the Covenants of Licensor below.
Covenants of Licensor
In consideration of the right to use this License's text and the "Business
Source License" name and trademark, Licensor covenants to MariaDB, and to all
other recipients of the licensed work to be provided by Licensor:
1. To specify as the Change License the GPL Version 2.0 or any later version,
or a license that is compatible with GPL Version 2.0 or a later version,
where "compatible" means that software provided under the Change License can
be included in a program with software provided under GPL Version 2.0 or a
later version. Licensor may specify additional Change Licenses without
limitation.
2. To either: (a) specify an additional grant of rights to use that does not
impose any additional restriction on the right granted in this License, as
the Additional Use Grant; or (b) insert the text "None".
3. To specify a Change Date.
4. Not to modify this License in any other way.
</pre>
<h2>Binary Distribution License</h2>
<p>The official DMG/executable binaries are governed by a separate Binary Distribution
License. Commercial use or redistribution of the Binary is not allowed.</p>
<pre class="license-text">Binary Distribution License
This Binary Distribution License ("License") governs use of the compiled
binary distribution for Librarius (the "Binary"), including DMG, EXE, and
app bundles.
1. License Grant
You may install and use the Binary for personal or internal evaluation use.
2. Restrictions
You may not sell, rent, sublicense, or redistribute the Binary.
You may not use the Binary for any commercial offering or commercial purpose.
3. Source Code
Source code is licensed separately under the Business Source License 1.1.
See LICENSE for details.
4. No Warranty
THE BINARY IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
5. Limitation of Liability
IN NO EVENT SHALL QNEURA.AI BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
LIABILITY ARISING FROM THE USE OF THE BINARY.
6. Contact
If you need commercial binary distribution rights, contact solomon@qneura.ai.
</pre>
<h2>Need Commercial Rights?</h2>
<p>Contact solomon@qneura.ai for commercial binary licensing.</p>
<p class="last-updated">Last updated: March 2026</p>
</div>
<script>
(function() {
const themeButtons = document.querySelectorAll('.theme-btn');
if (!themeButtons.length) {
return;
}
const storedTheme = localStorage.getItem('theme');
const prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
const initialTheme = storedTheme || (prefersDark ? 'dark' : 'light');
document.documentElement.setAttribute('data-theme', initialTheme);
themeButtons.forEach(btn => {
btn.classList.toggle('active', btn.dataset.themeValue === initialTheme);
btn.addEventListener('click', () => {
const theme = btn.dataset.themeValue;
document.documentElement.setAttribute('data-theme', theme);
localStorage.setItem('theme', theme);
themeButtons.forEach(b => b.classList.toggle('active', b === btn));
});
});
})();
</script>
<script src="privacy-consent.js"></script>
<footer class="modern-footer">
<div class="footer-wrap">
<div class="footer-grid">
<div class="footer-brand">
<div class="footer-logo">
<span class="footer-mark">L</span>
<span class="footer-name">Librarius</span>
</div>
<p class="footer-desc">Investigation workspace for the Epstein files with search and timeline analysis.</p>
<a class="footer-email" href="mailto:solomon@qneura.ai" aria-label="Email solomon@qneura.ai">
<svg viewBox="0 0 24 24" aria-hidden="true">
<path d="M4 7h16v10H4z" fill="none" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="m4 8 8 6 8-6" fill="none" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</a>
</div>
<div class="footer-col">
<h4>Product</h4>
<ul class="footer-links">
<li><a href="index.html#features">Features</a></li>
<li><a href="index.html#search">Search</a></li>
<li><a href="index.html#specs">Specs</a></li>
<li><a href="index.html#download">Download</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Support</h4>
<ul class="footer-links">
<li><a href="https://github.com/BoltzmannEntropy/Librarius" target="_blank" rel="noopener">GitHub</a></li>
<li><a href="mailto:solomon@qneura.ai">Contact</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Legal</h4>
<ul class="footer-links">
<li><a href="privacy.html">Privacy</a></li>
<li><a href="terms.html">Terms</a></li>
<li><a href="license.html">License</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<div>© 2026 Librarius. All rights reserved.</div>
<div>Made with ♥ for investigators everywhere. <a href="https://qneura.ai/apps.html" target="_blank" rel="noopener">QNeura.ai</a></div>
<div class="footer-badges">
<span class="footer-badge">macOS</span>
<span class="footer-badge">Investigation</span>
<span class="footer-badge">Local-first</span>
</div>
</div>
</div>
</footer>
</body>
</html>