Skip to content
Snippets Groups Projects
Commit eb946ac9 authored by onny's avatar onny
Browse files

initial release v0.1

parent fc61ccea
No related branches found
No related tags found
No related merge requests found
......@@ -4,9 +4,9 @@ Before releasing a new version to Gitlab, be sure to note all changes in the
[CHANGELOG.md](CHANGELOG.md)-file.
Commit, tag and push the changes:
```
git commit -am "test release v1.0.0.4"
git tag -a 1.0.0.4 -m ""
git push --atomic origin master 1.0.0.4
git commit -am "test release v1.0.0.4-pre"
git tag -a 1.0.0.4-pre -m ""
git push --atomic origin master 1.0.0.4-pre
```
This will trigger the Gitlab-CI pipeline and publishes a release to the Gitlab
release page, including source, a prebuild tarball and the latest changelog.
......@@ -25,4 +25,3 @@ Or if you want to publish the latest release as a stable release, do:
```
make publish-appstore
```
......@@ -106,8 +106,6 @@ export default {
},
computed: {
isSubscribed() {
console.log(this.podcastid)
console.log(this.$store.getters.showExists(this.podcastid))
return this.$store.getters.showExists(this.podcastid)
},
getSubscribeText() {
......
......@@ -74,8 +74,6 @@ export default {
}),
computed: {
isSubscribed() {
console.log(this.podcastId)
console.log(this.$store.getters.showExists(this.podcastId))
return this.$store.getters.showExists(this.podcastId)
},
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment