Skip to content

Commit a1ab995

Browse files
committed
Release v0.0.6
1 parent 986907a commit a1ab995

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ You only need to
4747

4848
1. download the pre-configured Raspbian image and copy onto an sd card
4949

50-
- [Raspberry Pi 1 , Zero](https://github.com/brutella/hkcam/releases/download/v0.0.5/rasbian-stretch-lite-2018-11-13-hkcam-v0.0.5-armv6.img.zip)
51-
- [Raspberry Pi 2, 3](https://github.com/brutella/hkcam/releases/download/v0.0.5/rasbian-stretch-lite-2018-11-13-hkcam-v0.0.5-armv7.img.zip)
50+
- [Raspberry Pi 1 , Zero](https://github.com/brutella/hkcam/releases/download/v0.0.6/rasbian-stretch-lite-2018-11-13-hkcam-v0.0.6-armv6.img.zip)
51+
- [Raspberry Pi 2, 3](https://github.com/brutella/hkcam/releases/download/v0.0.6/rasbian-stretch-lite-2018-11-13-hkcam-v0.0.6-armv7.img.zip)
5252

5353
2. install [Etcher.app](https://www.balena.io/etcher/) and flash the downloaded image onto your sd card.
5454
<img alt="Etcher.app" src="_img/etcher.png?raw=true"/>
@@ -67,7 +67,7 @@ You only need to
6767
> diskutil unmountDisk /dev/rdisk3
6868
>
6969
> # copy image on disk3
70-
> sudo dd bs=1m if=~/Downloads/raspbian-stretch-lite-2018-11-13-hkcam-v0.0.5.img of=/dev/rdisk3 conv=sync
70+
> sudo dd bs=1m if=~/Downloads/raspbian-stretch-lite-2018-11-13-hkcam-v0.0.6.img of=/dev/rdisk3 conv=sync
7171
> ```
7272
7373
3. add your WiFi credentials so that the Raspberry Pi can connect to your WiFi

ansible/roles/hkcam/defaults/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
hkcam_version: 'v0.0.5'
2+
hkcam_version: 'v0.0.6'
33
hkcam_download_file_name: hkcam-{{ hkcam_version }}_linux_armhf.tar.gz
44
hkcam_download_url: https://github.com/brutella/hkcam/releases/download/{{ hkcam_version }}/{{ hkcam_download_file_name }}
55
hkcam_download_dir: /tmp

ansible/roles/hkcam/tasks/install.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
state: directory
66

77
- name: Download {{ hkcam_download_url }} to {{ hkcam_download_dest }}
8-
copy:
9-
src: /Users/mah/Source/Code/Go/src/github.com/brutella/hkcam/{{ hkcam_download_file_name }}
10-
dest: "{{ hkcam_download_dir }}"
11-
owner: pi
12-
group: pi
13-
mode: 0644
14-
# get_url:
15-
# url: "{{ hkcam_download_url }}"
16-
# dest: "{{ hkcam_download_dest }}"
8+
# copy:
9+
# src: /Users/mah/Source/Code/Go/src/github.com/brutella/hkcam/{{ hkcam_download_file_name }}
10+
# dest: "{{ hkcam_download_dir }}"
11+
# owner: pi
12+
# group: pi
13+
# mode: 0644
14+
get_url:
15+
url: "{{ hkcam_download_url }}"
16+
dest: "{{ hkcam_download_dest }}"
1717
register: pkg_download
1818

1919
- name: Extract {{ hkcam_download_dest }} to {{ hkcam_download_dir }}

cmd/hkcam/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func main() {
5151
dnslog.Debug.Enable()
5252
}
5353

54-
switchInfo := accessory.Info{Name: "Camera", FirmwareRevision: "0.0.5", Manufacturer: "Matthias Hochgatterer"}
54+
switchInfo := accessory.Info{Name: "Camera", FirmwareRevision: "0.0.6", Manufacturer: "Matthias Hochgatterer"}
5555
cam := accessory.NewCamera(switchInfo)
5656

5757
cfg := ffmpeg.Config{

0 commit comments

Comments
 (0)