Skip to content

Commit 3d3bfe7

Browse files
authored
yarr@jtoberling: Version 2.1.0 (#1551)
* Stability improvements * Use SQL.js for sqlite operations * Add header feedbar
1 parent 1a77ca7 commit 3d3bfe7

28 files changed

Lines changed: 11870 additions & 4767 deletions

yarr@jtoberling/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [2.1.0] - 2025-08-21
9+
- Stability improvements
10+
- Using SQL.js for sqlite operations
11+
- Adding header feedbar
12+
813
## [2.0.0] - 2025-08-08
914

1015
- Updates

yarr@jtoberling/files/yarr@jtoberling/.cursorrules

Lines changed: 0 additions & 83 deletions
This file was deleted.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
* LICENSE-sql.js
3+
*
4+
* This file contains the MIT license for the sql.js library that is embedded in this Cinnamon desklet.
5+
*
6+
* Why is this file here?
7+
*
8+
* The Yarr desklet embeds the sql.js library (a pure JavaScript SQLite implementation) to provide
9+
* database functionality without requiring external system dependencies. As per the MIT license
10+
* requirements, this license file must be included alongside the embedded library.
11+
*
12+
* The sql.js library is located at: ./sql.js (1.3MB file)
13+
*
14+
* MIT License
15+
*
16+
* Copyright (c) 2024 sql.js contributors
17+
*
18+
* Permission is hereby granted, free of charge, to any person obtaining a copy
19+
* of this software and associated documentation files (the "Software"), to deal
20+
* in the Software without restriction, including without limitation the rights
21+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
22+
* copies of the Software, and to permit persons to whom the Software is
23+
* furnished to do so, subject to the following conditions:
24+
*
25+
* The above copyright notice and this permission notice shall be included in all
26+
* copies or substantial portions of the Software.
27+
*
28+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
31+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
32+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
33+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34+
* SOFTWARE.
35+
*
36+
* Source: https://github.com/sql-js/sql.js
37+
* Version: 1.8.0
38+
* License: MIT
39+
*/

0 commit comments

Comments
 (0)