File tree Expand file tree Collapse file tree 2 files changed +30
-7
lines changed Expand file tree Collapse file tree 2 files changed +30
-7
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
- ** Unpublished:**
4
- - Introduced CHANGELOG
3
+ ** v0.1.0-alpha.1:**
4
+ - Introduced ` CHANGELOG.md `
5
+ - Introduced new services as social icons:
6
+ - ` Phone ` (converts into a link with ` tel: ` prefix)
7
+ - ` Facebook `
8
+ - ` YouTube `
9
+ - ` Instagram `
10
+ - ` LinkedIn `
11
+ - ` Slack `
12
+ - ` Discord `
13
+ - ` TikTok `
14
+ - ` Snapchat `
15
+ - ` Threads `
16
+ - ` Telegram `
5
17
6
18
** v0.1.0-alpha.0:**
7
19
- Initial implementation
Original file line number Diff line number Diff line change @@ -3,11 +3,22 @@ package components
3
3
type Service string
4
4
5
5
const (
6
- Website Service = "WEBSITE"
7
- Email Service = "EMAIL"
8
- Twitter Service = "TWITTER"
9
- X Service = "X"
10
- Github Service = "GITHUB"
6
+ Website Service = "WEBSITE"
7
+ Email Service = "EMAIL"
8
+ Phone Service = "PHONE"
9
+ Facebook Service = "FACEBOOK"
10
+ YouTube Service = "YOUTUBE"
11
+ Twitter Service = "TWITTER"
12
+ X Service = "X"
13
+ GitHub Service = "GITHUB"
14
+ Instagram Service = "INSTAGRAM"
15
+ LinkedIn Service = "LINKEDIN"
16
+ Slack Service = "SLACK"
17
+ Discord Service = "DISCORD"
18
+ TikTok Service = "TIKTOK"
19
+ Snapchat Service = "SNAPCHAT"
20
+ Threads Service = "THREADS"
21
+ Telegram Service = "TELEGRAM"
11
22
)
12
23
13
24
type SocialItem struct {
You can’t perform that action at this time.
0 commit comments