Refactor branding references from "Scriptriva Inc." to "Scriptriva" across documentation and code files; update license from Scriptriva Public Source License 1.0 to MIT License.
CI / Tests (3.10) (push) Has been cancelled
CI / Tests (3.13) (push) Has been cancelled

This commit is contained in:
2026-05-28 21:35:05 -04:00
parent 9625c48daa
commit 42b52fb538
8 changed files with 43 additions and 305 deletions
+3 -3
View File
@@ -121,7 +121,7 @@ class SeshatTtsApp(tk.Tk):
).pack(anchor=tk.W, fill=tk.X, pady=(2, 0))
self._wrap_label(
header_text,
text="Developed by Scriptriva Inc. | support@scriptriva.com",
text="Developed by Scriptriva | support@scriptriva.com",
style="Meta.TLabel",
).pack(anchor=tk.W, fill=tk.X, pady=(6, 0))
ttk.Button(header, text="i", width=3, command=self.show_about, style="IconButton.TButton").pack(
@@ -587,7 +587,7 @@ class SeshatTtsApp(tk.Tk):
frame.columnconfigure(0, weight=1)
ttk.Label(frame, text="Seshat TTS", style="AboutTitle.TLabel").grid(row=0, column=0, sticky=tk.W)
ttk.Label(frame, text="Maintainer: Scriptriva Inc.", style="AboutSubtitle.TLabel").grid(
ttk.Label(frame, text="Maintainer: Scriptriva", style="AboutSubtitle.TLabel").grid(
row=1,
column=0,
sticky=tk.W,
@@ -606,7 +606,7 @@ class SeshatTtsApp(tk.Tk):
)
ttk.Label(
frame,
text="Project license: Scriptriva Public Source License 1.0",
text="Project license: MIT License",
style="AboutSection.TLabel",
wraplength=580,
).grid(row=3, column=0, sticky=tk.W)