Compare commits

...

9 Commits

Author SHA1 Message Date
107736c01a Merge branch 'feat/version-indicator' into master2 2025-01-30 21:03:39 -06:00
Cinder
882daa8e3d [CI] Upgrade to actions/upload-artifact@4 (#871) 2025-01-30 20:59:14 -06:00
Cinder
51fe187fbb [Posts] Posts searchbar and layout fixes (#868)
* Remove the strange search button styles on the posts/show page
* Remove debug console output
* Tweak the searchbar styles to be consistent across the pages
2025-01-30 20:59:13 -06:00
Cinder
8628351bc5 [UI] Minor fixes to the navbar (#867)
* Fix the incorrect layered icons in the nav menu on low-resolution screens
* Move the wiki and help buttons higher up in the menu
* Prevent the buttons in the mobile menu from breaking into a new line
* Prevent the secondary nav buttons from expanding the menu vertically
* Fix the navbar height to avoid having it shift around
* Rework the mobile menu offsets
* Add back the forum update notification
2025-01-30 20:59:13 -06:00
Cinder
cecefcc258 [Favorites] Add the missing methods (#866) 2025-01-30 20:59:13 -06:00
Cinder
90edfec0a9 [Posts] Add a wiki excerpt to the search page (#861) 2025-01-30 20:59:13 -06:00
Cinder
48396ea171 [Blacklist] Fix a bug that caused videos not to get paused when blacklisted (#858) 2025-01-30 20:59:13 -06:00
Cinder
13bdc2dfe0 [Posts] Add a confirmation dialogue to the tag script "apply all" button (#857) 2025-01-30 20:59:13 -06:00
clragon
5315450457 [UI] Add version indicator in footer 2025-01-28 18:07:59 +00:00
2 changed files with 5 additions and 0 deletions

View File

@ -11,6 +11,10 @@ module GitHelper
end
end
def self.hash
@hash
end
def self.short_hash
@hash[0..8]
end

View File

@ -16,5 +16,6 @@
<%= link_to "Keyboard Shortcuts", keyboard_shortcuts_path %>
<% end %>
<%= link_to disable_mobile_mode? ? "Mobile mode: OFF": "Mobile mode: ON", disable_mobile_mode_path, :rel => "nofollow" %>
<%= link_to "##{GitHelper.short_hash}", GitHelper.commit_url(GitHelper.hash) %>
</span>
</footer>