From 71ce62194883608f295a6f77aeabd3ddafa0c591 Mon Sep 17 00:00:00 2001 From: andy840119 Date: Sat, 16 May 2020 16:04:38 +0800 Subject: [PATCH 01/10] add gem file to enable jekyll can run in local --- .gitignore | 5 +++++ Gemfile | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 .gitignore create mode 100644 Gemfile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0e588cc --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# this folder will be created if runs bundle exec jekyll serve commend +_site/ + +# ignore gemfile +Gemfile.lock \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..7a47adc --- /dev/null +++ b/Gemfile @@ -0,0 +1,2 @@ +source 'https://rubygems.org' +gem 'github-pages', group: :jekyll_plugins \ No newline at end of file From 6678d6ee8e3fd1bbcd8bc61cfde4936ea5813694 Mon Sep 17 00:00:00 2001 From: andy840119 Date: Sat, 16 May 2020 16:04:52 +0800 Subject: [PATCH 02/10] change theme --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 926d57f..0ae6eba 100644 --- a/_config.yml +++ b/_config.yml @@ -1,5 +1,5 @@ # theme -remote_theme: andy840119/jekyll-tameowder-theme +remote_theme: andy840119/tameowder-theme # header title: Karaoke ruleset develop progress From 9c334033c16d174e973d40033fb6cfc581e38876 Mon Sep 17 00:00:00 2001 From: andy840119 Date: Sat, 16 May 2020 16:06:12 +0800 Subject: [PATCH 03/10] add change log and it's parent readme --- changelog/2020.0401/README.md | 6 ++++++ changelog/2020.0412/README.md | 6 ++++++ changelog/2020.0426/README.md | 6 ++++++ changelog/2020.0501/README.md | 6 ++++++ changelog/2020.0508/README.md | 6 ++++++ changelog/README.md | 9 +++++++++ 6 files changed, 39 insertions(+) create mode 100644 changelog/README.md diff --git a/changelog/2020.0401/README.md b/changelog/2020.0401/README.md index c239db0..97645e1 100644 --- a/changelog/2020.0401/README.md +++ b/changelog/2020.0401/README.md @@ -1,3 +1,9 @@ +--- +layout: default +title: 2020.0401 +parent: ChangeLog +--- + ## Achievement - Thanks jetbrain to give me free all-pack license for open source using. diff --git a/changelog/2020.0412/README.md b/changelog/2020.0412/README.md index bf3b0f2..913f170 100644 --- a/changelog/2020.0412/README.md +++ b/changelog/2020.0412/README.md @@ -1,3 +1,9 @@ +--- +layout: default +title: 2020.0412 +parent: ChangeLog +--- + ## Code - Add [code factor](https://www.codefactor.io/dashboard) into github for code quality checking(but it does not working ;_;) diff --git a/changelog/2020.0426/README.md b/changelog/2020.0426/README.md index d9f78c4..d265841 100644 --- a/changelog/2020.0426/README.md +++ b/changelog/2020.0426/README.md @@ -1,3 +1,9 @@ +--- +layout: default +title: 2020.0426 +parent: ChangeLog +--- + ## Achievement - \First post/ diff --git a/changelog/2020.0501/README.md b/changelog/2020.0501/README.md index 7a96c75..aeb4166 100644 --- a/changelog/2020.0501/README.md +++ b/changelog/2020.0501/README.md @@ -1,3 +1,9 @@ +--- +layout: default +title: 2020.0501 +parent: ChangeLog +--- + ## Achievement - `Holiday in Taiwan` diff --git a/changelog/2020.0508/README.md b/changelog/2020.0508/README.md index 2555bda..d22a426 100644 --- a/changelog/2020.0508/README.md +++ b/changelog/2020.0508/README.md @@ -1,3 +1,9 @@ +--- +layout: default +title: 2020.0508 +parent: ChangeLog +--- + ## Achievement - Now user can select microphone device in ruleset. diff --git a/changelog/README.md b/changelog/README.md new file mode 100644 index 0000000..fbb492a --- /dev/null +++ b/changelog/README.md @@ -0,0 +1,9 @@ +--- +layout: default +title: ChangeLog +has_children: true +--- + +# UI Components + +List of change log. \ No newline at end of file From b64c646f299de673e4b3460346cfe7d13cd8b8d6 Mon Sep 17 00:00:00 2001 From: andy840119 Date: Sat, 16 May 2020 16:06:24 +0800 Subject: [PATCH 04/10] ignore developer.md --- Developer.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Developer.md b/Developer.md index ea656ae..9d82e3b 100644 --- a/Developer.md +++ b/Developer.md @@ -1,3 +1,7 @@ +--- +nav_exclude: true +--- + # Developer This article is written in internal, just for convenience. From 6d08a0540d4ed6984f43a650ec29adfffa83be83 Mon Sep 17 00:00:00 2001 From: andy840119 Date: Sat, 16 May 2020 16:06:36 +0800 Subject: [PATCH 05/10] add vscode start support. --- .vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..8745ddc --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Debug Jekyll", + "url": "http://localhost:4000/", + "webRoot": "${workspaceFolder}/_site", + }, + ] +} \ No newline at end of file From 5ddaf88dc4c22fe2e281403178a9e459e8ddbf15 Mon Sep 17 00:00:00 2001 From: andy840119 Date: Sat, 16 May 2020 16:52:16 +0800 Subject: [PATCH 06/10] change some config --- _config.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/_config.yml b/_config.yml index 0ae6eba..e4c2814 100644 --- a/_config.yml +++ b/_config.yml @@ -2,10 +2,14 @@ remote_theme: andy840119/tameowder-theme # header -title: Karaoke ruleset develop progress -description: it's time to write progress in github -show_downloads: false +title: osu!Karaoke +description: Offical site for karaoke ruleset +baseurl: "/" +url: "https://osu-karaoke.github.io" # navigation facebook_url: https://www.facebook.com/OAQaa discord_id: 299006062323826688 + +# Footer content appears at the bottom of every page's main content +footer_content: "Copyright © 2019-2020 andy840119. Distributed by an GPL V3 license." From 8d758985c9e9e76bc4b0392c0cb4e678b9ac359b Mon Sep 17 00:00:00 2001 From: andy840119 Date: Sat, 23 May 2020 21:08:10 +0800 Subject: [PATCH 07/10] remove facebook page url because it's not needed. --- _config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/_config.yml b/_config.yml index e4c2814..da17ca7 100644 --- a/_config.yml +++ b/_config.yml @@ -8,7 +8,6 @@ baseurl: "/" url: "https://osu-karaoke.github.io" # navigation -facebook_url: https://www.facebook.com/OAQaa discord_id: 299006062323826688 # Footer content appears at the bottom of every page's main content From 2f0cd0c591ec2d6fbf55f5b4207cddeb4b2069ce Mon Sep 17 00:00:00 2001 From: andy840119 Date: Sat, 23 May 2020 21:18:11 +0800 Subject: [PATCH 08/10] add nav order --- changelog/2020.0401/README.md | 1 + changelog/2020.0412/README.md | 1 + changelog/2020.0426/README.md | 1 + changelog/2020.0501/README.md | 1 + changelog/2020.0508/README.md | 1 + 5 files changed, 5 insertions(+) diff --git a/changelog/2020.0401/README.md b/changelog/2020.0401/README.md index 97645e1..949155f 100644 --- a/changelog/2020.0401/README.md +++ b/changelog/2020.0401/README.md @@ -2,6 +2,7 @@ layout: default title: 2020.0401 parent: ChangeLog +nav_order: -1 --- ## Achievement diff --git a/changelog/2020.0412/README.md b/changelog/2020.0412/README.md index 913f170..7fb5833 100644 --- a/changelog/2020.0412/README.md +++ b/changelog/2020.0412/README.md @@ -2,6 +2,7 @@ layout: default title: 2020.0412 parent: ChangeLog +nav_order: -2 --- ## Code diff --git a/changelog/2020.0426/README.md b/changelog/2020.0426/README.md index d265841..cca20a0 100644 --- a/changelog/2020.0426/README.md +++ b/changelog/2020.0426/README.md @@ -2,6 +2,7 @@ layout: default title: 2020.0426 parent: ChangeLog +nav_order: -3 --- ## Achievement diff --git a/changelog/2020.0501/README.md b/changelog/2020.0501/README.md index aeb4166..ad120fe 100644 --- a/changelog/2020.0501/README.md +++ b/changelog/2020.0501/README.md @@ -2,6 +2,7 @@ layout: default title: 2020.0501 parent: ChangeLog +nav_order: -4 --- ## Achievement diff --git a/changelog/2020.0508/README.md b/changelog/2020.0508/README.md index d22a426..2da616a 100644 --- a/changelog/2020.0508/README.md +++ b/changelog/2020.0508/README.md @@ -2,6 +2,7 @@ layout: default title: 2020.0508 parent: ChangeLog +nav_order: -5 --- ## Achievement From eb1af3b9e0e06ed8dab0cef8edb8191807364ab3 Mon Sep 17 00:00:00 2001 From: andy840119 Date: Sat, 23 May 2020 21:18:30 +0800 Subject: [PATCH 09/10] add aux link --- _config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_config.yml b/_config.yml index da17ca7..94985a0 100644 --- a/_config.yml +++ b/_config.yml @@ -7,6 +7,11 @@ description: Offical site for karaoke ruleset baseurl: "/" url: "https://osu-karaoke.github.io" +# Aux links for the upper right navigation +aux_links: + "osu!karaoke on GitHub": + - "//github.com/osu-karaoke/" + # navigation discord_id: 299006062323826688 From 36f94b75b49de413c705296103938ca197e1c9ef Mon Sep 17 00:00:00 2001 From: andy840119 Date: Sat, 23 May 2020 21:19:21 +0800 Subject: [PATCH 10/10] adjust index and change log's page. --- changelog/README.md | 5 ++--- index.md | 10 +++++++--- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/changelog/README.md b/changelog/README.md index fbb492a..08302e4 100644 --- a/changelog/README.md +++ b/changelog/README.md @@ -2,8 +2,7 @@ layout: default title: ChangeLog has_children: true +nav_order: 1 --- -# UI Components - -List of change log. \ No newline at end of file +# Change logs \ No newline at end of file diff --git a/index.md b/index.md index fd87e79..830206c 100644 --- a/index.md +++ b/index.md @@ -1,5 +1,9 @@ -# karaoke develop progress +--- +layout: default +title: Hello karaoke! +nav_order: 0 +--- -The latest `progress/idea/bug fixed` will be written in here. +# Hello karaoke! -see what's [changelog](https://osu-karaoke.github.io/changelog) goes on. \ No newline at end of file +This website record most of change about karaoke ruleset.