Commit 6140b811 authored by jan.koester's avatar jan.koester
Browse files

Include desktop entry and rune logo for Linux integration

parent e03dbc1b
Loading
Loading
Loading
Loading

data/logo_runes.svg

0 → 100644
+26 −0
Original line number Diff line number Diff line
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200" width="400" height="200">
  <defs>
    <radialGradient id="bgGrad" cx="50%" cy="50%" r="75%">
      <stop offset="0%" stop-color="#4a4a4a" />
      <stop offset="100%" stop-color="#0a0a0a" />
    </radialGradient>
    <filter id="pigment">
      <feTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="4" result="noise" />
      <feColorMatrix type="matrix" values="1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 0.3 0" in="noise" result="alphaNoise" />
      <feBlend in="SourceGraphic" in2="alphaNoise" mode="multiply" />
    </filter>
    <linearGradient id="textGrad" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ffffff" />
      <stop offset="100%" stop-color="#b3b3b3" />
    </linearGradient>
  </defs>
  
  <!-- Pigmented Gray/Black Background -->
  <rect width="100%" height="100%" rx="25" fill="url(#bgGrad)" filter="url(#pigment)"/>
  
  <!-- Runic Text for "blogi" : b=ᛒ, l=ᛚ, o=ᛟ, g=ᚷ, i=ᛁ -->
  <text x="50%" y="115" font-family="sans-serif" font-size="75" font-weight="bold" fill="url(#textGrad)" text-anchor="middle" letter-spacing="12">ᛒᛚᛟᚷᛁ</text>
  
  <!-- Latin Subtext -->
  <text x="50%" y="165" font-family="sans-serif" font-size="22" font-weight="600" fill="#7f8c8d" text-anchor="middle" letter-spacing="8">BLOGI</text>
</svg>
+2 −0
Original line number Diff line number Diff line
usr/bin/blogi-editor
usr/lib/blogi/plugins/webedit/
usr/share/applications/blogi-editor.desktop
usr/share/icons/hicolor/scalable/apps/blogi-editor.svg
+7 −0
Original line number Diff line number Diff line
blogi (20260416+5) unstable; urgency=medium

  * Add blogi-editor.desktop and rune logo to debian package for Linux
    integration

 -- Jan Koester <jan.koester@tuxist.de>  Thu, 16 Apr 2026 11:24:30 +0200

blogi (20260416+4) unstable; urgency=medium

  * Improve TextBox editor with rich text/raw HTML switch and replace
+2 −0
Original line number Diff line number Diff line
@@ -73,3 +73,5 @@ target_compile_definitions(blogi-editor PRIVATE
add_subdirectory(widgets)

install(TARGETS blogi-editor DESTINATION bin)
install(FILES blogi-editor.desktop DESTINATION share/applications)
install(FILES ${CMAKE_SOURCE_DIR}/data/logo_runes.svg DESTINATION share/icons/hicolor/scalable/apps RENAME blogi-editor.svg)
+9 −0
Original line number Diff line number Diff line
[Desktop Entry]
Name=Blogi Editor
Comment=CMS Editor for Blogi
Exec=blogi-editor
Icon=blogi-editor
Terminal=false
Type=Application
Categories=Development;TextEditor;
StartupNotify=true