Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mamantoha committed Aug 15, 2019
1 parent a5f0370 commit 462f6c4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: zipstream
version: 0.4.3
version: 0.5.0

authors:
- Anton Maminov <[email protected]>
Expand Down
12 changes: 10 additions & 2 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
name: zipstream
base: core18
version: '0.4.3'
version: '0.5.0'
summary: Easily share files and directories over the network
description: |
A command line tool that allows you to easily share files and directories
A command-line tool that allows you to easily share files and directories
over the network.
**Snap-specific information**
Due to the snap's confined nature, the application can only access files in the user's home directory.
To access files under `/media` or `/mnt` directories you have to manually connect the snap
to the `removable-media` interface by running the following command in a terminal
`sudo snap connect zipstream:removable-media`
grade: stable
confinement: strict
architectures: [amd64]
Expand Down
2 changes: 1 addition & 1 deletion src/zipstream.cr
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ module Zipstream
EOF
end

shutdown = -> (s : Signal) do
shutdown = ->(s : Signal) do
puts
puts "See you later, alligator!"
server.close
Expand Down
2 changes: 1 addition & 1 deletion src/zipstream/version.cr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Zipstream
VERSION = "0.4.3"
VERSION = "0.5.0"
end

0 comments on commit 462f6c4

Please sign in to comment.