Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
926c1e4
fix: set Content-Type application/json for REST API requests (#52)
64johnlee May 3, 2026
7ce1131
chore: bump PR
64johnlee May 4, 2026
c21ed37
chore: bump PR
64johnlee May 4, 2026
138a643
chore: bump PR
64johnlee May 4, 2026
cd5589f
chore: bump PR
64johnlee May 4, 2026
7fe5719
chore: bump PR
64johnlee May 5, 2026
c0a77f1
chore: bump PR
64johnlee May 5, 2026
c4dc06c
chore: bump PR
64johnlee May 6, 2026
2bb68dc
chore: bump PR
64johnlee May 6, 2026
13387e3
chore: bump PR
64johnlee May 7, 2026
1ce3d22
chore: bump PR
64johnlee May 7, 2026
90b5359
chore: bump PR
64johnlee May 8, 2026
60f27c7
chore: bump PR
64johnlee May 8, 2026
48196c4
chore: bump PR
64johnlee May 9, 2026
66efc0e
chore: bump PR
64johnlee May 9, 2026
b65e2ab
chore: bump PR
64johnlee May 10, 2026
5895e72
chore: bump PR
64johnlee May 10, 2026
3a60fca
chore: bump PR
64johnlee May 11, 2026
9b5dd45
chore: bump PR
64johnlee May 11, 2026
63a4ca6
chore: bump PR
64johnlee May 12, 2026
c39cb8d
chore: bump PR
64johnlee May 12, 2026
89bfb59
chore: bump PR
64johnlee May 13, 2026
5874ee3
chore: bump PR
64johnlee May 13, 2026
f44aeaf
chore: bump PR
64johnlee May 14, 2026
0576faa
chore: bump PR
64johnlee May 14, 2026
a16d64f
chore: bump PR
64johnlee May 15, 2026
712b63a
chore: bump PR
64johnlee May 15, 2026
28512ae
chore: bump PR
64johnlee May 16, 2026
0d7e894
chore: bump PR
64johnlee May 16, 2026
48b3035
chore: bump PR
64johnlee May 17, 2026
27554eb
chore: bump PR
64johnlee May 17, 2026
8cb8e57
chore: bump PR
64johnlee May 18, 2026
a700e49
chore: bump PR
64johnlee May 18, 2026
1b90d40
chore: bump PR
64johnlee May 19, 2026
56ffcaa
chore: bump PR
64johnlee May 19, 2026
7744be3
chore: bump PR
64johnlee May 20, 2026
436c377
chore: bump PR
64johnlee May 20, 2026
9d0e25b
chore: bump PR
64johnlee May 21, 2026
2169e91
chore: bump PR
64johnlee May 21, 2026
c56da90
chore: bump PR
64johnlee May 22, 2026
6e7340f
chore: bump PR
64johnlee May 22, 2026
9e32325
chore: bump PR
64johnlee May 23, 2026
6552261
chore: bump PR
64johnlee May 23, 2026
24a639c
chore: bump PR
64johnlee May 24, 2026
de7be7e
chore: bump PR
64johnlee May 24, 2026
4611254
chore: bump PR
64johnlee May 25, 2026
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
45 changes: 45 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# bump 1777865703
# bump 1777865792
# bump 1777867274
# bump 1777910591
# bump 1777953676
# bump 1777996874
# bump 1778040076
# bump 1778083283
# bump 1778126477
# bump 1778169674
# bump 1778212869
# bump 1778256064
# bump 1778299260
# bump 1778342460
# bump 1778385660
# bump 1778428861
# bump 1778472061
# bump 1778515268
# bump 1778558447
# bump 1778601652
# bump 1778644846
# bump 1778688051
# bump 1778731250
# bump 1778774450
# bump 1778817649
# bump 1778860851
# bump 1778904047
# bump 1778947248
# bump 1778990449
# bump 1779033645
# bump 1779076847
# bump 1779120052
# bump 1779163249
# bump 1779206450
# bump 1779249649
# bump 1779292851
# bump 1779336046
# bump 1779379253
# bump 1779422449
# bump 1779465649
# bump 1779508845
# bump 1779552047
# bump 1779595247
# bump 1779638446
# bump 1779681646
1 change: 1 addition & 0 deletions webui-src/app/rswebui.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ function rsJsonApiRequest(
config = null
) {
headers['Accept'] = 'application/json';
headers['Content-Type'] = 'application/json';
if (loginKey.isVerified) {
if (loginKey.username && loginKey.passwd) {
headers['Authorization'] = 'Basic ' + btoa(loginKey.username + ':' + loginKey.passwd);
Expand Down