Skip to content

Commit 6f12495

Browse files
committed
Update IN-Chapter to IT-Chapter and songlist link
Resolves #46
1 parent eea4869 commit 6f12495

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
lines changed

Diff for: README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# The IN-Chapters Webapp Songbook 2.0
1+
# The IT-Chapters Webapp Songbook 2.0
22

33
The chapters new and improved songbook (PWA) webapp!
44

@@ -45,12 +45,11 @@ To keep track of what work needs to/should be done, what is being done and what
4545
All commits should include either `Related to #X` to or `Resolves #X` in the commit message. As in the following example:
4646

4747
```
48+
Add some feature
4849
49-
Adds some feature
50-
51-
Adds this
52-
Removes that
53-
Updates something
50+
Add this
51+
Remove that
52+
Update something
5453
5554
Resolves #13
5655
```

Diff for: index.html

+2-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,8 @@
77
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
88
/>
99
<meta name="theme-color" content="#2e5163" />
10-
<title>IN-Songbook</title>
11-
<meta
12-
name="description"
13-
content="Song book for the Chapter of Information and Nanotechnology"
14-
/>
10+
<title>IT-Songbook</title>
11+
<meta name="description" content="Song book for the Chapter of Information Technology" />
1512
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
1613
<link rel="icon" href="/favicon.ico" />
1714
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />

Diff for: src/definitions/songs.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ export type SongsWithMeta = {
2020
};
2121

2222
export const SONGS_JSON_URL =
23-
'https://raw.githubusercontent.com/insektionen/songlist/master/dist/songs.json';
23+
'https://raw.githubusercontent.com/itsektionen/songlist/master/dist/songs.json';

Diff for: vite.config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default defineConfig({
2626
manifest: {
2727
name: 'IN-Songbook',
2828
short_name: 'Songbook',
29-
description: 'The IN-Chapters Webapp Songbook 2.0',
29+
description: 'The IT-Chapters Webapp Songbook 2.0',
3030
theme_color: '#2e5163',
3131
icons: [
3232
{
@@ -46,7 +46,7 @@ export default defineConfig({
4646
getCache({
4747
name: 'songs.json',
4848
pattern:
49-
'https://raw.githubusercontent.com/insektionen/songlist/master/dist/songs.json',
49+
'https://raw.githubusercontent.com/itsektionen/songlist/master/dist/songs.json',
5050
}),
5151
],
5252
globPatterns: ['**/*.{js,css,html}', '*', 'assets/*'],

0 commit comments

Comments
 (0)