This commit enhances README.md readability with proper capitalization, clarifies Versioning and Releasing sections, and renames "Icon Preperation" to "Icon generation". Additionally, it introduces a dynamic height for the file list container in commit/+page.svelte based on the viewport height.
This commit enhances README.md readability with proper capitalization, clarifies Versioning and Releasing sections, and renames "Icon Preperation" to "Icon generation". Additionally, it introduces a dynamic height for the file list container in commit/+page.svelte based on the viewport height.
- Improved terminal experience by handling 'Close' messages and reloading the page
- Added logic to send a Close message to the websocket when EOF is reached
- Changed the `terminal` function to a reactive declaration and added a `setupTerminal` function call
This commit updates the linear gradient color in FileActivity and makes UI improvements in player and settings pages. The changes include modifying input elements and button layouts for better organization and accessibility.
Changes:
- Changed gradient color to #9565FF in FileActivity.svelte
- Added hunk-controller-container div for better input organization in player page
- Updated footer layout in settings page to align the button to the right
This commit improves the visualization of diffs in the CodeViewer and makes several adjustments to the interface, which enhances the user experience.
Changes:
- Add padding to code lines and update line colors for context, split, and diff classes.
- Modify background color values for addition and deletion markers.
- Add contrasting text color to addition inner diffs: white.
- Update lineClass assignment in DiffViewer.svelte to reflect new colors.
- Reorganize project overview page: move work-in-progress sidebar to the right.
- Rename class "work-in-progress-sidebar" to "side-panel" for clearer naming convention.
This commit removes an unnecessary blank line from the README.md file. This change is minimal but helps maintain the consistency and cleanliness of the documentation.
- Update hotkeys for `Commit` and `Terminal` commands
- Remove `Quick commit` command
- Add `Replay History` command
- Update hotkey split from ` ` to `+`
[src/lib/components/CommandPalette/commands.ts]
- Change the hotkey for `Commit` from `Shift C` to `Shift+C`
- Change the hotkey for `Terminal` from `Shift T` to `Shift+T`
- Remove the `Quick commit` command
- Add a `Replay History` command with no hotkey
[src/lib/components/CommandPalette/CommandPalette.svelte]
- Change the hotkey split from ` ` to `+`
- Update user and project profile settings
- Add validations for user name and profile picture
- Add input fields for project name and description
[src/routes/users/+page.svelte]
- Raise `userNameInput` variable and bind it to the input field
- Add `pictureChanged` variable to track if the picture has been changed
- Add a condition to the form submit button to check if `userNameInput` and `pictureChanged` are valid
- Add a placeholder to the name input field
- Add a valid file type check before setting `userPicture`
- Update the API call to include `userNameInput` and `pictureChanged`
-
[src/routes/projects/[projectId]/settings/+page.svelte]
- Add input fields for project name and description
- Add placeholder for project name
- Bind project name and description inputs to fields
- Disable update button if no changes are made
- Change button label from "Update profile" to "Update profile"
Improved the list style and highlight of the file list by making changes to the class properties in the player page. Modified padding, background color, and margins to create a more visually appealing and clearer display of the selected files.
Changes:
- Modified class property of the file list to set proper padding, remove default bullet points and add a right padding.
- Changed font-bold class to bg-[#3356C2] for selected file, making it more prominent and improved readability.
- Adjusted margins, padding and width for the list elements to better align and fit within the file list.
Changes:
- In Dialog.svelte, replaced hard-coded color values with class-based colors for better maintainability.
- Added padding to the paragraph elements in page.svelte for better spacing.
- Updated the font-semibold class to use consistent text color across elements.
- Update hotkeys for Command Palette commands
- Update 'Quick commit' hotkey from `c` to `C`
- Update 'Commit' hotkey from `Shift+c` to `Shift C`
- Update 'Terminal' hotkey from `Shift+t` to `Shift T`
- Update 'Replay History' hotkey from `r` to `R`
[src/lib/components/CommandPalette/CommandPalette.svelte]
- Split the command.hotkey into separate keys and display them
[src/lib/components/CommandPalette/commands.ts]
- Change the hotkey for 'Quick commit' from `c` to `C`
- Change the hotkey for 'Commit' from `Shift+c` to `Shift C`
- Change the hotkey for 'Terminal' from `Shift+t` to `Shift T`
- Change the hotkey for 'Replay History' from `r` to `R`