Discuss Scratch

MagicCrayon9342
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

This topic is for discussion of The Catalyst Project

Github Organization
Catalyst Desktop
Catalyst Mobile (v1.x)
Catalyst Mobile (v2.x)

Last edited by MagicCrayon9342 (Sept. 1, 2024 16:27:03)


DifferentDance8
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

Why does there need to be another topic?
BreadcatGames
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

DifferentDance8 wrote:

Why does there need to be another topic?
old one got closed because discord link
DifferentDance8
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

BreadcatGames wrote:

DifferentDance8 wrote:

Why does there need to be another topic?
old one got closed because discord link
what discord link?
I know I sounded super sus, but I literally didn't even know there was a discord FOR catalyst
GIitchInTheMatrix
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

DifferentDance8 wrote:

BreadcatGames wrote:

DifferentDance8 wrote:

Why does there need to be another topic?
old one got closed because discord link
what discord link?
I know I sounded super sus, but I literally didn't even know there was a discord FOR catalyst
The README file

this is my signature
I simply exist
ajskateboarder
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

removed

Last edited by ajskateboarder (April 6, 2023 22:36:03)

BreadcatGames
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

DifferentDance8 wrote:

BreadcatGames wrote:

DifferentDance8 wrote:

Why does there need to be another topic?
old one got closed because discord link
what discord link?
I know I sounded super sus, but I literally didn't even know there was a discord FOR catalyst
in the github
jellyfishfisher56
Scratcher
500+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

Why is he still talking about Catalyst? There has been basically no updates. Please don't just repeat an old topic.
Besides, it's just a webview straight from Electron.

jellyfishfisher56 | on Scratch for 3½ years | currently semi-active | 750+ posts | long-time forumer | Give me an Internet

applejuiceproduc
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

jellyfishfisher56 wrote:

Why is he still talking about Catalyst? There has been basically no updates. Please don't just repeat an old topic.
Besides, it's just a webview straight from Electron.
1. There has been lots of updates
2. The old topic get taken down so you might aswell make a new one
3. It is still big enough to be hard to find the code for anything so…

A signature
uwv
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

jellyfishfisher56 wrote:

(#8)
Besides, it's just a webview straight from Electron.
actually its a browserview straight from electron now

also it uses react + typescript now for everything
export default class Toolbar extends Component<object, { omniboxValue: string, canGoBack: boolean, canGoForward: boolean, key: number }> {
    public constructor() {
        super({});
        this.state = {
            omniboxValue: "",
            canGoBack: false,
            canGoForward: false,
            key: Date.now()
        };
    }
    public render(): ReactNode {
        return (
            <div id={"toolbar"}>
                <div id={"history"} className={"icon-group"}>
                    <i
                        className={classNames("material-icons round", { "inactive": !this.state.canGoBack })}
                        onClick={() => preloadExports.tab.goBack()}>arrow_back_ios</i>
                    <i
                        className={classNames("material-icons round", { "inactive": !this.state.canGoForward })}
                        onClick={() => preloadExports.tab.goForward()}>arrow_forward_ios</i>
                </div>
                <input
                    type={"text"}
                    id={"omnibox"}
                    placeholder={"Search or type a URL"}
                    defaultValue={this.state.omniboxValue}
                    key={this.state.key}
                    onChange={event => {
                        console.log(event.currentTarget.value)
                    }}/>
                <div className={"icon-group"}>
                    <i className={"material-icons round"}>refresh</i>
                    <i className={"material-icons inactive"}>more_vert</i>
                    <i className={"material-icons round inactive"}>bookmarks</i>
                </div>
            </div>
        );
    }
    public componentDidMount(): void {
        rendererEventEmitter.on("tabs-updated", tabData => {
            const selectedTab = tabData.tabs[tabData.selected];
            this.setState({
                omniboxValue: selectedTab.url,
                canGoForward: selectedTab.canGoForward,
                canGoBack: selectedTab.canGoBack,
                key: Date.now()
            });
        });
    }
}

i use arch linux (btw) with the linux zen kernel and enjoy writing silly things in silly languages using silly frameworks
MichaeIWave
Scratcher
100+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

Wait catalyst actually looks good? FRICK! Now I really wanna download it.


MagicCrayon9342
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

Catalyst's lack of updates is due to unpublished development of Catalyst 4. The first Caralyst 4 beta will be releasing shortly.

MagicCrayon9342
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

MagicCrayon9342 wrote:

Catalyst's lack of updates is due to unpublished development of Catalyst 4. The first Caralyst 4 beta will be releasing shortly.
*Catalyst ignore the typo

BreadcatGames
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

MagicCrayon9342 wrote:

Catalyst's lack of updates is due to unpublished development of Catalyst 4. The first Caralyst 4 beta will be releasing shortly.
Epic
Redstone1080
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

MagicCrayon9342 wrote:

MagicCrayon9342 wrote:

Catalyst's lack of updates is due to unpublished development of Catalyst 4. The first Caralyst 4 beta will be releasing shortly.
*Catalyst ignore the typo

Maintainer of Snazzle | User of Linux (Fedora in particular) | Fan of Rockets
ajskateboarder
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

MagicCrayon9342 wrote:

MagicCrayon9342 wrote:

Catalyst's lack of updates is due to unpublished development of Catalyst 4. The first Caralyst 4 beta will be releasing shortly.
*Catalyst ignore the typo
Edit button?

uwv wrote:

actually its a browserview straight from electron now

also it uses react + typescript now for everything
Where do I find this code? The current Catalyst repo (which I can't link (thanks to jdev)) doesn't use React or TypeScript
MagicCrayon9342
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

The Catalyst 4 code isn't out yet. Not even I have seen any of the code yet.

ajskateboarder
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

MagicCrayon9342 wrote:

The Catalyst 4 code isn't out yet. Not even I have seen any of the code yet.
uvw probably has some secret/very obscured repository then

Also you spelled “Boogaloo” wrong in the title
MagicCrayon9342
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

This topic will recieve news late, for the latest its best to check the blog though blog.jdev.eu.org or the Catalyst Hub app

uwv
Scratcher
1000+ posts

[v3.8.4 released!] [v3.9.0-beta.1/v3.8.4/v3.6.4 LTS] The Catalyst Project

ajskateboarder wrote:

(#16)
Where do I find this code? The current Catalyst repo (which I can't link (thanks to jdev)) doesn't use React or TypeScript
https://github.com/Zxnii/Catalyst

i use arch linux (btw) with the linux zen kernel and enjoy writing silly things in silly languages using silly frameworks

Powered by DjangoBB