Skip to content

Commit 5edf91c

Browse files
author
CodeF0x
authored
Merge pull request #55 from CodeF0x/prelive
Partly new UI, new features.
2 parents 77eca73 + 6109f5d commit 5edf91c

21 files changed

Lines changed: 720 additions & 400 deletions

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ node_modules/*
22
.DS_Store
33
docs/.DS_Store
44
release-builds/*
5-
docs/images/.DS_Store
5+
docs/images/.DS_Store
6+
src/img/icons/*-backup.*
7+
.idea/*

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
![screenshot](docs/images/screenshot.png)
44

5-
Violin is a minimalistic and fast music player for Linux, macOS and Windows.
5+
Violin is a minimalistic and fast music player for Linux, macOS, and Windows.
6+
7+
If you just want to open a folder with your music and start listening instead of importing your songs to Spotify, downloading a huge app that's just overkill for your needs, or your songs are not on streaming platforms, Violin is for you. If that's not the case, you probably won't like Violin.
68

79
## 📓 Features
810

@@ -39,5 +41,5 @@ Violin is a minimalistic and fast music player for Linux, macOS and Windows.
3941

4042
4. Create installer for your system (you must be on the system you want to create an installer for):
4143
- `npm run create-installer-mac`
42-
- `npm run create-installer-linux` (this creates a .deb package. For other distros, just pack it as described above)
43-
- `npm run create-installer-windows` (this creates a standalone-app what is the intendend behaviour)
44+
- `npm run create-installer-linux` (this creates a .deb package. For other distros, use the created .app file you created in above's step 3)
45+
- `npm run create-installer-windows` (this creates a standalone-app what is the intendend behaviour. Also, the app is unsigned so Windows will probably complain)

config/create-windows-installer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function getInstallerConfig() {
2020
noMsi: true,
2121
outputDirectory: path.join(outPath, 'windows-installer'),
2222
exe: 'violin.exe',
23-
setupExe: 'voilin.exe',
23+
setupExe: 'violin.exe',
2424
setupIcon: path.join(rootPath, 'src', 'img', 'icons', 'icon.ico')
2525
});
2626
}

docs/README.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Thank you for downloading Violin!
2+
3+
If you have questions, want to report a bug or recommend a new feature, please reach out here: https://github.com/CodeF0x/violin/issues.

docs/images/screenshot.png

876 Bytes
Loading

docs/index.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,8 @@ <h2>Other</h2>
126126
<!-- Footer -->
127127
<footer id="footer">
128128
<p class="copyright">
129-
&copy; <a href="https://codef0x.com">Tobias "CodeF0x" Oettl</a> |
130-
Website template by <a href="https://html5up.net">HTML5Up!</a> |
131-
Supported by <a href="https://27wolf.space">The 27wolf Group</a>
129+
&copy; <a href="https://codef0x.com">Tobias "CodeF0x" Oettl</a> & <a href="https://danaxaath.com">Danaxaath</a> |
130+
Website template by <a href="https://html5up.net">HTML5Up!</a>
132131
</p>
133132
</footer>
134133

main.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ function createWindow() {
1313
width: 800,
1414
height: 600,
1515
titleBarStyle: 'hiddenInset',
16+
fullscreenable: false,
17+
useContentSize: false,
1618
webPreferences: {
1719
nodeIntegration: true
1820
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "violin",
33
"productName": "Violin",
4-
"version": "1.0.0",
4+
"version": "1.3.0",
55
"description": "A minimalistic music player for desktop systems.",
66
"main": "main.js",
77
"scripts": {

0 commit comments

Comments
 (0)