Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class compilerLoaderPlugin extends Plugin {
export class compilerLoaderPluginDesktop extends ElectronPlugin {
constructor() {
super(profile)
this.methods = []
this.methods = methods
}

async onActivation(): Promise<void> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export class electronConfig extends ElectronPlugin {
name: 'electronconfig',
description: 'electronconfig',
})
this.methods = []
this.methods = ['readConfig']
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -262,10 +262,10 @@ export class TemplatesSelectionPlugin extends ViewPlugin {
item.templateType = TEMPLATE_METADATA[item.value]

if (item.templateType && item.templateType.desktopCompatible === false && isElectron()) {
return (<></>)
return <React.Fragment key={item.name || index}></React.Fragment>
}

if (item.templateType && item.templateType.disabled === true) return
if (item.templateType && item.templateType.disabled === true) return null
if (!item.opts) {
return (
<RemixUIGridCell
Expand Down
12 changes: 12 additions & 0 deletions apps/remix-ide/src/assets/list.json
Original file line number Diff line number Diff line change
Expand Up @@ -1066,6 +1066,18 @@
"urls": [
"dweb:/ipfs/QmXFsguaaxZj2FZmf2pGLTPDDkDD8nHX4grC4jDVugnMxv"
]
},
{
"path": "soljson-v0.8.31-pre.1+commit.b59566f6.js",
"version": "0.8.31",
"prerelease": "pre.1",
"build": "commit.b59566f6",
"longVersion": "0.8.31-pre.1+commit.b59566f6",
"keccak256": "0x5cbab72123ec1f65e72592375e568788d88c96ffd90a1a3e9107fcd5a3b9cf87",
"sha256": "0xaf2b74e3c674c09ce89189edfaa81a0d01f1a0dce9100968e0d442de8a93b926",
"urls": [
"dweb:/ipfs/QmafWKo2uVeEPMi1GbY2DVPreWtbA6aqXjynnn4wViA6a4"
]
}
],
"releases": {
Expand Down
Loading