diff --git a/ThirdPartyNotices.txt b/ThirdPartyNotices.txt index 61220f206bd..60b0bf91bce 100644 --- a/ThirdPartyNotices.txt +++ b/ThirdPartyNotices.txt @@ -3486,3 +3486,26 @@ public licenses. Creative Commons may be contacted at creativecommons.org. ======================================================================= +--------------------------------------------------------- + +--------------------------------------------------------- + +SQLite is in the Public Domain + +https://www.sqlite.org/copyright.html +--------------------------------------------------------- + +--------------------------------------------------------- + +Postgres, PostgreSQL and the Slonik Logo are trademarks or registered trademarks of the PostgreSQL +Community Association of Canada, and used with their permission. + +https://www.postgresql.org/about/policies/trademarks/ +--------------------------------------------------------- + +--------------------------------------------------------- +Apache Spark and its logo are trademarks of The Apache Software Foundation. + +https://spark.apache.org/trademarks.html +--------------------------------------------------------- + diff --git a/extensions/positron-connections/src/drivers.ts b/extensions/positron-connections/src/drivers.ts index 4db81ff7a22..81eddd4dc48 100644 --- a/extensions/positron-connections/src/drivers.ts +++ b/extensions/positron-connections/src/drivers.ts @@ -117,6 +117,7 @@ class RPostgreSQLDriver extends RDriver implements positron.ConnectionsDriver { constructor(context: vscode.ExtensionContext) { super(['RPostgres', 'DBI', 'connections']); + // See the top-level ThirdPartyNotices.txt file for attribution and license details. const iconPath = path.join(context.extensionPath, 'media', 'logo', 'postgre.svg'); const iconData = readFileSync(iconPath, 'base64'); this.metadata.base64EncodedIconSvg = iconData; @@ -199,6 +200,7 @@ class RSQLiteDriver extends RDriver implements positron.ConnectionsDriver { constructor(context: vscode.ExtensionContext) { super(['RSQLite', 'DBI', 'connections']); + // See the top-level ThirdPartyNotices.txt file for attribution and license details. const iconPath = path.join(context.extensionPath, 'media', 'logo', 'sqlite.svg'); const iconData = readFileSync(iconPath, 'base64'); this.metadata.base64EncodedIconSvg = iconData; @@ -248,6 +250,7 @@ connections::connection_view(con) class RSparkDriver extends RDriver implements positron.ConnectionsDriver { constructor(context: vscode.ExtensionContext) { super(['sparklyr']); + // See the top-level ThirdPartyNotices.txt file for attribution and license details. const iconPath = path.join(context.extensionPath, 'media', 'logo', 'spark.svg'); const iconData = readFileSync(iconPath, 'base64'); this.metadata.base64EncodedIconSvg = iconData; @@ -318,6 +321,7 @@ class PythonSQLiteDriver extends PythonDriver implements positron.ConnectionsDri constructor(context: vscode.ExtensionContext) { super(); + // See the top-level ThirdPartyNotices.txt file for attribution and license details. const iconPath = path.join(context.extensionPath, 'media', 'logo', 'sqlite.svg'); const iconData = readFileSync(iconPath, 'base64'); this.metadata.base64EncodedIconSvg = iconData; @@ -357,6 +361,7 @@ class PythonPostgreSQLDriver extends PythonDriver implements positron.Connection constructor(context: vscode.ExtensionContext) { super(); + // See the top-level ThirdPartyNotices.txt file for attribution and license details. const iconPath = path.join(context.extensionPath, 'media', 'logo', 'postgre.svg'); const iconData = readFileSync(iconPath, 'base64'); this.metadata.base64EncodedIconSvg = iconData;