Skip to content

Commit

Permalink
Update organization name and URLs in configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
ogabrielluiz committed Apr 18, 2024
1 parent e0a18e9 commit 9c292af
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down Expand Up @@ -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)",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "langflow"
version = "1.0.0a24"
description = "A Python package with a built-in web application"
authors = ["Logspace <[email protected]>"]
authors = ["Langflow <[email protected]>"]
maintainers = [
"Carlos Coelho <[email protected]>",
"Cristhian Zanforlin <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/services/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def set_langflow_dir(cls, value):

# 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)
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>",
"Cristhian Zanforlin <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/pages/FlowPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/stores/darkStore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/frontend/src/style/applies.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 9c292af

Please sign in to comment.