Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
Desktop Client
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SpinShare
Desktop Client
Commits
20aaf417
Commit
20aaf417
authored
Jul 30, 2020
by
SpinShare
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simpler animations, fixed scrollbar size, updated packages
parent
729a967c
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
427 additions
and
136 deletions
+427
-136
package-lock.json
package-lock.json
+416
-122
package.json
package.json
+8
-8
src/App.vue
src/App.vue
+1
-1
src/components/Navigation/Navigation.vue
src/components/Navigation/Navigation.vue
+1
-1
src/components/Overlays/DownloadOverlay.vue
src/components/Overlays/DownloadOverlay.vue
+0
-3
src/components/User/UserItem.vue
src/components/User/UserItem.vue
+1
-1
No files found.
package-lock.json
View file @
20aaf417
This diff is collapsed.
Click to expand it.
package.json
View file @
20aaf417
...
@@ -19,32 +19,32 @@
...
@@ -19,32 +19,32 @@
},
},
"main"
:
"background.js"
,
"main"
:
"background.js"
,
"dependencies"
:
{
"dependencies"
:
{
"
adm-zip
"
:
"
^0.4.1
4
"
,
"
adm-zip
"
:
"
^0.4.1
6
"
,
"
axios
"
:
"
^0.19.2
"
,
"
axios
"
:
"
^0.19.2
"
,
"
core-js
"
:
"
^3.6.4
"
,
"
core-js
"
:
"
^3.6.4
"
,
"
glob
"
:
"
^7.1.6
"
,
"
glob
"
:
"
^7.1.6
"
,
"
moment
"
:
"
^2.2
6
.0
"
,
"
moment
"
:
"
^2.2
7
.0
"
,
"
ncp
"
:
"
^2.0.0
"
,
"
ncp
"
:
"
^2.0.0
"
,
"
rimraf
"
:
"
^3.0.2
"
,
"
rimraf
"
:
"
^3.0.2
"
,
"
uniqid
"
:
"
^5.2.0
"
,
"
uniqid
"
:
"
^5.2.0
"
,
"
v-tooltip
"
:
"
^2.0.3
"
,
"
v-tooltip
"
:
"
^2.0.3
"
,
"
vue
"
:
"
^2.6.11
"
,
"
vue
"
:
"
^2.6.11
"
,
"
vue-axios
"
:
"
^2.1.5
"
,
"
vue-axios
"
:
"
^2.1.5
"
,
"
vue-i18n
"
:
"
^8.
17.4
"
,
"
vue-i18n
"
:
"
^8.
20.0
"
,
"
vue-observe-visibility
"
:
"
^0.4.6
"
,
"
vue-observe-visibility
"
:
"
^0.4.6
"
,
"
vue-router
"
:
"
^3.
1.6
"
,
"
vue-router
"
:
"
^3.
3.4
"
,
"
vuex
"
:
"
^3.
1.3
"
"
vuex
"
:
"
^3.
5.1
"
},
},
"devDependencies"
:
{
"devDependencies"
:
{
"
@vue/cli-plugin-babel
"
:
"
~4.3.0
"
,
"
@vue/cli-plugin-babel
"
:
"
~4.3.0
"
,
"
@vue/cli-plugin-router
"
:
"
~4.3.0
"
,
"
@vue/cli-plugin-router
"
:
"
~4.3.0
"
,
"
@vue/cli-plugin-vuex
"
:
"
~4.3.0
"
,
"
@vue/cli-plugin-vuex
"
:
"
~4.3.0
"
,
"
@vue/cli-service
"
:
"
~4.3.0
"
,
"
@vue/cli-service
"
:
"
~4.3.0
"
,
"
electron
"
:
"
^6.0.0
"
,
"
less
"
:
"
^3.0.4
"
,
"
less-loader
"
:
"
^5.0.0
"
,
"
chalk
"
:
"
^4.1.0
"
,
"
chalk
"
:
"
^4.1.0
"
,
"
chalk-table
"
:
"
^1.0.2
"
,
"
chalk-table
"
:
"
^1.0.2
"
,
"
electron
"
:
"
^6.1.12
"
,
"
less
"
:
"
^3.12.2
"
,
"
less-loader
"
:
"
^5.0.0
"
,
"
vue-cli-plugin-electron-builder
"
:
"
~1.4.6
"
,
"
vue-cli-plugin-electron-builder
"
:
"
~1.4.6
"
,
"
vue-template-compiler
"
:
"
^2.6.11
"
"
vue-template-compiler
"
:
"
^2.6.11
"
}
}
...
...
src/App.vue
View file @
20aaf417
...
@@ -223,7 +223,7 @@
...
@@ -223,7 +223,7 @@
}
}
::-webkit-scrollbar {
::-webkit-scrollbar {
background: #212529;
background: #212529;
width:
8
px;
width:
5
px;
}
}
::-webkit-scrollbar-thumb {
::-webkit-scrollbar-thumb {
background: #fff;
background: #fff;
...
...
src/components/Navigation/Navigation.vue
View file @
20aaf417
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
<div
v-on:click=
"openExternal('steam://run/1058830');"
class=
"item"
v-tooltip.down=
"'Start SpinRhythm XD'"
><i
class=
"mdi mdi-play-outline"
></i></div>
<div
v-on:click=
"openExternal('steam://run/1058830');"
class=
"item"
v-tooltip.down=
"'Start SpinRhythm XD'"
><i
class=
"mdi mdi-play-outline"
></i></div>
<div
v-on:click=
"showDownloadOverlay();"
:class=
"'item ' + (downloadOverlayShown ? 'router-link-active' : '')"
v-tooltip.down=
"'Download Queue'"
>
<div
v-on:click=
"showDownloadOverlay();"
:class=
"'item ' + (downloadOverlayShown ? 'router-link-active' : '')"
v-tooltip.down=
"'Download Queue'"
>
<i
class=
"mdi mdi-download-outline"
></i>
<i
class=
"mdi mdi-download-outline"
></i>
<span
class=
"
badge
"
v-show=
"downloadQueueCount > 0"
>
{{
downloadQueueCount
}}
</span>
<span
class=
"
indicator
"
v-show=
"downloadQueueCount > 0"
>
{{
downloadQueueCount
}}
</span>
</div>
</div>
<router-link
to=
"/settings"
class=
"item"
v-tooltip.down=
"'Settings'"
><i
class=
"mdi mdi-cog-outline"
></i></router-link>
<router-link
to=
"/settings"
class=
"item"
v-tooltip.down=
"'Settings'"
><i
class=
"mdi mdi-cog-outline"
></i></router-link>
</nav>
</nav>
...
...
src/components/Overlays/DownloadOverlay.vue
View file @
20aaf417
...
@@ -150,7 +150,4 @@
...
@@ -150,7 +150,4 @@
}
}
}
}
}
}
.app-darwin .download-overlay {
top: 100px;
}
</
style
>
</
style
>
src/components/User/UserItem.vue
View file @
20aaf417
...
@@ -60,8 +60,8 @@
...
@@ -60,8 +60,8 @@
}
}
&:hover {
&:hover {
transform: scale(1.1);
cursor: pointer;
cursor: pointer;
background: rgba(255,255,255,0.2);
box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.4);
box-shadow: 0px 4px 20px 5px rgba(0, 0, 0, 0.4);
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment