Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
f25fe61
ui
sakithb Aug 18, 2025
0066ef6
add bottom margin
sakithb Aug 18, 2025
2cd9e88
endpoint + tests
sakithb Aug 19, 2025
c0e63e8
fix failing test
sakithb Aug 19, 2025
dec9451
wip
sakithb Aug 30, 2025
e55d1a2
use switch
sakithb Sep 1, 2025
b0625ef
Remove Name input. We will use the name given in the feed
sakithb Sep 3, 2025
2d61d8a
fetch feed within http request
sakithb Sep 3, 2025
27b800c
Use MapRequestPayload
sakithb Sep 3, 2025
0afeab4
use hds modal footer
sakithb Sep 3, 2025
71fd414
wip
sakithb Sep 3, 2025
aaec74f
add serializer package
sakithb Sep 3, 2025
d2475aa
Merge branch 'main' into issue/38
supun-io Sep 5, 2025
0c9b0aa
minor fixes
supun-io Sep 5, 2025
7ccff63
wip
sakithb Sep 8, 2025
45f2e95
move inspection to createPublication
sakithb Sep 10, 2025
362293c
error handling
sakithb Sep 10, 2025
c91dc6a
ui
sakithb Aug 18, 2025
482a4bd
add bottom margin
sakithb Aug 18, 2025
6ca1f21
endpoint + tests
sakithb Aug 19, 2025
82633e2
fix failing test
sakithb Aug 19, 2025
fa059b3
wip
sakithb Aug 30, 2025
d83796f
use switch
sakithb Sep 1, 2025
ba8c053
wip
sakithb Sep 3, 2025
dcff3f2
add serializer package
sakithb Sep 3, 2025
8055d6e
use AuthInterface
sakithb Sep 10, 2025
1d267eb
remove security bundle
sakithb Sep 12, 2025
f3a594a
Merge branch 'main' into issue/40
supun-io Sep 24, 2025
96d9c53
Merge remote-tracking branch 'origin/issue/40' into issue/40
Nadil-K Sep 25, 2025
9241771
minor fixes
Nadil-K Sep 25, 2025
00f5f88
remove duplicate modals
Nadil-K Sep 25, 2025
ace225f
Merge branch 'issue/38' into issue/40
Nadil-K Sep 25, 2025
ab1856e
Merge pull request #43 from hyvor/issue/40
Nadil-K Sep 25, 2025
3e7bf90
merge fix
Nadil-K Sep 25, 2025
b51ea01
minor fix
Nadil-K Sep 25, 2025
a07eab4
backend fixes
Nadil-K Sep 25, 2025
989e290
no title / ui fix
Nadil-K Sep 25, 2025
b9a174b
add test for POST /collections
sakithb Sep 29, 2025
0f7069f
move API calls to actions files / use toast.error()
sakithb Sep 29, 2025
7e13ea2
fix tests for AddPublicationTest
sakithb Sep 29, 2025
91f5e28
add back .env
sakithb Sep 29, 2025
e459072
add back .env
sakithb Sep 29, 2025
073737c
Mobile view (#47)
sakithb Oct 12, 2025
8fa6ba2
Merge branch 'main' into issue/38
supun-io Oct 12, 2025
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 backend/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_ENV=
APP_ENV=dev

###> symfony/framework-bundle ###
APP_SECRET=
Expand Down
1 change: 0 additions & 1 deletion backend/.env.dev
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ HYVOR_FAKE=1
MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0

LOCK_DSN=flock

LOG_LEVEL=debug
2 changes: 1 addition & 1 deletion backend/.env.test
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots
APP_SECRET=Qgg+kph9o0lULpebas4C9xa+tvoNC5b94rCjRf/5gAY=

DATABASE_URL="postgresql://postgres:postgres@hyvor-service-pgsql:5432/hyvor_reader?serverVersion=16&charset=utf8"
LOCK_DSN=flock
LOCK_DSN=flock
1 change: 0 additions & 1 deletion backend/config/packages/monolog.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@
->level('info');
}
};

7 changes: 6 additions & 1 deletion frontend/src/routes/app/(reader)/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,12 @@
min-height: 0;
}


.actionlist-divider {
margin: 6px 10px;
height: 1px;
background: var(--border);
border-radius: 1px;
}

.publications-footer {
border-top: 1px solid var(--border);
Expand Down
7 changes: 6 additions & 1 deletion frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"moduleResolution": "Bundler"
"moduleResolution": "Bundler",
"baseUrl": ".",
"paths": {
"$lib": ["src/lib"],
"$lib/*": ["src/lib/*"]
}
}
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
//
Expand Down