From 10475f32fbee62724b3d65832700f295f23968a8 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Mon, 2 Jun 2025 20:21:35 +0200 Subject: [PATCH] Remove references to syntax themes --- CREDITS.md | 4 ++-- novelwriter/assets/text/credits_en.htm | 4 ++-- novelwriter/config.py | 3 +-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CREDITS.md b/CREDITS.md index 9ac3b34a..b3c527a5 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -62,8 +62,8 @@ Some of the assets bundled with novelWriter were adapted from the following sour * **Material Symbols** icons by Google Inc (Apache 2.0) * **Remix** icons by RemixIcon (Apache 2.0) * **Font Awesome** icons by Fonticons Inc (CC BY 4.0) -* **Tomorrow** syntax themes by Chris Kempson (MIT License) -* **Owl** syntax themes by Sarah Drasner (MIT License) +* **Tomorrow** themes by Chris Kempson (MIT License) +* **Owl** themes by Sarah Drasner (MIT License) * **Solarized** themes by Ethan Schoonover (MIT License) * **Cyberpunk Night** theme by Anders Lemvigh (CC BY-SA 4.0) * **Dracula** theme by Zeno Rocha (MIT License) diff --git a/novelwriter/assets/text/credits_en.htm b/novelwriter/assets/text/credits_en.htm index 88b3887d..33903616 100644 --- a/novelwriter/assets/text/credits_en.htm +++ b/novelwriter/assets/text/credits_en.htm @@ -75,8 +75,8 @@ more contributions are listed on the project's Members page.

  • Material Symbols icons by Google Inc (Apache 2.0)
  • Remix icons by RemixIcon (Apache 2.0)
  • Font Awesome icons by Fonticons Inc (CC BY 4.0)
  • -
  • Tomorrow syntax themes by Chris Kempson (MIT License)
  • -
  • Owl syntax themes by Sarah Drasner (MIT License)
  • +
  • Tomorrow themes by Chris Kempson (MIT License)
  • +
  • Owl themes by Sarah Drasner (MIT License)
  • Solarized themes by Ethan Schoonover (MIT License)
  • Cyberpunk Night theme by Anders Lemvigh (CC BY-SA 4.0)
  • Dracula theme by Zeno Rocha (MIT License)
  • diff --git a/novelwriter/config.py b/novelwriter/config.py index 9b8752fc..db173019 100644 --- a/novelwriter/config.py +++ b/novelwriter/config.py @@ -553,11 +553,10 @@ class Config: self._confPath.mkdir(exist_ok=True) self._dataPath.mkdir(exist_ok=True) - # Also create the syntax, themes and icons folders if possible + # Also create the themes and icons folders if possible if self._dataPath.is_dir(): (self._dataPath / "cache").mkdir(exist_ok=True) (self._dataPath / "icons").mkdir(exist_ok=True) - (self._dataPath / "syntax").mkdir(exist_ok=True) (self._dataPath / "themes").mkdir(exist_ok=True) self._recentPaths.loadCache()