Update organization name and URLs in configuration files

This commit is contained in:
Gabriel Luiz Freitas Almeida
2024-04-18 11:58:19 -03:00
parent e0a18e96e4
commit 9c292af183
8 changed files with 11 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
MIT License
Copyright (c) 2024 Logspace
Copyright (c) 2024 Langflow
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@@ -7,11 +7,11 @@ module.exports = {
title: "Langflow Documentation",
tagline: "Langflow is a GUI for LangChain, designed with react-flow",
favicon: "img/favicon.ico",
url: "https://logspace-ai.github.io",
url: "https://langflow-ai.github.io",
baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
organizationName: "logspace-ai",
organizationName: "langflow-ai",
projectName: "langflow",
trailingSlash: false,
staticDirectories: ["static"],
@@ -131,7 +131,7 @@ module.exports = {
},
footer: {
links: [],
copyright: `Copyright © ${new Date().getFullYear()} Logspace.`,
copyright: `Copyright © ${new Date().getFullYear()} Langflow.`,
},
zoom: {
selector: ".markdown :not(a) > img:not(.no-zoom)",

View File

@@ -2,7 +2,7 @@
name = "langflow"
version = "1.0.0a24"
description = "A Python package with a built-in web application"
authors = ["Logspace <contact@langflow.org>"]
authors = ["Langflow <contact@langflow.org>"]
maintainers = [
"Carlos Coelho <carlos@langflow.org>",
"Cristhian Zanforlin <cristhian.lousa@gmail.com>",

View File

@@ -121,7 +121,7 @@ class Settings(BaseSettings):
# Define the app name and author
app_name = "langflow"
app_author = "logspace"
app_author = "langflow"
# Get the cache directory for the application
cache_dir = user_cache_dir(app_name, app_author)

View File

@@ -2,7 +2,7 @@
name = "langflow-base"
version = "0.0.36"
description = "A Python package with a built-in web application"
authors = ["Logspace <contact@.ai>"]
authors = ["Langflow <contact@langflow.org>"]
maintainers = [
"Carlos Coelho <carlos@langflow.org>",
"Cristhian Zanforlin <cristhian.lousa@gmail.com>",

View File

@@ -38,7 +38,7 @@ export default function FlowPage({ view }: { view?: boolean }): JSX.Element {
<a
target={"_blank"}
href="https://medium.com/logspace/langflow-datastax-better-together-1b7462cebc4d"
className="logspace-page-icon"
className="langflow-page-icon"
>
{version && <div className="mt-1">Langflow 🤝 DataStax</div>}
<div className={version ? "mt-2" : "mt-1"}> v{version}</div>

View File

@@ -27,7 +27,7 @@ export const useDarkStore = create<DarkStoreType>((set, get) => ({
// if lastUpdated is null or the difference is greater than 2 hours
if (lastUpdated === null || diff > 7200000) {
getRepoStars("logspace-ai", "langflow").then((res) => {
getRepoStars("langflow-ai", "langflow").then((res) => {
window.localStorage.setItem("githubStars", res.toString());
window.localStorage.setItem(
"githubStarsLastUpdated",

View File

@@ -205,11 +205,11 @@
.flow-page-positioning {
@apply h-full w-full overflow-hidden;
}
.logspace-page-icon {
.langflow-page-icon {
@apply absolute bottom-2 left-7 flex h-6 cursor-pointer flex-col items-center justify-start overflow-hidden rounded-lg bg-foreground px-2 text-center font-sans text-xs tracking-wide text-secondary transition-all duration-500 ease-in-out;
}
.logspace-page-icon:hover {
.langflow-page-icon:hover {
@apply hover:h-12;
}