Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v.1.0.0-alpha.9 #56

Merged
merged 40 commits into from
Mar 5, 2023
Merged
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
b1c3d78
client: theme will now change on auto, if system theme changes
EliasSchaut Feb 18, 2023
b2121bc
db: update movie schema to support multilang
EliasSchaut Feb 18, 2023
f100d95
backend: create util for imdb_api
EliasSchaut Feb 18, 2023
60791e5
backend: create movieInfo service
EliasSchaut Feb 18, 2023
a4b65dd
backend: update movie routes and jobs to new api and db model
EliasSchaut Feb 18, 2023
a2f2037
backend: update movie routes and jobs to new api and db model now als…
EliasSchaut Feb 18, 2023
0802e5f
client: add defineComponent to every component for better ts support
EliasSchaut Feb 20, 2023
d2bb90a
backend: replace relative paths to ts @ paths
EliasSchaut Feb 20, 2023
cc865f4
client: fix various type issues
EliasSchaut Feb 20, 2023
37a70c3
backend: improve type safety
EliasSchaut Feb 20, 2023
adfc19b
backend: fix imdb api bugs
EliasSchaut Feb 20, 2023
3daffec
client: add rotten tomatoes value
EliasSchaut Feb 20, 2023
efc17d4
client: tweek icons
EliasSchaut Feb 21, 2023
5ba809d
client: improve search style (without implementing logic yet)
EliasSchaut Feb 21, 2023
b9f721e
client: create FormVal Component to handle form validation better. In…
EliasSchaut Feb 21, 2023
79460e6
client: make lang change dynamic for backend informations
EliasSchaut Feb 21, 2023
96611d0
client: implement vote button in watchlist by providing new component…
EliasSchaut Feb 21, 2023
89e1a88
client: fix vote sorting bug
EliasSchaut Feb 21, 2023
4012e25
client: make movie add without page reload
EliasSchaut Feb 21, 2023
7dc176b
client: implement search
EliasSchaut Feb 21, 2023
db6797d
backend: reduce movie results of imdb_api to 5
EliasSchaut Feb 21, 2023
3773129
client: add loading symbol in search
EliasSchaut Feb 21, 2023
a8b5516
client: improve locales
EliasSchaut Feb 21, 2023
c8ebd09
backend: fix {title} display in movies save route
EliasSchaut Feb 21, 2023
69207db
client: make default theme setting to auto instead of dark/light
EliasSchaut Feb 21, 2023
01a6b55
Merge pull request #54 from EliasSchaut/51-change-imdb-api
EliasSchaut Feb 21, 2023
5e69e02
backend: restrict proposing media different than movie
EliasSchaut Feb 22, 2023
5de573d
backend: correct joi config validation for imdb api key
EliasSchaut Feb 22, 2023
d0b13ad
backend: fix history job
EliasSchaut Feb 22, 2023
3123738
backend: implement catch, if imdb_api is currently unavailable
EliasSchaut Feb 22, 2023
bfb6e20
client: fix sort bug
EliasSchaut Feb 22, 2023
a5466e6
client: simplify clicking on movie search elements
EliasSchaut Feb 22, 2023
7e31adf
client: fix sort error now really
EliasSchaut Feb 22, 2023
614e4a4
common: rename packages
EliasSchaut Feb 27, 2023
01207b9
common: rename packages
EliasSchaut Feb 27, 2023
ee8aca5
Merge branch 'main' into dev
EliasSchaut Feb 27, 2023
6c1df6e
client: hotfix
EliasSchaut Feb 27, 2023
f9f744f
db: use postgresql instead of sqlite
EliasSchaut Mar 5, 2023
3115d9b
dev: add search pattern, to validate search input to avoid server att…
EliasSchaut Mar 5, 2023
8b1a9e9
backend: fix search pattern bug
EliasSchaut Mar 5, 2023
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
2 changes: 1 addition & 1 deletion .env.tmp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PORT="3000"
DATABASE_URL="file:./dev.db"
JWT_SECRET="secret"
JWT_EXPIRATION="2h"
OMDB_API_KEY="XXXXXXXX"
IMDB_API_KEY="k_XXXXXXXX"
MAX_VOTES="20"
MAX_PROPOSEABLE_MOVIES="5"

Expand Down
Loading