Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
edb39c9
Create rust.yml
belst Dec 19, 2021
1969b3f
Update rust.yml
belst Dec 19, 2021
dd6905c
add register endpoint to router
belst Dec 19, 2021
da89cb6
Add logging
belst Dec 19, 2021
cfaa8fc
Fix protocal capitalization
belst Dec 19, 2021
d2c6b45
Add token table and redirect
belst Dec 20, 2021
6c4d031
Add data for offline compilation
belst Dec 20, 2021
a91612c
fix stupid number bug
belst Dec 20, 2021
407b918
Add Frontend
belst Jan 10, 2022
c66fbd3
environment configuration
belst Jan 10, 2022
6234e28
update offline db schema
belst Jan 10, 2022
cc5fad6
more stubbing of stuff
belst Jan 11, 2022
fb18276
add offline sql data
belst Jan 11, 2022
cb8bd56
theme select
belst Jan 12, 2022
76bb0e9
fix intial theme
belst Jan 12, 2022
f3fd2ce
Update viewer and fix register url
belst Jan 14, 2022
4182b5f
Changes to token handling
belst Jan 18, 2022
6c9a46b
Change Homepage
belst Jan 19, 2022
01e8c6e
Hide stream token by default
belst Jan 19, 2022
998e4d8
Add title componenet and make home responsive
belst Jan 24, 2022
3884ba2
Frontend: Implemented Viewcount logic
findus Mar 31, 2022
22dd03b
cleanup
belst Apr 9, 2022
94af19d
fix typo and missing offline compilation data
belst Apr 9, 2022
6039c06
fix player positioning/sizing
belst Apr 10, 2022
665b1ac
Merge branch 'belst:master' into master
findus Apr 10, 2022
12e12bb
viewcount
findus Apr 11, 2022
74bf731
Viewcount edge case handling
findus Apr 11, 2022
74986e0
increase player size and auto scroll into view
belst Apr 12, 2022
4a4988a
increase player size and auto scroll into view
belst Apr 12, 2022
c7e35cd
small cleanup
belst Apr 13, 2022
c69858f
Merge branch 'viewcount'
belst Apr 13, 2022
d6c5501
loading state and refetching
belst Apr 13, 2022
de05617
fallback image
belst Apr 13, 2022
62b00ad
Add better Thumbnail handling
belst Jun 14, 2022
1d30858
This Commit introduces basic access control to streams and adds examp…
findus Jun 8, 2022
1022b79
This Commit introduces vod recording.
findus Oct 3, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Rust

on:
push:
tags:
- '**'

env:
CARGO_TERM_COLOR: always
PROJECT_NAME: ovenauth

jobs:
release:
name: Build and Release

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Release Build
run: cargo build --release
- name: Release binary
uses: softprops/action-gh-release@v1
with:
files: target/release/${{ env.PROJECT_NAME }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/target
.env
docker/nginx/certs/
docker/ove/Server.id
Loading