-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔀 Merge pull request #319 from Lissy93/FIX/ui-editor-improvments
[FIX] UI Bug Fixes for Interactive Editor + Style Refactor Fixes #301 Fixes #310 Fixes #311 Fixes #312
- Loading branch information
Showing
16 changed files
with
518 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Ignore list, for automated broken link checking | ||
|
||
https://fonts.gstatic.com/** | ||
https://metager.org/meta/** | ||
https://developers.cloudflare.com/** | ||
|
||
http://localhost** | ||
https://localhost** | ||
http://192.168** | ||
https://192.168** | ||
file:///github/** | ||
http://[dashy-location]** | ||
https://[dashy-location]** | ||
**.local/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,15 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Load Excludes | ||
run: | | ||
LYCHEE_EXCLUDE=$(sed -e :a -e 'N;s/\n/ /;ta' .github/.lycheeexclude) | ||
echo "LYCHEE_EXCLUDE=$LYCHEE_EXCLUDE" >> $GITHUB_ENV | ||
- name: Check for Broken Links | ||
uses: lycheeverse/[email protected] | ||
with: | ||
args: --verbose -a 200,302,304,429 --no-progress **/*.md **/*.html | ||
args: --verbose -a 200,302,304,429 --exclude ${{ env.LYCHEE_EXCLUDE }} --exclude-mail --no-progress **/*.md | ||
env: | ||
GITHUB_TOKEN: ${{secrets.BOT_GITHUB_TOKEN}} | ||
LYCHEE_OUT: .github/broken-link-report.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
{ | ||
"name": "Dashy", | ||
"version": "1.9.0", | ||
"version": "1.9.1", | ||
"license": "MIT", | ||
"main": "server", | ||
"author": "Alicia Sykes <[email protected]> (https://aliciasykes.com)", | ||
"scripts": { | ||
"start": "node server", | ||
"dev": "vue-cli-service serve", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.