Skip to content

Commit

Permalink
Preparing 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
emilioastarita committed Feb 24, 2020
1 parent 3a76f26 commit 157c328
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 17 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ STATIC_SOURCES:=$(shell find lyricfier/static/ -type f -name '*')

build: $(BINARY_NAME) $(STATIC_EMBEDED) .deps_updated

build-windows: $(GO_SOURCES) $(GO_SOURCES_INTERNAL) $(STATIC_EMBEDED)
cd lyricfier/ ; env GOOS=windows GOARCH=amd64 $(GOBUILD) -v -ldflags -H=windowsgui -o $(BINARY_NAME)-amd64.exe ; cd -
release-windows: $(GO_SOURCES) $(GO_SOURCES_INTERNAL) $(STATIC_EMBEDED)
cd lyricfier/ ; env GOOS=windows GOARCH=amd64 $(GOBUILD) -v -ldflags -H=windowsgui -o $(BINARY_NAME)-windows-amd64.exe ; cd -

release-darwin: $(GO_SOURCES) $(GO_SOURCES_INTERNAL) $(STATIC_EMBEDED)
cd lyricfier/ ; env GOOS=darwin GOARCH=amd64 $(GOBUILD) -v -o $(BINARY_NAME)-darwin-amd64 ; cd -

$(BINARY_NAME): $(GO_SOURCES) $(GO_SOURCES_INTERNAL) $(STATIC_EMBEDED)
$(GOBUILD) -o $(BINARY_NAME) -v $(GO_SOURCES)
Expand Down
30 changes: 16 additions & 14 deletions internal/lyricfier/static.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions lyricfier/static/modules/SongView.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ export default {
<img src="/static/img/waves.svg" alt="Waveform">
<h3>Looking for a Song on Spotify</h3>
<p>Connecting...</p>
<ul>
<li>Is spotify running and playing a song?</li>
<li>Look for help at <a href="https://github.com/emilioastarita/lyricfier2">homepage</a></li>
</ul>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: lyricfier
base: core18
version: '0.2'
version: '0.3'
summary: Lyrics search for Spotify app
description: |
Lyricfiers lyrics for Spotify.
Expand Down

0 comments on commit 157c328

Please sign in to comment.