This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #184 from latitudegames/0.0.68
0.0.68
- Loading branch information
Showing
448 changed files
with
8,065 additions
and
438 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
git config --global user.name 'Thoth CI' | ||
git config --global user.email '[email protected]' | ||
- name: set git tag name to enviroment | ||
working-directory: core | ||
working-directory: packages/core | ||
run: echo "LATEST_TAG=v$(node -pe "require('./package.json').version")" >> $GITHUB_ENV | ||
- name: add git tag and push | ||
run: | | ||
|
@@ -33,13 +33,13 @@ jobs: | |
- name: Install Dependencies | ||
run: yarn install | ||
- name: Prepare and Release | ||
working-directory: core | ||
working-directory: packages/core | ||
run: yarn release | ||
- name: Publish to GitHub Packages | ||
working-directory: core | ||
working-directory: packages/core | ||
run: npm publish | ||
- name: Increment package for future prelease, commit and push | ||
working-directory: core | ||
working-directory: packages/core | ||
run: | | ||
cd ../client | ||
yarn add @latitudegames/thoth-core | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react' | ||
import styles from './styles.module.css' | ||
|
||
export default function ThothDemo() { | ||
return ( | ||
<section style={{ margin: 'auto', marginTop: '4%', marginBottom: '4%' }}> | ||
<div className="container"> | ||
<div className="row" style={{ justifyContent: 'center' }}> | ||
<img src={'/img/Thoth-Screen.png'} /> | ||
</div> | ||
</div> | ||
</section> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,63 @@ | ||
import React from "react"; | ||
import clsx from "clsx"; | ||
import Layout from "@theme/Layout"; | ||
import Link from "@docusaurus/Link"; | ||
import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; | ||
import styles from "./index.module.css"; | ||
import HomepageFeatures from "@site/src/components/HomepageFeatures"; | ||
import React from 'react' | ||
import clsx from 'clsx' | ||
import Layout from '@theme/Layout' | ||
import Link from '@docusaurus/Link' | ||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext' | ||
import styles from './index.module.css' | ||
import HomepageFeatures from '@site/src/components/HomepageFeatures' | ||
import ThothDemo from '../components/HomepageFeatures/ThothDemo' | ||
|
||
function HomepageHeader() { | ||
const { siteConfig } = useDocusaurusContext(); | ||
const { siteConfig } = useDocusaurusContext() | ||
|
||
return ( | ||
<header className={clsx("hero hero--primary", styles.heroBanner)}> | ||
<header className={styles.heroBanner}> | ||
<div className="container"> | ||
<h1 className="hero__title">{siteConfig.title}</h1> | ||
{/* <h1 className="hero__title">{siteConfig.title}</h1> */} | ||
<img src={siteConfig.customFields.thothLogo} /> | ||
<p className="hero__subtitle">{siteConfig.tagline}</p> | ||
<div className={styles.buttons}> | ||
{/* <Link | ||
<Link | ||
className="button button--secondary button--lg" | ||
to="/docs/creators/gettingStarted/CreatorWelcome" | ||
// style={{ marginRight: '2%' }} | ||
> | ||
Creators | ||
</Link> | ||
<Link | ||
className="button button--secondary button--lg" | ||
to="/docs/intro"> | ||
Docusaurus Tutorial - 5min ⏱️ | ||
</Link> */} | ||
to="/docs/developers/getting%20started/installingThoth" | ||
> | ||
Developers | ||
</Link> | ||
<div className={styles.githubButtons}> | ||
<iframe | ||
src="https://ghbtns.com/github-btn.html?user=latitudegames&repo=thoth&type=star&count=true&size=large&v=2" | ||
frameborder="0" | ||
scrolling="0" | ||
width="170" | ||
height="30" | ||
title="GitHub" | ||
></iframe> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
); | ||
) | ||
} | ||
|
||
export default function Home() { | ||
const { siteConfig } = useDocusaurusContext(); | ||
const { siteConfig } = useDocusaurusContext() | ||
return ( | ||
<Layout | ||
title={`Hello from ${siteConfig.title}`} | ||
description="Description will go into a meta tag in <head />" | ||
> | ||
<HomepageHeader /> | ||
<main> | ||
<HomepageFeatures /> | ||
{/* <HomepageFeatures /> */} | ||
<ThothDemo /> | ||
</main> | ||
</Layout> | ||
); | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module.exports = { | ||
onPreBuild: ({ netlifyConfig, utils: { git } }) => { | ||
netlifyConfig.build.command = `cd client && yarn add @latitudegames/thoth-core@canary && cd .. && ${netlifyConfig.build.command}` | ||
netlifyConfig.build.command = `yarn add @latitudegames/thoth-core@canary && ${netlifyConfig.build.command}` | ||
}, | ||
} |
Oops, something went wrong.