Skip to content

Commit

Permalink
chore(studio): update core references and release (#413)
Browse files Browse the repository at this point in the history
* bump version

* chore(studio):  update core repo reference

* bump version

* update forum with Discord link
  • Loading branch information
davidvitora authored Jun 22, 2023
1 parent cea9816 commit 55bc0ee
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .yarn/versions/9c4d03cc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
undecided:
- "@botpress/studio-ui"
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.0.67](https://github.com/botpress/studio/compare/v0.0.66...v0.0.67) (2023-06-22)



## [0.0.66](https://github.com/botpress/studio/compare/v0.0.65...v0.0.66) (2023-04-05)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@botpress/studio",
"version": "0.0.66",
"version": "0.0.67",
"description": "Create your virtual assistants",
"repository": "https://github.com/botpress/studio.git",
"author": "Botpress, Inc.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ interface OwnProps {
type StateProps = ReturnType<typeof mapStateToProps>

type Props = StateProps & OwnProps
const FORUM_LINK = 'https://github.com/botpress/botpress/discussions'
const FORUM_LINK = 'https://discord.gg/botpress'
const DOCS_LINK = 'https://v12.botpress.com/'

const Toolbar: FC<Props> = (props) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/studio-ui/src/web/translations/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const initializeTranslations = () => {
lang.init()
}

// Copied from https://github.com/botpress/botpress/blob/master/modules/channel-web/src/views/lite/utils.tsx
// Copied from https://github.com/botpress/v12/blob/master/modules/channel-web/src/views/lite/utils.tsx
const rtlLocales = [
'ae' /* Avestan */,
'ar' /* 'العربية', Arabic */,
Expand Down
2 changes: 1 addition & 1 deletion packages/studio-ui/src/web/views/Libraries/AddLibrary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const AddLibrary = (props) => {
<div>
<h5>{lang.tr('libraries.searchGithub')}</h5>
<ControlGroup>
<InputGroup placeholder="botpress/botpress#master" onChange={(e) => setRepoName(e.currentTarget.value)} />
<InputGroup placeholder="botpress/v12#master" onChange={(e) => setRepoName(e.currentTarget.value)} />
<Button onClick={addLib} disabled={processing} text={processing ? 'pleaseWait' : 'libraries.addLibrary'} />
</ControlGroup>
</div>
Expand Down

0 comments on commit 55bc0ee

Please sign in to comment.