You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* upstream/main:
Remove fomantic checkbox module (go-gitea#30162)
Refactor topic Find functions and add more tests for pagination (go-gitea#30127)
replace jquery-minicolors with coloris (go-gitea#30055)
Add API for `Variables` (go-gitea#29520)
Fix `DEFAULT_SHOW_FULL_NAME=false` has no effect in commit list and commit graph page (go-gitea#30096)
Fix migration v292 (go-gitea#30153)
Adjust VS Code debug filename match in .gitignore (go-gitea#30158)
Prevent re-review and dismiss review actions on closed and merged PRs (go-gitea#30065)
Render code tags in commit messages (go-gitea#30146)
Bump `@github/relative-time-element` to v4.4.0 (go-gitea#30154)
Migrate font-family to tailwind (go-gitea#30118)
Move from `max( id )` to `max( index )` for latest commit statuses (go-gitea#30076)
Remember login for a month by default (go-gitea#30150)
Copy file name to clipboardExpand all lines: docs/content/administration/config-cheat-sheet.en-us.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -528,7 +528,7 @@ And the following unique queues:
528
528
-`INSTALL_LOCK`: **false**: Controls access to the installation page. When set to "true", the installation page is not accessible.
529
529
-`SECRET_KEY`: **\<random at every install\>**: Global secret key. This key is VERY IMPORTANT, if you lost it, the data encrypted by it (like 2FA secret) can't be decrypted anymore.
530
530
-`SECRET_KEY_URI`: **_empty_**: Instead of defining SECRET_KEY, this option can be used to use the key stored in a file (example value: `file:/etc/gitea/secret_key`). It shouldn't be lost like SECRET_KEY.
531
-
-`LOGIN_REMEMBER_DAYS`: **7**: Cookie lifetime, in days.
531
+
-`LOGIN_REMEMBER_DAYS`: **31**: How long to remember that a user is logged in before requiring relogin (in days).
532
532
-`COOKIE_REMEMBER_NAME`: **gitea\_incredible**: Name of cookie used to store authentication
533
533
information.
534
534
-`REVERSE_PROXY_AUTHENTICATION_USER`: **X-WEBAUTH-USER**: Header name for reverse proxy
Copy file name to clipboardExpand all lines: docs/content/contributing/guidelines-frontend.en-us.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ We recommend [Google HTML/CSS Style Guide](https://google.github.io/styleguide/h
47
47
9. Avoid unnecessary `!important` in CSS, add comments to explain why it's necessary if it can't be avoided.
48
48
10. Avoid mixing different events in one event listener, prefer to use individual event listeners for every event.
49
49
11. Custom event names are recommended to use `ce-` prefix.
50
-
12. Prefer using Tailwind CSS which is available via `tw-` prefix, e.g. `tw-relative`. Gitea's helper CSS classes use `gt-` prefix (`gt-mono`), while Gitea's own private framework-level CSS classes use `g-` prefix (`g-modal-confirm`).
50
+
12. Prefer using Tailwind CSS which is available via `tw-` prefix, e.g. `tw-relative`. Gitea's helper CSS classes use `gt-` prefix (`gt-word-break`), while Gitea's own private framework-level CSS classes use `g-` prefix (`g-modal-confirm`).
51
51
13. Avoid inline scripts & styles as much as possible, it's recommended to put JS code into JS files and use CSS classes. If inline scripts & styles are unavoidable, explain the reason why it can't be avoided.
0 commit comments