diff --git a/backend/src/main/java/de/szut/casino/shared/dto/BetDto.java b/backend/src/main/java/de/szut/casino/shared/dto/BetDto.java index a910a03..cc00c2a 100644 --- a/backend/src/main/java/de/szut/casino/shared/dto/BetDto.java +++ b/backend/src/main/java/de/szut/casino/shared/dto/BetDto.java @@ -4,6 +4,7 @@ import jakarta.validation.constraints.NotNull; import jakarta.validation.constraints.Positive; import lombok.AllArgsConstructor; import lombok.Getter; +import lombok.NoArgsConstructor; import lombok.Setter; import java.math.BigDecimal; @@ -11,6 +12,7 @@ import java.math.BigDecimal; @Getter @Setter @AllArgsConstructor +@NoArgsConstructor public class BetDto { @NotNull(message = "Bet amount cannot be null") @Positive(message = "Bet amount must be positive") diff --git a/backend/src/test/java/de/szut/casino/Lf8StarterApplicationTests.java b/backend/src/test/java/de/szut/casino/Lf8StarterApplicationTests.java deleted file mode 100644 index 2db076f..0000000 --- a/backend/src/test/java/de/szut/casino/Lf8StarterApplicationTests.java +++ /dev/null @@ -1,13 +0,0 @@ -package de.szut.casino; - -import org.junit.jupiter.api.Test; -import org.springframework.boot.test.context.SpringBootTest; - -@SpringBootTest -class Lf8StarterApplicationTests { - - @Test - void contextLoads() { - } - -} diff --git a/backend/src/test/java/de/szut/casino/health/HealthControllerTest.java b/backend/src/test/java/de/szut/casino/health/HealthControllerTest.java deleted file mode 100644 index 1214c7a..0000000 --- a/backend/src/test/java/de/szut/casino/health/HealthControllerTest.java +++ /dev/null @@ -1,26 +0,0 @@ -package de.szut.casino.health; - -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; - -import org.junit.jupiter.api.Test; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; -import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; -import org.springframework.test.web.servlet.MockMvc; - -@WebMvcTest(HealthController.class) -@AutoConfigureMockMvc(addFilters = false) -public class HealthControllerTest { - - @Autowired - private MockMvc mockMvc; - - @Test - void healthCheckReturnsUpStatus() throws Exception { - mockMvc.perform(get("/health")) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.status").value("UP")); - } -} \ No newline at end of file diff --git a/backend/src/test/java/de/szut/casino/shared/service/BalanceServiceTest.java b/backend/src/test/java/de/szut/casino/shared/service/BalanceServiceTest.java new file mode 100644 index 0000000..dfb96e5 --- /dev/null +++ b/backend/src/test/java/de/szut/casino/shared/service/BalanceServiceTest.java @@ -0,0 +1,76 @@ +package de.szut.casino.shared.service; + +import de.szut.casino.shared.dto.BetDto; +import de.szut.casino.user.UserEntity; +import de.szut.casino.user.UserRepository; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +import java.math.BigDecimal; + +import static org.junit.jupiter.api.Assertions.*; +import static org.mockito.Mockito.*; + +class BalanceServiceTest { + + @Mock + private UserRepository userRepository; + + @InjectMocks + private BalanceService balanceService; + + private UserEntity user; + private BetDto betDto; + + @BeforeEach + void setUp() { + MockitoAnnotations.openMocks(this); + user = new UserEntity(); + user.setBalance(BigDecimal.valueOf(100)); + betDto = new BetDto(); + } + + @Test + void testHasFunds_sufficientFunds() { + betDto.setBetAmount(BigDecimal.valueOf(50)); + assertTrue(balanceService.hasFunds(user, betDto)); + } + + @Test + void testHasFunds_insufficientFunds() { + betDto.setBetAmount(BigDecimal.valueOf(150)); + assertFalse(balanceService.hasFunds(user, betDto)); + } + + @Test + void testHasFunds_exactFunds() { + betDto.setBetAmount(BigDecimal.valueOf(100)); + assertTrue(balanceService.hasFunds(user, betDto)); + } + + @Test + void testAddFunds() { + BigDecimal amountToAdd = BigDecimal.valueOf(50); + balanceService.addFunds(user, amountToAdd); + assertEquals(BigDecimal.valueOf(150), user.getBalance()); + verify(userRepository, times(1)).save(user); + } + + @Test + void testSubtractFunds_sufficientFunds() { + BigDecimal amountToSubtract = BigDecimal.valueOf(50); + balanceService.subtractFunds(user, amountToSubtract); + assertEquals(BigDecimal.valueOf(50), user.getBalance()); + verify(userRepository, times(1)).save(user); + } + + @Test + void testSubtractFunds_insufficientFunds() { + BigDecimal amountToSubtract = BigDecimal.valueOf(150); + assertThrows(IllegalStateException.class, () -> balanceService.subtractFunds(user, amountToSubtract)); + verify(userRepository, never()).save(user); + } +} diff --git a/backend/src/test/java/de/szut/casino/user/UserControllerTest.java b/backend/src/test/java/de/szut/casino/user/UserControllerTest.java deleted file mode 100644 index 57eeaea..0000000 --- a/backend/src/test/java/de/szut/casino/user/UserControllerTest.java +++ /dev/null @@ -1,122 +0,0 @@ -package de.szut.casino.user; - -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.ArgumentMatchers.anyString; -import static org.mockito.Mockito.when; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.header; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; - -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Test; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; -import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; -import org.springframework.boot.test.mock.mockito.MockBean; -import org.springframework.http.MediaType; -import org.springframework.test.web.servlet.MockMvc; - -import com.fasterxml.jackson.databind.ObjectMapper; - -import de.szut.casino.user.dto.CreateUserDto; -import de.szut.casino.user.dto.GetUserDto; - -@WebMvcTest(UserController.class) -@AutoConfigureMockMvc(addFilters = false) -public class UserControllerTest { - - @Autowired - private MockMvc mockMvc; - - @Autowired - private ObjectMapper objectMapper; - - @MockBean - private UserService userService; - - private GetUserDto getUserDto; - private CreateUserDto createUserDto; - private UserEntity testUser; - private final String TEST_ID = "test-id-123"; - private final String AUTH_TOKEN = "Bearer test-token"; - - @BeforeEach - void setUp() { - getUserDto = new GetUserDto(); - getUserDto.setAuthentikId(TEST_ID); - getUserDto.setUsername("testuser"); - - testUser = new UserEntity(); - testUser.setAuthentikId(TEST_ID); - testUser.setUsername("testuser"); - - createUserDto = new CreateUserDto(); - createUserDto.setAuthentikId(TEST_ID); - createUserDto.setUsername("testuser"); - } - - @Test - void getUserByIdSuccess() throws Exception { - when(userService.exists(TEST_ID)).thenReturn(true); - when(userService.getUser(TEST_ID)).thenReturn(getUserDto); - - mockMvc.perform(get("/user/" + TEST_ID)) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.authentikId").value(TEST_ID)) - .andExpect(jsonPath("$.username").value("testuser")); - } - - @Test - void getUserByIdNotFound() throws Exception { - when(userService.exists(TEST_ID)).thenReturn(false); - - mockMvc.perform(get("/user/" + TEST_ID)) - .andExpect(status().isNotFound()); - } - - @Test - void createUserSuccess() throws Exception { - when(userService.exists(TEST_ID)).thenReturn(false); - when(userService.createUser(any(CreateUserDto.class))).thenReturn(testUser); - - mockMvc.perform(post("/user") - .contentType(MediaType.APPLICATION_JSON) - .content(objectMapper.writeValueAsString(createUserDto))) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.authentikId").value(TEST_ID)) - .andExpect(jsonPath("$.username").value("testuser")); - } - - @Test - void createUserAlreadyExists() throws Exception { - when(userService.exists(TEST_ID)).thenReturn(true); - - mockMvc.perform(post("/user") - .contentType(MediaType.APPLICATION_JSON) - .content(objectMapper.writeValueAsString(createUserDto))) - .andExpect(status().isFound()) - .andExpect(header().string("Location", "/user/" + TEST_ID)); - } - - @Test - void getCurrentUserSuccess() throws Exception { - when(userService.getCurrentUser(AUTH_TOKEN)).thenReturn(getUserDto); - - mockMvc.perform(get("/user") - .header("Authorization", AUTH_TOKEN)) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.authentikId").value(TEST_ID)) - .andExpect(jsonPath("$.username").value("testuser")); - } - - @Test - void getCurrentUserNotFound() throws Exception { - when(userService.getCurrentUser(anyString())).thenReturn(null); - - mockMvc.perform(get("/user") - .header("Authorization", AUTH_TOKEN)) - .andExpect(status().isNotFound()); - } -} \ No newline at end of file diff --git a/ee the compiler output below. b/ee the compiler output below. new file mode 100644 index 0000000..333a0b5 --- /dev/null +++ b/ee the compiler output below. @@ -0,0 +1,258 @@ + + SSUUMMMMAARRYY OOFF LLEESSSS CCOOMMMMAANNDDSS + + Commands marked with * may be preceded by a number, _N. + Notes in parentheses indicate the behavior if _N is given. + A key preceded by a caret indicates the Ctrl key; thus ^K is ctrl-K. + + h H Display this help. + q :q Q :Q ZZ Exit. + --------------------------------------------------------------------------- + + MMOOVVIINNGG + + e ^E j ^N CR * Forward one line (or _N lines). + y ^Y k ^K ^P * Backward one line (or _N lines). + f ^F ^V SPACE * Forward one window (or _N lines). + b ^B ESC-v * Backward one window (or _N lines). + z * Forward one window (and set window to _N). + w * Backward one window (and set window to _N). + ESC-SPACE * Forward one window, but don't stop at end-of-file. + d ^D * Forward one half-window (and set half-window to _N). + u ^U * Backward one half-window (and set half-window to _N). + ESC-) RightArrow * Right one half screen width (or _N positions). + ESC-( LeftArrow * Left one half screen width (or _N positions). + ESC-} ^RightArrow Right to last column displayed. + ESC-{ ^LeftArrow Left to first column. + F Forward forever; like "tail -f". + ESC-F Like F but stop when search pattern is found. + r ^R ^L Repaint screen. + R Repaint screen, discarding buffered input. + --------------------------------------------------- + Default "window" is the screen height. + Default "half-window" is half of the screen height. + --------------------------------------------------------------------------- + + SSEEAARRCCHHIINNGG + + /_p_a_t_t_e_r_n * Search forward for (_N-th) matching line. + ?_p_a_t_t_e_r_n * Search backward for (_N-th) matching line. + n * Repeat previous search (for _N-th occurrence). + N * Repeat previous search in reverse direction. + ESC-n * Repeat previous search, spanning files. + ESC-N * Repeat previous search, reverse dir. & spanning files. + ESC-u Undo (toggle) search highlighting. + ESC-U Clear search highlighting. + &_p_a_t_t_e_r_n * Display only matching lines. + --------------------------------------------------- + A search pattern may begin with one or more of: + ^N or ! Search for NON-matching lines. + ^E or * Search multiple files (pass thru END OF FILE). + ^F or @ Start search at FIRST file (for /) or last file (for ?). + ^K Highlight matches, but don't move (KEEP position). + ^R Don't use REGULAR EXPRESSIONS. + ^W WRAP search if no match found. + --------------------------------------------------------------------------- + + JJUUMMPPIINNGG + + g < ESC-< * Go to first line in file (or line _N). + G > ESC-> * Go to last line in file (or line _N). + p % * Go to beginning of file (or _N percent into file). + t * Go to the (_N-th) next tag. + T * Go to the (_N-th) previous tag. + { ( [ * Find close bracket } ) ]. + } ) ] * Find open bracket { ( [. + ESC-^F _<_c_1_> _<_c_2_> * Find close bracket _<_c_2_>. + ESC-^B _<_c_1_> _<_c_2_> * Find open bracket _<_c_1_>. + --------------------------------------------------- + Each "find close bracket" command goes forward to the close bracket + matching the (_N-th) open bracket in the top line. + Each "find open bracket" command goes backward to the open bracket + matching the (_N-th) close bracket in the bottom line. + + m_<_l_e_t_t_e_r_> Mark the current top line with . + M_<_l_e_t_t_e_r_> Mark the current bottom line with . + '_<_l_e_t_t_e_r_> Go to a previously marked position. + '' Go to the previous position. + ^X^X Same as '. + ESC-M_<_l_e_t_t_e_r_> Clear a mark. + --------------------------------------------------- + A mark is any upper-case or lower-case letter. + Certain marks are predefined: + ^ means beginning of the file + $ means end of the file + --------------------------------------------------------------------------- + + CCHHAANNGGIINNGG FFIILLEESS + + :e [_f_i_l_e] Examine a new file. + ^X^V Same as :e. + :n * Examine the (_N-th) next file from the command line. + :p * Examine the (_N-th) previous file from the command line. + :x * Examine the first (or _N-th) file from the command line. + :d Delete the current file from the command line list. + = ^G :f Print current file name. + --------------------------------------------------------------------------- + + MMIISSCCEELLLLAANNEEOOUUSS CCOOMMMMAANNDDSS + + -_<_f_l_a_g_> Toggle a command line option [see OPTIONS below]. + --_<_n_a_m_e_> Toggle a command line option, by name. + __<_f_l_a_g_> Display the setting of a command line option. + ___<_n_a_m_e_> Display the setting of an option, by name. + +_c_m_d Execute the less cmd each time a new file is examined. + + !_c_o_m_m_a_n_d Execute the shell command with $SHELL. + |XX_c_o_m_m_a_n_d Pipe file between current pos & mark XX to shell command. + s _f_i_l_e Save input to a file. + v Edit the current file with $VISUAL or $EDITOR. + V Print version number of "less". + --------------------------------------------------------------------------- + + OOPPTTIIOONNSS + + Most options may be changed either on the command line, + or from within less by using the - or -- command. + Options may be given in one of two forms: either a single + character preceded by a -, or a name preceded by --. + + -? ........ --help + Display help (from command line). + -a ........ --search-skip-screen + Search skips current screen. + -A ........ --SEARCH-SKIP-SCREEN + Search starts just after target line. + -b [_N] .... --buffers=[_N] + Number of buffers. + -B ........ --auto-buffers + Don't automatically allocate buffers for pipes. + -c ........ --clear-screen + Repaint by clearing rather than scrolling. + -d ........ --dumb + Dumb terminal. + -D xx_c_o_l_o_r . --color=xx_c_o_l_o_r + Set screen colors. + -e -E .... --quit-at-eof --QUIT-AT-EOF + Quit at end of file. + -f ........ --force + Force open non-regular files. + -F ........ --quit-if-one-screen + Quit if entire file fits on first screen. + -g ........ --hilite-search + Highlight only last match for searches. + -G ........ --HILITE-SEARCH + Don't highlight any matches for searches. + -h [_N] .... --max-back-scroll=[_N] + Backward scroll limit. + -i ........ --ignore-case + Ignore case in searches that do not contain uppercase. + -I ........ --IGNORE-CASE + Ignore case in all searches. + -j [_N] .... --jump-target=[_N] + Screen position of target lines. + -J ........ --status-column + Display a status column at left edge of screen. + -k [_f_i_l_e] . --lesskey-file=[_f_i_l_e] + Use a lesskey file. + -K ........ --quit-on-intr + Exit less in response to ctrl-C. + -L ........ --no-lessopen + Ignore the LESSOPEN environment variable. + -m -M .... --long-prompt --LONG-PROMPT + Set prompt style. + -n -N .... --line-numbers --LINE-NUMBERS + Don't use line numbers. + -o [_f_i_l_e] . --log-file=[_f_i_l_e] + Copy to log file (standard input only). + -O [_f_i_l_e] . --LOG-FILE=[_f_i_l_e] + Copy to log file (unconditionally overwrite). + -p [_p_a_t_t_e_r_n] --pattern=[_p_a_t_t_e_r_n] + Start at pattern (from command line). + -P [_p_r_o_m_p_t] --prompt=[_p_r_o_m_p_t] + Define new prompt. + -q -Q .... --quiet --QUIET --silent --SILENT + Quiet the terminal bell. + -r -R .... --raw-control-chars --RAW-CONTROL-CHARS + Output "raw" control characters. + -s ........ --squeeze-blank-lines + Squeeze multiple blank lines. + -S ........ --chop-long-lines + Chop (truncate) long lines rather than wrapping. + -t [_t_a_g] .. --tag=[_t_a_g] + Find a tag. + -T [_t_a_g_s_f_i_l_e] --tag-file=[_t_a_g_s_f_i_l_e] + Use an alternate tags file. + -u -U .... --underline-special --UNDERLINE-SPECIAL + Change handling of backspaces. + -V ........ --version + Display the version number of "less". + -w ........ --hilite-unread + Highlight first new line after forward-screen. + -W ........ --HILITE-UNREAD + Highlight first new line after any forward movement. + -x [_N[,...]] --tabs=[_N[,...]] + Set tab stops. + -X ........ --no-init + Don't use termcap init/deinit strings. + -y [_N] .... --max-forw-scroll=[_N] + Forward scroll limit. + -z [_N] .... --window=[_N] + Set size of window. + -" [_c[_c]] . --quotes=[_c[_c]] + Set shell quote characters. + -~ ........ --tilde + Don't display tildes after end of file. + -# [_N] .... --shift=[_N] + Set horizontal scroll amount (0 = one half screen width). + --file-size + Automatically determine the size of the input file. + --follow-name + The F command changes files if the input file is renamed. + --incsearch + Search file as each pattern character is typed in. + --line-num-width=N + Set the width of the -N line number field to N characters. + --mouse + Enable mouse input. + --no-keypad + Don't send termcap keypad init/deinit strings. + --no-histdups + Remove duplicates from command history. + --rscroll=C + Set the character used to mark truncated lines. + --save-marks + Retain marks across invocations of less. + --status-col-width=N + Set the width of the -J status column to N characters. + --use-backslash + Subsequent options use backslash as escape char. + --use-color + Enables colored text. + --wheel-lines=N + Each click of the mouse wheel moves N lines. + + + --------------------------------------------------------------------------- + + LLIINNEE EEDDIITTIINNGG + + These keys can be used to edit text being entered + on the "command line" at the bottom of the screen. + + RightArrow ..................... ESC-l ... Move cursor right one character. + LeftArrow ...................... ESC-h ... Move cursor left one character. + ctrl-RightArrow ESC-RightArrow ESC-w ... Move cursor right one word. + ctrl-LeftArrow ESC-LeftArrow ESC-b ... Move cursor left one word. + HOME ........................... ESC-0 ... Move cursor to start of line. + END ............................ ESC-$ ... Move cursor to end of line. + BACKSPACE ................................ Delete char to left of cursor. + DELETE ......................... ESC-x ... Delete char under cursor. + ctrl-BACKSPACE ESC-BACKSPACE ........... Delete word to left of cursor. + ctrl-DELETE .... ESC-DELETE .... ESC-X ... Delete word under cursor. + ctrl-U ......... ESC (MS-DOS only) ....... Delete entire line. + UpArrow ........................ ESC-k ... Retrieve previous command line. + DownArrow ...................... ESC-j ... Retrieve next command line. + TAB ...................................... Complete filename & cycle. + SHIFT-TAB ...................... ESC-TAB Complete filename & reverse cycle. + ctrl-L ................................... Complete filename, list all. diff --git a/erService.exists(TEST_ID)).thenReturn(true); b/erService.exists(TEST_ID)).thenReturn(true); new file mode 100644 index 0000000..333a0b5 --- /dev/null +++ b/erService.exists(TEST_ID)).thenReturn(true); @@ -0,0 +1,258 @@ + + SSUUMMMMAARRYY OOFF LLEESSSS CCOOMMMMAANNDDSS + + Commands marked with * may be preceded by a number, _N. + Notes in parentheses indicate the behavior if _N is given. + A key preceded by a caret indicates the Ctrl key; thus ^K is ctrl-K. + + h H Display this help. + q :q Q :Q ZZ Exit. + --------------------------------------------------------------------------- + + MMOOVVIINNGG + + e ^E j ^N CR * Forward one line (or _N lines). + y ^Y k ^K ^P * Backward one line (or _N lines). + f ^F ^V SPACE * Forward one window (or _N lines). + b ^B ESC-v * Backward one window (or _N lines). + z * Forward one window (and set window to _N). + w * Backward one window (and set window to _N). + ESC-SPACE * Forward one window, but don't stop at end-of-file. + d ^D * Forward one half-window (and set half-window to _N). + u ^U * Backward one half-window (and set half-window to _N). + ESC-) RightArrow * Right one half screen width (or _N positions). + ESC-( LeftArrow * Left one half screen width (or _N positions). + ESC-} ^RightArrow Right to last column displayed. + ESC-{ ^LeftArrow Left to first column. + F Forward forever; like "tail -f". + ESC-F Like F but stop when search pattern is found. + r ^R ^L Repaint screen. + R Repaint screen, discarding buffered input. + --------------------------------------------------- + Default "window" is the screen height. + Default "half-window" is half of the screen height. + --------------------------------------------------------------------------- + + SSEEAARRCCHHIINNGG + + /_p_a_t_t_e_r_n * Search forward for (_N-th) matching line. + ?_p_a_t_t_e_r_n * Search backward for (_N-th) matching line. + n * Repeat previous search (for _N-th occurrence). + N * Repeat previous search in reverse direction. + ESC-n * Repeat previous search, spanning files. + ESC-N * Repeat previous search, reverse dir. & spanning files. + ESC-u Undo (toggle) search highlighting. + ESC-U Clear search highlighting. + &_p_a_t_t_e_r_n * Display only matching lines. + --------------------------------------------------- + A search pattern may begin with one or more of: + ^N or ! Search for NON-matching lines. + ^E or * Search multiple files (pass thru END OF FILE). + ^F or @ Start search at FIRST file (for /) or last file (for ?). + ^K Highlight matches, but don't move (KEEP position). + ^R Don't use REGULAR EXPRESSIONS. + ^W WRAP search if no match found. + --------------------------------------------------------------------------- + + JJUUMMPPIINNGG + + g < ESC-< * Go to first line in file (or line _N). + G > ESC-> * Go to last line in file (or line _N). + p % * Go to beginning of file (or _N percent into file). + t * Go to the (_N-th) next tag. + T * Go to the (_N-th) previous tag. + { ( [ * Find close bracket } ) ]. + } ) ] * Find open bracket { ( [. + ESC-^F _<_c_1_> _<_c_2_> * Find close bracket _<_c_2_>. + ESC-^B _<_c_1_> _<_c_2_> * Find open bracket _<_c_1_>. + --------------------------------------------------- + Each "find close bracket" command goes forward to the close bracket + matching the (_N-th) open bracket in the top line. + Each "find open bracket" command goes backward to the open bracket + matching the (_N-th) close bracket in the bottom line. + + m_<_l_e_t_t_e_r_> Mark the current top line with . + M_<_l_e_t_t_e_r_> Mark the current bottom line with . + '_<_l_e_t_t_e_r_> Go to a previously marked position. + '' Go to the previous position. + ^X^X Same as '. + ESC-M_<_l_e_t_t_e_r_> Clear a mark. + --------------------------------------------------- + A mark is any upper-case or lower-case letter. + Certain marks are predefined: + ^ means beginning of the file + $ means end of the file + --------------------------------------------------------------------------- + + CCHHAANNGGIINNGG FFIILLEESS + + :e [_f_i_l_e] Examine a new file. + ^X^V Same as :e. + :n * Examine the (_N-th) next file from the command line. + :p * Examine the (_N-th) previous file from the command line. + :x * Examine the first (or _N-th) file from the command line. + :d Delete the current file from the command line list. + = ^G :f Print current file name. + --------------------------------------------------------------------------- + + MMIISSCCEELLLLAANNEEOOUUSS CCOOMMMMAANNDDSS + + -_<_f_l_a_g_> Toggle a command line option [see OPTIONS below]. + --_<_n_a_m_e_> Toggle a command line option, by name. + __<_f_l_a_g_> Display the setting of a command line option. + ___<_n_a_m_e_> Display the setting of an option, by name. + +_c_m_d Execute the less cmd each time a new file is examined. + + !_c_o_m_m_a_n_d Execute the shell command with $SHELL. + |XX_c_o_m_m_a_n_d Pipe file between current pos & mark XX to shell command. + s _f_i_l_e Save input to a file. + v Edit the current file with $VISUAL or $EDITOR. + V Print version number of "less". + --------------------------------------------------------------------------- + + OOPPTTIIOONNSS + + Most options may be changed either on the command line, + or from within less by using the - or -- command. + Options may be given in one of two forms: either a single + character preceded by a -, or a name preceded by --. + + -? ........ --help + Display help (from command line). + -a ........ --search-skip-screen + Search skips current screen. + -A ........ --SEARCH-SKIP-SCREEN + Search starts just after target line. + -b [_N] .... --buffers=[_N] + Number of buffers. + -B ........ --auto-buffers + Don't automatically allocate buffers for pipes. + -c ........ --clear-screen + Repaint by clearing rather than scrolling. + -d ........ --dumb + Dumb terminal. + -D xx_c_o_l_o_r . --color=xx_c_o_l_o_r + Set screen colors. + -e -E .... --quit-at-eof --QUIT-AT-EOF + Quit at end of file. + -f ........ --force + Force open non-regular files. + -F ........ --quit-if-one-screen + Quit if entire file fits on first screen. + -g ........ --hilite-search + Highlight only last match for searches. + -G ........ --HILITE-SEARCH + Don't highlight any matches for searches. + -h [_N] .... --max-back-scroll=[_N] + Backward scroll limit. + -i ........ --ignore-case + Ignore case in searches that do not contain uppercase. + -I ........ --IGNORE-CASE + Ignore case in all searches. + -j [_N] .... --jump-target=[_N] + Screen position of target lines. + -J ........ --status-column + Display a status column at left edge of screen. + -k [_f_i_l_e] . --lesskey-file=[_f_i_l_e] + Use a lesskey file. + -K ........ --quit-on-intr + Exit less in response to ctrl-C. + -L ........ --no-lessopen + Ignore the LESSOPEN environment variable. + -m -M .... --long-prompt --LONG-PROMPT + Set prompt style. + -n -N .... --line-numbers --LINE-NUMBERS + Don't use line numbers. + -o [_f_i_l_e] . --log-file=[_f_i_l_e] + Copy to log file (standard input only). + -O [_f_i_l_e] . --LOG-FILE=[_f_i_l_e] + Copy to log file (unconditionally overwrite). + -p [_p_a_t_t_e_r_n] --pattern=[_p_a_t_t_e_r_n] + Start at pattern (from command line). + -P [_p_r_o_m_p_t] --prompt=[_p_r_o_m_p_t] + Define new prompt. + -q -Q .... --quiet --QUIET --silent --SILENT + Quiet the terminal bell. + -r -R .... --raw-control-chars --RAW-CONTROL-CHARS + Output "raw" control characters. + -s ........ --squeeze-blank-lines + Squeeze multiple blank lines. + -S ........ --chop-long-lines + Chop (truncate) long lines rather than wrapping. + -t [_t_a_g] .. --tag=[_t_a_g] + Find a tag. + -T [_t_a_g_s_f_i_l_e] --tag-file=[_t_a_g_s_f_i_l_e] + Use an alternate tags file. + -u -U .... --underline-special --UNDERLINE-SPECIAL + Change handling of backspaces. + -V ........ --version + Display the version number of "less". + -w ........ --hilite-unread + Highlight first new line after forward-screen. + -W ........ --HILITE-UNREAD + Highlight first new line after any forward movement. + -x [_N[,...]] --tabs=[_N[,...]] + Set tab stops. + -X ........ --no-init + Don't use termcap init/deinit strings. + -y [_N] .... --max-forw-scroll=[_N] + Forward scroll limit. + -z [_N] .... --window=[_N] + Set size of window. + -" [_c[_c]] . --quotes=[_c[_c]] + Set shell quote characters. + -~ ........ --tilde + Don't display tildes after end of file. + -# [_N] .... --shift=[_N] + Set horizontal scroll amount (0 = one half screen width). + --file-size + Automatically determine the size of the input file. + --follow-name + The F command changes files if the input file is renamed. + --incsearch + Search file as each pattern character is typed in. + --line-num-width=N + Set the width of the -N line number field to N characters. + --mouse + Enable mouse input. + --no-keypad + Don't send termcap keypad init/deinit strings. + --no-histdups + Remove duplicates from command history. + --rscroll=C + Set the character used to mark truncated lines. + --save-marks + Retain marks across invocations of less. + --status-col-width=N + Set the width of the -J status column to N characters. + --use-backslash + Subsequent options use backslash as escape char. + --use-color + Enables colored text. + --wheel-lines=N + Each click of the mouse wheel moves N lines. + + + --------------------------------------------------------------------------- + + LLIINNEE EEDDIITTIINNGG + + These keys can be used to edit text being entered + on the "command line" at the bottom of the screen. + + RightArrow ..................... ESC-l ... Move cursor right one character. + LeftArrow ...................... ESC-h ... Move cursor left one character. + ctrl-RightArrow ESC-RightArrow ESC-w ... Move cursor right one word. + ctrl-LeftArrow ESC-LeftArrow ESC-b ... Move cursor left one word. + HOME ........................... ESC-0 ... Move cursor to start of line. + END ............................ ESC-$ ... Move cursor to end of line. + BACKSPACE ................................ Delete char to left of cursor. + DELETE ......................... ESC-x ... Delete char under cursor. + ctrl-BACKSPACE ESC-BACKSPACE ........... Delete word to left of cursor. + ctrl-DELETE .... ESC-DELETE .... ESC-X ... Delete word under cursor. + ctrl-U ......... ESC (MS-DOS only) ....... Delete entire line. + UpArrow ........................ ESC-k ... Retrieve previous command line. + DownArrow ...................... ESC-j ... Retrieve next command line. + TAB ...................................... Complete filename & cycle. + SHIFT-TAB ...................... ESC-TAB Complete filename & reverse cycle. + ctrl-L ................................... Complete filename, list all. diff --git a/erService.getCurrentUser(anyString())).thenReturn(null); b/erService.getCurrentUser(anyString())).thenReturn(null); new file mode 100644 index 0000000..333a0b5 --- /dev/null +++ b/erService.getCurrentUser(anyString())).thenReturn(null); @@ -0,0 +1,258 @@ + + SSUUMMMMAARRYY OOFF LLEESSSS CCOOMMMMAANNDDSS + + Commands marked with * may be preceded by a number, _N. + Notes in parentheses indicate the behavior if _N is given. + A key preceded by a caret indicates the Ctrl key; thus ^K is ctrl-K. + + h H Display this help. + q :q Q :Q ZZ Exit. + --------------------------------------------------------------------------- + + MMOOVVIINNGG + + e ^E j ^N CR * Forward one line (or _N lines). + y ^Y k ^K ^P * Backward one line (or _N lines). + f ^F ^V SPACE * Forward one window (or _N lines). + b ^B ESC-v * Backward one window (or _N lines). + z * Forward one window (and set window to _N). + w * Backward one window (and set window to _N). + ESC-SPACE * Forward one window, but don't stop at end-of-file. + d ^D * Forward one half-window (and set half-window to _N). + u ^U * Backward one half-window (and set half-window to _N). + ESC-) RightArrow * Right one half screen width (or _N positions). + ESC-( LeftArrow * Left one half screen width (or _N positions). + ESC-} ^RightArrow Right to last column displayed. + ESC-{ ^LeftArrow Left to first column. + F Forward forever; like "tail -f". + ESC-F Like F but stop when search pattern is found. + r ^R ^L Repaint screen. + R Repaint screen, discarding buffered input. + --------------------------------------------------- + Default "window" is the screen height. + Default "half-window" is half of the screen height. + --------------------------------------------------------------------------- + + SSEEAARRCCHHIINNGG + + /_p_a_t_t_e_r_n * Search forward for (_N-th) matching line. + ?_p_a_t_t_e_r_n * Search backward for (_N-th) matching line. + n * Repeat previous search (for _N-th occurrence). + N * Repeat previous search in reverse direction. + ESC-n * Repeat previous search, spanning files. + ESC-N * Repeat previous search, reverse dir. & spanning files. + ESC-u Undo (toggle) search highlighting. + ESC-U Clear search highlighting. + &_p_a_t_t_e_r_n * Display only matching lines. + --------------------------------------------------- + A search pattern may begin with one or more of: + ^N or ! Search for NON-matching lines. + ^E or * Search multiple files (pass thru END OF FILE). + ^F or @ Start search at FIRST file (for /) or last file (for ?). + ^K Highlight matches, but don't move (KEEP position). + ^R Don't use REGULAR EXPRESSIONS. + ^W WRAP search if no match found. + --------------------------------------------------------------------------- + + JJUUMMPPIINNGG + + g < ESC-< * Go to first line in file (or line _N). + G > ESC-> * Go to last line in file (or line _N). + p % * Go to beginning of file (or _N percent into file). + t * Go to the (_N-th) next tag. + T * Go to the (_N-th) previous tag. + { ( [ * Find close bracket } ) ]. + } ) ] * Find open bracket { ( [. + ESC-^F _<_c_1_> _<_c_2_> * Find close bracket _<_c_2_>. + ESC-^B _<_c_1_> _<_c_2_> * Find open bracket _<_c_1_>. + --------------------------------------------------- + Each "find close bracket" command goes forward to the close bracket + matching the (_N-th) open bracket in the top line. + Each "find open bracket" command goes backward to the open bracket + matching the (_N-th) close bracket in the bottom line. + + m_<_l_e_t_t_e_r_> Mark the current top line with . + M_<_l_e_t_t_e_r_> Mark the current bottom line with . + '_<_l_e_t_t_e_r_> Go to a previously marked position. + '' Go to the previous position. + ^X^X Same as '. + ESC-M_<_l_e_t_t_e_r_> Clear a mark. + --------------------------------------------------- + A mark is any upper-case or lower-case letter. + Certain marks are predefined: + ^ means beginning of the file + $ means end of the file + --------------------------------------------------------------------------- + + CCHHAANNGGIINNGG FFIILLEESS + + :e [_f_i_l_e] Examine a new file. + ^X^V Same as :e. + :n * Examine the (_N-th) next file from the command line. + :p * Examine the (_N-th) previous file from the command line. + :x * Examine the first (or _N-th) file from the command line. + :d Delete the current file from the command line list. + = ^G :f Print current file name. + --------------------------------------------------------------------------- + + MMIISSCCEELLLLAANNEEOOUUSS CCOOMMMMAANNDDSS + + -_<_f_l_a_g_> Toggle a command line option [see OPTIONS below]. + --_<_n_a_m_e_> Toggle a command line option, by name. + __<_f_l_a_g_> Display the setting of a command line option. + ___<_n_a_m_e_> Display the setting of an option, by name. + +_c_m_d Execute the less cmd each time a new file is examined. + + !_c_o_m_m_a_n_d Execute the shell command with $SHELL. + |XX_c_o_m_m_a_n_d Pipe file between current pos & mark XX to shell command. + s _f_i_l_e Save input to a file. + v Edit the current file with $VISUAL or $EDITOR. + V Print version number of "less". + --------------------------------------------------------------------------- + + OOPPTTIIOONNSS + + Most options may be changed either on the command line, + or from within less by using the - or -- command. + Options may be given in one of two forms: either a single + character preceded by a -, or a name preceded by --. + + -? ........ --help + Display help (from command line). + -a ........ --search-skip-screen + Search skips current screen. + -A ........ --SEARCH-SKIP-SCREEN + Search starts just after target line. + -b [_N] .... --buffers=[_N] + Number of buffers. + -B ........ --auto-buffers + Don't automatically allocate buffers for pipes. + -c ........ --clear-screen + Repaint by clearing rather than scrolling. + -d ........ --dumb + Dumb terminal. + -D xx_c_o_l_o_r . --color=xx_c_o_l_o_r + Set screen colors. + -e -E .... --quit-at-eof --QUIT-AT-EOF + Quit at end of file. + -f ........ --force + Force open non-regular files. + -F ........ --quit-if-one-screen + Quit if entire file fits on first screen. + -g ........ --hilite-search + Highlight only last match for searches. + -G ........ --HILITE-SEARCH + Don't highlight any matches for searches. + -h [_N] .... --max-back-scroll=[_N] + Backward scroll limit. + -i ........ --ignore-case + Ignore case in searches that do not contain uppercase. + -I ........ --IGNORE-CASE + Ignore case in all searches. + -j [_N] .... --jump-target=[_N] + Screen position of target lines. + -J ........ --status-column + Display a status column at left edge of screen. + -k [_f_i_l_e] . --lesskey-file=[_f_i_l_e] + Use a lesskey file. + -K ........ --quit-on-intr + Exit less in response to ctrl-C. + -L ........ --no-lessopen + Ignore the LESSOPEN environment variable. + -m -M .... --long-prompt --LONG-PROMPT + Set prompt style. + -n -N .... --line-numbers --LINE-NUMBERS + Don't use line numbers. + -o [_f_i_l_e] . --log-file=[_f_i_l_e] + Copy to log file (standard input only). + -O [_f_i_l_e] . --LOG-FILE=[_f_i_l_e] + Copy to log file (unconditionally overwrite). + -p [_p_a_t_t_e_r_n] --pattern=[_p_a_t_t_e_r_n] + Start at pattern (from command line). + -P [_p_r_o_m_p_t] --prompt=[_p_r_o_m_p_t] + Define new prompt. + -q -Q .... --quiet --QUIET --silent --SILENT + Quiet the terminal bell. + -r -R .... --raw-control-chars --RAW-CONTROL-CHARS + Output "raw" control characters. + -s ........ --squeeze-blank-lines + Squeeze multiple blank lines. + -S ........ --chop-long-lines + Chop (truncate) long lines rather than wrapping. + -t [_t_a_g] .. --tag=[_t_a_g] + Find a tag. + -T [_t_a_g_s_f_i_l_e] --tag-file=[_t_a_g_s_f_i_l_e] + Use an alternate tags file. + -u -U .... --underline-special --UNDERLINE-SPECIAL + Change handling of backspaces. + -V ........ --version + Display the version number of "less". + -w ........ --hilite-unread + Highlight first new line after forward-screen. + -W ........ --HILITE-UNREAD + Highlight first new line after any forward movement. + -x [_N[,...]] --tabs=[_N[,...]] + Set tab stops. + -X ........ --no-init + Don't use termcap init/deinit strings. + -y [_N] .... --max-forw-scroll=[_N] + Forward scroll limit. + -z [_N] .... --window=[_N] + Set size of window. + -" [_c[_c]] . --quotes=[_c[_c]] + Set shell quote characters. + -~ ........ --tilde + Don't display tildes after end of file. + -# [_N] .... --shift=[_N] + Set horizontal scroll amount (0 = one half screen width). + --file-size + Automatically determine the size of the input file. + --follow-name + The F command changes files if the input file is renamed. + --incsearch + Search file as each pattern character is typed in. + --line-num-width=N + Set the width of the -N line number field to N characters. + --mouse + Enable mouse input. + --no-keypad + Don't send termcap keypad init/deinit strings. + --no-histdups + Remove duplicates from command history. + --rscroll=C + Set the character used to mark truncated lines. + --save-marks + Retain marks across invocations of less. + --status-col-width=N + Set the width of the -J status column to N characters. + --use-backslash + Subsequent options use backslash as escape char. + --use-color + Enables colored text. + --wheel-lines=N + Each click of the mouse wheel moves N lines. + + + --------------------------------------------------------------------------- + + LLIINNEE EEDDIITTIINNGG + + These keys can be used to edit text being entered + on the "command line" at the bottom of the screen. + + RightArrow ..................... ESC-l ... Move cursor right one character. + LeftArrow ...................... ESC-h ... Move cursor left one character. + ctrl-RightArrow ESC-RightArrow ESC-w ... Move cursor right one word. + ctrl-LeftArrow ESC-LeftArrow ESC-b ... Move cursor left one word. + HOME ........................... ESC-0 ... Move cursor to start of line. + END ............................ ESC-$ ... Move cursor to end of line. + BACKSPACE ................................ Delete char to left of cursor. + DELETE ......................... ESC-x ... Delete char under cursor. + ctrl-BACKSPACE ESC-BACKSPACE ........... Delete word to left of cursor. + ctrl-DELETE .... ESC-DELETE .... ESC-X ... Delete word under cursor. + ctrl-U ......... ESC (MS-DOS only) ....... Delete entire line. + UpArrow ........................ ESC-k ... Retrieve previous command line. + DownArrow ...................... ESC-j ... Retrieve next command line. + TAB ...................................... Complete filename & cycle. + SHIFT-TAB ...................... ESC-TAB Complete filename & reverse cycle. + ctrl-L ................................... Complete filename, list all. diff --git a/k :compileTestJava FAILED b/k :compileTestJava FAILED new file mode 100644 index 0000000..31cbc07 --- /dev/null +++ b/k :compileTestJava FAILED @@ -0,0 +1,5593 @@ +commit 99d32916a3a63d87ed1b6c5e05d548187150afcf (HEAD -> main, tag: v1.68.3, origin/main) +Merge: 519c4a9 8441227 +Author: Jan K9f +Date: Mon May 26 11:47:18 2025 +0000 + + Merge pull request 'chore(deps): update plugin org.springframework.boot to v3.5.0' (!220) from renovate/all-minor-patch into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/220 + Reviewed-by: Jan K9f + +commit 519c4a9038360d7de392712d168e0f1fed3c4f37 +Merge: 06dd023 027bd90 +Author: Jan K9f +Date: Mon May 26 11:46:40 2025 +0000 + + Merge pull request 'chore(deps): update dependency angular-eslint to v19.5.0' (!221) from renovate/devdependencies-(non-major) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/221 + Reviewed-by: Jan K9f + +commit 027bd90f4cbc8c3076e24597f8073e3868045954 +Author: Renovate Bot +Date: Sun May 25 10:01:54 2025 +0000 + + chore(deps): update dependency angular-eslint to v19.5.0 + +commit 84412276c0e1d678105a6480a762531164a9841f (origin/renovate/all-minor-patch) +Author: Renovate Bot +Date: Thu May 22 23:01:30 2025 +0000 + + chore(deps): update plugin org.springframework.boot to v3.5.0 + +commit 06dd02394b7f7744b8d894ba003128d735e98014 (tag: v1.68.2) +Merge: b495fdb e791d56 +Author: Jan K9f +Date: Thu May 22 17:12:19 2025 +0000 + + Merge pull request 'chore(deps): update all non-major dependencies' (!218) from renovate/all-minor-patch into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/218 + Reviewed-by: Jan K9f + +commit e791d56581daf20e42ab5c19930ece812f59f598 +Author: Renovate Bot +Date: Thu May 22 14:02:53 2025 +0000 + + chore(deps): update all non-major dependencies + +commit b495fdbe74c5f8111c3a3fde8682048f997ef0cf (tag: v1.68.1) +Merge: e72944d 9101e2f +Author: Phan Huy Tran +Date: Thu May 22 10:58:13 2025 +0000 + + Merge pull request 'refactor: extract common code to method' (!217) from refactor-blackjack-controllers into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/217 + Reviewed-by: Jan K9f + +commit 9101e2f5db04d0003faf34068507cae36e9b3031 (refactor-blackjack-controllers) +Author: Phan Huy Tran +Date: Thu May 22 12:48:31 2025 +0200 + + refactor: rename getter properly + +commit 5ad0740902f13220aaf66f82123928dffdb1d1ed +Author: Phan Huy Tran +Date: Thu May 22 12:47:27 2025 +0200 + + refactor: extract common code to method + +commit e72944d1779b8767328256df37a2b70f4058125f (tag: v1.68.0) +Merge: 69af830 da90a33 +Author: Jan-Marlon Leibl +Date: Wed May 21 12:21:12 2025 +0000 + + Merge pull request 'feat(dice): enhance game UI and add sound effects' (!216) from task/CAS-75/UpdateFrontendDice into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/216 + Reviewed-by: Jan K9f + Reviewed-by: Constantin Simonis + +commit da90a332dc90727d6114d21e6090b5ae55433e81 +Author: Jan-Marlon Leibl +Date: Wed May 21 14:07:03 2025 +0200 + + style(dice.component.html): fix whitespace in HTML file + +commit ed252696c468a1eb5fab4ee780d4cd415223876e +Merge: a199753 69af830 +Author: Jan-Marlon Leibl +Date: Wed May 21 12:06:41 2025 +0000 + + Merge branch 'main' into task/CAS-75/UpdateFrontendDice + +commit a1997537eb268978caf3dada7dcab25171a97d09 +Author: Jan-Marlon Leibl +Date: Wed May 21 14:02:47 2025 +0200 + + style(dice.component.html): Update layout of game instructions + +commit 1849500d744879f08d5ece0fec7ca53a6db1be95 +Author: Jan-Marlon Leibl +Date: Wed May 21 13:52:16 2025 +0200 + + feat(dice): enhance game UI and add sound effects + +commit 69af830829424f7e3013a2459fd7c0e7cf49c658 (tag: v1.67.1, origin/refactor/frontend-env) +Merge: c68b3f2 7762048 +Author: Jan K9f +Date: Wed May 21 11:49:23 2025 +0000 + + Merge pull request 'fix: Change lang to german' (!215) from fix/lang into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/215 + Reviewed-by: Constantin Simonis + +commit 7762048ee125cd2ae1ee0242a5a0b127a17dd421 +Author: Jan K9f +Date: Wed May 21 13:30:51 2025 +0200 + + fix: Change lang to german + +commit c68b3f2f7ee10ab057b3e758acd2f5f561b18f1a (tag: v1.67.0) +Merge: ba41b1e c2e85a5 +Author: Constantin Simonis +Date: Wed May 21 11:13:45 2025 +0000 + + Merge pull request 'feat(email): add mail protocol configuration option' (!214) from bugfix/prod-mails into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/214 + Reviewed-by: Jan K9f + +commit c2e85a5516ad8e8a110b679f41c4a78d22a6d4fe +Merge: dce5d1a ba41b1e +Author: Constantin Simonis +Date: Wed May 21 11:11:57 2025 +0000 + + Merge branch 'main' into bugfix/prod-mails + +commit ba41b1e553ebd7fd0b8453d5bb586a81512d0d0c (tag: v1.66.2) +Merge: 8119db6 f2da3ee +Author: Constantin Simonis +Date: Wed May 21 11:11:45 2025 +0000 + + Merge pull request 'refactor(security): reorganize OAuth2 packages and classes' (!213) from refactor/backend-oauth into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/213 + Reviewed-by: Jan K9f + +commit dce5d1a86ee75ff230619d251049601322210e1b +Author: Constantin Simonis +Date: Wed May 21 13:10:40 2025 +0200 + + feat(email): add mail protocol configuration option + +commit f2da3ee132adc756232beebeeac43801d2cf72be +Author: Constantin Simonis +Date: Wed May 21 12:14:05 2025 +0200 + + refactor(security): reorganize OAuth2 packages and classes + +commit 8119db68c9fc2831d3455c367ab2e64067dfa759 (tag: v1.66.1) +Merge: f88795f 1514f18 +Author: Constantin Simonis +Date: Wed May 21 10:12:56 2025 +0000 + + Merge pull request 'refactor: refactor routes.ts' (!212) from refactor/routes into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/212 + Reviewed-by: Jan K9f + +commit 1514f18d58ff00d5a059ccb27621e5d6c81d1098 +Author: Constantin Simonis +Date: Wed May 21 12:05:09 2025 +0200 + + refactor: update import paths for component files + +commit e5f8d6ce106166b6a18e8e780ce79fd757e6b9d7 +Author: Constantin Simonis +Date: Wed May 21 11:54:55 2025 +0200 + + refactor(routes): simplify component loading syntax + +commit f88795f7c50315172efe7a22580372cc04697135 (tag: v1.66.0) +Merge: c9632d6 64ee19f +Author: Constantin Simonis +Date: Wed May 21 10:00:56 2025 +0000 + + Merge pull request 'feat(auth): implement Google OAuth2 authentication flow' (!211) from feat/google-oauth into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/211 + Reviewed-by: Jan K9f + +commit 64ee19f9302d5027c55eafc9a87535e9e4dca79a +Author: Constantin Simonis +Date: Wed May 21 11:59:15 2025 +0200 + + style(login): update button text color to black + +commit f3ab9ffcd6023a89f0e2db12f7d422d4944764d4 +Author: Constantin Simonis +Date: Wed May 21 11:56:14 2025 +0200 + + style: format code and improve readability + +commit eb1717bca14a0f6638cb2326c98742e379a186c5 +Author: Constantin Simonis +Date: Wed May 21 11:50:41 2025 +0200 + + feat(auth): restructure oauth2 callback handling and service + +commit 756beb5a4eca9e404b4bc9c83ff38325931db162 +Author: Constantin Simonis +Date: Wed May 21 11:36:49 2025 +0200 + + refactor(auth): remove commented code in OAuth2 callback component + +commit 52de53878e6f839003e0dd9e4c79d80cd82510ed +Author: Constantin Simonis +Date: Wed May 21 11:35:29 2025 +0200 + + style: fix formatting and add newlines at end of files + +commit 07b594fa36f8d92e80da307716357b4aafb4e109 +Author: Constantin Simonis +Date: Wed May 21 11:34:00 2025 +0200 + + feat: implement Google OAuth2 authentication flow + +commit c9632d6b2613de3072106ccde54ea240c0ac004d (tag: v1.65.1) +Merge: 45ba7d9 26a2e0c +Author: Phan Huy Tran +Date: Wed May 21 09:32:50 2025 +0000 + + Merge pull request 'refactor: remove debounce on dice calculations' (!210) from refactor-remove-debounce into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/210 + Reviewed-by: Jan K9f + +commit 26a2e0cdbf37a3199b694b3ce2fde4a8baac15aa (refactor-remove-debounce) +Author: Phan Huy Tran +Date: Wed May 21 11:29:51 2025 +0200 + + style: appropriately touch quality tools again + +commit 54e9ccf4263991ba9417ef7a8f8091da8c286265 +Author: Phan Huy Tran +Date: Wed May 21 11:28:10 2025 +0200 + + style: appropriately touch quality tools + +commit f5bae60e0ffcf479f76f94aaa4a62f7e70cd5470 +Author: Phan Huy Tran +Date: Wed May 21 11:24:13 2025 +0200 + + refactor: remove debounce on dice calculations + +commit 45ba7d969333b7903b3a64345c7b4325921b7604 (tag: v1.65.0) +Merge: 3eea955 bb5f26a +Author: Jan K9f +Date: Wed May 21 09:13:34 2025 +0000 + + Merge pull request 'feat: Create Coinflip ui (CAS-64)' (!206) from feat/coinflip into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/206 + +commit 3eea955c56884788d1458611d3db1d7dc59e1ae4 (tag: v1.64.0) +Merge: dae835c 681b873 +Author: Phan Huy Tran +Date: Wed May 21 09:11:20 2025 +0000 + + Merge pull request 'feat: implement dice page (CAS-75)' (!209) from feat-dice-frontend into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/209 + Reviewed-by: Jan K9f + +commit bb5f26ab60b7eae7001f2336197ad975f0eef101 +Author: Jan K9f +Date: Wed May 21 11:06:35 2025 +0200 + + fix: Prettier + +commit 681b87383ed0ffe07ed051fffeb45449c366c60d +Author: Phan Huy Tran +Date: Wed May 21 11:06:12 2025 +0200 + + refactor: oops + +commit e6f3f76fd6846dc600695f3c2f675747b089fbdf +Author: Phan Huy Tran +Date: Wed May 21 11:05:11 2025 +0200 + + style: fix prettier + +commit c6d886b68bb00ed72e09244b147db4d7760c41df +Author: Phan Huy Tran +Date: Wed May 21 11:04:54 2025 +0200 + + refactor: use constant for api url + +commit 329739b103277aaa8e859e1e2ea2137df1e4dfc6 +Author: Phan Huy Tran +Date: Wed May 21 10:47:25 2025 +0200 + + style: fix quality tools + +commit f2aa81b6d2d94e414fad5bdfaa3a011a02d80a02 +Author: Phan Huy Tran +Date: Wed May 21 10:42:36 2025 +0200 + + style: format code + +commit b2053acdfe770a1630dad7c058dbb0f3661f49aa +Author: Phan Huy Tran +Date: Wed May 21 10:42:24 2025 +0200 + + feat: add links pointing to the dice page on landing page + +commit 694787fe07e718afa6520f4e24bacd4960539a36 +Author: Phan Huy Tran +Date: Wed May 21 10:39:43 2025 +0200 + + feat: add links pointing to the dice page + +commit bc502612213d0420ec536b6cf115964f40c858d3 +Author: Phan Huy Tran +Date: Wed May 21 10:37:49 2025 +0200 + + refactor: remove comment + +commit d58f24ccbf16a7ea7e347f80cf03361d7a36d537 +Author: Phan Huy Tran +Date: Wed May 21 10:36:32 2025 +0200 + + feat: style dice game page + +commit a62d2092b3a1e5f47a7a7cf229349ced6e0ed2dc +Author: Phan Huy Tran +Date: Wed May 21 10:23:03 2025 +0200 + + feat: implement basic dice frontend funcionality + +commit 8b6e026e0adba1cea9f34ba47f9dc73dd84c89a9 +Author: Jan K9f +Date: Wed May 21 10:58:35 2025 +0200 + + fix: Make user not able to enter too much money + +commit dae835cbfae14373be60697d0a80c6b7194acdbb (tag: v1.63.0) +Merge: e4cd62c 969e2ac +Author: Constantin Simonis +Date: Wed May 21 09:03:43 2025 +0000 + + Merge pull request 'feat(auth): add oauth2 using github (CAS-64)' (!208) from feat/github-oauth into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/208 + +commit 969e2ac0da85be2308341ce7e16eb9f8fa0ba637 +Author: Constantin Simonis +Date: Wed May 21 11:00:01 2025 +0200 + + style: format HTML and TypeScript files + +commit 75de7d137028eb527e14ca505b067b8437987939 +Author: Constantin Simonis +Date: Wed May 21 10:59:36 2025 +0200 + + style: fix missing newlines at end of files + +commit 6f6bbe6d8b79e264d17ab9bd09db06fa6320f043 +Author: Constantin Simonis +Date: Wed May 21 10:56:56 2025 +0200 + + refactor(security): remove unused GitHubService and comments + +commit 0d9b0ad9874a0e5bfc2843de54ca7b9ec1b24a02 +Author: Jan K9f +Date: Wed May 21 10:52:10 2025 +0200 + + fix: Fix claude mirrored text + +commit 6f264dccf76ac6d0eea6ceabd265c5537e9bdcb6 +Author: Constantin Simonis +Date: Wed May 21 10:54:31 2025 +0200 + + refactor: simplify UserPrincipal and OAuth2UserInfo classes + +commit 0e150e9ded2fe995f949b59a0761ec074490be23 +Author: Constantin Simonis +Date: Wed May 21 10:54:25 2025 +0200 + + refactor(GitHubService): remove unnecessary logging statements + +commit 2b29ef81b2dd156d8205819ea16e3ab380513fb1 +Author: Constantin Simonis +Date: Wed May 21 10:48:46 2025 +0200 + + fix: faulty rebase + +commit d64b39fa693769cd9daa40dc824d65a62f21cf2f +Author: Constantin Simonis +Date: Wed May 21 10:47:18 2025 +0200 + + fix: fix email verify + +commit 9770ad3d8fc3c1399cb61296d410fdf270fd07d4 +Author: Jan K9f +Date: Wed May 21 10:46:16 2025 +0200 + + fix: Claude fixed most issues + +commit 74798949c652836c8735bff1740dc15f67ab66d3 +Author: Constantin Simonis +Date: Wed May 21 10:33:58 2025 +0200 + + style: clean up whitespace in multiple files + +commit cc1979a06896a5808ea277b6141d81f617f572c2 +Author: Constantin Simonis +Date: Wed May 21 10:33:30 2025 +0200 + + feat: add GitHub OAuth2 authentication support + +commit 09677effe6d2391efc832fdcbdf50cefc81a50e4 +Author: Jan K9f +Date: Wed May 21 10:32:39 2025 +0200 + + befora claude just in case + +commit e4cd62cca4fbdeba8d48709e9c158d4ac38feb09 (tag: v1.62.0) +Merge: 61b806c 1931a02 +Author: Phan Huy Tran +Date: Wed May 21 07:54:01 2025 +0000 + + Merge pull request 'fix: delete orhpaned blackjack games' (!207) from fix-delete-completed-blackjack-games into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/207 + Reviewed-by: Jan K9f + +commit 1931a023691a8ca2ae54ae9a827f0a7b7d1da9bb (fix-delete-completed-blackjack-games) +Author: Phan Huy Tran +Date: Wed May 21 09:50:00 2025 +0200 + + style: format code + +commit 1dfdedee91444c52a39d9c851a4a8e6272366c70 +Author: Phan Huy Tran +Date: Wed May 21 09:49:09 2025 +0200 + + fix: delete orhpaned blackjack games + +commit 41f3b506a0300339b0ec0ce20d7fa317d005c87c +Author: Jan K9f +Date: Wed May 21 09:16:53 2025 +0200 + + feat: Create basic layout for coinflip + +commit 61b806c0488661d0caa0065a85ab9a57e4614ce5 +Merge: 1966313 34c7c39 +Author: Phan Huy Tran +Date: Wed May 21 07:16:44 2025 +0000 + + Merge pull request 'fix: Add missing dice target value validation' (!205) from fix-target-value-validation into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/205 + Reviewed-by: Jan K9f + +commit 34c7c39b637f96355314e88cbc3420990ed25995 (fix-target-value-validation) +Author: Phan Huy Tran +Date: Wed May 21 09:15:03 2025 +0200 + + fix: Add missing dice target value validation + +commit 1966313a20c9b978e254ed401d6dd6038922978b +Merge: 816c659 0d59b63 +Author: Jan K9f +Date: Wed May 21 07:10:07 2025 +0000 + + Merge pull request 'feat: implement dice game api (CAS-74)' (!203) from feat-dice into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/203 + Reviewed-by: Jan K9f + +commit 816c659b5cf50968595bf5f10fd395b21d1a7af8 +Merge: 898fb41 d02c3d2 +Author: Jan K9f +Date: Wed May 21 07:10:02 2025 +0000 + + Merge pull request 'fix: Fix bug where the password reset doesnt redirect to login (CAS-82)' (!204) from bugfix/password-reset-redirect into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/204 + Reviewed-by: Constantin Simonis + +commit d02c3d24f192c64d85a545af3757b117798e3bf0 +Author: Jan K9f +Date: Wed May 21 09:02:13 2025 +0200 + + fix: Fix bug where the password reset doesnt redirect to login + +commit 0d59b63c23c63bc9b3959d2524a1a449094064fa +Merge: d670190 898fb41 +Author: Phan Huy Tran +Date: Wed May 21 07:02:16 2025 +0000 + + Merge branch 'main' into feat-dice + +commit d67019007335083ca3fa8a35a8a03f96fd429637 (feat-dice) +Author: Phan Huy Tran +Date: Wed May 21 08:59:08 2025 +0200 + + refactor: use lombok + +commit 9175c82f98210736ab555413c5924c089d7809ef +Author: Phan Huy Tran +Date: Wed May 21 08:58:25 2025 +0200 + + feat: implement dice game api + +commit 898fb41030886155ef66762a0f20cc87be638ef8 (tag: v1.61.1) +Merge: 5c64b86 876bf2f +Author: Jan K9f +Date: Wed May 21 06:57:29 2025 +0000 + + Merge pull request 'fix: Fix bug where verification page doesnt redirect (CAS-80)' (!202) from bugfix/verification-redirect into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/202 + +commit 876bf2f427bf07ae62ee49a96d54602b29aa007f +Author: Jan K9f +Date: Wed May 21 08:55:23 2025 +0200 + + fix: Fix bug where verification page doesnt redirect + +commit 5c64b86bc4da846292fc4345bb4cec1eeaa9882a (tag: v1.61.0) +Merge: 46c9d2b ee3a57f +Author: Jan K9f +Date: Wed May 21 06:50:47 2025 +0000 + + Merge pull request 'fix: Fix bug where the password reset form doesnt show up when using (CAS-81)' (!201) from bugfix/password-reset-in-modal into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/201 + +commit ee3a57f5b3bcf7372a6d256632542d582605be1f +Author: Jan K9f +Date: Wed May 21 08:45:54 2025 +0200 + + fix: Fix bug where the password reset form doesnt show up when using + center buttons + +commit 46c9d2b7c1f0b3a43af6ea57dd06dd77ea2456f7 +Merge: 12b4595 9aab757 +Author: Jan K9f +Date: Mon May 19 12:48:24 2025 +0000 + + Merge pull request 'feat: Add justfile' (!200) from add-justfile into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/200 + +commit 9aab757cdfb02e2efa9719605e6c8bed3926c31e +Author: Jan K9f +Date: Fri May 16 08:46:26 2025 +0200 + + feat: Add justfile + +commit 12b45957e7c3c3f7385eb172fa9600b77710bbfb (tag: v1.60.2) +Merge: a6ebf10 c480254 +Author: Jan K9f +Date: Thu May 15 16:13:07 2025 +0000 + + Merge pull request 'refactor: remove unused directive and clean audio path' (!199) from task/fix-audio into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/199 + Reviewed-by: Jan K9f + +commit c4802546ab4f0a421fd35f06c1c7287854d50562 +Author: Jan-Marlon Leibl +Date: Thu May 15 17:12:55 2025 +0200 + + refactor: remove unused directive and clean audio path + +commit a6ebf1034e7a0e341afa9d5706c7c5a934179e5f (tag: v1.60.1) +Merge: 84feb5f 64a1155 +Author: Constantin Simonis +Date: Thu May 15 12:33:13 2025 +0000 + + Merge pull request 'fix(register): fix nothing happening after registration (CAS-79)' (!198) from bugfix/CAS-79 into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/198 + +commit 64a1155eed87558673cedc87d966622e8ce7584f +Author: csimonis +Date: Thu May 15 14:30:13 2025 +0200 + + chore: prettier + +commit 7c87dfb5198394dde2e8669bd7a859617e81d94b +Author: csimonis +Date: Thu May 15 14:23:03 2025 +0200 + + refactor(register): remove unused router import and variable + +commit 84feb5f08034ed74a4e5ef722bb1533db1dc36d0 (tag: v1.60.0) +Merge: 4f2e7fe 566ea56 +Author: Jan-Marlon Leibl +Date: Thu May 15 12:15:22 2025 +0000 + + Merge pull request 'feat: add audio features and sounds to the game' (!197) from task/CAS-78/AddSoundEffects into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/197 + Reviewed-by: Constantin Simonis + +commit 566ea569e1fcdebf9744af521e3e62c2bfcc1be0 +Author: Jan-Marlon Leibl +Date: Thu May 15 14:14:18 2025 +0200 + + refactor(audio.service): improve audio caching logic + +commit 6d353cc20246954ba0d7dd2cbaf8517d56d93d71 +Author: Jan-Marlon Leibl +Date: Thu May 15 14:04:43 2025 +0200 + + style: fix formatting and add missing commas in code + +commit 5809757bc9d54d5f6a4c9feb03ff4306530b6668 +Author: Jan-Marlon Leibl +Date: Thu May 15 14:03:26 2025 +0200 + + feat: add audio features and sounds to the game + +commit 4f2e7fe712889685c9eb7d9f431a3589950a6077 (tag: v1.59.0) +Merge: 7d471b6 dd91979 +Author: Constantin Simonis +Date: Thu May 15 11:00:22 2025 +0000 + + Merge pull request 'feat(auth): move recover password page to modal' (!196) from 1 into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/196 + Reviewed-by: Phan Huy Tran + +commit dd919799d6b0a7146526250b4934b47fcb11f1a4 +Author: csimonis +Date: Thu May 15 12:58:12 2025 +0200 + + chore: prettier + +commit 9a95ad3d0f1b1b4db5c2fcd7440f036ac994d555 +Author: csimonis +Date: Thu May 15 12:53:53 2025 +0200 + + feat(auth): add recover password functionality and forms + +commit 7d471b6898f4fd9e0c08a724c3576de932a2899a (tag: v1.58.0) +Merge: b41145b d049048 +Author: Constantin Simonis +Date: Thu May 15 10:37:19 2025 +0000 + + Merge pull request 'feat: add password recovery (CAS-73)' (!194) from feat/password-recovery into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/194 + Reviewed-by: Phan Huy Tran + +commit d049048206dfbf5b9d95ab954b0957e3f43e491c +Author: csimonis +Date: Thu May 15 12:34:28 2025 +0200 + + style: format HTML and TypeScript files for consistency + +commit 2305e836478571679546cf4087b649c3cd63663f +Author: csimonis +Date: Thu May 15 12:31:08 2025 +0200 + + feat(auth): add recover and reset password functionality + +commit c8f2d16f076d04d64fbb8cbc2761a10bb1153d5e +Author: csimonis +Date: Thu May 15 12:15:33 2025 +0200 + + feat(auth): add password reset functionality and DTO + +commit 9827f81230b17c5cee598eb51f7624536edfd19e +Author: csimonis +Date: Thu May 15 11:19:46 2025 +0200 + + wip: stuff + +commit b41145b85c1e8f4e39234cbd4095c0b335408f65 (tag: v1.57.0) +Merge: d42209d 963516a +Author: Phan Huy Tran +Date: Thu May 15 10:12:19 2025 +0000 + + Merge pull request 'feat: add coinside result' (!195) from feat-coinside into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/195 + Reviewed-by: Jan K9f + +commit 963516a5bda11d27bc95d56532865e70518bd12b +Merge: d7f2e72 d42209d +Author: Phan Huy Tran +Date: Thu May 15 10:10:51 2025 +0000 + + Merge branch 'main' into feat-coinside + +commit d7f2e72a15e4c85d420c442a0791ba7d11d6d36c (feat-coinside) +Author: Phan Huy Tran +Date: Thu May 15 11:44:56 2025 +0200 + + feat: add coinside result + +commit d42209d1c9039d841fadb2224b9f9ae594bf06c1 +Merge: 97a25af 47e0456 +Author: Jan K9f +Date: Thu May 15 09:15:12 2025 +0000 + + Merge pull request 'Update some stuff in the pipeline' (!193) from pipeline-optimization into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/193 + +commit 47e04567a92495f036db46725837fc20806af42b +Author: jank +Date: Thu May 15 11:07:00 2025 +0200 + + perf: Update bun jobs + +commit 97a25af1c6b591cb9b16a1ab15f2576d9bbac25e (tag: v1.56.0) +Merge: bb460f2 2f21408 +Author: Constantin Simonis +Date: Thu May 15 09:05:29 2025 +0000 + + Merge pull request 'feat: verify email (CAS-66)' (!192) from feat/verify-email into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/192 + Reviewed-by: Jan K9f + +commit 2f21408e3da6db9a692286ec7e9ca3e5a16b5f95 +Author: csimonis +Date: Thu May 15 11:03:50 2025 +0200 + + style: format code for better readability + +commit 51984318e6df018e041e9b08fb20c32e2a994b7c +Author: csimonis +Date: Thu May 15 11:01:47 2025 +0200 + + refactor(auth.service): change observable type to unknown + +commit decf2e21a393bca68f9aeffc16c79a77e2ee0a15 +Author: csimonis +Date: Thu May 15 10:58:53 2025 +0200 + + feat(email): add welcome email sending on verification success + +commit 0963dbae06cdc0f534fe07fad33c046b54bf596b +Author: csimonis +Date: Thu May 15 10:57:14 2025 +0200 + + refactor(verify-email): remove unused CSS file and update template + +commit db9fe842599b9a46d0770c346b4f7c23021033cc +Author: csimonis +Date: Thu May 15 10:51:29 2025 +0200 + + fix: change status code for EmailNotVerifiedException + +commit d2225decc19c942e6d03a9083dc9a15b33b60e3c +Author: csimonis +Date: Thu May 15 10:49:24 2025 +0200 + + feat(auth): add email verification feature and handler + +commit bb460f20cb3568fda51c666dbace9a5c96bf68a7 (tag: v1.55.0) +Merge: 954e1ea 2120952 +Author: Phan Huy Tran +Date: Thu May 15 08:31:42 2025 +0000 + + Merge pull request 'feat: implement coinflip api' (!191) from feat-coinflip-api into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/191 + Reviewed-by: Jan K9f + +commit 21209524be632ba86e8d2c19351dd80bbfc5f435 (feat-coinflip-api) +Author: Phan Huy Tran +Date: Thu May 15 10:27:43 2025 +0200 + + feat: implement coinflip api + +commit 59aa8319818efa633211f210fbf1a6cc66768631 +Author: csimonis +Date: Thu May 15 10:02:41 2025 +0200 + + feat(auth): add email verification functionality + +commit 954e1ea6ea369f0b3faae3928c883e470538dea7 (tag: v1.54.0) +Merge: 435f051 bb2e9e4 +Author: Jan-Marlon Leibl +Date: Wed May 14 10:14:04 2025 +0000 + + Merge pull request 'feat(auth): emit closeDialog on successful registration' (!190) from refactor/dialogs into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/190 + +commit bb2e9e48340520b5ba22153c2a76b5900a4d4128 +Author: Jan-Marlon Leibl +Date: Wed May 14 12:12:33 2025 +0200 + + feat(auth): emit closeDialog on successful registration + +commit 435f0513b50c3df6b7dd85b34badd028324da1b6 (tag: v1.53.0) +Merge: 5bbfa59 489f587 +Author: Jan-Marlon Leibl +Date: Wed May 14 10:05:56 2025 +0000 + + Merge pull request 'feat(auth): add login and registration modal functionality' (!189) from refactor/dialogs into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/189 + Reviewed-by: Jan K9f + +commit 489f58777015b589f34fb06810a38df1616f01bb +Author: Jan-Marlon Leibl +Date: Wed May 14 12:02:38 2025 +0200 + + style: fix comment formatting in HTML file + +commit f69237a1a9b6e43edbdd742a4058bb208bb8882e +Author: Jan-Marlon Leibl +Date: Wed May 14 12:02:27 2025 +0200 + + style: remove unnecessary comments from HTML files + +commit b51305ca647a874afd59ffe2fe8e53f9a5acc810 +Author: Jan-Marlon Leibl +Date: Wed May 14 12:01:06 2025 +0200 + + style: format HTML for consistency and readability + +commit 0079ee7bf278c0a3761e9321eabeb5cba407dbe1 +Author: Jan-Marlon Leibl +Date: Wed May 14 12:00:33 2025 +0200 + + feat(auth): add login and registration modal functionality + +commit 5bbfa5994ec798945e43429cab857cfe4d6426b6 (tag: v1.52.4) +Merge: 20e0805 03bee95 +Author: Phan Huy Tran +Date: Wed May 14 09:49:41 2025 +0000 + + Merge pull request 'fix: protect slots route' (!188) from fix-slots into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/188 + Reviewed-by: Jan K9f + +commit 03bee953da7997f41bbcaa0acd993b04d60a08e4 (fix-slots) +Author: Phan Huy Tran +Date: Wed May 14 11:45:51 2025 +0200 + + style: prettier + +commit bee6fabcfaefa2fb23e012d75310455e3c79330e +Author: Phan Huy Tran +Date: Wed May 14 11:30:40 2025 +0200 + + fix: protect slots route + +commit 20e0805d0e2b61e966ce21ef4cb77b875b4746ec (tag: v1.52.3) +Merge: 46e52e2 0bab8a3 +Author: Phan Huy Tran +Date: Wed May 14 09:24:01 2025 +0000 + + Merge pull request 'refactor: throw proper error on registration conflict, handle properly' (!187) from refactor-register into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/187 + Reviewed-by: Jan K9f + +commit 0bab8a343c2ee48a1fac65f42f6406b89d309ddd (refactor-register) +Author: Phan Huy Tran +Date: Wed May 14 10:40:32 2025 +0200 + + style: run prettier + +commit e7e43839eb3de8ffb29b63472dbe17fc83643519 +Author: Phan Huy Tran +Date: Wed May 14 10:37:08 2025 +0200 + + refactor: fix linter, adjust errorhandling + +commit b4351ceaea4d7919d98ea0b47bf15b5cd536cf62 +Author: Phan Huy Tran +Date: Wed May 14 10:32:44 2025 +0200 + + refactor: throw proper error on registration conflict, handle properly + +commit 46e52e20cc95090da9ae1f4d5f208d5c1e3c3df8 +Merge: 77c4898 48119d1 +Author: Jan K9f +Date: Wed May 14 08:04:21 2025 +0000 + + Merge pull request 'fix: Add concurrency rules' (!186) from concurrency into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/186 + Reviewed-by: Phan Huy Tran + +commit 48119d1faf312cde02adfd7e5a33b77fcc150337 +Author: jank +Date: Wed May 14 10:00:45 2025 +0200 + + fix: Add concurrency rules + +commit 77c48982fa62acc19735eda843135fc3e8b4e35a (tag: v1.52.2) +Merge: b37e48d 64b2e28 +Author: Constantin Simonis +Date: Wed May 14 07:59:31 2025 +0000 + + Merge pull request 'refactor: immediately display login error' (!185) from refactor-login into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/185 + Reviewed-by: Constantin Simonis + +commit 64b2e28566aa4cdc94f8f1544498e630fde76ae2 (refactor-login) +Author: Phan Huy Tran +Date: Wed May 14 09:54:12 2025 +0200 + + style: run quality tools + +commit 5f9d60d3328afd6b2a598818cc95cc387ab4860f +Author: Phan Huy Tran +Date: Wed May 14 09:53:17 2025 +0200 + + refactor: immediately display login error + +commit b37e48da2e01f06299b71f81083ec676ce57ed80 +Merge: fc7bd0b 2995065 +Author: Constantin Simonis +Date: Wed May 14 07:40:38 2025 +0000 + + Merge pull request 'fix: Add needs' (!184) from add-needs-to-docker-pipelines into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/184 + Reviewed-by: Constantin Simonis + +commit 2995065dfd02613dda3596a5f3dfbd5120bb5b76 +Author: jank +Date: Wed May 14 09:37:41 2025 +0200 + + fix: Add needs + +commit fc7bd0b70f6b9bc02e3169894dad60ca87530204 (tag: v1.52.1) +Merge: 8b547eb f42070c +Author: Phan Huy Tran +Date: Wed May 14 07:37:31 2025 +0000 + + Merge pull request 'refactor: cleanup frontend code' (!183) from refactor-frontend into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/183 + Reviewed-by: Jan K9f + +commit f42070cfaeff1010f6518d389c8328ecb7164d17 (refactor-frontend) +Author: Phan Huy Tran +Date: Wed May 14 09:34:27 2025 +0200 + + style: run quality tools + +commit 34ff29c7ac409513414bea4586c768d694710be4 +Author: Phan Huy Tran +Date: Wed May 14 09:33:38 2025 +0200 + + refactor: remove docker folder, refactor frontend files + +commit 8b547eb05b4982a70e16b9ee3887eb815bb34caa +Merge: 0cde085 4531398 +Author: Jan-Marlon Leibl +Date: Wed May 14 07:28:24 2025 +0000 + + Merge pull request 'fix: only run docker pipelines when needed' (!182) from fix-docker-pipelines into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/182 + Reviewed-by: Jan-Marlon Leibl + +commit 0cde085102f81ba309fb51b2daea11679afb4364 (tag: v1.52.0) +Merge: c443f54 7fbe1c3 +Author: Jan-Marlon Leibl +Date: Wed May 14 07:27:20 2025 +0000 + + Merge pull request 'feat(email): add deposit confirmation email' (!181) from feat/mails into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/181 + Reviewed-by: Jan-Marlon Leibl + +commit 45313989e702de9a61952acc742eb3e3b51441a8 +Author: jank +Date: Wed May 14 09:21:23 2025 +0200 + + fix: only run docker pipelines when needed + +commit 7fbe1c375367494635ccbc3dff1e1619e1189fd8 +Author: csimonis +Date: Wed May 14 09:22:15 2025 +0200 + + feat(email): add deposit confirmation email template and logic + +commit c443f547cd2f552c2e2143250e9899e82cf34fcf (tag: v1.51.0) +Merge: 125f1ae 96609cf +Author: Jan K9f +Date: Wed May 14 07:20:42 2025 +0000 + + Merge pull request 'fix: Fix buttons on starting page' (!180) from fix-links-on-landing into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/180 + +commit 96609cf912e876c89470ad33fab8653d077f203b +Merge: b2ceb8e 125f1ae +Author: Jan K9f +Date: Wed May 14 07:16:38 2025 +0000 + + Merge branch 'main' into fix-links-on-landing + +commit b2ceb8e9af9f02d234ad5ca13bc072032bfecdd9 +Author: Jan-Marlon Leibl +Date: Wed May 14 09:16:04 2025 +0200 + + style(landing): format HTML links for better readability + +commit 98bc3cc2cad65e19293d4762a180f75322aa5e62 +Author: Jan-Marlon Leibl +Date: Wed May 14 09:14:38 2025 +0200 + + style(landing): update button to inline-block text-center + +commit 0a0c801716dba38344f5d5a519310695689b078a +Author: Phan Huy Tran +Date: Wed May 14 08:59:56 2025 +0200 + + feat: import mailer during runtime and compiling, remove duplicated games section + +commit 565d31db1ed9089b1418d235e5231fc84bb6737d +Author: jank +Date: Wed May 14 09:13:50 2025 +0200 + + fix: prettier + +commit 125f1aec832f44c0ff5de9e6d09fe362e22441f8 (tag: v1.50.0) +Merge: fe2f65c 77f4c8e +Author: Phan Huy Tran +Date: Wed May 14 07:13:06 2025 +0000 + + Merge pull request 'feat: import mailer during runtime and compiling, remove duplicated games section' (!179) from duplicate-games into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/179 + Reviewed-by: Jan-Marlon Leibl + +commit aca65a397dfae639f62cc48a75ab3a3ddb927d53 +Author: jank +Date: Wed May 14 08:41:56 2025 +0200 + + fix: Fix buttons on starting page + +commit 77f4c8e71b5d20c9eb5ebd3c80a5eac7b08efe15 +Merge: 961f3b7 fe2f65c +Author: Phan Huy Tran +Date: Wed May 14 07:10:43 2025 +0000 + + Merge branch 'main' into duplicate-games + +commit fe2f65c7644764c74268ce62c01d554848be7ac3 (tag: v1.49.2) +Merge: 4f1e90e 7dae746 +Author: Jan-Marlon Leibl +Date: Wed May 14 07:08:13 2025 +0000 + + Merge pull request 'chore(deps): update devdependencies (non-major)' (!175) from renovate/devdependencies-(non-major) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/175 + Reviewed-by: Jan-Marlon Leibl + +commit 7dae746910ebe83842594ddbb1033f0ef6f15330 +Merge: 35638ce 4f1e90e +Author: Jan-Marlon Leibl +Date: Wed May 14 07:01:50 2025 +0000 + + Merge branch 'main' into renovate/devdependencies-(non-major) + +commit 961f3b7ec5bf5b5b2966e140201cf7728f056885 (duplicate-games) +Author: Phan Huy Tran +Date: Wed May 14 08:59:56 2025 +0200 + + feat: import mailer during runtime and compiling, remove duplicated games section + +commit 4f1e90efdf8276fed919cab93d1bc6f8ac25dd22 (tag: v1.49.1) +Merge: 991ff11 88b68f0 +Author: Jan-Marlon Leibl +Date: Wed May 14 07:00:24 2025 +0000 + + Merge pull request 'fix: update starting balance and welcome bonus text' (!178) from task/CAS-68/AdjustStartMoney into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/178 + Reviewed-by: Jan K9f + +commit 35638ce3aec3cbbc2a65a74ad8ad51376fb677e6 +Merge: 7b0e37b 991ff11 +Author: Jan-Marlon Leibl +Date: Wed May 14 06:59:08 2025 +0000 + + Merge branch 'main' into renovate/devdependencies-(non-major) + +commit 991ff11fedb8c05f2b4a8d00b79bf9c8304711d9 +Merge: d449af9 156379c +Author: Jan-Marlon Leibl +Date: Wed May 14 06:58:54 2025 +0000 + + Merge pull request 'chore(deps): update postgres docker tag to v17.5' (!176) from renovate/all-minor-patch into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/176 + Reviewed-by: Jan-Marlon Leibl + +commit 88b68f054718ccbe0bf46ef7c0a96562e46dcb22 +Merge: 893939a d449af9 +Author: Jan-Marlon Leibl +Date: Wed May 14 06:57:30 2025 +0000 + + Merge branch 'main' into task/CAS-68/AdjustStartMoney + +commit 893939a081dc989e30c8d77e94a675b5048857fc +Author: Jan-Marlon Leibl +Date: Wed May 14 08:55:44 2025 +0200 + + fix: update starting balance and welcome bonus text + +commit d449af9732418108e68c4797d0dfd714d7a47ef4 (tag: v1.49.0) +Merge: 7f2aeef 73710a1 +Author: Constantin Simonis +Date: Wed May 14 06:49:42 2025 +0000 + + Merge pull request 'feat: add welcome mail' (!177) from feat/mails into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/177 + Reviewed-by: Phan Huy Tran + +commit 73710a15423883219a90dad24020c4b2cc7c583a +Author: csimonis +Date: Wed May 14 08:44:37 2025 +0200 + + feat: whoops + +commit e6c34ffe90ff632ce99968cde9eaa80a6984b5af +Author: csimonis +Date: Wed May 14 08:39:05 2025 +0200 + + feat(email): update registration email template to welcome email + +commit 13b344312704a5fe2eba9bd22f4812545c76aa6c +Author: csimonis +Date: Thu May 8 15:39:02 2025 +0200 + + chore: crazy ahh email template and styles + +commit 110dacb6ddae651154c3c2626734a54fce31bb79 +Author: Constantin Simonis +Date: Wed May 7 18:11:54 2025 +0200 + + feat(email): add email service and configuration for sending emails + +commit 7b0e37b14ba738f83b70a0501bf06931ce3106b2 +Author: Renovate Bot +Date: Mon May 12 18:01:47 2025 +0000 + + chore(deps): update devdependencies (non-major) + +commit 156379c12ceb42e5c8b92adb73afde107ccf0a35 +Author: Renovate Bot +Date: Thu May 8 21:02:03 2025 +0000 + + chore(deps): update postgres docker tag to v17.5 + +commit 7f2aeefba2a31147b48365ae9f020538d41104fe (tag: v1.48.2) +Merge: bce3750 27c7ee5 +Author: Phan Huy Tran +Date: Thu May 8 12:23:31 2025 +0000 + + Merge pull request 'perf: increase slots performance by 1500% !!!!' (!174) from perf-slots into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/174 + Reviewed-by: Jan K9f + +commit 27c7ee5ff9c8a0b0ca4a0a6d5b87b5d698fafef8 (perf-slots) +Author: Phan Huy Tran +Date: Thu May 8 14:20:53 2025 +0200 + + style: fml: fml + +commit e4f81275036b40f1a335c0d00ed6ec5e8e5e35fc +Author: Phan Huy Tran +Date: Thu May 8 14:17:14 2025 +0200 + + perf: increase slots performance by 1500% !!!! + +commit bce3750f345c955128d8b27f5e60b005052b7523 (tag: v1.48.1) +Merge: ba6f72f 127c122 +Author: Constantin Simonis +Date: Wed May 7 19:09:19 2025 +0000 + + Merge pull request 'fix: fix prod api url' (!173) from fix/prod into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/173 + +commit 127c1229e875c99d97febc082683e17d8fbb2941 +Author: jank +Date: Wed May 7 21:02:11 2025 +0200 + + fix: run prettier + +commit 864e77c09576585da4a5ba321298d2c364cb5498 +Author: Constantin Simonis +Date: Wed May 7 18:17:00 2025 +0200 + + fix: fix prod api url + +commit ba6f72fb97131dd727f79e4e691daf3ab5d7a229 (tag: v1.48.0) +Merge: 4a312dd ee07abb +Author: Jan-Marlon Leibl +Date: Wed May 7 16:10:05 2025 +0000 + + Merge pull request 'feat(slots): add slot machine component with styling and logic' (!170) from task/CAS-44/lootbox-selection into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/170 + Reviewed-by: Constantin Simonis + +commit ee07abb189c0b258d045e26e684e12120c3c9c9f +Author: Jan-Marlon Leibl +Date: Wed May 7 18:02:35 2025 +0200 + + style(user.service.ts): fix whitespace in user service file + +commit 226675de03ee5683f45edd2fe2fa6c1bc346b196 +Author: Jan-Marlon Leibl +Date: Wed May 7 18:02:12 2025 +0200 + + refactor(auth): replace UserService with AuthService usage + +commit 205bf1e52c8f2e2ae73e1fbd0759bb203a07420e +Author: Jan-Marlon Leibl +Date: Wed May 7 17:56:12 2025 +0200 + + style: Clean up whitespace in component files + +commit 7aefe67aa06a0dcac3df2453c7b336d6747fecaa +Author: Jan-Marlon Leibl +Date: Wed May 7 17:55:31 2025 +0200 + + refactor(lottery): improve code structure and readability + +commit a3f34e960b6354879529ddc8ff3cac6daa85a970 +Author: Jan-Marlon Leibl +Date: Wed May 7 17:47:34 2025 +0200 + + feat(slots): update balance handling on spin results + +commit 93c5dc7fe3f3a7594ab151342e554c1e1cb6d4fc +Author: Jan-Marlon Leibl +Date: Wed May 7 17:34:34 2025 +0200 + + style: format import statements for readability + +commit 4d76655e2fdaaf3fbf687ea4c76ef9712e175e9c +Author: Jan-Marlon Leibl +Date: Wed May 7 17:34:22 2025 +0200 + + style(slots): clean up unused button styling + +commit 98668a3fb07612cfc5c81f85c2a5d4febb0f13fc +Author: Constantin Simonis +Date: Wed May 7 15:14:23 2025 +0200 + + style: clean up import statements for consistency + +commit a622dbc7f43df8252fd23a41457246b55aa1cf7a +Author: Jan-Marlon Leibl +Date: Wed May 7 16:25:43 2025 +0200 + + feat(slots): add slot machine component with styling and logic + +commit 4a312dda357e35553e3a1c6494f40dbe9f38017e (tag: v1.47.1) +Merge: 62e7e0e 88c2f49 +Author: Jan-Marlon Leibl +Date: Wed May 7 15:30:27 2025 +0000 + + Merge pull request 'fix: fix login/register' (!172) from bugfix/fix-login into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/172 + Reviewed-by: Jan-Marlon Leibl + +commit 88c2f49b03c14d23b7d6a9b513b29de48cb9f166 +Author: Constantin Simonis +Date: Wed May 7 17:26:44 2025 +0200 + + style(navbar): format import statements and arrow function + +commit db6bf4f19962e4ce4e11e32158a454329deed046 +Author: Constantin Simonis +Date: Wed May 7 17:24:32 2025 +0200 + + refactor(auth.service): remove unused imports and variables + +commit ad77c76d14426cc2960bde430d00e5b5f1b2c2c9 +Author: Constantin Simonis +Date: Wed May 7 17:23:51 2025 +0200 + + fix: fix login/register + +commit 62e7e0ec65d47fdcd36d2fce600c3022df0624aa (tag: v1.47.0) +Merge: c4c762c 5a0d7b2 +Author: Jan-Marlon Leibl +Date: Wed May 7 14:28:49 2025 +0000 + + Merge pull request 'feat(auth): rewrite authentication to not use oauth manage users in app instead' (!163) from feature/authentication into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/163 + Reviewed-by: Jan-Marlon Leibl + +commit 5a0d7b2313603fb8baba57fbd1cc7d3f57203ba4 +Author: Constantin Simonis +Date: Wed May 7 16:26:21 2025 +0200 + + chore: prettier + +commit 91e546226d7875f67921575afc6686c5badc9564 +Author: Constantin Simonis +Date: Wed May 7 16:23:06 2025 +0200 + + chore: shitty ahh rebase + +commit 84250969aa8473dae2acb4ab59898458d05ba271 +Author: Constantin Simonis +Date: Wed May 7 15:35:33 2025 +0200 + + feat(auth): add user refresh functionality in services + +commit 851cfe1bc8a9a7c7b75a99d2b1f428904cb03e36 +Author: Constantin Simonis +Date: Wed May 7 15:30:57 2025 +0200 + + refactor: remove unused parameters and improve formatting + +commit 1111c914070926493031e832f3759abda77a5f9d +Author: Constantin Simonis +Date: Wed May 7 15:20:18 2025 +0200 + + feat(auth): update login and register components design + +commit a1783863559d1d7f28540dae7db7f13c8d3cbf6e +Author: Constantin Simonis +Date: Wed May 7 15:14:23 2025 +0200 + + style: clean up import statements for consistency + +commit 0cf2ea3438abae1e954f1aa8c085aa52fade51b9 +Author: Constantin Simonis +Date: Wed May 7 15:12:46 2025 +0200 + + refactor: clean up unused imports across controllers + +commit 8ba6d4e4d987f0ad073d8b68272b0b94fc71ffc7 +Author: Constantin Simonis +Date: Wed May 7 15:10:21 2025 +0200 + + feat(auth): put login and register templates in files + +commit b1e173f44b006f29f29347afb9a123c7bf76de71 +Author: Constantin Simonis +Date: Wed May 7 15:02:48 2025 +0200 + + refactor: remove redundant user not found message handling + +commit 29a53ea7814d5923cb323262203464bfb9d4b906 +Author: Constantin Simonis +Date: Wed May 7 14:51:02 2025 +0200 + + fix: fix stupid ahh bug where u get logged out when doing fucking anything stupid fucking http interceptor + +commit 3b95725d884b5fed18a327c982f6c29e5c63a0a1 +Author: Constantin Simonis +Date: Wed May 7 14:39:10 2025 +0200 + + refactor: simplify user service and update routes + +commit 51540c930b4ef90840185682bdbec9d2fd3d5046 +Author: Constantin Simonis +Date: Wed May 7 13:42:41 2025 +0200 + + style: format code and improve readability + +commit 35d8fbaea0a202a1ab921f1ebc93f00fc0047b11 +Author: Constantin Simonis +Date: Wed May 7 13:42:04 2025 +0200 + + feat: implement authentication with JWT and user management + +commit c4c762cafe35f94d109865437c9d3cb4a2ddbacc (tag: v1.46.0) +Merge: b3293a8 c92a182 +Author: Jan-Marlon Leibl +Date: Wed May 7 13:33:10 2025 +0000 + + Merge pull request 'feat: add user balance updates during lootbox opening' (!169) from task/CAS-44/lootbox-selection into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/169 + Reviewed-by: Jan K9f + +commit c92a1821232991d3bda32f3f7ef48687bc5737b1 +Author: Jan-Marlon Leibl +Date: Wed May 7 15:30:40 2025 +0200 + + style: fix formatting and add missing commas in code + +commit 790485decc393e7bc37c31455f601c918689458c +Author: Jan-Marlon Leibl +Date: Wed May 7 15:30:19 2025 +0200 + + feat(lootboxes): add balance check for opening lootboxes + +commit bca2649afd0b908bd7a8ae6466c9baf2bc7426ca +Merge: 513ff78 b3293a8 +Author: Jan-Marlon Leibl +Date: Wed May 7 13:23:37 2025 +0000 + + Merge branch 'main' into task/CAS-44/lootbox-selection + +commit 513ff7886b614c2e549fcacf220d626335ef070d +Author: Jan-Marlon Leibl +Date: Wed May 7 15:22:37 2025 +0200 + + feat: add user balance updates during lootbox opening + +commit b3293a8333301bfe29491d4961554e2d9379556e (tag: v1.45.1) +Merge: ac3dea3 d336ca7 +Author: Jan K9f +Date: Wed May 7 13:20:20 2025 +0000 + + Merge pull request 'style: remove unnecessary debug information from HTML' (!168) from task/CAS-44/lootbox-selection into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/168 + Reviewed-by: Jan K9f + +commit d336ca77d37e725d408c8f29a3b74bb48c20d932 +Author: Jan-Marlon Leibl +Date: Wed May 7 15:05:42 2025 +0200 + + style: remove unnecessary debug information from HTML + +commit ac3dea3cb0b14ce72fff7840069e6dac4770273a (tag: v1.45.0) +Merge: bb1134a c7f26c4 +Author: Jan-Marlon Leibl +Date: Wed May 7 13:01:02 2025 +0000 + + Merge pull request 'feat: Lootboxes' (!159) from task/CAS-44/lootbox-selection into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/159 + Reviewed-by: Jan-Marlon Leibl + +commit c7f26c4df3f40b6868a081132485e386e6a2d456 +Author: Jan-Marlon Leibl +Date: Wed May 7 14:57:24 2025 +0200 + + style: format code for better readability and consistency + +commit 90368dce7c4fd1b3cdc4319ab9b71c6f32e34799 +Author: Jan-Marlon Leibl +Date: Wed May 7 14:56:09 2025 +0200 + + chore: remove unused lootbox image assets + +commit d29fc10cc87d4925fab179eb6c9b8c58d5e38434 +Author: Jan-Marlon Leibl +Date: Wed May 7 14:54:50 2025 +0200 + + refactor: remove unused imports and clean up code + +commit 667e4313d210b21ef2d6b9dc1ad921f4e78c7bf0 +Author: Jan K9f +Date: Wed Apr 23 14:33:06 2025 +0200 + + style: clean up whitespace and formatting in files + +commit 0bf32b4b93def0dfe02a7cbf6e7f0f95f87f423d +Author: Jan K9f +Date: Wed Apr 23 14:20:02 2025 +0200 + + style: update lootbox component styles and remove debug code + +commit f44f5ed02b58628453386ac3232aab4249305b80 +Author: Jan K9f +Date: Wed Apr 23 14:16:03 2025 +0200 + + style: Improve CSS formatting and animation adjustments + +commit 6f61e6dc3d51f72b45a3b7d416b705f43859e1d3 +Author: Jan K9f +Date: Wed Apr 23 13:47:36 2025 +0200 + + style: clean up and reorganize lootbox component styles + +commit 8e27c9c7c38874dd85dd040bcfecd2806afa844d +Author: Jan-Marlon Leibl +Date: Wed Apr 23 13:17:44 2025 +0200 + + feat(lootboxes): add lootbox opening feature and images + +commit b58ceeeaab4f7dbf7bb7b3e948dd5db6962da739 +Author: Jan-Marlon Leibl +Date: Wed Apr 23 09:47:32 2025 +0200 + + feat(lootboxes): add lootbox selection feature and routes + +commit bb1134abd3ebaca9fcbe022fe7f3858036cb3cf2 (tag: v1.44.1) +Merge: 1a42057 e2e249d +Author: Phan Huy Tran +Date: Wed May 7 12:50:19 2025 +0000 + + Merge pull request 'refactor: subtract betamount on blank status' (!166) from slots-fix-blank-result into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/166 + Reviewed-by: Jan K9f + +commit e2e249d8994cef867a48bd34e114deddce4971dd +Author: Phan Huy Tran +Date: Wed May 7 14:48:17 2025 +0200 + + refactor: oops + +commit 6e101a0cab9e800d9cffba87ec9bea3e66788c14 +Author: Phan Huy Tran +Date: Wed May 7 14:47:22 2025 +0200 + + refactor: subtract betamount on blank status + +commit 1a420579628247b1df3aa9dda22521f3092bca82 (tag: v1.44.0) +Merge: 7c2e338 5721006 +Author: Phan Huy Tran +Date: Wed May 7 12:32:52 2025 +0000 + + Merge pull request 'feat: add bare slots frontend, remove bun start warnings (CAS-61)' (!164) from slots-frontend into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/164 + Reviewed-by: Constantin Simonis + +commit 572100678f60b65aae4696441ce450d118af2435 +Merge: 23673ca 7c2e338 +Author: Phan Huy Tran +Date: Wed May 7 12:29:19 2025 +0000 + + Merge branch 'main' into slots-frontend + +commit 23673ca0fca8bafc6ad5b88bddd2c40d40f1f115 (slots-frontend) +Author: Phan Huy Tran +Date: Wed May 7 14:28:39 2025 +0200 + + revert: remove color styling + +commit 201b305fe0dc002b2df4f6658a390075c1aee834 +Author: Phan Huy Tran +Date: Wed May 7 14:27:36 2025 +0200 + + feat: add starting stuff + +commit fd7c3b3503f0cbbc689bec67f1aad8f4c8667986 +Author: Phan Huy Tran +Date: Wed May 7 14:25:25 2025 +0200 + + refactor: loop through result matrix + +commit 864cb28aac039f2145e32859ae17d8486e7ec834 +Author: Phan Huy Tran +Date: Wed May 7 14:19:44 2025 +0200 + + style: fix prettier + +commit 3f00a5b359378e912d1ed65cb89045f9e4500cdf +Author: Phan Huy Tran +Date: Wed May 7 14:00:39 2025 +0200 + + style: fix linter issues + +commit efc2a8ecec77a7d1d6208d7acb8942341225e3d6 +Author: Phan Huy Tran +Date: Wed May 7 13:58:56 2025 +0200 + + style: run prettier + +commit bc56b498ee5d6d73467a12bcf6b61c0f68f60a2b +Author: Phan Huy Tran +Date: Wed May 7 13:56:25 2025 +0200 + + feat: add bare slots frontend, remove bun start warnings + +commit 7c2e3381c7893cf25bd72375c3fd9ee1a78a71dc (tag: v1.43.0) +Merge: 8fa7a98 f813512 +Author: Phan Huy Tran +Date: Wed May 7 12:25:57 2025 +0000 + + Merge pull request 'feat: add blank status' (!165) from slots-blank into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/165 + Reviewed-by: Constantin Simonis + +commit f81351243629f2ffb6f75a0087d1056c298a82a1 (slots-blank) +Author: Phan Huy Tran +Date: Wed May 7 14:17:57 2025 +0200 + + feat: add blank status + +commit cf79298b04e04793f89971a8ea9e8184980a20fc +Author: Phan Huy Tran +Date: Wed May 7 14:17:41 2025 +0200 + + feat: add blank status + +commit 8fa7a9830c584b6c41dada1994895391dcea16c6 (tag: v1.42.3) +Merge: 56f1f32 74138a0 +Author: Jan K9f +Date: Wed May 7 11:27:33 2025 +0000 + + Merge pull request 'chore(deps): update dependency typescript-eslint to v8.32.0' (!160) from renovate/devdependencies-(non-major) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/160 + Reviewed-by: Jan K9f + +commit 56f1f325f2e2e499b10f44bd872a436e4809e46c (tag: v1.42.2) +Merge: de92aca 99942b5 +Author: Phan Huy Tran +Date: Wed May 7 11:22:37 2025 +0000 + + Merge pull request 'refactor: remove useless field' (!162) from idk into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/162 + Reviewed-by: Jan K9f + +commit 99942b59027d89688dbb15901ccb685c0d4ccd1a +Merge: adf0b27 de92aca +Author: Phan Huy Tran +Date: Wed May 7 11:20:28 2025 +0000 + + Merge branch 'main' into idk + +commit adf0b27d276ea09014643b26383202e3e9510477 (idk) +Author: Phan Huy Tran +Date: Wed May 7 13:20:18 2025 +0200 + + refactor: remove useless field + +commit de92acab3524f3ddb35dbf7a2746abc5b2dfa9e0 (tag: v1.42.1) +Merge: a80ed2f 4e39a66 +Author: Jan K9f +Date: Wed May 7 11:14:17 2025 +0000 + + Merge pull request 'revert: lootbox fixtures' (!161) from idk into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/161 + Reviewed-by: Jan K9f + +commit 4e39a6691f02ee96010d72429a9b4c49cfe73a40 +Author: Phan Huy Tran +Date: Wed May 7 13:09:19 2025 +0200 + + revert: lootbox fixtures + +commit 74138a0bc66f8f1cc0b82ea53ae02a15adef6bae +Author: Renovate Bot +Date: Mon May 5 18:01:58 2025 +0000 + + chore(deps): update dependency typescript-eslint to v8.32.0 + +commit a80ed2f37efe08277986707abc5331202e506ca0 (tag: v1.42.0) +Merge: 5918552 4704f5c +Author: Jan K9f +Date: Mon May 5 07:15:18 2025 +0000 + + Merge pull request 'fix(deps): update dependencies (major and minor)' (!156) from renovate/dependencies-(major-and-minor) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/156 + Reviewed-by: Jan K9f + +commit 59185523890e5b832fbed73901ab5f1350f0d290 +Merge: 644d90e 0e09c97 +Author: Jan K9f +Date: Mon May 5 07:15:00 2025 +0000 + + Merge pull request 'chore(deps): update devdependencies (non-major)' (!155) from renovate/devdependencies-(non-major) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/155 + Reviewed-by: Jan K9f + +commit 0e09c975df34af9e47d560bfb32e3543f757f983 +Author: Renovate Bot +Date: Mon May 5 07:02:07 2025 +0000 + + chore(deps): update devdependencies (non-major) + +commit 4704f5c42e4c551c7684637be636090b945747d9 +Author: Renovate Bot +Date: Mon May 5 07:01:52 2025 +0000 + + fix(deps): update dependencies (major and minor) + +commit 644d90e1a67398daf88c83eda9972e50446f08fc +Merge: 60cda95 57e7a66 +Author: Jan K9f +Date: Mon May 5 06:28:48 2025 +0000 + + Merge pull request 'fix: update angular version in readme' (!158) from update-angular-version-in-readme into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/158 + +commit 57e7a664b09bdcb0ac134b46e2a8406bdd3cc616 +Author: jank +Date: Sun May 4 20:28:36 2025 +0200 + + fix: update angular version in readme + +commit 60cda9502d88ac8ba4f5e866673b25f15c236fce +Merge: 93d002e 70cb067 +Author: Constantin Simonis +Date: Fri May 2 08:08:32 2025 +0000 + + Merge pull request 'feat(docker): remove random docker bullshit move compose.yml' (!157) from remove-docker-shit into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/157 + +commit 70cb067d352abe4e5d56b0e3986c736b03331e19 +Author: csimonis +Date: Fri May 2 09:57:12 2025 +0200 + + feat(docker): add Docker Compose for PostgreSQL service + +commit 93d002e1e6fcc08d8423ad0979bb04b64d355380 (tag: v1.41.0) +Merge: aa8821b cdb18c7 +Author: Jan K9f +Date: Fri Apr 25 18:21:25 2025 +0000 + + Merge pull request 'chore(deps): update dependency gradle to v8.14' (!153) from renovate/all-minor-patch into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/153 + Reviewed-by: Jan K9f + +commit cdb18c7e225e84107b4171457b9b4e4ed9f6f620 +Author: Renovate Bot +Date: Fri Apr 25 18:19:18 2025 +0000 + + chore(deps): update dependency gradle to v8.14 + +commit aa8821bdc237e94c673341ed595dca12a2203507 +Merge: 3770752 85bf7b5 +Author: Jan K9f +Date: Fri Apr 25 18:16:47 2025 +0000 + + Merge pull request 'feat(ci): add Docker validation jobs for frontend and backend' (!154) from update-pipelines into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/154 + +commit 85bf7b571d2692f162d6a70cd95a6642faf8a8c6 +Author: Jan K9f +Date: Fri Apr 25 20:12:36 2025 +0200 + + feat(ci): add Docker validation jobs for frontend and backend + +commit 3770752ab42e9cada470a97c93265d132d88cff3 (tag: v1.40.0) +Merge: 96dcb84 7b94fd5 +Author: Constantin Simonis +Date: Fri Apr 25 07:16:18 2025 +0000 + + Merge pull request 'chore(frontend): update project name and improve linting command' (!152) from add-oxlint-and-rename into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/152 + Reviewed-by: Constantin Simonis + +commit 7b94fd56bc37e30ef8f4645332c125768aef8250 +Author: Jan K9f +Date: Fri Apr 25 09:14:04 2025 +0200 + + feat(ci): add oxlint job to CI workflow + + - Introduced oxlint job to the CI workflow for enhanced linting checks. + - Updated ci.yml to include a new job `oxlint` that runs on frontend changes. + - Adjusted package.json scripts to separate oxlint from the general lint task. + +commit f3adf78b50bce33f803a0f4b4f41c6147cad6271 +Author: Jan K9f +Date: Fri Apr 25 08:28:06 2025 +0200 + + chore(frontend): update project name and improve linting command + +commit 96dcb843b6b8f86c68f52c79e5ae7f6904c52618 (tag: v1.39.3) +Merge: 500a80a 4d48c9b +Author: Jan K9f +Date: Thu Apr 24 18:06:59 2025 +0000 + + Merge pull request 'fix(deps): update dependencies (major and minor) to v3.4.5' (!151) from renovate/dependencies-(major-and-minor) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/151 + Reviewed-by: Jan K9f + +commit 500a80a12d4494469aad5739e24f7e0f205ba20f +Merge: e985a21 24081ba +Author: Jan K9f +Date: Thu Apr 24 18:06:42 2025 +0000 + + Merge pull request 'chore(deps): update plugin org.springframework.boot to v3.4.5' (!150) from renovate/all-minor-patch into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/150 + Reviewed-by: Jan K9f + +commit 4d48c9bfe5de5a7489dabd5e0f916432a8a021d8 +Author: Renovate Bot +Date: Thu Apr 24 17:48:10 2025 +0000 + + fix(deps): update dependencies (major and minor) to v3.4.5 + +commit 24081ba366fba9fb04e9f3a55b63fd67196f001d +Author: Renovate Bot +Date: Thu Apr 24 17:48:07 2025 +0000 + + chore(deps): update plugin org.springframework.boot to v3.4.5 + +commit e985a21e050670cf6c9f4908db2d914eb1acb54f (tag: v1.39.2) +Merge: eb7d28e 52dcb78 +Author: Constantin Simonis +Date: Thu Apr 24 17:45:45 2025 +0000 + + Merge pull request 'chore: update favicon and change page title to Casino' (!149) from feat/icon-title into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/149 + +commit 52dcb7897dedd7d3cf43a962529afc013ab07158 +Merge: 4bc56eb eb7d28e +Author: Constantin Simonis +Date: Thu Apr 24 14:25:00 2025 +0000 + + Merge branch 'main' into feat/icon-title + +commit 4bc56eb02f343783fa51d932a65d1004dbc42754 +Merge: c2d71d7 ae1015c +Author: Constantin Simonis +Date: Thu Apr 24 14:24:34 2025 +0000 + + Merge branch 'test' into feat/icon-title + +commit c2d71d7c5750e9ccb6a59b7e6572b563f19f5967 +Author: csimonis +Date: Thu Apr 24 16:24:22 2025 +0200 + + chore: increase icon size + +commit eb7d28e290bba9bff895f7e792c632c936699919 (tag: v1.39.1) +Merge: d2038ee f71f38d +Author: Constantin Simonis +Date: Thu Apr 24 13:56:32 2025 +0000 + + Merge pull request 'refactor: define symbol counts to symbol enum instead of slot service' (!148) from refactor-symbol into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/148 + Reviewed-by: Constantin Simonis + +commit 8713baef2679cd0307ea91e120d557cff2679bd0 +Author: csimonis +Date: Thu Apr 24 15:53:19 2025 +0200 + + chore: update favicon and change page title to Casino + +commit f71f38dfc2e4fb09056fa809a3c6061fd090b707 (refactor-symbol) +Author: Phan Huy Tran +Date: Thu Apr 24 15:50:50 2025 +0200 + + refactor: define symbol counts to symbol enum instead of slot service + +commit d2038ee160db4fc939691fdd70a62efb12e7e989 (tag: v1.39.0) +Merge: a22bfa4 6ab095e +Author: Phan Huy Tran +Date: Thu Apr 24 13:47:37 2025 +0000 + + Merge pull request 'feat: add info route (CAS-59)' (!147) from feat-CAS-59-slotinfo into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/147 + Reviewed-by: Constantin Simonis + +commit 6ab095e6dbf4e1b6f96eb135fa50cc48281fe0cf (feat-CAS-59-slotinfo) +Author: Phan Huy Tran +Date: Thu Apr 24 15:42:29 2025 +0200 + + chore: bruh + +commit 56ba9f783c9cbf5f7c929669f6f70d78cfc520d7 +Author: Phan Huy Tran +Date: Thu Apr 24 15:40:39 2025 +0200 + + feat: add info route + +commit a22bfa4a60c7aaceabcacedd14ae02f82c2d6090 (tag: v1.38.0) +Merge: 2ff25f9 237005a +Author: Constantin Simonis +Date: Thu Apr 24 13:13:28 2025 +0000 + + Merge pull request 'feat(security): add frontend host configuration property' (!146) from bugfix/backend-cors into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/146 + +commit 237005a7bdd46a0fa8d3431b162d17112ea635c4 +Author: csimonis +Date: Thu Apr 24 15:11:54 2025 +0200 + + feat(security): add frontend host configuration property + +commit 2ff25f98978097a6d03b573e63094e5e68164dd2 (tag: v1.37.0) +Merge: dd4f754 a22c127 +Author: Phan Huy Tran +Date: Thu Apr 24 12:51:19 2025 +0000 + + Merge pull request 'refactor: throw and handle unsufficient funds exception' (!144) from refactor-unsufficient-funds into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/144 + Reviewed-by: Constantin Simonis + +commit dd4f754e7e71e5f9941987f867e8635d927c4f15 +Merge: b9e48b8 454aa47 +Author: Constantin Simonis +Date: Thu Apr 24 12:50:52 2025 +0000 + + Merge pull request 'feat(docker): wait for backend host to resolve before start' (!145) from bugfix/frontend into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/145 + +commit 454aa47153b98eb6f8503d62e635b054689e77c5 +Merge: 9a90115 b9e48b8 +Author: Constantin Simonis +Date: Thu Apr 24 12:49:58 2025 +0000 + + Merge branch 'main' into bugfix/frontend + +commit 9a901154b6ee8f27a12e8cd51be50244ac0dea18 +Author: csimonis +Date: Thu Apr 24 14:48:40 2025 +0200 + + feat(docker): wait for backend host to resolve before start + +commit a22c1275005760ff826d4e8562aab32b4924fe4d (refactor-unsufficient-funds) +Author: Phan Huy Tran +Date: Thu Apr 24 14:48:30 2025 +0200 + + refactor: throw and handle unsufficient funds exception + +commit b9e48b8ada2e5d0ea83bb24146e1d14bbc80d300 (tag: v1.36.1) +Merge: 69b0289 ad5228c +Author: Phan Huy Tran +Date: Thu Apr 24 12:38:07 2025 +0000 + + Merge pull request 'refactor: throw and handle user not found exceptions' (!143) from refactor-user-not-found into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/143 + Reviewed-by: Jan K9f + +commit ad5228ce274d4248204308b0e9d0f93f3238b5d4 +Merge: 1f42561 69b0289 +Author: Phan Huy Tran +Date: Thu Apr 24 12:34:57 2025 +0000 + + Merge branch 'main' into refactor-user-not-found + +commit 1f4256124f76a0da74a5a796569d0de7787e8077 +Author: Phan Huy Tran +Date: Thu Apr 24 14:33:38 2025 +0200 + + refactor: throw and handle user not found exceptions + +commit 69b0289ce449b5817012b1d4fd0bfe0aff47be05 (tag: v1.36.0) +Merge: 676473c 27473ef +Author: Constantin Simonis +Date: Thu Apr 24 12:29:36 2025 +0000 + + Merge pull request 'feat(deployment): add deployment for frontend' (!142) from feat/deployment into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/142 + +commit 27473ef5b50d8aeb6407fd33a77b184b36281f2c +Author: csimonis +Date: Thu Apr 24 14:28:19 2025 +0200 + + ci: update job name in release workflow configuration + +commit 40e1ae5f87e610975a1cff1c2b838b9e85ca437d +Author: csimonis +Date: Thu Apr 24 14:25:10 2025 +0200 + + chore(workflow): rename build-image and add frontend build + +commit 36237874f74a704653a91a76e213c8d2ec471187 +Author: csimonis +Date: Thu Apr 24 14:23:17 2025 +0200 + + feat(docker): add Docker configuration for frontend app + +commit 676473cfade3793e0ce421fcb06d0b60d59941f7 (tag: v1.35.0) +Merge: ef069d7 d2560c6 +Author: Jan K9f +Date: Thu Apr 24 10:42:28 2025 +0000 + + Merge pull request 'fix: improve docker pushing with version' (!141) from improve-docker-a-bit into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/141 + Reviewed-by: Constantin Simonis + +commit d2560c60493c06dd8270b7036b7168a06894aaf1 +Author: Jan K9f +Date: Thu Apr 24 12:24:27 2025 +0200 + + chore: remove deploy workflow configuration file + +commit d9324ee7f03c3f6d7fd6ae3aae789a5330b5864b +Author: Jan K9f +Date: Thu Apr 24 12:23:31 2025 +0200 + + build(workflow): update Docker build and push actions + +commit 0f96b284db526e92a1bed8ada2ed073b2e4fd12c +Author: Jan K9f +Date: Thu Apr 24 12:19:55 2025 +0200 + + feat(ci): add build-image job to release workflow + +commit ef069d7d18de1a75e1a97a71bea173d20c352858 (tag: v1.34.0) +Merge: 934e60e f01f6f6 +Author: Phan Huy Tran +Date: Thu Apr 24 10:16:18 2025 +0000 + + Merge pull request 'feat: implement api route for slots (CAS-4 CAS-58)' (!140) from feature-slots into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/140 + Reviewed-by: Jan K9f + +commit f01f6f6477c456fb77350dfbf30191850d9e1618 +Author: Phan Huy Tran +Date: Thu Apr 24 12:14:02 2025 +0200 + + chore: rebase + +commit c93c386469b80465b6aacd92a3a59811a63f2902 +Author: Phan Huy Tran +Date: Thu Apr 24 12:09:52 2025 +0200 + + style: bruh + +commit 29732e63b95063fcfea5e5a36e13bb9010736bab +Author: Phan Huy Tran +Date: Thu Apr 24 12:06:55 2025 +0200 + + refactor: balance in favor of the house + +commit a26aeab86ab417f002699a8195f19daac7809bcf +Author: Phan Huy Tran +Date: Thu Apr 24 12:04:26 2025 +0200 + + feat: refactor and balance winnings + +commit 7a0dd0593b3f0629c82171ab8a09ebab9c30c713 +Author: Phan Huy Tran +Date: Thu Apr 24 11:00:32 2025 +0200 + + feat: implement slots api route + +commit 934e60e80d072aeaa2e6f55a96a2309078d5e93b (tag: v1.33.0) +Merge: b07a3a9 41124af +Author: Constantin Simonis +Date: Thu Apr 24 10:14:27 2025 +0000 + + Merge pull request 'feat(ci): add deployment workflow for backend' (!139) from feat/deployment into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/139 + Reviewed-by: Jan K9f + +commit 41124af20e1ddaffd41e0f24c7c2378e2e59c4dd +Author: csimonis +Date: Thu Apr 24 12:11:06 2025 +0200 + + ci: update deployment workflow for main branch + +commit af005ce01939c458379bccb93750a42643dc3bd0 +Author: csimonis +Date: Thu Apr 24 12:10:19 2025 +0200 + + ci: update login action to use secrets for credentials + +commit 3b2ce7e772ed1046d83f2cb51f8f9080265b6b30 +Author: csimonis +Date: Thu Apr 24 12:08:04 2025 +0200 + + chore: test + +commit 44b68528e3ff483751bd66760360eaf9bd867912 +Author: csimonis +Date: Wed Apr 23 14:38:30 2025 +0200 + + ci: fix casing in deploy workflow for image tags + +commit 1c58db60d3376d2d20ef7dc161e6ab153da63b02 +Author: csimonis +Date: Wed Apr 23 14:37:58 2025 +0200 + + style(deploy.yml): fix indentation in deploy workflow steps + +commit 25b7e90517f7d900675777b9491dbf90f0cf2ce9 +Author: csimonis +Date: Wed Apr 23 14:33:11 2025 +0200 + + build: update Dockerfile path in deploy workflow + +commit 4f377e1e87fc354afd784e44ef90109b09eb5a0e +Author: csimonis +Date: Wed Apr 23 14:27:47 2025 +0200 + + feat(ci): add deployment workflow and update Dockerfile + +commit b07a3a935a26ec5726247e2047ba686dba4da83f (tag: v1.32.1) +Merge: a677b1f 0cc8ff5 +Author: Constantin Simonis +Date: Wed Apr 23 11:44:22 2025 +0000 + + Merge pull request 'refactor: remove unused imports and clean up code' (!138) from refactor/imports into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/138 + Reviewed-by: lziemke + +commit 0cc8ff50aa73f56ad09a64a0d847f0bac6bdb1e7 +Author: csimonis +Date: Wed Apr 23 13:43:12 2025 +0200 + + style: format import statements for readability + +commit 6f3f3791c3506796397cca5976a775d5d8ac6aca +Author: csimonis +Date: Wed Apr 23 13:39:55 2025 +0200 + + refactor: remove unused imports and clean up code + +commit 66e5d730dd7c0aeb045fab2a1c22cec6414659f9 +Author: csimonis +Date: Wed Apr 23 13:39:49 2025 +0200 + + refactor: reorganize import statements and clean up code + +commit a677b1fbdbaa3b944b760d6450e4ae40d7ec528c (tag: v1.32.0) +Merge: 5575955 070be95 +Author: Constantin Simonis +Date: Wed Apr 23 10:38:30 2025 +0000 + + Merge pull request 'feat: add transaction history to homepage (CAS-56)' (!137) from feature/transaction-history into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/137 + Reviewed-by: Phan Huy Tran + +commit 070be959288b11ac7a3097e4228d8c82fdee1275 +Author: csimonis +Date: Wed Apr 23 12:32:23 2025 +0200 + + style(transaction-history): Adjust heading and paragraph styles + +commit d46ec45f4acf47be7bb76a2fa6fde131c72a0e39 +Author: csimonis +Date: Wed Apr 23 12:30:10 2025 +0200 + + style: format HTML and TypeScript files for consistency + +commit 0eaccb4453549a9dad0ffa9ba4b50b32d22d5d8d +Author: csimonis +Date: Wed Apr 23 12:27:38 2025 +0200 + + style(transaction-history): adjust button icon size and spacing + +commit 35184807c02f7e95c77e05966ad8806aa3bb76e3 +Author: csimonis +Date: Wed Apr 23 12:26:41 2025 +0200 + + feat(transactions): add pagination support for user transactions + +commit 157e774e8602d8e24b3ec002ca6bfa9ef6eabf03 +Author: csimonis +Date: Wed Apr 23 11:54:30 2025 +0200 + + feat(transaction-history): add disabled state styling for buttons + +commit 03d67ef362d75056482e88c97fd8c2e86d428e68 +Author: csimonis +Date: Wed Apr 23 11:37:11 2025 +0200 + + feat: add pagination support for user transactions retrieval + +commit 9817fb95db48a78d3e3442e9f67b47ece2e5c9e1 +Author: csimonis +Date: Wed Apr 23 11:02:49 2025 +0200 + + feat(transaction-history): add transaction history feature with modal + +commit d6077645d98e5a3204515ec9895d94990dfa8f1c +Author: csimonis +Date: Wed Apr 23 10:29:51 2025 +0200 + + feat(transaction): add transaction retrieval and DTO mapping + +commit 5575955440ef810fef97d8973a82a2fa67ab6fc0 (tag: v1.31.0) +Merge: 5a207dd 389018a +Author: Jan K9f +Date: Wed Apr 23 09:12:10 2025 +0000 + + Merge pull request 'feat: add create and delete routes for lootboxes, remove initial creation of lootboxes' (!136) from feature-lootbox-handling into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/136 + Reviewed-by: Jan K9f + +commit 389018af85360f72b1392720d8d7945ed8b80ecf +Author: Phan Huy Tran +Date: Wed Apr 23 11:09:14 2025 +0200 + + feat: add create and delete routes for lootboxes, remove initial creation of lootboxes + +commit 5a207dd5d3efc6c0982e853caa58c8d46bd7710f (tag: v1.30.3) +Merge: 2f02278 db43b69 +Author: Phan Huy Tran +Date: Wed Apr 23 08:22:26 2025 +0000 + + Merge pull request 'chore: update images' (!134) from update-some-images into main + + Reviewed-on: https://git.kballsjan.de/SZUT/casino/pulls/134 + Reviewed-by: Constantin Simonis + +commit 2f022784a52e0e2c857b9359938c121d5fe375d1 (tag: v1.30.2) +Merge: 7244bab cf9a5c6 +Author: Jan K9f +Date: Wed Apr 23 08:21:13 2025 +0000 + + Merge pull request 'chore: delete sadly deceased http requests' (!135) from chore-remove-http-requests into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/135 + Reviewed-by: Jan K9f + +commit cf9a5c6dbe97677038e49e3a9876683d0e0e831c +Author: Phan Huy Tran +Date: Wed Apr 23 10:20:07 2025 +0200 + + chore: delete sadly deceased http requests + +commit db43b69e2a2ca1f14a5022081c2cdfdd651478e0 +Author: Jan K9f +Date: Wed Apr 23 10:18:51 2025 +0200 + + chore: update image assets for frontend + +commit e19de2d57b7dbf0606e887726f2b305de7b1f08c +Author: Jan K9f +Date: Wed Apr 23 10:04:26 2025 +0200 + + chore: update poker.webp asset file + +commit 7244bab007d2588d459e7ff3b714870a58b142d1 (tag: v1.30.1) +Merge: a6bf4f3 c78abe5 +Author: Jan K9f +Date: Wed Apr 23 07:55:12 2025 +0000 + + Merge pull request 'chore(deps): update dependency typescript-eslint to v8.31.0' (!127) from renovate/devdependencies-(non-major) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/127 + Reviewed-by: Jan K9f + +commit c78abe5bab4c0efd45776c132183086be8f70130 +Author: Renovate Bot +Date: Wed Apr 23 07:53:44 2025 +0000 + + chore(deps): update dependency typescript-eslint to v8.31.0 + +commit a6bf4f3f73bd18e53e13414c84c3b801b34e9b40 (tag: v1.30.0) +Merge: eda1fc8 ed2d512 +Author: Jan K9f +Date: Wed Apr 23 07:45:59 2025 +0000 + + Merge pull request 'fix: fix release pipeline' (!133) from fix-pipeline2 into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/133 + Reviewed-by: Phan Huy Tran + +commit ed2d512cb0ef020f5eb128d7132ae1ea98c00b7f +Author: Jan K9f +Date: Wed Apr 23 09:43:45 2025 +0200 + + ci: remove eslint installation from CI workflow + +commit 465967ce73898808f25af0a1b45437f715cb46bc +Author: Jan K9f +Date: Wed Apr 23 09:41:36 2025 +0200 + + chore: update eslint version and remove package.json + +commit 1bd0de1737dd43a63c1b15efad211ba073789295 +Author: Jan K9f +Date: Wed Apr 23 09:37:24 2025 +0200 + + ci: add eslint installation to CI workflow + +commit ddb772e7fcc88f994edbf8fa236b7fa6048cd352 +Author: Jan K9f +Date: Wed Apr 23 09:34:30 2025 +0200 + + chore: update .gitignore and add package.json for eslint + +commit f6dd50dc44d776c1be93750fc23db774aab04f20 +Merge: 17bc204 eda1fc8 +Author: Jan K9f +Date: Wed Apr 23 07:16:50 2025 +0000 + + Merge branch 'main' into fix-pipeline2 + +commit eda1fc84173608d58bd5f60203b902c87c7aa6be +Merge: 1fe3148 94ca93e +Author: Phan Huy Tran +Date: Wed Apr 23 07:16:24 2025 +0000 + + Merge pull request 'refactor: replace switch statement with if statement' (!132) from refactor-webhook into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/132 + Reviewed-by: Constantin Simonis + +commit 17bc2040292ad5c15a258cb76b64ddd6e16229fa +Author: Jan K9f +Date: Wed Apr 23 09:15:15 2025 +0200 + + style(workflow): standardize quotes and formatting in YAML + +commit 94ca93e5103f9c08167f15c767f4ee822ddd92e9 +Author: Phan Huy Tran +Date: Wed Apr 23 09:14:19 2025 +0200 + + refactor: replace switch statement with ugly a if statement (no go idiomatic btw) + +commit 1fe314801924ca72b41b004b5391e58f9191ee87 +Merge: 0291450 93dc3f9 +Author: Phan Huy Tran +Date: Wed Apr 23 07:07:12 2025 +0000 + + Merge pull request 'fix: avoid serialization error, remove debug statement' (!131) from fix-stripe into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/131 + Reviewed-by: Jan K9f + +commit 93dc3f9f10eb8d391c433602153da4a0df500753 +Author: Phan Huy Tran +Date: Wed Apr 23 09:05:44 2025 +0200 + + fix: avoid serialization error, remove debug statement + +commit 0291450eb9b2c64a1a231db5de9865fbb4d7f0b8 +Merge: 2aaf794 0b6bf37 +Author: Jan-Marlon Leibl +Date: Wed Apr 23 06:59:50 2025 +0000 + + Merge pull request 'feat(security): allow access to webhook endpoint' (!128) from bugfix/deposit into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/128 + Reviewed-by: Jan K9f + Reviewed-by: Phan Huy Tran + Reviewed-by: Jan-Marlon Leibl + +commit 0b6bf37921e3caa9d7e972011e1f9d8e08252cb2 +Merge: aa78ccc 2aaf794 +Author: Jan K9f +Date: Wed Apr 23 06:59:00 2025 +0000 + + Merge branch 'main' into bugfix/deposit + +commit 2aaf79410d615feb91b69583a53ccd1b3ae6ff5f +Merge: 9ec6d8f 24d2a93 +Author: Jan-Marlon Leibl +Date: Wed Apr 23 06:58:54 2025 +0000 + + Merge pull request 'ci: add ubuntu-latest to workflow jobs configuration' (!130) from fix-pipelines into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/130 + +commit 24d2a93c7f973d53dad1297d9c58c5077691370a +Author: Jan K9f +Date: Wed Apr 23 08:52:55 2025 +0200 + + ci: add ubuntu-latest to workflow jobs configuration + +commit aa78ccc630ef258ed59ac30de349e675a9175796 +Author: csimonis +Date: Wed Apr 23 08:42:27 2025 +0200 + + feat(security): allow access to webhook endpoint + +commit 9ec6d8f4133f101c4a1b55a4a4863eb12697d5ca (tag: v1.29.1) +Merge: b803055 f680a88 +Author: Jan K9f +Date: Mon Apr 7 20:25:36 2025 +0000 + + Merge pull request 'chore(deps): update dependency typescript-eslint to v8.29.1' (!126) from renovate/devdependencies-(non-major) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/126 + Reviewed-by: Jan K9f + +commit f680a8829ce42221ec1b2dfa9774908b1e6e67a8 +Author: Renovate Bot +Date: Mon Apr 7 18:02:33 2025 +0000 + + chore(deps): update dependency typescript-eslint to v8.29.1 + +commit ae1015c9016c717e09b10a0710b2f94de4b24862 +Author: Jan Klattenhoff +Date: Mon Apr 7 19:28:48 2025 +0200 + + chore: remove unused file a + +commit 73a6f3bd0b9c0ccac0b8491ea5f93db3c90f8c1a +Author: Jan Klattenhoff +Date: Mon Apr 7 19:28:20 2025 +0200 + + test: test + +commit b803055307fa8f6aae705e4e953b7182bf2d36a5 (tag: v1.29.0) +Merge: 87c822d c942b4b +Author: Jan K9f +Date: Fri Apr 4 13:26:02 2025 +0000 + + Merge pull request 'feat: add authentik for authentication' (!58) from feature/authentik into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/58 + Reviewed-by: Phan Huy Tran + +commit c942b4bb39cd374bcd305d73d69c18898233d148 +Author: Jan K9f +Date: Thu Apr 3 12:02:59 2025 +0200 + + style: remove unnecessary blank line in config file + +commit c765ef87e3c989a52a5edf81dbaddcd7f7d7f822 +Author: Jan K9f +Date: Thu Apr 3 11:58:58 2025 +0200 + + refactor: remove unused storage factory code and comments + +commit 02453449cd81b1bf0c93b0254f29e3c07e8d58d9 +Author: Jan K9f +Date: Thu Apr 3 11:51:55 2025 +0200 + + refactor(user): clean up comments and rename variables + +commit 25c68e230d58328066cfc6b573d2ab27020ec56c +Merge: 64f701c 87c822d +Author: Jan K9f +Date: Thu Apr 3 11:44:49 2025 +0200 + + Merge branch 'main' into feature/authentik + +commit 87c822dbd75bf36b57f8400dbc99fae68a239e70 (tag: v1.28.0) +Merge: a2f1a40 b5a6582 +Author: Jan-Marlon Leibl +Date: Thu Apr 3 08:07:07 2025 +0000 + + Merge pull request 'feat(blackjack): add animated number component and usage' (!123) from task/CAS-50/add_rest_blackjack_logic_with_frontend_animations into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/123 + Reviewed-by: Jan K9f + +commit b5a65829057345648fab6a99148dcde48bd7c8e4 +Author: Jan-Marlon Leibl +Date: Thu Apr 3 10:05:31 2025 +0200 + + style(blackjack): format code and adjust whitespace + +commit 28f7b15d4cef755fb41a92512f2efe25dab59942 +Author: Jan-Marlon Leibl +Date: Thu Apr 3 10:03:37 2025 +0200 + + refactor: remove unnecessary comments and variables + +commit 4b70a4ac4a84e3f9ceab8ffffb2fbbd59014038b +Author: Jan-Marlon Leibl +Date: Thu Apr 3 10:02:15 2025 +0200 + + feat(blackjack): add animated number component and usage + +commit 64f701c6511154f0305ef3d172a0b4af18a1d775 +Author: Jan Klattenhoff +Date: Wed Apr 2 16:36:26 2025 +0200 + + refactor(login-success): remove unnecessary blank line + +commit 0e1946d190f8488370c4eb645fec6f5cfa20f860 +Author: Jan Klattenhoff +Date: Wed Apr 2 16:33:28 2025 +0200 + + refactor(auth): clean up login and logout logic + +commit 9de08ab233735035d4557bd908904c72501bfdda +Author: Jan Klattenhoff +Date: Wed Apr 2 16:27:35 2025 +0200 + + refactor: remove debug logs from auth components + +commit 2e76446328070b3502df961e32303dda2a4ab240 +Author: Jan Klattenhoff +Date: Wed Apr 2 16:24:40 2025 +0200 + + feat(auth): improve logout functionality and token management + +commit 47f4a4d5581585ec0c3cc52457707374ba34c96e +Author: Jan Klattenhoff +Date: Wed Apr 2 16:21:56 2025 +0200 + + style(user.service.ts): format code for clarity and consistency + +commit e37dcecd3fef41bc9ea17ce7a793aa1376946154 +Author: Jan Klattenhoff +Date: Wed Apr 2 16:20:37 2025 +0200 + + refactor: update imports and type definitions in services + +commit d3b7e7d5e7e2e86eddf740cc64529dcefef07ec0 +Author: Jan Klattenhoff +Date: Wed Apr 2 16:15:31 2025 +0200 + + refactor: improve type annotations in services and config + +commit 617654caeb0cbac637875f953bb9e5f8f5fb2caa +Author: Jan Klattenhoff +Date: Wed Apr 2 16:11:53 2025 +0200 + + style: Fix formatting and spacing in multiple files + +commit fa09a8533f6ec5aa89c054e4c5e9627e482a7cbd +Author: Jan Klattenhoff +Date: Wed Apr 2 16:09:34 2025 +0200 + + refactor(deposit, user): rename Keycloak to Authentik user info + +commit d7fe0e3965e81082b3ab5f533102241f7d4f2b27 +Merge: 80d5c1e a2f1a40 +Author: Jan Klattenhoff +Date: Wed Apr 2 16:00:01 2025 +0200 + + Merge branch 'main' into feature/authentik + +commit 80d5c1e413f73fd6b3e8973765d904084d039897 +Merge: 7eebd12 8317349 +Author: Jan K9f +Date: Wed Apr 2 13:52:17 2025 +0000 + + Merge pull request 'refactor: rename keycloakId to authentikId in codebase' (!122) from fix-authentik into feature/authentik + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/122 + +commit 8317349507ddf569ace223080961a9546adb1507 +Author: Jan Klattenhoff +Date: Wed Apr 2 15:49:58 2025 +0200 + + refactor: rename keycloakId to authentikId in codebase + +commit a2f1a409311297c393713feb6afa5da292da4f1f (tag: v1.27.0) +Merge: eb5b94c 3d7ee92 +Author: Jan-Marlon Leibl +Date: Wed Apr 2 11:09:07 2025 +0000 + + Merge pull request 'task/CAS-50/add_rest_blackjack_logic_with_frontend_animations' (!121) from task/CAS-50/add_rest_blackjack_logic_with_frontend_animations into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/121 + +commit 7eebd12699cc590d4a85dffcd248bed693796f78 +Author: csimonis +Date: Wed Apr 2 13:07:10 2025 +0200 + + feat(login): log user info on successful login success page + +commit 3d7ee92cf25ca81e96363939d763c2f55c74db23 +Author: Jan-Marlon Leibl +Date: Wed Apr 2 13:07:01 2025 +0200 + + refactor(debt-dialog): update timerSubscription type to Subscription + +commit 7bec17dd52a5f9dbea43de0199f88cc20112a477 +Author: Jan-Marlon Leibl +Date: Wed Apr 2 13:04:22 2025 +0200 + + style: Format code for readability and consistency + +commit 775205b54c93f9031476e6366c8d270329085c74 +Author: Jan-Marlon Leibl +Date: Wed Apr 2 13:04:19 2025 +0200 + + style(blackjack): remove commented modal sections from HTML + +commit eb5b94c7bb77b0b1bc837a62bba9a6e59e65501e (tag: v1.26.1) +Merge: 823cb88 faa0a14 +Author: Jan K9f +Date: Wed Apr 2 11:03:59 2025 +0000 + + Merge pull request 'fix(deps): update dependency ajv-formats to v3' (!120) from renovate/major-dependencies-(major-and-minor) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/120 + Reviewed-by: Jan K9f + +commit 40c402ae36fce63ec3bf8285934bd5dc5689023e +Author: Jan-Marlon Leibl +Date: Wed Apr 2 13:03:04 2025 +0200 + + feat: add hand value display to dealer and player hands + +commit 801edfe89e31d9ec68489e7f52109e11d6a30f9e +Author: Jan-Marlon Leibl +Date: Wed Apr 2 12:58:12 2025 +0200 + + feat(blackjack): add balance display to game result component + +commit 68a226b67769cbddf526c5ab683313db379696cb +Author: Jan-Marlon Leibl +Date: Wed Apr 2 12:50:51 2025 +0200 + + feat(debt-dialog): add debt warning dialog for negative balance + +commit faa0a1495bce73ac53ea868bebd33e4dfa065a6b +Author: Renovate Bot +Date: Wed Apr 2 10:42:58 2025 +0000 + + fix(deps): update dependency ajv-formats to v3 + +commit 823cb88807ec5e6a03db2447816ddce9d70e079c (tag: v1.26.0) +Merge: 4c3f42d 0aa7ad1 +Author: Jan K9f +Date: Wed Apr 2 10:21:33 2025 +0000 + + Merge pull request 'Update the stripe api' (!119) from fix-renovate into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/119 + Reviewed-by: Phan Huy Tran + +commit 0aa7ad10316fdf9d39866f133a34a05a8e396709 +Author: Jan K9f +Date: Wed Apr 2 12:17:35 2025 +0200 + + style: Fix missing newline at end of files + +commit b1b8c939a60130a12ff3022ff425a1d8f3316e35 +Merge: 6182ff7 4c3f42d +Author: Jan K9f +Date: Wed Apr 2 12:15:23 2025 +0200 + + Merge branch 'main' into fix-renovate + +commit 6182ff717f38be256014c515a00b9efa8df65be4 +Author: Jan K9f +Date: Wed Apr 2 12:12:13 2025 +0200 + + feat(deposit): enhance payment session handling and error logging + +commit 4c3f42d3475338653d3c0719c2bead40b80d38ea (tag: v1.25.2) +Merge: ac6e3be ab80f5d +Author: Jan K9f +Date: Wed Apr 2 10:03:53 2025 +0000 + + Merge pull request 'fix(deps): update dependency ajv to v8.17.1' (!117) from renovate/dependencies-(major-and-minor) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/117 + Reviewed-by: Jan K9f + +commit 9981ebc9d1071102cd7a8d214eec6f476e6095f0 +Author: Renovate Bot +Date: Wed Apr 2 10:01:44 2025 +0000 + + fix(deps): update dependencies (major and minor) + +commit ab80f5d2851f9be62101aed018e7bec95e4b8009 +Author: Renovate Bot +Date: Wed Apr 2 10:01:37 2025 +0000 + + fix(deps): update dependency ajv to v8.17.1 + +commit ac6e3be52cbc506b167161a02d53702397a3a5f6 (tag: v1.25.1) +Merge: 5d15f40 3c64b9e +Author: Jan K9f +Date: Wed Apr 2 10:00:20 2025 +0000 + + Merge pull request 'Add all the renovate changes' (!115) from renovate-test into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/115 + +commit 3c64b9ec8b6d80fe549deeb863575ffa1f5a8065 +Author: Jan K9f +Date: Wed Apr 2 11:54:06 2025 +0200 + + build: update stripe-java dependency version to 20.136.0 + +commit 6b3a8a41fdeb3367ab3626809b5c9bd33a542b8f +Author: Jan K9f +Date: Wed Apr 2 11:45:35 2025 +0200 + + ci: remove debug job from CI workflow + +commit 06318a8b57c44313998751f8dadf70f465fca1af +Author: Jan K9f +Date: Wed Apr 2 11:42:53 2025 +0200 + + build(frontend): update ajv and ajv-formats versions + +commit 5d15f40a30257f6a13485ab49d5af3771441e6aa (tag: v1.25.0) +Merge: ff98cab 4c83419 +Author: Jan-Marlon Leibl +Date: Wed Apr 2 09:41:18 2025 +0000 + + Merge pull request 'feat(blackjack): add split functionality to the game' (!116) from task/CAS-50/add_rest_blackjack_logic_with_frontend_animations into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/116 + Reviewed-by: Jan K9f + +commit 4c83419a31858250088fd0ae15ba4c117cddbaa8 +Merge: d22c4c2 ff98cab +Author: Jan-Marlon Leibl +Date: Wed Apr 2 09:38:43 2025 +0000 + + Merge branch 'main' into task/CAS-50/add_rest_blackjack_logic_with_frontend_animations + +commit d22c4c243f8a14a1f37373e8a12039b4a72645ef +Author: Jan-Marlon Leibl +Date: Wed Apr 2 11:38:14 2025 +0200 + + feat(game-info): add placeholder and disable bet input + +commit f60ce73e652103af0e447dddc6117f239b91d20d +Author: Jan K9f +Date: Wed Apr 2 11:36:55 2025 +0200 + + build(frontend): add ajv-formats dependency to package.json + +commit bd8226204962a9c53b8c933c0a8e54294ce2e19b +Author: Jan K9f +Date: Wed Apr 2 11:34:46 2025 +0200 + + ci: add debug step to CI workflow for better logging + +commit 6b4adfca0ad5684b2ffb848671fe9a3869ab224c +Author: Jan K9f +Date: Wed Apr 2 11:31:39 2025 +0200 + + build(frontend): update angular compiler version to 19.2.4 + +commit 1fc62af66d587e93bae4c0b92d90ebddc861f2de +Author: Jan K9f +Date: Wed Apr 2 11:31:08 2025 +0200 + + build(frontend): update rxjs version to ~7.8.2 + +commit e9c4d4fbed143afd4d980d3b83090355804b2e8f +Author: Jan-Marlon Leibl +Date: Wed Apr 2 11:29:16 2025 +0200 + + refactor(BlackJackService): simplify card dealing logic + +commit 1916c04f4a6380de134e469245770f3b0e921179 +Author: Jan K9f +Date: Wed Apr 2 11:28:01 2025 +0200 + + chore: update lint command in package.json + +commit 575a6651d6a01620f4ea60619c324f998121d403 +Author: Jan K9f +Date: Wed Apr 2 11:25:24 2025 +0200 + + build(frontend): update Angular CLI version in package.json + +commit 3ef5530e77fd046affdb36110dfca7585ae8c614 +Author: Jan-Marlon Leibl +Date: Wed Apr 2 11:25:03 2025 +0200 + + feat(blackjack): add split functionality to the game + +commit 942a47c1b281c4e1064079059f22d8230c5e48d2 +Author: Jan K9f +Date: Wed Apr 2 11:20:36 2025 +0200 + + build(frontend): update Angular dependencies to v19.0.0 + +commit ff98cab6ac0e3659253f269740ed393e84c6d154 (tag: v1.24.0) +Merge: 626e28a ec99461 +Author: Phan Huy Tran +Date: Wed Apr 2 09:18:54 2025 +0000 + + Merge pull request 'feat: Create api routes for lootboxes (CAS-43)' (!110) from feat/lootboxes into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/110 + Reviewed-by: Jan K9f + Reviewed-by: lziemke + +commit c64fccb236b8c6bdbd63dbdbe3c25ccf37fdd4de +Merge: 2105007 38f4617 +Author: Jan K9f +Date: Wed Apr 2 09:17:38 2025 +0000 + + Merge pull request 'chore(deps): update devdependencies (non-major)' (!114) from renovate/devdependencies-(non-major) into renovate-test + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/114 + +commit 210500783fc7ce4c21f3d3941779b7f595febf7b +Merge: 626e28a aa613a9 +Author: Jan K9f +Date: Wed Apr 2 09:16:18 2025 +0000 + + Merge pull request 'fix(deps): update dependencies (major and minor)' (!113) from renovate/major-dependencies-(major-and-minor) into renovate-test + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/113 + +commit ec994616eeaed946e39f7f7b105df31f66e35764 +Merge: 948240b 626e28a +Author: Phan Huy Tran +Date: Wed Apr 2 09:15:31 2025 +0000 + + Merge branch 'main' into feat/lootboxes + +commit 948240ba1e61d404adad56b4ed6ac96869ea7c23 +Author: Phan Huy Tran +Date: Wed Apr 2 11:15:08 2025 +0200 + + fix: fix wrong reward getting returned, refactor to service + +commit b963595ab4ab0170b5f4e0233d5c3ce9183d19b1 +Author: Phan Huy Tran +Date: Wed Apr 2 11:04:20 2025 +0200 + + feat: manage balance + +commit aa613a95e3f6d90835ba08b27c87d35a1524268b +Author: Renovate Bot +Date: Wed Apr 2 09:02:01 2025 +0000 + + fix(deps): update dependencies (major and minor) + +commit 38f4617fb05f2bc8acf19e0ec030834bac2cafa5 +Author: Renovate Bot +Date: Wed Apr 2 09:01:53 2025 +0000 + + chore(deps): update devdependencies (non-major) + +commit 626e28ab653d0e8408e2ea55e25b42cc7ec48d5f (tag: v1.23.0) +Merge: 4e8530c 4a7c54e +Author: Jan-Marlon Leibl +Date: Wed Apr 2 08:28:43 2025 +0000 + + Merge pull request 'feat: add stand and get game features to blackjack game with animations' (!105) from task/CAS-50/add_rest_blackjack_logic_with_frontend_animations into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/105 + Reviewed-by: Jan K9f + +commit 4a7c54eab86dbd7af11fd80d231bc597a3d664c2 +Author: Jan-Marlon Leibl +Date: Wed Apr 2 10:26:11 2025 +0200 + + style: format code for consistency and readability + +commit e983b21e076c5777642495a57debe3fc154259a4 +Author: Jan-Marlon Leibl +Date: Wed Apr 2 10:25:43 2025 +0200 + + feat(blackjack): refresh user balance on game state change + +commit 8a6bc95c920a197011d0ff488da178856f068bf2 +Author: Phan Huy Tran +Date: Wed Apr 2 10:18:51 2025 +0200 + + feat: add route to get all lootboxes + +commit 08b12d238e1b81b4d2de6e81759eeefb9499307f +Author: Jan-Marlon Leibl +Date: Wed Apr 2 10:14:19 2025 +0200 + + feat(blackjack): add PLAYER_WON state to BlackJackState + +commit d400986c34639fe9f2c1cdf1f617480078ac9b05 +Author: Jan-Marlon Leibl +Date: Wed Apr 2 09:51:59 2025 +0200 + + refactor(blackjack): update import paths for modules + +commit 5d803e4b8bd74df51d90def0833f35240df8af5d +Author: Jan K9f +Date: Wed Apr 2 09:25:28 2025 +0200 + + feat(landing): add NavbarComponent to landing page component + +commit 6508a233b2645f00070994ed029fd4cdcbc5acdb +Author: Jan K9f +Date: Wed Apr 2 09:23:26 2025 +0200 + + style(game-controls): fix formatting in constructor method + +commit 889863aad6fcf844c842b8b4a9d049fb7f251f58 +Author: Jan K9f +Date: Wed Apr 2 09:19:09 2025 +0200 + + refactor(game-controls): update import paths for consistency + +commit ba854be5dbb41988ca74fcba59c4f16c1e4e296e +Author: Jan K9f +Date: Wed Apr 2 09:17:46 2025 +0200 + + style: fix formatting in constructor definitions + +commit 1d9eec45465e59dfb18bf7b0b8160a4ce516c59f +Author: Jan K9f +Date: Wed Apr 2 09:16:31 2025 +0200 + + refactor(blackjack): update import paths for components + +commit 56c63d48f6442c4c2168ffeff6a77cb20971306c +Author: Jan K9f +Date: Wed Apr 2 09:07:27 2025 +0200 + + style(tsconfig): update path mappings to array syntax + +commit db3d2e7b82a0674320c0c0ed8a6fff56babdfadf +Author: Jan K9f +Date: Wed Apr 2 09:05:33 2025 +0200 + + style(tsconfig): fix path configuration formatting + +commit 2a11675fb656f9a50a8c3e158ad614a553b5aea2 +Author: Jan K9f +Date: Wed Apr 2 09:03:36 2025 +0200 + + style: format constructor style in components + +commit 2405c00f49b1e56eed42dc7c0bdfbcb5d92248e7 +Author: Jan K9f +Date: Wed Apr 2 09:02:14 2025 +0200 + + refactor: update imports to use absolute paths + +commit b4caf70ffe0b7977a8cd57dc51e2aa36a8e7a197 +Author: Jan K9f +Date: Wed Apr 2 08:57:00 2025 +0200 + + refactor: update import paths for better readability + +commit defe26d0c1c834412b005b6a6824d32064bd6ba0 +Author: Jan-Marlon Leibl +Date: Wed Apr 2 09:18:43 2025 +0200 + + refactor(blackjack): move GameState to feature folder + +commit 2d8b137e69750ec97e0fcf630da514b1a06dd155 +Author: Jan-Marlon Leibl +Date: Wed Apr 2 09:08:04 2025 +0200 + + style: format code and add missing newlines + +commit 4b569157aad637db320b4853c4e09f46c3f33684 +Author: Jan-Marlon Leibl +Date: Wed Apr 2 09:06:44 2025 +0200 + + feat: add game state enum and refactor game components + +commit 349e4ce1eca2060d1e9dd26984646aa63cadbe7d +Author: Jan-Marlon Leibl +Date: Thu Mar 27 15:50:34 2025 +0100 + + refactor(blackjack): remove unnecessary comments and clean code + +commit deac1289351f8c302a87157cf5f6eb9f27f1eb5e +Author: Jan-Marlon Leibl +Date: Thu Mar 27 15:47:16 2025 +0100 + + style(blackjack): format code for better readability + +commit acdbea5a994695dfc23a57260435662f6d2b3994 +Author: Jan-Marlon Leibl +Date: Thu Mar 27 15:44:38 2025 +0100 + + feat(blackjack): add action indicators and loading states + +commit d2b22b561dd2f737b5312eea4d9f1cd2bd2d09dd +Author: Jan-Marlon Leibl +Date: Thu Mar 27 15:40:26 2025 +0100 + + feat: add double down feature to blackjack game + +commit d90fcdcf1ebb9b007f8a65877663349e12a750df +Author: Jan-Marlon Leibl +Date: Thu Mar 27 15:22:24 2025 +0100 + + feat: add stand and get game features to blackjack game + +commit e4bcd9d7910300ef47fb5de37a763377ae542f78 +Author: Phan Huy Tran +Date: Wed Apr 2 10:08:23 2025 +0200 + + refactor: use many to many relation for lootboxes and rewards + +commit 084d478cd9e5b2387b0355c371635bdb9fb8cd80 +Author: Phan Huy Tran +Date: Wed Apr 2 09:18:17 2025 +0200 + + feat: create repositories + +commit 1878ed8fe41d5da8781cd3209eb2b0a405171f60 +Author: Phan Huy Tran +Date: Wed Apr 2 09:15:37 2025 +0200 + + feat: create lootbox and rewards entity + +commit 4e8530c861e13559718d68cb423d65bf7d0bc087 (tag: v1.22.1) +Merge: ed6071a cb6c155 +Author: Phan Huy Tran +Date: Thu Mar 27 17:25:00 2025 +0000 + + Merge pull request 'refactor: refactor state logic' (!106) from refactor/state-logic into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/106 + +commit cb6c1550b7d7fe9c76dd99da73f93ffb0f47d80f +Author: Phan Huy Tran +Date: Thu Mar 27 15:46:07 2025 +0100 + + refactor: refactor state logic + +commit ed6071a0bafe071657d6c070fee950c64c4ef937 (tag: v1.22.0) +Merge: 4fa7b63 ffd651d +Author: Phan Huy Tran +Date: Thu Mar 27 13:34:38 2025 +0000 + + Merge pull request 'feat: add balance when player wins with blackjack in first round' (!104) from feat/blackjack-win-on-start into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/104 + Reviewed-by: Jan K9f + +commit ffd651d74b1fd453933bd5dd86cf600496da9d25 +Author: Phan Huy Tran +Date: Thu Mar 27 14:18:03 2025 +0100 + + feat: add balance when player wins gets blackjack in first round + +commit 4fa7b63b0442a1656e901db52ada82512e785c6e (tag: v1.21.0) +Merge: 4b4de32 4764c12 +Author: Phan Huy Tran +Date: Thu Mar 27 13:07:37 2025 +0000 + + Merge pull request 'feat: validate game state on hit (CAS-51)' (!103) from feat/hit-state-validation into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/103 + Reviewed-by: Jan K9f + +commit 4b4de32e1d7aa12e9d0e93be3bd793cc0a273871 +Merge: d7690e6 e9a8267 +Author: Jan K9f +Date: Thu Mar 27 13:07:03 2025 +0000 + + Merge pull request 'feat(blackjack): add player lost state in game logic (CAS-51)' (!102) from update-state-on-hit into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/102 + Reviewed-by: Phan Huy Tran + +commit 4764c129090cd321369f24acf2b60476f54094d0 +Author: Phan Huy Tran +Date: Thu Mar 27 14:05:13 2025 +0100 + + feat: validate game state on hit + +commit e9a826720829e622f72259f99db1a5aaa6842669 +Author: Jan K9f +Date: Thu Mar 27 14:03:33 2025 +0100 + + feat(blackjack): add player lost state in game logic + +commit d7690e630e5ff636bd7ffc32644decb6cbc3c525 (tag: v1.20.1) +Merge: 8ec97d7 374175d +Author: Jan K9f +Date: Thu Mar 27 12:53:46 2025 +0000 + + Merge pull request 'chore(deps): update plugin org.springframework.boot to v3.4.4' (!84) from renovate/all-minor-patch into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/84 + Reviewed-by: Jan K9f + +commit 8ec97d7f2f7015b003daf0c133cd509e9d182028 +Merge: 36f2d80 aca389a +Author: Jan K9f +Date: Thu Mar 27 12:53:27 2025 +0000 + + Merge pull request 'fix(deps): update dependencies (major and minor)' (!85) from renovate/dependencies-(major-and-minor) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/85 + Reviewed-by: Jan K9f + +commit 36f2d80d5ce61f63269cadeb60ea0677af10ba5b (tag: v1.20.0) +Merge: 2b8d45f 7a7d24c +Author: Jan K9f +Date: Thu Mar 27 12:52:41 2025 +0000 + + Merge pull request 'feat(blackjack): add hit endpoint for blackjack game (CAS-51)' (!97) from add-hitting into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/97 + Reviewed-by: Phan Huy Tran + +commit 7a7d24c8ea87e218d6a0e59759fb88f7e8de60e6 +Author: Phan Huy Tran +Date: Thu Mar 27 13:50:17 2025 +0100 + + fix: fix playercards, dealercards and deck referencing the same database entity + +commit 2b8d45f6eca622d59858c0da59d0d152f02aab88 +Merge: deb5b65 bbb991a +Author: Jan K9f +Date: Thu Mar 27 12:02:02 2025 +0000 + + Merge pull request 'Update README.md' (!99) from jank-patch-1 into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/99 + +commit aca389a9b0c18b17995fb66f3d92e3a28b3477cf +Author: Renovate +Date: Thu Mar 27 12:01:53 2025 +0000 + + fix(deps): update dependencies (major and minor) + +commit bbb991a25b1bd642cdbb9e3fa96fed239a66aa97 +Author: jank +Date: Thu Mar 27 11:59:49 2025 +0000 + + Update README.md + +commit 500a76dd7ab110cdff7591df74f84e2a5d0626b7 +Author: Jan K9f +Date: Thu Mar 27 12:42:40 2025 +0100 + + player gets way to many cards and I dont know why pls help + +commit 59562e5b641fcdb31efd0a4db74c96f5d54a68a4 +Author: Jan K9f +Date: Thu Mar 27 12:30:01 2025 +0100 + + fix(BlackJackGameController): improve game existence check + +commit bd5539bb42d96bdc22b79d49e38d9762e32e0f7b +Author: Jan K9f +Date: Thu Mar 27 12:28:38 2025 +0100 + + feat(blackjack): implement hit action for blackjack game + +commit ed5960877d5e8db71acde4d5a5f51244cb4e8b69 +Author: Jan K9f +Date: Thu Mar 27 12:18:25 2025 +0100 + + feat(blackjack): add hit endpoint for blackjack game + +commit deb5b6525f96c934c25cd73424b1544e9be77b96 (tag: v1.19.0) +Merge: 4b23f3c 90abd13 +Author: Phan Huy Tran +Date: Thu Mar 27 11:49:37 2025 +0000 + + Merge pull request 'feat: Implement player winning state at startup' (!98) from feat/state-enum into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/98 + Reviewed-by: Jan K9f + +commit 90abd13a2c245569fdfbc118552e84c4272302fe +Author: Phan Huy Tran +Date: Thu Mar 27 12:45:52 2025 +0100 + + feat: handle player drawing blackjack at the start of the game + +commit caa210a80ecc269582eac764737789edf980225d +Author: Phan Huy Tran +Date: Thu Mar 27 12:08:57 2025 +0100 + + refactor: add blackjack state enum + +commit 4b23f3c67f6e5c1ccbe56748c93bf9391117a9d9 (tag: v1.18.0) +Merge: 4f6add0 55daca7 +Author: Phan Huy Tran +Date: Thu Mar 27 10:54:49 2025 +0000 + + Merge pull request 'feat: add deck to blackjack game instead of random cards' (!96) from feat/deck into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/96 + Reviewed-by: Jan K9f + +commit 4f6add087bd0f6bc34421e2cd68f33a1dc7db2b2 +Merge: cc92f23 71cda97 +Author: Phan Huy Tran +Date: Thu Mar 27 10:42:27 2025 +0000 + + Merge pull request 'docs: add optional watchexec command to README.md' (!95) from add-some-docs into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/95 + Reviewed-by: Phan Huy Tran + +commit 55daca72c054a6069c30d099910110f5b7307747 +Author: Phan Huy Tran +Date: Thu Mar 27 11:40:50 2025 +0100 + + feat: add deck to blackjack game instead of random cards + +commit 71cda97dab1143f30f5e23b8bdc20ee9cb996933 +Author: Jan K9f +Date: Thu Mar 27 10:47:46 2025 +0100 + + docs: add optional watchexec command to README.md + +commit cc92f234d7db881e591ca086a1abcc013c481e47 (tag: v1.17.0) +Merge: d0ba0eb 99f9f8d +Author: jleibl +Date: Wed Mar 26 14:39:15 2025 +0000 + + Merge pull request 'feat(blackjack): implement game start and controls functionality' (!94) from task/CAS-50/add_frontend_game_start into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/94 + +commit 99f9f8d3c3fdff213c6464aea714c2161298bc67 +Author: Jan-Marlon Leibl +Date: Wed Mar 26 15:30:55 2025 +0100 + + feat(blackjack): implement game start and controls functionality + +commit d0ba0eb71d71b2d176a698c53bf3034ae431e077 (tag: v1.16.0) +Merge: 3df8926 ca87c68 +Author: Phan Huy Tran +Date: Wed Mar 26 13:47:13 2025 +0000 + + Merge pull request 'feat: Implement starting a Blackjack game (CAS-50)' (!89) from feat/blackjack into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/89 + Reviewed-by: Jan K9f + +commit ca87c684b1abf83e6a714c1fd22a992ee05f6310 +Author: Phan Huy Tran +Date: Wed Mar 26 14:31:32 2025 +0100 + + refactor: Extract game creation logic to service + +commit 1b9bc90920f3baf1eb39ec13e8cbb76fd6583b87 +Author: Phan Huy Tran +Date: Wed Mar 26 14:20:31 2025 +0100 + + feat: Adjust json responses + +commit 85d2b218aaa794878d1e1e3fa12ab131afeed8f6 +Author: Phan Huy Tran +Date: Wed Mar 26 13:56:27 2025 +0100 + + feat: Add user relation to black jack game entity + +commit 64e41b663e76e6e15d09785c32182fb1d76db0c0 +Author: Phan Huy Tran +Date: Wed Mar 26 13:50:56 2025 +0100 + + feat: Subtract user balance, persist game + +commit b2b0bb2f445a8ce939a7c37b481ef62a183b105e +Author: Phan Huy Tran +Date: Wed Mar 26 13:23:27 2025 +0100 + + feat: Validate bet amount + +commit 1a4b3f073f0a1e9a8e554c32ce434a08fadeba46 +Author: Phan Huy Tran +Date: Wed Mar 26 13:05:24 2025 +0100 + + fix: add openid scope to get bearer token request + +commit 8cb045fcbe7b3be037a3cf8a3059ae0b4ed13e14 +Author: Jan K9f +Date: Wed Mar 26 12:20:27 2025 +0100 + + feat(blackjack): add BlackJack game creation functionality + +commit 24ea51318fca09fc4eeabad5d409d2ea625cb074 +Author: Phan Huy Tran +Date: Wed Mar 26 11:13:51 2025 +0100 + + feat: Add card class + +commit 3df8926e8ab75c049d764a6b6e8b97d17afda56d (tag: v1.15.1) +Merge: 67b83bc ad9fb7e +Author: Constantin Simonis +Date: Wed Mar 26 12:41:12 2025 +0000 + + Merge pull request 'chore: update Hibernate ddl-auto setting to 'update'' (#93) from fix/db-deletion into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/93 + Reviewed-by: Jan K9f + +commit ad9fb7e735ff2d02e4188ed40ca06bdc2d953358 +Author: Constantin Simonis +Date: Wed Mar 26 13:31:34 2025 +0100 + + chore: update Hibernate ddl-auto setting to 'update' + +commit 67b83bcf63e6faae37cfb46d59438bb8e3f03330 (tag: v1.15.0) +Merge: 9a94479 03ce527 +Author: jleibl +Date: Wed Mar 26 12:36:20 2025 +0000 + + Merge pull request 'feat(game): add blackjack game component and routing' (#92) from task/CAS-49/add_base_styling_for_blackjack into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/92 + +commit 03ce527087fae792e40d7a19de819b04d90582c9 +Author: Jan-Marlon Leibl +Date: Wed Mar 26 13:34:54 2025 +0100 + + refactor(blackjack): rename event emitters for clarity + +commit 5e5fe603f94e6bcbb4fb23927474dccfdf20e434 +Author: Jan-Marlon Leibl +Date: Wed Mar 26 13:32:16 2025 +0100 + + style: update card background colors in templates + +commit a639888a33eb8482be27a45846128b718d4a381c +Merge: eb153f4 9a94479 +Author: jleibl +Date: Wed Mar 26 12:27:47 2025 +0000 + + Merge branch 'main' into task/CAS-49/add_base_styling_for_blackjack + +commit 3da534f3aed1e155267e94499cf4b5dc119dfac0 +Author: Constantin Simonis +Date: Wed Mar 26 13:27:42 2025 +0100 + + feat(security): add CORS support and update security config + +commit 9a9447961faa522b74f50a93e10ff42ff16ece83 (tag: v1.14.1) +Merge: 32aa753 cd84d0c +Author: Jan K9f +Date: Wed Mar 26 12:27:38 2025 +0000 + + Merge pull request 'style(navbar): update text from 'Balance' to 'Guthaben'' (#91) from translation into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/91 + +commit eb153f4459e53848875a1b088e269cfa413c4eaa +Author: Jan-Marlon Leibl +Date: Wed Mar 26 13:26:38 2025 +0100 + + feat(game): add blackjack game component and routing + +commit cd84d0c9496b7d2dfb3b5e2fb6e56ac34825d0e5 +Author: Jan K9f +Date: Wed Mar 26 13:21:29 2025 +0100 + + style(navbar): update text from 'Balance' to 'Guthaben' + +commit 242b72ca452d896ea8b5bd53a2647322bb5fcc58 +Author: csimonis +Date: Thu Mar 13 12:28:52 2025 +0100 + + idek man + +commit e848b548b5ab02522358c3677850e8acdfe24ca8 +Author: csimonis +Date: Wed Mar 12 14:45:40 2025 +0100 + + wip + +commit 144f033beb37c365c77b57a5d999aa75da91438c +Author: Constantin Simonis +Date: Thu Mar 6 12:55:51 2025 +0100 + + chore: remove keycloak + +commit f547d05f64c74eb7665f4b63b621a6c2371ac9c9 +Author: Constantin Simonis +Date: Thu Mar 6 12:52:15 2025 +0100 + + wip + +commit 33683f565fc2e02e8a21dda8ffbd7ce0d9c3050f +Author: Constantin Simonis +Date: Thu Mar 6 11:01:59 2025 +0100 + + wip + +commit 374175d3863c9dbcffa93518bf2c4da09ade854c +Merge: cafa2c1 32aa753 +Author: jleibl +Date: Wed Mar 26 10:07:06 2025 +0000 + + Merge branch 'main' into renovate/all-minor-patch + +commit 32aa75345268576dc0b33561b353e3f5acb2f579 (tag: v1.14.0) +Merge: c42c557 ce17741 +Author: jleibl +Date: Wed Mar 26 10:04:23 2025 +0000 + + Merge pull request 'feat(home): add router to clear query parameters' (#88) from task/remove_success_url_parameter into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/88 + Reviewed-by: Constantin Simonis + Reviewed-by: Phan Huy Tran + +commit ce17741e7231fc1fc30b47598cabc40b24fd749c +Author: Jan-Marlon Leibl +Date: Wed Mar 26 11:03:28 2025 +0100 + + style(home): format constructor for better readability + +commit cafa2c148f1373f965e64029e526076395659bc1 +Author: Renovate +Date: Wed Mar 26 10:01:43 2025 +0000 + + chore(deps): update plugin org.springframework.boot to v3.4.4 + +commit af90108b3bd535c06e41d52b627db59362e98d4f +Author: Jan-Marlon Leibl +Date: Wed Mar 26 11:00:43 2025 +0100 + + refactor(home): remove unnecessary comment from code + +commit cf42e725cc5e803d00862b39b1e519ae45b1f3a0 +Author: Jan-Marlon Leibl +Date: Wed Mar 26 10:58:25 2025 +0100 + + feat(home): add router to clear query parameters + +commit c42c5577cfcf23993125b1a5198de6ec11c0dd59 +Merge: 6349ad0 75d9a4e +Author: Phan Huy Tran +Date: Wed Mar 26 09:14:13 2025 +0000 + + Merge pull request 'docs: Add docs for local stripe development' (#87) from docs/stripe-dev into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/87 + Reviewed-by: jleibl + +commit 75d9a4e2fba938d436a2403a4e57daf0813f4de8 +Author: Phan Huy Tran +Date: Wed Mar 26 09:40:57 2025 +0100 + + docs: Add docs for local stripe development + +commit 6349ad0babdd8b924f12c9ff34fdef39f1e79cd7 (tag: v1.13.2) +Merge: c97cb51 f8013d2 +Author: Constantin Simonis +Date: Wed Mar 26 08:16:22 2025 +0000 + + Merge pull request 'refactor: Switch stripe tokens to use the casino stripe account' (#86) from refactor/stripe-account-swtich into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/86 + Reviewed-by: Constantin Simonis + +commit f8013d24384f144219f36130b7d42867d0ee6369 +Author: Phan Huy Tran +Date: Wed Mar 26 09:14:07 2025 +0100 + + refactor: Switch stripe tokens to use the casino stripe account + +commit c97cb51c6a5dfab9da96a0cc5496bb03fcab786b (tag: v1.13.1) +Merge: fbaa612 c590cfa +Author: Jan Gleytenhoover +Date: Sun Mar 16 08:10:24 2025 +0000 + + Merge pull request 'chore(deps): update devdependencies (non-major)' (#80) from renovate/devdependencies-(non-major) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/80 + Reviewed-by: Jan Gleytenhoover + +commit c590cfaec5870e956d99b64c6d2884e52fbc88b8 +Author: Jan Klattenhoff +Date: Sun Mar 16 09:06:30 2025 +0100 + + chore(package.json): downgrade typescript version to 5.5.0 + +commit 814cf0e9fac7cfe2e0c0da7d1073855104dd2518 +Author: Jan Klattenhoff +Date: Sun Mar 16 09:04:27 2025 +0100 + + chore: update typescript version in package.json + +commit 1df00211d583d6db1ecae800b1299c743bf9a6f6 +Author: Renovate +Date: Thu Mar 13 15:02:53 2025 +0000 + + chore(deps): update devdependencies (non-major) + +commit fbaa612980f06032fecfdd46c2ed4d670386b055 (tag: v1.13.0) +Merge: ce7c30b 07a5cee +Author: Phan Huy Tran +Date: Thu Mar 13 14:18:31 2025 +0000 + + Merge pull request 'feat: Save balance after successful payment' (#81) from feature/save-balance into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/81 + Reviewed-by: Jan Gleytenhoover + +commit 07a5cee3302bc65617f05e326fd479376fda58c0 +Author: Phan Huy Tran +Date: Thu Mar 13 15:10:16 2025 +0100 + + checkstyle + +commit d25b894f38a2dae6096fdec928fc17705ebc7225 +Author: Phan Huy Tran +Date: Thu Mar 13 15:02:32 2025 +0100 + + feat: Save balance after successful payment + +commit ce7c30b9ae112c41257fb151cf4e2fbb1705839b +Merge: d81cf1f 5c3b74b +Author: Jan Gleytenhoover +Date: Thu Mar 13 10:08:35 2025 +0000 + + Merge pull request 'chore(deps): update dorny/paths-filter action to v3' (#75) from renovate/dorny-paths-filter-3.x into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/75 + Reviewed-by: Jan Gleytenhoover + +commit 5c3b74bedee21e800aea3185250cc04c6a48ef8b +Author: Renovate +Date: Thu Mar 13 10:02:48 2025 +0000 + + chore(deps): update dorny/paths-filter action to v3 + +commit d81cf1f68f956a22e34fcc258d7d66ea627e844c (tag: v1.12.5) +Merge: ec94689 ebd16b6 +Author: Jan Gleytenhoover +Date: Thu Mar 13 09:49:25 2025 +0000 + + Merge pull request 'fix(deps): update dependencies (major and minor)' (#62) from renovate/dependencies-(major-and-minor) into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/62 + Reviewed-by: Jan Gleytenhoover + +commit ec9468943a027c9f2c7ab90a48a7b16a687de259 (tag: v1.12.4) +Merge: a0968e7 61bc89e +Author: Jan Gleytenhoover +Date: Thu Mar 13 09:10:54 2025 +0000 + + Merge pull request 'chore: remove unused file a from the backend directory' (#74) from fix-a into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/74 + +commit 61bc89e62fe6cfcbceac4ae4bedff7d1c3ffb932 +Author: Jan Klattenhoff +Date: Thu Mar 13 10:07:29 2025 +0100 + + chore: remove unused file a from the backend directory + +commit a0968e784a90b268696c3b04c16141099f66e541 (tag: v1.12.3) +Merge: 70fe8d8 0227146 +Author: Jan Gleytenhoover +Date: Thu Mar 13 09:04:46 2025 +0000 + + Merge pull request 'ci: update CI workflows to include path filters' (#73) from pipeline-rules into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/73 + +commit ebd16b65039bb026a15ff231dab691965100b76a +Author: Renovate +Date: Thu Mar 13 07:02:20 2025 +0000 + + fix(deps): update dependencies (major and minor) + +commit 70fe8d8c88c6d3594250ce8ce05fadb10a4c9d5e (tag: v1.12.2) +Merge: dc5275d d722f0a +Author: Jan Gleytenhoover +Date: Thu Mar 13 06:50:38 2025 +0000 + + Merge pull request 'chore(deps): update postgres docker tag to v17' (#68) from renovate/postgres-17.x into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/68 + Reviewed-by: Jan Gleytenhoover + +commit d722f0af76c9586382883959df252f294edb198d +Author: Renovate +Date: Thu Mar 13 06:44:49 2025 +0000 + + chore(deps): update postgres docker tag to v17 + +commit 0227146da79a9973ae3c7234f0c50eb387fc9852 +Author: Jan Klattenhoff +Date: Wed Mar 12 21:08:49 2025 +0100 + + ci: improve checkstyle report caching in CI workflow + +commit fd7c92ebb161049764313fd1148171eb3e7a8a51 +Author: Jan Klattenhoff +Date: Wed Mar 12 21:06:25 2025 +0100 + + ci: update CI workflow to check for changed files + +commit db37f0de35f8b2b20e18e4e5fcdc6f2fec8bf2eb +Author: Jan Klattenhoff +Date: Wed Mar 12 21:05:03 2025 +0100 + + chore: add new file a to the backend directory + +commit 763afdc546b8ea88a69ba9d038fccb9b41d58e04 +Author: Jan Klattenhoff +Date: Wed Mar 12 21:03:40 2025 +0100 + + ci: update CI workflows to include path filters + +commit dc5275d04317115833ef7fb12fcb4a2fc0aadee5 (tag: v1.12.1) +Merge: 7cc33c6 3092f4a +Author: Jan Gleytenhoover +Date: Wed Mar 12 19:26:53 2025 +0000 + + Merge pull request 'chore(deps): update all non-major dependencies' (#59) from renovate/all-minor-patch into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/59 + Reviewed-by: Jan Gleytenhoover + +commit 7cc33c69e5d46fb5d729e22e0451d485df8e4f7a (tag: v1.12.0) +Merge: 09fdd83 cd098f7 +Author: jleibl +Date: Wed Mar 12 19:08:46 2025 +0000 + + Merge pull request 'Add styleguide based on current design' (#57) from styleguide into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/57 + Reviewed-by: jleibl + +commit 3092f4a688ab5b5224da90a2a1e9738db2ffc8bf +Author: Renovate +Date: Wed Mar 12 19:02:41 2025 +0000 + + chore(deps): update all non-major dependencies + +commit cd098f717c82177757064041aac443f81d5c235d +Merge: e8944c4 09fdd83 +Author: jleibl +Date: Wed Mar 12 18:53:16 2025 +0000 + + Merge branch 'main' into styleguide + +commit 09fdd8319258920327268866d921664faba28e90 (tag: v1.11.0) +Merge: 7bbabc4 8c9d7c4 +Author: Jan Gleytenhoover +Date: Wed Mar 12 18:52:30 2025 +0000 + + Merge pull request 'Rename variables to non dom element names' (#71) from fix/rename-to-not-standard-dom-elements into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/71 + +commit 8c9d7c498b86337ac76ff0a8ea14afc01b7bc40f +Author: Jan Klattenhoff +Date: Wed Mar 12 19:26:07 2025 +0100 + + style(home): format HTML and TypeScript code for clarity + +commit abc4277e846e129d340aef533dbcf8d833c45c57 +Author: Jan Klattenhoff +Date: Wed Mar 12 19:25:11 2025 +0100 + + refactor(deposit): rename close event emitter for clarity + +commit a7d98e1150ee5a83ed45d0333ba377e7f4fc4154 +Author: Jan Klattenhoff +Date: Wed Mar 12 19:20:51 2025 +0100 + + feat: rename event emitter for confirmation modal closure + +commit 7bbabc46f3895d8c0874fcf34ada9ef1db3c8f60 (tag: v1.10.7) +Merge: ba1415e f7c344f +Author: Jan Gleytenhoover +Date: Wed Mar 12 18:01:55 2025 +0000 + + Merge pull request 'chore(deps): update https://github.com/actions/cache action to v4' (#67) from renovate/https-github.com-actions-cache-4.x into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/67 + Reviewed-by: Jan Gleytenhoover + +commit ba1415e8b0002b680796bd1c0824e571a050be83 (tag: v1.10.6) +Merge: 1ad34b1 910895e +Author: Jan Gleytenhoover +Date: Wed Mar 12 17:46:48 2025 +0000 + + Merge pull request 'chore(deps): update actions/checkout action to v4' (#64) from renovate/actions-checkout-4.x into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/64 + Reviewed-by: Jan Gleytenhoover + +commit f7c344faa62365beb8ca1f3e441801be021a337c +Author: Renovate +Date: Wed Mar 12 16:04:42 2025 +0000 + + chore(deps): update https://github.com/actions/cache action to v4 + +commit 910895ed82fe032443332d5e7c650c7458d0ac78 +Author: Renovate +Date: Wed Mar 12 16:04:02 2025 +0000 + + chore(deps): update actions/checkout action to v4 + +commit 1ad34b1ae1ef118857667709d04d22a7b75a9498 (tag: v1.10.5) +Merge: 8b2d8f7 79b83fc +Author: Jan Gleytenhoover +Date: Wed Mar 12 15:43:04 2025 +0000 + + Merge pull request 'chore(deps): update actions/cache action to v4' (#63) from renovate/actions-cache-4.x into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/63 + Reviewed-by: Jan Gleytenhoover + +commit 79b83fc4c82998c11a93d27a4c8866d0a804b623 +Author: Renovate +Date: Wed Mar 12 15:03:14 2025 +0000 + + chore(deps): update actions/cache action to v4 + +commit e8944c46a4e6e34795e7c92e298a0220bbad55b7 +Author: Jan Klattenhoff +Date: Wed Mar 12 14:49:11 2025 +0100 + + chore: remove unused Tailwind CSS configuration file + +commit a3da0f9a4ddcd0bb13c1629b69f03f585cbc5ac8 +Author: Jan Klattenhoff +Date: Wed Mar 12 14:45:20 2025 +0100 + + style: Update color theme in styles.css file + +commit e0afebb3971e73ac374bccca855809f37ffe1c73 +Author: Jan Klattenhoff +Date: Wed Mar 12 14:38:08 2025 +0100 + + style: update Tailwind CSS import in styles.css + +commit 8012112f6c7ddbffc5440dd3703273f8da83e6a7 +Author: Jan Klattenhoff +Date: Wed Mar 12 14:31:55 2025 +0100 + + style(tailwind): update color keys for consistency + +commit e9159abf3d938a1aac0d21bb17b2c182674071a6 +Author: Jan Klattenhoff +Date: Wed Mar 12 14:29:21 2025 +0100 + + feat: add MIT License and update README for clarity + +commit 520c8f8343c07efd432099639b74dbb1e63ba577 +Author: Jan Klattenhoff +Date: Wed Mar 12 14:21:12 2025 +0100 + + docs: update README with style guide and license details + +commit f826e1e203ae68d8f3a75a5487217756ae9e4a90 +Author: Jan Klattenhoff +Date: Wed Mar 12 14:18:42 2025 +0100 + + docs: add style guide for casino gaming platform + +commit 8b2d8f7e05f729f9024e40b16e99346b99d71daa (tag: v1.10.4) +Merge: 877ce2a c73a1a3 +Author: Jan Gleytenhoover +Date: Wed Mar 12 13:11:19 2025 +0000 + + Merge pull request 'update-readme' (#56) from update-readme into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/56 + +commit 877ce2a6dde73b180c9096584522f5bc28030943 (tag: v1.10.3) +Merge: efef0aa 730a076 +Author: Jan Gleytenhoover +Date: Wed Mar 12 13:09:14 2025 +0000 + + Merge pull request 'chore: Configure Renovate' (#55) from renovate/configure into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/55 + Reviewed-by: Jan Gleytenhoover + +commit c73a1a3af2ed82ec7071362304cf1efe923c5c27 +Author: Jan Klattenhoff +Date: Wed Mar 12 14:07:53 2025 +0100 + + docs: add Claude Assistant Guide to documentation + +commit 9fbb33926172f861b195265a4c96487756799168 +Author: Jan Klattenhoff +Date: Wed Mar 12 14:04:10 2025 +0100 + + docs: update README for Casino Gaming Platform details + +commit 730a07671082f51dcdef79b74b06283f91b6e6bf +Author: Renovate +Date: Wed Mar 12 13:01:23 2025 +0000 + + chore(deps): add renovate.json + +commit efef0aad42a3539483a38af3d948fb818a4d2940 +Merge: f855dc5 319db88 +Author: Jan Gleytenhoover +Date: Wed Mar 12 12:36:19 2025 +0000 + + Merge pull request 'fix pipes' (#54) from migr into main + + Reviewed-on: https://git.kjan.de/SZUT/casino/pulls/54 + +commit 319db88e2495d1604e92d858ccbd8fbcf72a0b30 +Author: jank +Date: Wed Mar 12 12:30:26 2025 +0000 + + Update .gitea/workflows/ci.yml + +commit 77549bbdfda0151e468c60414416105daad5bce2 +Author: jank +Date: Wed Mar 12 12:27:31 2025 +0000 + + Update .gitea/workflows/ci.yml + +commit b69640a1bd7513e6a99edcae73dc1fe9bc38c31f +Author: jank +Date: Wed Mar 12 12:25:30 2025 +0000 + + Update .gitea/workflows/ci.yml + +commit e3182ecaaefebd114a5008a9632319151af72cb2 +Author: jank +Date: Wed Mar 12 12:17:34 2025 +0000 + + Update .gitea/workflows/ci.yml + +commit f33e58cacfd74d3e0ce4f5ce90b75b956fc65463 +Author: jank +Date: Wed Mar 12 12:13:04 2025 +0000 + + Update .gitea/workflows/ci.yml + +commit 77c636968b59e63c5fb6ed43fa1a9f90abce9a6b +Author: jank +Date: Wed Mar 12 12:10:21 2025 +0000 + + Update .gitea/workflows/ci.yml + +commit 49d908060a016525861927d48f1fbe46289d4063 +Author: jank +Date: Wed Mar 12 12:02:59 2025 +0000 + + Update .gitea/workflows/release.yml + +commit 2d8510c6a48077cc731aeb450fb6bd33705e2ecf +Author: jank +Date: Wed Mar 12 12:02:33 2025 +0000 + + Update .gitea/workflows/ci.yml + +commit 564cc84c797e2a10507d121bf1ec4440002a70e3 +Author: jank +Date: Wed Mar 12 12:01:04 2025 +0000 + + Update .gitea/workflows/ci.yml + +commit 27a225fffce7f7b407dfde301c2496c770cec681 +Author: jank +Date: Wed Mar 12 12:00:22 2025 +0000 + + Update release.config.cjs + +commit f855dc521dc703e624f76e51a61926a1d4e23dd7 (tag: v1.10.2) +Merge: f2bd399 9a8543c +Author: Hop In, I Have Puppies AND WiFi +Date: Thu Mar 6 11:51:23 2025 +0000 + + Merge pull request 'Remove unused imports in security config and user entity (CAS-0)' (!53) from task/CAS-0/RemoveUnusedImports into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/53 + Reviewed-by: Huy + +commit f2bd399c05572865001215e6c3efbb5fdd2cc707 +Merge: 259ada7 74f598a +Author: Constantin Simonis +Date: Thu Mar 6 11:50:06 2025 +0000 + + Merge pull request 'add test for backend' (!42) from tests/backend into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/42 + Reviewed-by: Huy + +commit 9a8543cbfe54410b523e30af9e3b408848b2a304 +Merge: 1d7d847 259ada7 +Author: Hop In, I Have Puppies AND WiFi +Date: Thu Mar 6 11:49:59 2025 +0000 + + Merge branch 'main' into task/CAS-0/RemoveUnusedImports + +commit 259ada7523b6326ed19ca92f01cf020c09b4d977 +Merge: e53a084 bb7bac9 +Author: Hop In, I Have Puppies AND WiFi +Date: Thu Mar 6 11:48:26 2025 +0000 + + Merge pull request 'Correct spelling of "Klarna" in footer text (CAS-0)' (!52) from task/CAS-0/FixKlarnaTextInFooter into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/52 + Reviewed-by: Klan Jattenhoff + +commit 1d7d84706dc8f4c9f67e44c661cc679d5e1d15cf +Author: Jan-Marlon Leibl +Date: Thu Mar 6 12:45:24 2025 +0100 + + refactor: remove unused imports in security config and user entity + +commit bb7bac9a679d5bbb5b531487ccca1dfc656ed603 +Author: Jan-Marlon Leibl +Date: Thu Mar 6 12:42:18 2025 +0100 + + style(footer): correct spelling of "Klarna" in footer text + +commit e53a08441bfe1404ff6616ee64e44e8c82f6b66b (tag: v1.10.1) +Merge: bd4e752 e5ac810 +Author: Hop In, I Have Puppies AND WiFi +Date: Thu Mar 6 11:41:31 2025 +0000 + + Merge pull request 'Improve card styling and transitions in HTML (CAS-0)' (!51) from task/CAS-0/UpdateGameGalleryStyling into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/51 + +commit e5ac810a67ca6e657290a45e0067d75eefe6ae2a +Author: Jan-Marlon Leibl +Date: Thu Mar 6 12:37:51 2025 +0100 + + style(home): Improve card styling and transitions in HTML + +commit bd4e7521c0613ba39b1b61314ff6126cfe5ee741 (tag: v1.10.0) +Merge: c651337 9c12ccd +Author: Hop In, I Have Puppies AND WiFi +Date: Thu Mar 6 11:31:59 2025 +0000 + + Merge pull request 'Implement modal animations with GSAP (CAS-0)' (!50) from task/CAS-0/adjust-animations-for-dialogs into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/50 + Reviewed-by: Constantin Simonis + Reviewed-by: Huy + +commit 9c12ccd7169dfe1bdb75cca4187d94bdf8c4654c +Author: Jan-Marlon Leibl +Date: Thu Mar 6 11:56:00 2025 +0100 + + style: format code for better readability and consistency + +commit 1569922fda7090dd29917ac859b5e41b020cf7d6 +Author: Jan-Marlon Leibl +Date: Thu Mar 6 11:55:01 2025 +0100 + + refactor(deposit): remove unnecessary comments in code + +commit 08a1a5e87771c375102ae1ed26ba27aa30697b87 +Author: Jan-Marlon Leibl +Date: Thu Mar 6 11:52:31 2025 +0100 + + feat(deposit): implement modal animations with GSAP + +commit c651337d302a2657a5638f035f05d8c8ed6554ab (tag: v1.9.0) +Merge: d61ef4d 1768cf6 +Author: Hop In, I Have Puppies AND WiFi +Date: Wed Mar 5 11:15:47 2025 +0000 + + Merge pull request 'Add current user balance display in navbar (CAS-26)' (!49) from task/CAS-26/add-balance-to-nav into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/49 + Reviewed-by: Klan Jattenhoff + Reviewed-by: lziemke + +commit d61ef4df7eeeb5a3a1a37aab286b2131d188ef02 (tag: v1.8.0) +Merge: 63db07b 15a92b9 +Author: lziemke +Date: Wed Mar 5 11:11:12 2025 +0000 + + Merge pull request 'feature/confirmation-modal-after-deposit (CAS-29)' (!48) from feature/confirmation-modal-after-deposit into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/48 + Reviewed-by: Klan Jattenhoff + Reviewed-by: Hop In, I Have Puppies AND WiFi + +commit 1768cf6536a89cd033dac0378a948ac746df37ee +Author: Jan-Marlon Leibl +Date: Wed Mar 5 12:08:06 2025 +0100 + + style(user.service): fix string formatting in getCurrentUser method + +commit 454e99f8128c3675523e2ced8dd73c9e4021b0aa +Author: Jan-Marlon Leibl +Date: Wed Mar 5 12:07:20 2025 +0100 + + feat(navbar): update balance display and use signal for state + +commit 564601f7bc6f724050cea01611c2e3537b69514f +Author: Jan-Marlon Leibl +Date: Wed Mar 5 12:05:46 2025 +0100 + + feat(navbar): add current user balance display in navbar + +commit 15a92b984c73e3e634dd325ad16874695a22b3f9 +Author: Lea +Date: Wed Mar 5 12:00:32 2025 +0100 + + style: linter and prettier + +commit 212bee3bd29c895c881429dfbd173d8586498e0b +Author: Lea +Date: Wed Mar 5 11:48:42 2025 +0100 + + feat: implemented confirmation modal for depositing money + +commit f172e00d0a7b8a15cee04eda73077b534ef2f5e3 +Author: Constantin Simonis +Date: Wed Mar 5 10:45:10 2025 +0100 + + chore: add success bool to success / cancel url + +commit 95889fc93755fa1e037c506c9c8f0fec1edd0db9 +Author: Lea +Date: Wed Mar 5 10:34:08 2025 +0100 + + fix: closing of deposit confirmation modal + +commit caf279448998ca848c04c3bd85fb952a6a343bdc +Author: Lea +Date: Wed Mar 5 10:20:31 2025 +0100 + + comfirmation modal for deposit and refactoring + +commit 63db07b6ae2f323d856c5b21654f5feb979aa391 (tag: v1.7.7) +Merge: 6ff6c1e a1850a9 +Author: Hop In, I Have Puppies AND WiFi +Date: Wed Mar 5 10:09:20 2025 +0000 + + Merge pull request 'Update Java language version to 23' (!46) from task/CAS-0/UpdateJavaVersion into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/46 + Reviewed-by: Constantin Simonis + +commit a1850a970539d4e9dcf67d9481d030e376198fe5 +Merge: 4d251a2 6ff6c1e +Author: Hop In, I Have Puppies AND WiFi +Date: Wed Mar 5 10:03:50 2025 +0000 + + Merge branch 'main' into task/CAS-0/UpdateJavaVersion + +commit 4d251a21c34e52347f2cd07e2927ff1c5fd9f0fb +Author: Jan-Marlon Leibl +Date: Wed Mar 5 10:21:55 2025 +0100 + + build(ci): update Java version in CI workflow + +commit 909dab2876076c66df3fdadb2d3256c6e0f63be6 +Author: Jan-Marlon Leibl +Date: Wed Mar 5 10:17:11 2025 +0100 + + build: update Java language version to 23 + +commit 6ff6c1eb5e4c0d03261660edd7686e4577815fab (tag: v1.7.6) +Merge: 925a9d5 bba3313 +Author: Constantin Simonis +Date: Wed Mar 5 08:19:53 2025 +0000 + + Merge pull request 'fix: add correct redirect url after deposit' (!45) from bugfix/deposit into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/45 + Reviewed-by: lziemke + Reviewed-by: Klan Jattenhoff + +commit bba33135d543a5def323e6d6fdda5dd9522e56eb +Author: Constantin Simonis +Date: Wed Mar 5 09:14:10 2025 +0100 + + fix: change redirect route + +commit c102f6ea65f8bb89cd2fc1c89f8b17efa6946edc +Author: Constantin Simonis +Date: Wed Mar 5 09:00:41 2025 +0100 + + fix: typo + +commit f011ade4a8dfcc56d1ac858e0db4cf66b458b10a +Author: Constantin Simonis +Date: Wed Mar 5 08:59:34 2025 +0100 + + fix: add frontend host to application properties + +commit 204970856baa4e05c8138e7e2bcf6329e64e6d2e +Author: Constantin Simonis +Date: Wed Mar 5 08:57:14 2025 +0100 + + fix: add correct redirect url after deposit + +commit 925a9d540d15c3e24e223540f16fdab4d36aa3e7 (tag: v1.7.5) +Merge: 0100df8 65ed49d +Author: lziemke +Date: Wed Feb 26 12:31:14 2025 +0000 + + Merge pull request 'feature: removed angular materials and implemented new deposit modal' (!44) from feature/deposit-modal into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/44 + Reviewed-by: Huy + Reviewed-by: Klan Jattenhoff + +commit 65ed49df2aad321f9934c4fa4564a2aa09148568 +Author: Lea +Date: Wed Feb 26 13:26:51 2025 +0100 + + style: removed angular material lines + +commit a6e3ae1a337349dd78f1d64ce97fa55f1aa44dff +Author: Lea +Date: Wed Feb 26 13:22:52 2025 +0100 + + style: removed missed angular material lines + +commit 6c6e2b5cb58e91c6aa8ce86f8acd6a7a142b638e +Author: Lea +Date: Wed Feb 26 13:09:49 2025 +0100 + + style:fixed prettier and eslint + +commit 25492f3e68dd5a5928a72d699cd546cb1dba35f2 +Author: Lea +Date: Wed Feb 26 12:52:34 2025 +0100 + + style: fixed prettier and hopefully eslint + +commit 604d593fdcbbf67104354ca9ecf6870b91a4a628 +Author: Lea +Date: Wed Feb 26 12:41:35 2025 +0100 + + feature: removed angular materials and implemented new deposit modal + +commit 0100df89f5877ee8f24036d9e7a52d77b55fc647 (tag: v1.7.4) +Merge: 9c5e05f aa6ec43 +Author: Huy +Date: Wed Feb 26 11:10:25 2025 +0000 + + Merge pull request 'refactor: Change balance type to BigDecimal for better precision' (!43) from refactor/money-precision into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/43 + Reviewed-by: Constantin Simonis + Reviewed-by: Kjan Jattenhoff + +commit aa6ec4397ff7fd2b3d38589a8f571177ddaca8ef +Author: Phan Huy Tran +Date: Wed Feb 26 11:06:40 2025 +0100 + + revert: revert + +commit aef0f09d09fc935d98c6ada158bf9344634c110f +Author: Phan Huy Tran +Date: Wed Feb 26 11:03:12 2025 +0100 + + refactor: Change balance type to bigdecimal for better precision + +commit 74f598a24cfe447f5e30782d106ec9af58c748a0 +Author: Constantin Simonis +Date: Wed Feb 26 11:01:23 2025 +0100 + + remove comment + +commit 39a9ca1831169a93c488ebbd50019cf9073af306 +Author: Constantin Simonis +Date: Wed Feb 26 10:57:36 2025 +0100 + + add test to ci + +commit 834cb559efe68ba46a574182c7cad2cf1e320297 +Author: Constantin Simonis +Date: Wed Feb 26 10:54:21 2025 +0100 + + add test for health controller + +commit cf569386adf3e15b4d774318b5609fd54930dc2b +Author: Constantin Simonis +Date: Wed Feb 26 10:49:04 2025 +0100 + + add test for user controller + +commit 9c5e05f29dfa0dbea53b6a806f2acf0f84392aa0 (tag: v1.7.3) +Merge: 9104c6e cfd59d8 +Author: Huy +Date: Wed Feb 26 09:46:14 2025 +0000 + + Merge pull request 'refactor: refactor and clean up of home.component.ts' (!41) from refactor/home into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/41 + Reviewed-by: Kjan Jattenhoff + Reviewed-by: Huy + +commit cfd59d876d5a536d26792a06b785ccfeba0e03bf +Author: Lea +Date: Wed Feb 26 10:43:32 2025 +0100 + + prettier + +commit f09935564d8156beb9bc513a73462f414c62a062 +Author: Lea +Date: Wed Feb 26 10:17:07 2025 +0100 + + refactor: refactor and clean up of home.component.ts + +commit 9104c6eb2cd43fc2e0c22145237a49b9c8d0054e (tag: v1.7.2) +Merge: 11213ec 33f962a +Author: Huy +Date: Wed Feb 26 09:10:10 2025 +0000 + + Merge pull request 'fix: Redirect to homepage after login' (!40) from fix/home-redirect into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/40 + Reviewed-by: Constantin Simonis + Reviewed-by: lziemke + +commit 33f962a02c6039da68af63c93db75acf562d7ae0 +Merge: 3b1a97c 11213ec +Author: Constantin Simonis +Date: Wed Feb 26 09:06:06 2025 +0000 + + Merge branch 'main' into fix/home-redirect + +commit 3b1a97c08a1dc4e6f94ca0a480fd26c5770a1f75 +Author: Phan Huy Tran +Date: Wed Feb 26 10:03:34 2025 +0100 + + fix: Redirect to homepage after login + +commit 11213ec5f01923a5be865aa204b5dbd0caabca47 (tag: v1.7.1) +Merge: cc8f553 24be28a +Author: Huy +Date: Wed Feb 26 09:02:28 2025 +0000 + + Merge pull request 'chore: Add http requests for user' (!39) from chore/add-user-requests into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/39 + Reviewed-by: We ball + Reviewed-by: Constantin Simonis + +commit 24be28af1b61223144c80a479bb91dbb750b360b +Author: Phan Huy Tran +Date: Wed Feb 26 09:57:52 2025 +0100 + + chore: Add http requests for user + +commit cc8f553d66efae704e6d224ec6686ee5a798fb56 +Merge: b9ce80a 428c33b +Author: lziemke +Date: Wed Feb 19 12:06:35 2025 +0000 + + Merge pull request 'feat: add homepage ui and images' (!38) from feature/homepage-games-preview into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/38 + Reviewed-by: We ball + Reviewed-by: Huy + +commit 428c33b0008d7b57e01fba763b192b7669788d51 +Author: Lea +Date: Wed Feb 19 13:00:27 2025 +0100 + + formatted + +commit 09ccad479e781d3eb6ae0255a8061c06e79e4f35 +Author: Lea +Date: Wed Feb 19 12:25:20 2025 +0100 + + added images for the games + +commit a933f0b397f332e7dde4b15a09c0128bc533b198 +Author: Lea +Date: Wed Feb 19 11:58:26 2025 +0100 + + implemented better ui and pseudo data + +commit b9ce80a28a6afc5c1e0f0db87a0a1a800261118a (tag: v1.7.0) +Merge: 8303c90 11c6634 +Author: Hop In, I Have Puppies AND WiFi +Date: Wed Feb 19 11:57:30 2025 +0000 + + Merge pull request 'feat: add user managment' (!32) from feat/user-managment into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/32 + Reviewed-by: Huy + Reviewed-by: Hop In, I Have Puppies AND WiFi + +commit 8303c906aa5199a9580185a612eb445a838510cd (tag: v1.6.0) +Merge: 219cbfc 356a599 +Author: We ball +Date: Wed Feb 19 11:55:50 2025 +0000 + + Merge pull request 'Add cache to other pipelines' (!36) from feature/custom-pipeline-images into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/36 + Reviewed-by: Huy + +commit 219cbfca0ec24fbdc0c3a1e475ef557fe9d6625f +Merge: c75c62b 562a93b +Author: Hop In, I Have Puppies AND WiFi +Date: Wed Feb 19 11:55:12 2025 +0000 + + Merge pull request 'refactor(routes): change home route to lazy loading' (!37) from task/lazy-load-homepage into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/37 + Reviewed-by: We ball + Reviewed-by: Constantin Simonis + +commit 11c6634d6cc2e9dc3f46d77a28ba7a8a6b56c32d +Author: Constantin Simonis +Date: Wed Feb 19 12:50:13 2025 +0100 + + fix: build + +commit 356a599dd5d2ede375ad8d94775dab3e4fc001e7 +Author: Jan Klattenhoff +Date: Wed Feb 19 12:48:40 2025 +0100 + + chore: remove unused Dockerfile from bunPipeline + +commit 0c7c2ae9fa0e9d8faf5ff3118c7892a32fae089e +Author: Jan Klattenhoff +Date: Wed Feb 19 12:48:03 2025 +0100 + + chore: remove obsolete Docker build workflow file + +commit c75c62b396b41aeaa165316f37498276a74755ab (tag: v1.5.4) +Merge: 44c7d8b 13245cd +Author: We ball +Date: Wed Feb 19 11:47:50 2025 +0000 + + Merge pull request 'Fix caching of pipeline' (!34) from fix/improve-checkstyle-pipeline into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/34 + Reviewed-by: Hop In, I Have Puppies AND WiFi + Reviewed-by: Huy + +commit 8547bd1fa32d1bf511a0a080556dff55dc4c2a2d +Author: Jan Klattenhoff +Date: Wed Feb 19 12:36:22 2025 +0100 + + ci: remove lint job from CI configuration + +commit da047eef70296e74384a40cd85c0c9358e6a74e0 +Author: Constantin Simonis +Date: Wed Feb 19 12:31:07 2025 +0100 + + style: prettier + +commit da50d19f9d2ddde99d8dd2c8ed938525e25a4305 +Author: Jan Klattenhoff +Date: Wed Feb 19 12:30:07 2025 +0100 + + ci: update CI workflow to use Super-linter for linting + +commit 5cb08ca5f8e5180b318d5e62663edfc8581e1834 +Author: Jan Klattenhoff +Date: Wed Feb 19 12:27:29 2025 +0100 + + ci: update build command in CI workflow + +commit 8da1ff8acd9f6119e2a25a56909123f904f198ca +Author: Jan Klattenhoff +Date: Wed Feb 19 12:24:55 2025 +0100 + + ci: update CI runner to vps-4 from ubuntu-latest + +commit 7bd06dee62a62a600207cbf5d62b5edc259c3e5d +Author: Jan-Marlon Leibl +Date: Wed Feb 19 12:23:45 2025 +0100 + + refactor(user): reorganize imports and code structure + +commit 72f56928d4c1a8f4eb4f662a7705e692cadddeef +Author: Jan Klattenhoff +Date: Wed Feb 19 12:23:32 2025 +0100 + + ci: add linelint job to CI workflow + +commit 6c025cc8d2ca94664448c7b03162b9c46a6b9b69 +Author: Constantin Simonis +Date: Wed Feb 19 12:18:12 2025 +0100 + + fix: lazy load login success component + +commit 642f5727e504eb8d0b3b6ecde102b1c86961ac2a +Author: Jan Klattenhoff +Date: Wed Feb 19 12:16:50 2025 +0100 + + ci: update build output directory in CI workflow + +commit 8d4901601f2785cd4cdeda409fd8092c4cf26e7d +Author: Constantin Simonis +Date: Wed Feb 19 12:09:53 2025 +0100 + + chore: adjust login success view + +commit 355d1b0c0674262fa88008d34536414228fbb73e +Author: Jan Klattenhoff +Date: Wed Feb 19 12:09:22 2025 +0100 + + ci: update frontend build process in CI workflow + +commit 877b6f77b2c55870dcef257967cabae5a9fbeb52 +Author: Constantin Simonis +Date: Wed Feb 19 12:06:49 2025 +0100 + + chore: move classes add balance fix routes + +commit 0590a2f9ee59bc82908694c4309086ffbb94a84d +Author: Jan Klattenhoff +Date: Wed Feb 19 12:05:59 2025 +0100 + + build(ci): add caching for frontend dependencies and dist + +commit ef8111cc7e38e75edf0dea681fec872867caa207 +Author: Jan Klattenhoff +Date: Wed Feb 19 12:01:14 2025 +0100 + + ci: update node_modules path in CI workflow config + +commit a091387c1c9dda323c9928a95d5cfadba944d7a7 +Author: Constantin Simonis +Date: Wed Feb 19 11:59:36 2025 +0100 + + fix: 500 when loggin in + +commit 2392dac5193b43431d6db8b3cf83b5f8e4b5dd92 +Author: Jan Klattenhoff +Date: Wed Feb 19 11:58:56 2025 +0100 + + ci: update path in CI workflow configuration + +commit fadedb0bcdcab7f2c8673670f967e604576509b0 +Author: Jan Klattenhoff +Date: Wed Feb 19 11:57:08 2025 +0100 + + ci: Fix node_modules path in CI workflow configuration + +commit 59263dca710cbd33959ccc99d7b63010ea98b702 +Author: Jan Klattenhoff +Date: Wed Feb 19 11:54:35 2025 +0100 + + ci: update path for node_modules in CI workflow + +commit a19ddeed47782f53366e4edbe78a800276060140 +Author: Jan Klattenhoff +Date: Wed Feb 19 11:50:07 2025 +0100 + + ci: update cache paths in CI configuration + +commit bd26ded681cae4ce4b09c8be7a131b5f9a1e57ea +Author: Jan Klattenhoff +Date: Wed Feb 19 11:45:20 2025 +0100 + + ci: update CI workflow for bun installation and caching + +commit 5afdbad461512ba5358de60e576c3e1cb606895c +Author: Constantin Simonis +Date: Wed Feb 19 11:41:17 2025 +0100 + + refactor + +commit 2326d41a9641630303ee732fa56010e6a988f47d +Author: Constantin Simonis +Date: Wed Feb 19 11:39:03 2025 +0100 + + satisfy quality tools + +commit df9fa9f2753089add8dcf54b911952d09f89e705 +Author: Constantin Simonis +Date: Wed Feb 19 11:34:49 2025 +0100 + + fix: fix some stuff + +commit 793f3f68345c8233511beb7b7fa10a46ae40ecd3 +Author: Constantin Simonis +Date: Thu Feb 13 13:16:59 2025 +0100 + + feat: add user creation on login (wip) + +commit c55fcd9ea06d22b0483bddafd85820dc1f8e2368 +Author: Jan Klattenhoff +Date: Wed Feb 19 11:40:53 2025 +0100 + + ci: update CI workflow to install dependencies correctly + +commit 7533f1139c21087d717bf113c73646b18c6b4ee8 +Author: Jan Klattenhoff +Date: Wed Feb 19 11:38:18 2025 +0100 + + ci: update workflow trigger for bun.yml file + +commit 6fb3f2bef2b93a74c59b267881d39c12114d9bdd +Author: Jan Klattenhoff +Date: Wed Feb 19 11:36:51 2025 +0100 + + ci: remove time command from CI workflow script + +commit bb24af241cd5ff2536e5c27c7551055ce73e7954 +Author: Jan Klattenhoff +Date: Wed Feb 19 11:35:44 2025 +0100 + + ci: add timing to node_modules symlink creation step + +commit c258f1014d53fa83216b117b6274e814ca3ebe08 +Author: Jan Klattenhoff +Date: Wed Feb 19 11:30:20 2025 +0100 + + ci: update dependency installation to use symlink + +commit 0b61ce11e1bcb6a6a3798b0c19d2579602aaea95 +Author: Jan Klattenhoff +Date: Wed Feb 19 11:27:01 2025 +0100 + + build(ci): update container image for CI jobs + +commit 876d174f8fed19dd72b80e2d0ac141b1fee174b4 +Author: Jan Klattenhoff +Date: Wed Feb 19 11:24:45 2025 +0100 + + ci: update CI workflow to remove bun installation step + +commit c0e7f5f7f85fa0562b3484511816f7a0cb897a26 +Author: Jan Klattenhoff +Date: Wed Feb 19 11:21:29 2025 +0100 + + ci: add bun install to CI workflow for frontend setup + +commit c7acd8271a47b46b000fed825b2aae27a1cdbf7b +Author: Jan Klattenhoff +Date: Wed Feb 19 11:19:48 2025 +0100 + + ci: update CI workflow to copy node_modules instead of bun + +commit aaff4a543b89c3b3ea5c12fc3b9f6ac75c359f34 +Author: Jan Klattenhoff +Date: Wed Feb 19 11:18:14 2025 +0100 + + ci: update path in CI workflow for proper execution + +commit 82a3f4d195cf6f5e41f9cf14ddbb1a3d8933462c +Author: Jan Klattenhoff +Date: Wed Feb 19 11:09:08 2025 +0100 + + ci: update CI workflow command to change directory first + +commit 483446cdd9afb5ca3e6c9e57b2962df3e28ae66a +Author: Jan Klattenhoff +Date: Wed Feb 19 11:08:43 2025 +0100 + + build: update Dockerfile to include CMD instruction + +commit 562a93bbf16f550fb34351126e7e1d7eec6d250e +Author: Jan-Marlon Leibl +Date: Wed Feb 19 11:07:46 2025 +0100 + + refactor(home): change HomeComponent to default export + +commit 840d6b5bfd6c304a40f021b494586e5d26891627 +Author: Jan-Marlon Leibl +Date: Wed Feb 19 11:06:57 2025 +0100 + + refactor(routes): change home route to lazy loading + +commit 36be142de1ca9e30c38adc6ca88baf3daf34654f +Author: Jan Klattenhoff +Date: Wed Feb 19 11:04:31 2025 +0100 + + ci: simplify command in CI workflow configuration + +commit 50d0782e02c801bb333543f79aa3e3622bf9fd01 +Author: Jan Klattenhoff +Date: Wed Feb 19 10:45:29 2025 +0100 + + ci: update CI workflow for frontend directory listing + +commit 4ce4f86419f28af107d5aaaa2cbba128bb8a1b06 +Author: Jan Klattenhoff +Date: Wed Feb 19 10:44:04 2025 +0100 + + ci: update checkout step in CI workflow to change dir + +commit 313950e99811e66cc010c5f745cd67390076766c +Author: Jan Klattenhoff +Date: Wed Feb 19 10:42:43 2025 +0100 + + ci: add command to list files in CI workflow + +commit aa2bb187ce939cf7b01ea3067c980d35a98bf291 +Author: Jan Klattenhoff +Date: Wed Feb 19 10:37:19 2025 +0100 + + ci: update CI container image for test-build job + +commit c0ad17490e55be30c872003bbb75f2cba27ccf27 +Author: Jan Klattenhoff +Date: Wed Feb 19 10:34:55 2025 +0100 + + build(Dockerfile): update Dockerfile for bun installation + +commit 4c376f8375dd2deb191227db272570bc347c9793 +Author: Jan Klattenhoff +Date: Wed Feb 19 10:33:12 2025 +0100 + + build: update Dockerfile and workflow context path + +commit 3433641025e30e6123046bd5a542b2138a2b4827 +Author: Jan Klattenhoff +Date: Wed Feb 19 10:30:05 2025 +0100 + + ci: update paths in bun.yml for build triggers + +commit 9d8509731f837d0bb6ebcb050ca2e482328f8ded +Author: Jan Klattenhoff +Date: Wed Feb 19 10:27:06 2025 +0100 + + ci: update Docker password variable in workflow file + +commit ba776f0ec17f1fb52985f6d3e81e3aa292c2cc9f +Author: Jan Klattenhoff +Date: Wed Feb 19 10:25:16 2025 +0100 + + ci: update Docker login action to version 3 + +commit f8db9221a60de5d276e568f761c6211113b79405 +Author: Jan Klattenhoff +Date: Wed Feb 19 10:24:36 2025 +0100 + + ci: update login-action reference in workflow file + +commit 0d67c0e3058ffdcfde7e9dbbe31033d729152d90 +Author: Jan Klattenhoff +Date: Wed Feb 19 10:22:40 2025 +0100 + + ci: add Docker.io login step to workflow configuration + +commit 586044a23d86328d061fb29d6fd9d64601789cc9 +Author: Jan Klattenhoff +Date: Wed Feb 19 10:18:38 2025 +0100 + + chore: clean up Dockerfile by removing unused jobs section + +commit a50b9be463ab42cca5ec28564a979906e98fa88f +Author: Jan Klattenhoff +Date: Wed Feb 19 10:16:43 2025 +0100 + + ci: update runner to vps-4 in workflow configuration + +commit 0d45d9659a7763cba5f2f190d76b67997c75c6d3 +Author: Jan Klattenhoff +Date: Wed Feb 19 10:12:45 2025 +0100 + + chore: rename bun-image.yml to bun.yml + +commit ecdcea49947cfedf3d4a261f5da12311b93f9144 +Author: Jan Klattenhoff +Date: Wed Feb 19 10:12:16 2025 +0100 + + ci: remove main branch restriction from workflow + +commit a8a7d4296a6bbcbdf3424594ba9aab84bdc54ce3 +Author: Jan Klattenhoff +Date: Wed Feb 19 10:11:18 2025 +0100 + + feat: add Dockerfile and CI workflow for image build + +commit 13245cdab6c890637306e71519242543c1fedfad +Author: Jan Klattenhoff +Date: Wed Feb 19 09:54:41 2025 +0100 + + ci: update CI workflow by removing unnecessary caching steps + +commit 9d4fb96dafa58e86655e2f1e7e4c261f6eedc204 +Author: Jan Klattenhoff +Date: Wed Feb 19 09:52:09 2025 +0100 + + ci: update tree command in CI workflow + +commit 1bc2ca5f9ab60d874ad050dd0f8d2fff2cb8957a +Author: Jan Klattenhoff +Date: Wed Feb 19 09:47:55 2025 +0100 + + ci: add tree command to CI workflow + +commit 44c7d8be570dd47b425efdf85671e119b97b4871 (tag: v1.5.3) +Merge: 3cd1f63 aa39a42 +Author: Hop In, I Have Puppies AND WiFi +Date: Wed Feb 19 08:44:56 2025 +0000 + + Merge pull request 'navbar: update navbar text to German language' (!35) from task/translate-navbar into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/35 + Reviewed-by: We ball + +commit aa39a42df6086cced4d263489c1d33c5b6755127 +Author: Jan-Marlon Leibl +Date: Wed Feb 19 09:40:14 2025 +0100 + + docs(navbar): update navbar text to German language + +commit 455ebdbe91f23f7bd084fd9f8f974cce7c6e4f4c +Author: Jan Klattenhoff +Date: Wed Feb 19 09:36:57 2025 +0100 + + ci: add caching for Gradle build outputs + +commit 204b205b445fe1f13a72daf78701044305875880 +Author: Jan Klattenhoff +Date: Wed Feb 19 09:26:38 2025 +0100 + + ci: add caching for Gradle dependencies in CI workflow + +commit 3cd1f63dbacffa7bfd9c392a0494f7d5c5e0b97a (tag: v1.5.2) +Merge: 695a107 0868ef0 +Author: We ball +Date: Wed Feb 19 08:22:48 2025 +0000 + + Merge pull request 'chore(docker): remove version from docker-compose file' (!33) from task/adjust-docker-compose into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/33 + Reviewed-by: We ball + +commit 1c5f5524fa8a7458f63a91a99517a1607a142b90 +Author: Jan Klattenhoff +Date: Wed Feb 19 09:20:43 2025 +0100 + + ci: remove caching step from CI workflow + +commit 0868ef0776dbf7c03ae29c3878c06699d2701e88 +Author: Jan-Marlon Leibl +Date: Wed Feb 19 09:07:08 2025 +0100 + + chore(docker): remove version from docker-compose file + +commit 695a1073a90a4c586a83c7bf09c878fc3d8023b1 (tag: v1.5.1) +Merge: 0878ed4 47ca56d +Author: Huy +Date: Wed Feb 19 07:25:08 2025 +0000 + + Merge pull request 'fix: Remove material css' (!31) from chore/remove-material-styles into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/31 + +commit 47ca56deb4b1c68ce49add72be2fb3eb24a80b56 +Author: Phan Huy Tran +Date: Thu Feb 13 13:19:12 2025 +0100 + + fix: Remove material css + +commit 0878ed46db6be5c7d025e3a374139156b4b3bb3f (tag: v1.5.0) +Merge: 77b7f82 04626e9 +Author: Hop In, I Have Puppies AND WiFi +Date: Thu Feb 13 12:09:13 2025 +0000 + + Merge pull request 'feat(landing): add landing component (CAS-8)' (!10) from task/landing-page into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/10 + Reviewed-by: Huy + Reviewed-by: jank1619 + +commit 04626e92d11f00a377b66e72d0ac6577e452cb2e +Author: Jan-Marlon Leibl +Date: Thu Feb 13 13:02:54 2025 +0100 + + refactor: remove unused navbar component import + +commit 9fe473302c17acf0060d5a675a866ec7302bb1db +Author: Jan-Marlon Leibl +Date: Thu Feb 13 12:44:12 2025 +0100 + + refactor(landing): restructure landing page components and templates + +commit 8514d6d73f239f588b12be4e23020c183587bf43 +Author: Jan-Marlon Leibl +Date: Thu Feb 13 12:28:00 2025 +0100 + + style: Update footer and navbar HTML structure and classes + +commit 84de8e0c86d8f478936b58e66b8e6fe5bf6ed87e +Author: Jan-Marlon Leibl +Date: Thu Feb 13 12:22:11 2025 +0100 + + style(landing-page): update class names for consistency + +commit b570e8e9abe1486c2b28c47d391d03615b15193c +Author: Jan-Marlon Leibl +Date: Thu Feb 13 12:14:11 2025 +0100 + + style: Fix formatting and add missing newlines in HTML and CSS + +commit 8e986727ec849af9f7995b74bdb4af267d280dd1 +Author: Jan-Marlon Leibl +Date: Thu Feb 13 12:13:24 2025 +0100 + + feat(landing-page): add welcome bonus and game carousel + +commit b2f4d9d0d85f063b9f604f1bef15b5100da27643 +Author: Jan-Marlon Leibl +Date: Wed Feb 12 14:06:19 2025 +0100 + + feat: add navbar component to multiple pages + +commit e5bd173be981e05c9f645a8427ef3791a4f7cc91 +Author: Jan-Marlon Leibl +Date: Wed Feb 12 12:51:55 2025 +0100 + + feat(navbar): implement login/logout buttons based on state + +commit 325bc118ee47ed3c9e772d195775036867e89563 +Author: Jan-Marlon Leibl +Date: Wed Feb 12 12:26:48 2025 +0100 + + feat: add footer component and FontAwesome integration + +commit 29305a75b1eeedc0eef356ef4925fd3ba690eafc +Author: Jan-Marlon Leibl +Date: Wed Feb 12 11:59:25 2025 +0100 + + chore: remove unused dependencies from package.json + +commit c679952ef9fea9aa66a4a66124ed5a08495f7183 +Author: Jan-Marlon Leibl +Date: Wed Feb 12 11:42:28 2025 +0100 + + chore(navbar): remove unused SCSS file and reference + +commit 70044fc3c726b929c77f3e27378b80108d51c2fc +Author: Jan-Marlon Leibl +Date: Wed Feb 12 11:38:28 2025 +0100 + + style(navbar): update navbar colors to use variables + +commit 21fa5a21e2620ec282efa9152c06d2ee445526d9 +Author: Jan-Marlon Leibl +Date: Wed Feb 12 11:28:59 2025 +0100 + + chore: remove unused tailwind configuration file + +commit 61add61113ed2c2c16639a913217e39335168bc9 +Author: Jan-Marlon Leibl +Date: Wed Feb 12 11:26:48 2025 +0100 + + feat: add navbar component to the application + +commit e6f054f10eb2328c3c111d14ddd6aa68783c34de +Author: Jan-Marlon Leibl +Date: Wed Feb 12 10:39:49 2025 +0100 + + refactor: rename landing component and remove unused files + +commit ea26f5dd80d6f8abbab67a9cbae81bfb193667fa +Author: Jan-Marlon Leibl +Date: Wed Feb 5 14:33:31 2025 +0100 + + feat(landing): add landing component with animations and services + +commit ff0e03003aa50b31eafa3e35a4c407e38ae55e49 +Author: Jan-Marlon Leibl +Date: Wed Feb 5 14:52:52 2025 +0100 + + style(landing): remove instant withdrawals section and update styles + +commit 7106ebd0efdb1952a7bc354d5a595b4d5c78a413 +Author: Jan-Marlon Leibl +Date: Wed Feb 5 14:46:44 2025 +0100 + + style(animated-button): add cursor-pointer to button class + +commit 5e84afba90e7bbdaac56d7ceea9ad0cb71e25126 +Author: Jan-Marlon Leibl +Date: Wed Feb 5 14:45:36 2025 +0100 + + refactor: remove unused imports and clear image URLs + +commit eede85295e4496f03c3d268eeb30c272415a6a2d +Author: Jan-Marlon Leibl +Date: Wed Feb 5 14:43:04 2025 +0100 + + refactor: improve code structure and add change detection + +commit 5c34014841e0479adaffaae3a4558377fdda9c1b +Author: Jan-Marlon Leibl +Date: Wed Feb 5 14:40:15 2025 +0100 + + feat: implement animated buttons and winner ticker component + +commit 313080ceac155fc07b026fe13a7b262f42e53ec7 +Author: Jan-Marlon Leibl +Date: Wed Feb 5 14:33:31 2025 +0100 + + feat(landing): add landing component with animations and services + +commit 77b7f822d8f7cd37b06d9e5fbdae0e03138d49df (tag: v1.4.2) +Merge: cfd1d01 c8c62b9 +Author: Huy +Date: Thu Feb 13 11:47:31 2025 +0000 + + Merge pull request 'chore: remove unused css' (!30) from chore/remove-unused into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/30 + Reviewed-by: jank1619 + Reviewed-by: Constantin Simonis + +commit c8c62b91f34dcf9e67db0c2c82bb6dd11dfa51cc +Merge: 7e5424d cfd1d01 +Author: jank1619 +Date: Thu Feb 13 11:41:17 2025 +0000 + + Merge branch 'main' into chore/remove-unused + +commit cfd1d01f6fcd4fc9578998fe325425e84f05c70b (tag: v1.4.1) +Merge: 9cafe17 dc07ad5 +Author: jank1619 +Date: Thu Feb 13 11:39:30 2025 +0000 + + Merge pull request 'Add checkstyle linter for java' (!27) from ci/java-pipes into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/27 + +commit 7e5424d0cb279e0d90a00120cdf62a8cb12a2cd4 +Author: Phan Huy Tran +Date: Thu Feb 13 12:33:30 2025 +0100 + + chore: remove unused css + +commit dc07ad5b0dd02270b0201a0e4188e150918685dc +Author: Jan Klattenhoff +Date: Thu Feb 13 12:26:52 2025 +0100 + + ci: update Gradle check to use checkstyleMain + +commit 96bd5ac704781a1c034db44279ff55a823e1df2f +Author: Jan Klattenhoff +Date: Thu Feb 13 12:26:43 2025 +0100 + + chore: fix file paths and add missing newlines + +commit 9cafe178a42737c82e2f4879fdbefacd575a2584 (tag: v1.4.0) +Merge: 702e54b b0c43e0 +Author: Huy +Date: Thu Feb 13 11:26:22 2025 +0000 + + Merge pull request 'feat: Display deposit form as modal (CAS-34)' (!28) from feat/payment-modal into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/28 + Reviewed-by: jank1619 + Reviewed-by: Constantin Simonis + +commit 5e24e3d020f88c2ee9cc4b3e03e86678d70ca25f +Author: Jan Klattenhoff +Date: Thu Feb 13 12:18:13 2025 +0100 + + style(checkstyle): remove unused SuppressionFilter module + +commit 4a9c769bbcf1f7b90f5e00b2ccf30e3b8e3207e4 +Author: Jan Klattenhoff +Date: Thu Feb 13 12:14:52 2025 +0100 + + build: add checkstyle configuration file path + +commit b0c43e0b7c4c6768677eb36f3f79e2aac13f9d02 +Author: Phan Huy Tran +Date: Thu Feb 13 12:12:05 2025 +0100 + + style: Run prettier + +commit a0751ae3c64783d6ffa95d3339d4c1abd92b1405 +Author: Phan Huy Tran +Date: Thu Feb 13 12:10:07 2025 +0100 + + style: Run linters + +commit d117f5912ab2ffe7de03a2cc2934fafba495654e +Author: Jan Klattenhoff +Date: Thu Feb 13 12:00:38 2025 +0100 + + build: update Checkstyle container image version + +commit 966d99f43cb87b390e94d71511b65c1f419fba7e +Author: Jan Klattenhoff +Date: Thu Feb 13 11:57:00 2025 +0100 + + build: add Java 22 setup to CI workflow + +commit 3fc290ecd1f046b8b09bd636c868080e4d892d39 +Author: Phan Huy Tran +Date: Thu Feb 13 11:56:14 2025 +0100 + + feat: Add basic styling + +commit 193f444f4fd658bee8521429723acee8b201eb6d +Author: Jan Klattenhoff +Date: Thu Feb 13 11:49:42 2025 +0100 + + build: add checkstyle plugin and update reports settings + +commit c49f7ca55d700825bc7cda6395e2efa48628cfbf +Author: Jan Klattenhoff +Date: Thu Feb 13 11:45:40 2025 +0100 + + ci: update working directory for backend steps + +commit 7b824452303cb77a68f185ef6ccb9acd851113bc +Author: Jan Klattenhoff +Date: Thu Feb 13 11:42:05 2025 +0100 + + ci: change CI runner to vps-4 for checkstyle job + +commit 582f8b1a6c004c638b660f09d6ad84740dab830c +Author: Jan Klattenhoff +Date: Thu Feb 13 11:41:18 2025 +0100 + + ci: add step to navigate to backend directory + +commit 4a4bbbc68353ebd4844d8fbaf90e42a4ba34c297 +Author: Jan Klattenhoff +Date: Thu Feb 13 11:40:34 2025 +0100 + + ci: add checkstyle job to CI workflow + +commit 55502b771d1ec0c5c0c1945abd9db4e72c7b55b8 +Author: Phan Huy Tran +Date: Thu Feb 13 11:35:54 2025 +0100 + + fix: Remove deposit route + +commit c7d62bb4e34c64c501760c31ca7aeabcb3226820 +Author: Phan Huy Tran +Date: Thu Feb 13 11:35:30 2025 +0100 + + feat: payment modal + +commit 702e54b5da83c0501dd1fbe0b808471b5daa2b64 (tag: v1.3.0) +Merge: b71858c b7a60f0 +Author: Constantin Simonis +Date: Thu Feb 13 10:12:50 2025 +0000 + + Merge pull request 'feat: add deposit with stripe (CAS-28)' (!23) from feat/stripe into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/23 + Reviewed-by: Huy + Reviewed-by: jank1619 + +commit b7a60f0c53ffcff04ede6298fcfb28dbdb7b1dcd +Author: Constantin Simonis +Date: Thu Feb 13 11:11:08 2025 +0100 + + style: run eslint + +commit 13dfc3cf5ba657894f3944d074ca3f66e85b78d5 +Merge: e2927ab b71858c +Author: Constantin Simonis +Date: Thu Feb 13 10:09:52 2025 +0000 + + Merge branch 'main' into feat/stripe + +commit e2927abe6085fd33f5734d2e170907e423a89d69 +Author: Constantin Simonis +Date: Thu Feb 13 11:07:59 2025 +0100 + + refactor: add lombok attributes to dto + +commit 1f49bc6a3d2be2414290d7c9d78b548503f76190 +Author: Constantin Simonis +Date: Thu Feb 13 11:00:27 2025 +0100 + + refactor: add dynamic host to success url + +commit b71858c79d84e056a4b54cb41d198974ae915615 (tag: v1.2.3) +Merge: 19ab393 43db82d +Author: Huy +Date: Thu Feb 13 10:04:53 2025 +0000 + + Merge pull request 'style: Configure and run eslint' (!26) from style/configure-eslint into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/26 + Reviewed-by: jank1619 + +commit 43db82da8fd999aad2c6b1ab6371e13e1be5f0a8 +Author: Jan Klattenhoff +Date: Thu Feb 13 11:00:53 2025 +0100 + + ci: add eslint job to CI workflow + +commit 3bea232dfb977640268df46ecc6d5d8b637391eb +Author: Phan Huy Tran +Date: Thu Feb 13 10:58:29 2025 +0100 + + style: Run prettier + +commit 372449cd049839c1702a13cdf4a54a6c8e3b9625 +Author: Phan Huy Tran +Date: Thu Feb 13 10:58:13 2025 +0100 + + style: Configure and run eslint + +commit 7b020aee759f14308b4ab112368a6da0c56a2dae +Author: Constantin Simonis +Date: Thu Feb 13 10:42:53 2025 +0100 + + refactor: run prettier + +commit cd6ace28f4a7d0df485c964d8d90c3ab4ec693ec +Author: Constantin Simonis +Date: Thu Feb 13 10:42:39 2025 +0100 + + style: style form + +commit da01e272d71857fc5c447c9b47ad1c6aa7a1177c +Author: Constantin Simonis +Date: Thu Feb 13 10:38:32 2025 +0100 + + refactor: outsource stripe key to environment + +commit 19ab3933d639cb7627fa980fa305d83b089f2212 (tag: v1.2.2) +Merge: 29d3c53 704cc22 +Author: Huy +Date: Thu Feb 13 09:36:55 2025 +0000 + + Merge pull request 'refactor: Redirect to orginal route after login, restructure project files' (!24) from refactor/auth-guard into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/24 + Reviewed-by: jank1619 + Reviewed-by: Constantin Simonis + +commit 704cc22858953f7babb5f906c3436c294024f93f +Author: Phan Huy Tran +Date: Thu Feb 13 10:29:13 2025 +0100 + + refactor: Redirect to orginal route after login, restructure project files + +commit 29d3c53b191523dbde6524d6f049122362ea3e23 (tag: v1.2.1) +Merge: 0ef2f58 9a63954 +Author: jank1619 +Date: Thu Feb 13 09:34:54 2025 +0000 + + Merge pull request 'build: update release configuration for plugins and rules' (!25) from update-release-config into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/25 + +commit c4252c97e7d60702b635ac67102d4919466ed5f4 +Author: Constantin Simonis +Date: Thu Feb 13 10:33:06 2025 +0100 + + refactor: refactor application.properties + +commit 9a63954e4bd787615c3436646ae80dca16be5789 +Author: Jan Klattenhoff +Date: Thu Feb 13 10:30:46 2025 +0100 + + build: update release configuration for plugins and rules + +commit 55cd5fefede54ad91b2f4b1a94ee13c8a79b5bd4 +Author: Constantin Simonis +Date: Thu Feb 13 10:29:22 2025 +0100 + + prettier + +commit 6ba4937538b102a2e4b9cb2c730c3dbc7f4a1e11 +Author: Constantin Simonis +Date: Thu Feb 13 10:29:08 2025 +0100 + + feat: add form validation + +commit 1d0162d250e132eaab746f5bc71222376b30aa48 +Author: Constantin Simonis +Date: Thu Feb 13 10:22:33 2025 +0100 + + feat: make stripe functional + +commit 177dd7859241e3d98349e5c45e807af0351a824f +Author: Constantin Simonis +Date: Thu Feb 13 09:42:42 2025 +0100 + + wip + +commit 0ef2f583799583dbb24de47b22742792421a2fe7 (tag: v1.2.0) +Merge: 9289a72 ab3bc55 +Author: Huy +Date: Wed Feb 12 11:35:01 2025 +0000 + + Merge pull request 'feat: Convert login button to hompage button when user is authenticated (CAS-33)' (!22) from feat/login-to-homepage-button into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/22 + Reviewed-by: jank1619 + Reviewed-by: Hop In, I Have Puppies AND WiFi + Reviewed-by: Constantin Simonis + +commit ab3bc5587eeed0197d4df7bb83410e196879be9f +Author: Phan Huy Tran +Date: Wed Feb 12 12:33:52 2025 +0100 + + refactor: remove oninit + +commit 22086a88fae7a5806eb31106b30a4a4e1606c192 +Author: Phan Huy Tran +Date: Wed Feb 12 12:20:57 2025 +0100 + + style: Run prettier + +commit 3a2b92b3ffc7dabeb57b27a06d9f642e2340c5c0 +Author: Phan Huy Tran +Date: Wed Feb 12 12:19:31 2025 +0100 + + feat: Convert login button to hompage button when user is authenticated + +commit 9289a72acfe8cb21771e5ba0a3bf0050c95eb556 +Merge: 9d93990 aea3442 +Author: jank1619 +Date: Wed Feb 12 10:48:02 2025 +0000 + + Merge pull request 'style: Update CSS formatting and add theme variables' (!20) from task/add-theming-styles into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/20 + Reviewed-by: jank1619 + Reviewed-by: Huy + +commit aea34424b897d87a5f6414a59c296fb9d62f580f +Author: Jan-Marlon Leibl +Date: Wed Feb 12 11:46:52 2025 +0100 + + style: Update CSS syntax and fix color case sensitivity + +commit 21bdbab1cf878cf7afead5580764dd023612601c +Author: Jan-Marlon Leibl +Date: Wed Feb 12 11:45:12 2025 +0100 + + style: Update CSS formatting and add theme variables + +commit 9d9399056f713d33fcf2cc38c8777f50d773101c +Merge: 9dd14cd 2d955ee +Author: jank1619 +Date: Wed Feb 12 10:41:43 2025 +0000 + + Merge pull request 'ci: add CI workflow configuration file' (!15) from ci/pipelines into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/15 + Reviewed-by: Huy + Reviewed-by: Constantin Simonis + +commit 2d955eed1afd621efe91fe229e8abc3d6abbb4dd +Author: Jan Klattenhoff +Date: Wed Feb 12 11:36:45 2025 +0100 + + ci: remove caching from CI workflow configuration + +commit dc1482c3206823a834a355f915c53446f8a0c6c3 +Author: Jan Klattenhoff +Date: Wed Feb 12 11:33:32 2025 +0100 + + ci: add prettier job to CI workflow + +commit 343704959bc5e61b6d5454f1c47d04ec8e408b15 +Author: Jan Klattenhoff +Date: Wed Feb 12 11:31:32 2025 +0100 + + ci: update runner from remote to vps-4 in workflows + +commit ac3c84106dbb27660a9d37da9c6e504341896fb5 +Author: Jan Klattenhoff +Date: Wed Feb 12 11:23:38 2025 +0100 + + ci: improve CI workflow with step names for clarity + +commit 3e1e42fa31874572da031d96c7b07cdab3dca4f5 +Author: Jan Klattenhoff +Date: Wed Feb 12 11:21:56 2025 +0100 + + ci: update CI script for better readability + +commit f51d32ba5f315d191f55e7f74c06786b2c7505f0 +Author: Jan Klattenhoff +Date: Wed Feb 12 11:20:51 2025 +0100 + + ci: add cd command to frontend in CI workflow + +commit cb80b041a63f5e46c9228bec4978ea69ed062df1 +Author: Jan Klattenhoff +Date: Wed Feb 12 11:16:48 2025 +0100 + + ci: update CI workflow to use new container image + +commit d1aa0222a1167929a8177a144d8e6c24d252f12a +Author: Jan Klattenhoff +Date: Wed Feb 12 11:13:45 2025 +0100 + + ci: change runner to remote in CI configuration + +commit e270b8abe5379be569e75f16efca7e36c0170a86 +Author: Jan Klattenhoff +Date: Wed Feb 12 11:11:35 2025 +0100 + + ci: add CI workflow configuration file + +commit 9dd14cd9442d0e1da09c17fd59f0a9482b840c41 (tag: v1.1.0) +Merge: 6072e81 6a823bf +Author: Constantin Simonis +Date: Wed Feb 12 10:37:25 2025 +0000 + + Merge pull request 'chore(deployment): add deployment for backend' (!16) from deployment/backend into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/16 + Reviewed-by: jank1619 + Reviewed-by: Huy + +commit 6072e8129911a1c93e03235a7f17aa206ee3bcbe +Merge: 0870f5a c64152b +Author: Huy +Date: Wed Feb 12 10:37:21 2025 +0000 + + Merge pull request 'feat: Add proper redirects to login and logout buttons (CAS-1)' (!17) from feature/login-logout-redirect into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/17 + Reviewed-by: Constantin Simonis + Reviewed-by: jank1619 + +commit 6a823bf02e2b6366916daddb7314864a7d6478cd +Merge: 0836830 0870f5a +Author: Constantin Simonis +Date: Wed Feb 12 10:37:15 2025 +0000 + + Merge branch 'main' into deployment/backend + +commit 0836830df2be3d367856adacec40cb3296b38187 +Author: Constantin Simonis +Date: Wed Feb 12 11:35:57 2025 +0100 + + refactor: Add default value to db host + +commit c64152b99fad46c310a8eb184731c4db7b373ca8 +Author: Phan Huy Tran +Date: Wed Feb 12 11:16:29 2025 +0100 + + style: format code with prettier + +commit a958d9f6ac91430fcf1316e253d1a835b1b95646 +Author: Constantin Simonis +Date: Wed Feb 12 11:15:33 2025 +0100 + + refactor: Whoops + +commit fab3680c07ecf1c988783dfeda19770a04c6287f +Author: Phan Huy Tran +Date: Wed Feb 12 11:15:27 2025 +0100 + + feat: Add proper redirects to login and logout button + +commit 9778a1e6d5935926463e28c1602a8b5f16028882 +Author: Constantin Simonis +Date: Wed Feb 12 11:15:00 2025 +0100 + + refactor: Refactor dockerfile + +commit 3113eee4149ff735bfb44b72a35c5951758b39bc +Author: Constantin Simonis +Date: Wed Feb 12 11:13:18 2025 +0100 + + chore(deployment): add deployment for backend + +commit 0870f5a73d893b56cc9e2dc133168352aecef87d (tag: v1.0.1) +Merge: a23a438 13769e0 +Author: Huy +Date: Wed Feb 12 10:00:53 2025 +0000 + + Merge pull request 'feat: Implement Login and Logout functionality, protect authenticated routes' (!12) from feature/oauth into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/12 + Reviewed-by: lziemke + Reviewed-by: Constantin Simonis + +commit 13769e0df5f536a45381789ae54c403fda964462 +Author: Phan Huy Tran +Date: Wed Feb 12 10:56:21 2025 +0100 + + fix: Translate login to german + +commit 4b9574ac965b6e428c1575359562e9d68d7f190b +Author: Phan Huy Tran +Date: Wed Feb 12 10:54:47 2025 +0100 + + fix: fix routing + +commit f6bcc1be11bc4b1de34d9a6e722a98c00d8e6b9b +Author: Phan Huy Tran +Date: Wed Feb 12 10:46:48 2025 +0100 + + Prettier and rebase + +commit c3f9ba7bcada69d2bb072ddfa16cb11529333ce9 +Author: Phan Huy Tran +Date: Wed Feb 12 09:41:05 2025 +0100 + + Add nested route config for authentication + +commit dc993b287954a6e35e918b99eacf49eec9d1e00b +Author: Phan Huy Tran +Date: Wed Feb 12 09:38:31 2025 +0100 + + Add alerts + +commit 53f21a220f6bc75ab15535ecb7a05ff6b2fc8759 +Author: Phan Huy Tran +Date: Wed Feb 12 09:27:41 2025 +0100 + + Add logout and login functionality + +commit f10de66c12ba017cd79e71c6377f613b4a1b77fc +Author: Phan Huy Tran +Date: Wed Feb 12 09:22:20 2025 +0100 + + Refactor auth guard + +commit fa30fc330507e8342026b4c34334b915a4002012 +Author: Phan Huy Tran +Date: Wed Feb 12 09:00:18 2025 +0100 + + Protect homepage with keycloak + +commit a23a438a7e7d52cd7ed630be249630769de39ba2 (tag: v1.0.0) +Merge: 9a8f9d5 94ac9bd +Author: jank1619 +Date: Wed Feb 12 09:54:14 2025 +0000 + + Merge pull request 'ci/semantic-versioning' (!14) from ci/semantic-versioning into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/14 + Reviewed-by: Constantin Simonis + Reviewed-by: Huy + +commit 94ac9bd491268d8485243c984cdebd685365cfda +Author: Jan Klattenhoff +Date: Wed Feb 12 10:52:49 2025 +0100 + + style(release.yml): format permissions section in YAML + +commit f4541c5d865c8b778441b11ffb85b33041c0f1a3 +Author: Jan Klattenhoff +Date: Wed Feb 12 10:51:57 2025 +0100 + + ci: update branch name in release workflow config + +commit 774e55c6a6cc34eb55919e7456b5124d76123970 +Author: Jan Klattenhoff +Date: Wed Feb 12 10:50:51 2025 +0100 + + ci: change runner to remote in release workflow + +commit 25ff804b76c09ebbab1e0b25c59770b06660dcb6 +Author: Jan Klattenhoff +Date: Wed Feb 12 10:49:45 2025 +0100 + + ci: add master branch trigger for release workflow + +commit 002ddd6dbe27e73bf6b49cdca093d82ec0179c5e +Merge: ab95989 9a8f9d5 +Author: jank1619 +Date: Wed Feb 12 09:48:50 2025 +0000 + + Merge branch 'main' into ci/semantic-versioning + +commit ab9598950a4cb975b1625e46044c5b8604902a62 +Author: Jan Klattenhoff +Date: Wed Feb 12 10:47:23 2025 +0100 + + build: add release configuration for semantic release + +commit f31a959ec540e25676120f2c245bf75672ba5eac +Author: Jan Klattenhoff +Date: Wed Feb 12 10:45:42 2025 +0100 + + build: add Gitea release workflow configuration + +commit 9a8f9d5c41a4b7716c6069072a6bf6245d4e1223 +Merge: 2cd1c6d 7d4cfe1 +Author: Huy +Date: Wed Feb 12 09:42:55 2025 +0000 + + Merge pull request 'feat: Implement homepage skeleton (CAS-30)' (!13) from feature/homepage into main + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/13 + Reviewed-by: Huy + Reviewed-by: jank1619 + +commit 7d4cfe179415590485246c03f309b8b4143baea5 +Author: Lea +Date: Wed Feb 12 10:31:12 2025 +0100 + + removed not used stuff + +commit b010d49752cfc680fddee6025f7b73e0a8d9de1c +Author: Lea +Date: Wed Feb 12 10:26:28 2025 +0100 + + deleted sample request file + +commit f5ae0e358cd1f83f6276c7f45a46ebf83bfabce7 +Author: Lea +Date: Wed Feb 12 10:21:41 2025 +0100 + + finished homepage skeleton + +commit bbbf0a94733c9e613e54c6939a9d1df5a2a3c5a9 +Author: Lea +Date: Wed Feb 12 08:50:46 2025 +0100 + + homepage skeleton + +commit 2cd1c6d8fda9f1af8faad8c9fb2ad4eb52c2677f +Author: Huy +Date: Wed Feb 12 07:43:05 2025 +0000 + + feat: Create initial landing page (CAS-8) (!11) + + Co-authored-by: Phan Huy Tran + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/11 + Reviewed-by: Constantin Simonis + Reviewed-by: lziemke + +commit 35bfa3be7fc7cd68e4fa7745445858d3530ef84f +Author: Huy +Date: Wed Feb 5 11:38:00 2025 +0000 + + fix: Fix security config, add health check route and adjust requests (!9) + + Co-authored-by: Phan Huy Tran + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/9 + Reviewed-by: Constantin Simonis + Reviewed-by: lziemke + +commit 7fe8f276cff785854bf533c9332dd1d16f8df553 +Author: Jan-Marlon Leibl +Date: Wed Feb 5 10:37:21 2025 +0000 + + refactor: update .gitignore and optimize Angular config (!7) + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/7 + Reviewed-by: Constantin Simonis + Reviewed-by: Huy + Co-authored-by: Jan-Marlon Leibl + Co-committed-by: Jan-Marlon Leibl + +commit f6f52e2724871f66380573f4eae67f9812c2cd4d +Author: Jan-Marlon Leibl +Date: Wed Feb 5 10:26:15 2025 +0000 + + feat: add TailwindCSS and PostCSS configuration (!6) + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/6 + Reviewed-by: Constantin Simonis + Reviewed-by: Huy + Co-authored-by: Jan-Marlon Leibl + Co-committed-by: Jan-Marlon Leibl + +commit 099b855d3e34d9a56babbe418e1971f35206f784 +Author: Constantin Simonis +Date: Wed Feb 5 10:11:48 2025 +0000 + + bugfix(java): fix java startup error + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/5 + Reviewed-by: Huy + +commit c81ad44858e04d923ee889eca1e12de4a01dd0b8 +Author: Huy +Date: Wed Feb 5 10:01:05 2025 +0000 + + chore(setup): Add and configure prettier (!4) + + Co-authored-by: Phan Huy Tran + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/4 + Reviewed-by: Hop In, I Have Puppies AND WiFi + +commit 8fca823e7d7735777481751ae343b8eac7f8068a +Author: Jan-Marlon Leibl +Date: Wed Feb 5 09:57:19 2025 +0000 + + docs: add README on semantic commit messages (!3) + + Co-authored-by: Constantin Simonis + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/3 + Reviewed-by: Constantin Simonis + Co-authored-by: Jan-Marlon Leibl + Co-committed-by: Jan-Marlon Leibl + +commit 25216d10faaaf6bab85c463c2095c71009333351 +Author: Constantin Simonis +Date: Wed Feb 5 09:53:26 2025 +0000 + + chore(setup): setup java backend + + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/1 + Reviewed-by: Huy + Reviewed-by: lziemke + +commit ad2c70b04ba5e404897072f1f3ca730acf3367bc +Author: Huy +Date: Wed Feb 5 09:53:24 2025 +0000 + + chore(setup): convert package.json to Bun and add bun.lockb (!2) + + Co-authored-by: Phan Huy Tran + Reviewed-on: https://git.simonis.lol/projects/casino/pulls/2 + Reviewed-by: Constantin Simonis + +commit 3b669918d0d14425d990ae195c5fa5d922304d62 +Author: Bernd Heidemann +Date: Wed Sep 11 10:40:00 2024 +0200 + + first diff --git a/on: actual and formal argument lists differ in length b/on: actual and formal argument lists differ in length new file mode 100644 index 0000000..333a0b5 --- /dev/null +++ b/on: actual and formal argument lists differ in length @@ -0,0 +1,258 @@ + + SSUUMMMMAARRYY OOFF LLEESSSS CCOOMMMMAANNDDSS + + Commands marked with * may be preceded by a number, _N. + Notes in parentheses indicate the behavior if _N is given. + A key preceded by a caret indicates the Ctrl key; thus ^K is ctrl-K. + + h H Display this help. + q :q Q :Q ZZ Exit. + --------------------------------------------------------------------------- + + MMOOVVIINNGG + + e ^E j ^N CR * Forward one line (or _N lines). + y ^Y k ^K ^P * Backward one line (or _N lines). + f ^F ^V SPACE * Forward one window (or _N lines). + b ^B ESC-v * Backward one window (or _N lines). + z * Forward one window (and set window to _N). + w * Backward one window (and set window to _N). + ESC-SPACE * Forward one window, but don't stop at end-of-file. + d ^D * Forward one half-window (and set half-window to _N). + u ^U * Backward one half-window (and set half-window to _N). + ESC-) RightArrow * Right one half screen width (or _N positions). + ESC-( LeftArrow * Left one half screen width (or _N positions). + ESC-} ^RightArrow Right to last column displayed. + ESC-{ ^LeftArrow Left to first column. + F Forward forever; like "tail -f". + ESC-F Like F but stop when search pattern is found. + r ^R ^L Repaint screen. + R Repaint screen, discarding buffered input. + --------------------------------------------------- + Default "window" is the screen height. + Default "half-window" is half of the screen height. + --------------------------------------------------------------------------- + + SSEEAARRCCHHIINNGG + + /_p_a_t_t_e_r_n * Search forward for (_N-th) matching line. + ?_p_a_t_t_e_r_n * Search backward for (_N-th) matching line. + n * Repeat previous search (for _N-th occurrence). + N * Repeat previous search in reverse direction. + ESC-n * Repeat previous search, spanning files. + ESC-N * Repeat previous search, reverse dir. & spanning files. + ESC-u Undo (toggle) search highlighting. + ESC-U Clear search highlighting. + &_p_a_t_t_e_r_n * Display only matching lines. + --------------------------------------------------- + A search pattern may begin with one or more of: + ^N or ! Search for NON-matching lines. + ^E or * Search multiple files (pass thru END OF FILE). + ^F or @ Start search at FIRST file (for /) or last file (for ?). + ^K Highlight matches, but don't move (KEEP position). + ^R Don't use REGULAR EXPRESSIONS. + ^W WRAP search if no match found. + --------------------------------------------------------------------------- + + JJUUMMPPIINNGG + + g < ESC-< * Go to first line in file (or line _N). + G > ESC-> * Go to last line in file (or line _N). + p % * Go to beginning of file (or _N percent into file). + t * Go to the (_N-th) next tag. + T * Go to the (_N-th) previous tag. + { ( [ * Find close bracket } ) ]. + } ) ] * Find open bracket { ( [. + ESC-^F _<_c_1_> _<_c_2_> * Find close bracket _<_c_2_>. + ESC-^B _<_c_1_> _<_c_2_> * Find open bracket _<_c_1_>. + --------------------------------------------------- + Each "find close bracket" command goes forward to the close bracket + matching the (_N-th) open bracket in the top line. + Each "find open bracket" command goes backward to the open bracket + matching the (_N-th) close bracket in the bottom line. + + m_<_l_e_t_t_e_r_> Mark the current top line with . + M_<_l_e_t_t_e_r_> Mark the current bottom line with . + '_<_l_e_t_t_e_r_> Go to a previously marked position. + '' Go to the previous position. + ^X^X Same as '. + ESC-M_<_l_e_t_t_e_r_> Clear a mark. + --------------------------------------------------- + A mark is any upper-case or lower-case letter. + Certain marks are predefined: + ^ means beginning of the file + $ means end of the file + --------------------------------------------------------------------------- + + CCHHAANNGGIINNGG FFIILLEESS + + :e [_f_i_l_e] Examine a new file. + ^X^V Same as :e. + :n * Examine the (_N-th) next file from the command line. + :p * Examine the (_N-th) previous file from the command line. + :x * Examine the first (or _N-th) file from the command line. + :d Delete the current file from the command line list. + = ^G :f Print current file name. + --------------------------------------------------------------------------- + + MMIISSCCEELLLLAANNEEOOUUSS CCOOMMMMAANNDDSS + + -_<_f_l_a_g_> Toggle a command line option [see OPTIONS below]. + --_<_n_a_m_e_> Toggle a command line option, by name. + __<_f_l_a_g_> Display the setting of a command line option. + ___<_n_a_m_e_> Display the setting of an option, by name. + +_c_m_d Execute the less cmd each time a new file is examined. + + !_c_o_m_m_a_n_d Execute the shell command with $SHELL. + |XX_c_o_m_m_a_n_d Pipe file between current pos & mark XX to shell command. + s _f_i_l_e Save input to a file. + v Edit the current file with $VISUAL or $EDITOR. + V Print version number of "less". + --------------------------------------------------------------------------- + + OOPPTTIIOONNSS + + Most options may be changed either on the command line, + or from within less by using the - or -- command. + Options may be given in one of two forms: either a single + character preceded by a -, or a name preceded by --. + + -? ........ --help + Display help (from command line). + -a ........ --search-skip-screen + Search skips current screen. + -A ........ --SEARCH-SKIP-SCREEN + Search starts just after target line. + -b [_N] .... --buffers=[_N] + Number of buffers. + -B ........ --auto-buffers + Don't automatically allocate buffers for pipes. + -c ........ --clear-screen + Repaint by clearing rather than scrolling. + -d ........ --dumb + Dumb terminal. + -D xx_c_o_l_o_r . --color=xx_c_o_l_o_r + Set screen colors. + -e -E .... --quit-at-eof --QUIT-AT-EOF + Quit at end of file. + -f ........ --force + Force open non-regular files. + -F ........ --quit-if-one-screen + Quit if entire file fits on first screen. + -g ........ --hilite-search + Highlight only last match for searches. + -G ........ --HILITE-SEARCH + Don't highlight any matches for searches. + -h [_N] .... --max-back-scroll=[_N] + Backward scroll limit. + -i ........ --ignore-case + Ignore case in searches that do not contain uppercase. + -I ........ --IGNORE-CASE + Ignore case in all searches. + -j [_N] .... --jump-target=[_N] + Screen position of target lines. + -J ........ --status-column + Display a status column at left edge of screen. + -k [_f_i_l_e] . --lesskey-file=[_f_i_l_e] + Use a lesskey file. + -K ........ --quit-on-intr + Exit less in response to ctrl-C. + -L ........ --no-lessopen + Ignore the LESSOPEN environment variable. + -m -M .... --long-prompt --LONG-PROMPT + Set prompt style. + -n -N .... --line-numbers --LINE-NUMBERS + Don't use line numbers. + -o [_f_i_l_e] . --log-file=[_f_i_l_e] + Copy to log file (standard input only). + -O [_f_i_l_e] . --LOG-FILE=[_f_i_l_e] + Copy to log file (unconditionally overwrite). + -p [_p_a_t_t_e_r_n] --pattern=[_p_a_t_t_e_r_n] + Start at pattern (from command line). + -P [_p_r_o_m_p_t] --prompt=[_p_r_o_m_p_t] + Define new prompt. + -q -Q .... --quiet --QUIET --silent --SILENT + Quiet the terminal bell. + -r -R .... --raw-control-chars --RAW-CONTROL-CHARS + Output "raw" control characters. + -s ........ --squeeze-blank-lines + Squeeze multiple blank lines. + -S ........ --chop-long-lines + Chop (truncate) long lines rather than wrapping. + -t [_t_a_g] .. --tag=[_t_a_g] + Find a tag. + -T [_t_a_g_s_f_i_l_e] --tag-file=[_t_a_g_s_f_i_l_e] + Use an alternate tags file. + -u -U .... --underline-special --UNDERLINE-SPECIAL + Change handling of backspaces. + -V ........ --version + Display the version number of "less". + -w ........ --hilite-unread + Highlight first new line after forward-screen. + -W ........ --HILITE-UNREAD + Highlight first new line after any forward movement. + -x [_N[,...]] --tabs=[_N[,...]] + Set tab stops. + -X ........ --no-init + Don't use termcap init/deinit strings. + -y [_N] .... --max-forw-scroll=[_N] + Forward scroll limit. + -z [_N] .... --window=[_N] + Set size of window. + -" [_c[_c]] . --quotes=[_c[_c]] + Set shell quote characters. + -~ ........ --tilde + Don't display tildes after end of file. + -# [_N] .... --shift=[_N] + Set horizontal scroll amount (0 = one half screen width). + --file-size + Automatically determine the size of the input file. + --follow-name + The F command changes files if the input file is renamed. + --incsearch + Search file as each pattern character is typed in. + --line-num-width=N + Set the width of the -N line number field to N characters. + --mouse + Enable mouse input. + --no-keypad + Don't send termcap keypad init/deinit strings. + --no-histdups + Remove duplicates from command history. + --rscroll=C + Set the character used to mark truncated lines. + --save-marks + Retain marks across invocations of less. + --status-col-width=N + Set the width of the -J status column to N characters. + --use-backslash + Subsequent options use backslash as escape char. + --use-color + Enables colored text. + --wheel-lines=N + Each click of the mouse wheel moves N lines. + + + --------------------------------------------------------------------------- + + LLIINNEE EEDDIITTIINNGG + + These keys can be used to edit text being entered + on the "command line" at the bottom of the screen. + + RightArrow ..................... ESC-l ... Move cursor right one character. + LeftArrow ...................... ESC-h ... Move cursor left one character. + ctrl-RightArrow ESC-RightArrow ESC-w ... Move cursor right one word. + ctrl-LeftArrow ESC-LeftArrow ESC-b ... Move cursor left one word. + HOME ........................... ESC-0 ... Move cursor to start of line. + END ............................ ESC-$ ... Move cursor to end of line. + BACKSPACE ................................ Delete char to left of cursor. + DELETE ......................... ESC-x ... Delete char under cursor. + ctrl-BACKSPACE ESC-BACKSPACE ........... Delete word to left of cursor. + ctrl-DELETE .... ESC-DELETE .... ESC-X ... Delete word under cursor. + ctrl-U ......... ESC (MS-DOS only) ....... Delete entire line. + UpArrow ........................ ESC-k ... Retrieve previous command line. + DownArrow ...................... ESC-j ... Retrieve next command line. + TAB ...................................... Complete filename & cycle. + SHIFT-TAB ...................... ESC-TAB Complete filename & reverse cycle. + ctrl-L ................................... Complete filename, list all.