Skip to content

Commit

Permalink
added new yarn: Sandnes - Tynn Peer Gynt
Browse files Browse the repository at this point in the history
  • Loading branch information
jdvlpr committed Sep 27, 2024
1 parent dd0c75d commit d519649
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ build
node_modules
package-lock.json
pnpm-lock.yaml
src/routes/.dev-tools
test-results
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "temperature-blanket-web-app",
"version": "4.2.3",
"version": "4.3.0",
"description": "Weather Data + Art! Web app for creating a temperature blanket",
"main": "index.html",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/lib/types/page-types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface ChangelogItem {
/** Only necessary for new months, in the format of Month, Year. For example: August, 2024 */
date?: string;
notes: ChangelogItemNote[];
version: string;
version?: string;
}

export interface ChangelogItemNote {
Expand Down
3 changes: 2 additions & 1 deletion src/lib/yarns/sandnes/yarns.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import type { Brand } from '$lib/types';
import { yarn as petiteknitDoubleSunday } from './petiteknit-double-sunday/yarn';
import { yarn as sunday } from './sunday/yarn';
import { yarn as tynnPeerGynt } from './tynn-peer-gynt/yarn';

export const brand: Brand = {
name: 'Sandnes',
id: 'sandnes',
yarns: [petiteknitDoubleSunday, sunday],
yarns: [petiteknitDoubleSunday, sunday, tynnPeerGynt],
};
2 changes: 1 addition & 1 deletion src/routes/changelog/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ If not, see <https://www.gnu.org/licenses/>. -->
href="{PUBLIC_GITHUB_LINK}/commits/main/"
class="link"
target="_blank">Visit the GitHub repository</a
> to see the full changelog for version 4.
> to see the full changelog since version 4.
</p>
</div>
<div
Expand Down
10 changes: 10 additions & 0 deletions src/routes/changelog/changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ import type { ChangelogItem } from '$lib/types';
export const entries: ChangelogItem[] = [
{
date: 'September, 2024',
notes: [
{
icon: ICONS.checkCircle,
text: `50 colorways`,
title: 'Added Yarn: Sandnes - Tynn Peer Gynt',
},
],
version: '4.3.0',
},
{
notes: [
{
icon: `<svg
Expand Down

0 comments on commit d519649

Please sign in to comment.