-
Notifications
You must be signed in to change notification settings - Fork 50
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 #36 from rule110-io/v0.2.1-beta
V0.2.1 beta
- Loading branch information
Showing
56 changed files
with
16,454 additions
and
729 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,15 @@ | ||
{ | ||
"version": "0.2.1-beta", | ||
"configurations": [ | ||
{ | ||
"name": "Wails: build debug", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "exec", | ||
"program": "${workspaceFolder}/build/surge", | ||
"preLaunchTask": "wails_debug_build", | ||
"env": {}, | ||
"args": [] | ||
} | ||
] | ||
} |
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,10 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "wails_debug_build", | ||
"type": "shell", | ||
"command": "wails build -d" | ||
} | ||
] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "surge", | ||
"author": "Christian Busch<[email protected]>", | ||
"private": true, | ||
"version": "0.2.0-beta", | ||
"version": "0.2.1-beta", | ||
"scripts": { | ||
"serve": "vue-cli-service serve", | ||
"build": "vue-cli-service build", | ||
|
@@ -25,6 +25,7 @@ | |
"vue-chartjs": "^3.5.0", | ||
"vue-clamp": "^0.3.1", | ||
"vue-clickaway": "^2.2.2", | ||
"vue-clipboard2": "^0.3.1", | ||
"vue-feather": "^1.0.1", | ||
"vue-filter-pretty-bytes": "^0.1.5", | ||
"vue-lodash": "^2.1.2", | ||
|
@@ -41,9 +42,9 @@ | |
"eslint": "^6.8.0", | ||
"eslint-plugin-vue": "^6.2.1", | ||
"eventsource-polyfill": "^0.9.6", | ||
"node-sass": "^4.14.1", | ||
"node-sass": "^5.0.0", | ||
"prerender-spa-plugin": "^3.4.0", | ||
"sass-loader": "^7.1.0", | ||
"sass-loader": "^10.1.0", | ||
"vue-svg-loader": "^0.16.0", | ||
"vue-template-compiler": "^2.6.11", | ||
"webpack-hot-middleware": "^2.25.0" | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,9 @@ | |
|
||
&_small { | ||
canvas { | ||
position: absolute; | ||
left: -4px; | ||
top: -4px; | ||
height: 35px; | ||
width: 35px; | ||
} | ||
|
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
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,3 +1,55 @@ | ||
.file-hash { | ||
width: 205px; | ||
width: 160px; | ||
cursor: pointer; | ||
position: relative; | ||
display: flex; | ||
align-items: center; | ||
|
||
&:after { | ||
position: absolute; | ||
top: -2px; | ||
left: 0; | ||
display: inline-block; | ||
color: $primary; | ||
white-space: nowrap; | ||
text-align: center; | ||
transform: translate3d(-50%, 0, 0); | ||
-webkit-backface-visibility: hidden; | ||
opacity: 0.001; | ||
content: attr(data-label); | ||
font-size: $fz-sm; | ||
} | ||
|
||
&_active { | ||
&:after { | ||
animation: floatup 0.5s ease-in-out; | ||
} | ||
} | ||
|
||
&:hover & { | ||
&__icon { | ||
color: $primary; | ||
} | ||
} | ||
|
||
&__icon { | ||
height: 14px; | ||
width: 14px; | ||
position: relative; | ||
transition: $transition-1; | ||
margin-right: $padding-micro; | ||
} | ||
|
||
&__text { | ||
flex: 1; | ||
} | ||
} | ||
|
||
@keyframes floatup { | ||
20% { | ||
opacity: 0.999; | ||
} | ||
100% { | ||
transform: translate3d(-50%, -17px, 0); | ||
} | ||
} |
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
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.