Skip to content

Commit

Permalink
v1.1.2
Browse files Browse the repository at this point in the history
 - Fixed an issue that prevented projects from loading
  • Loading branch information
solvedDev committed Mar 18, 2020
1 parent c384d9c commit 6e91c34
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bridge",
"version": "1.1.1",
"version": "1.1.2",
"author": "solvedDev <solveddev@gmail.com>",
"description": "A powerful add-on editor",
"license": "GNU",
Expand Down
19 changes: 13 additions & 6 deletions src/renderer/components/sidebar/content/Explorer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
selected !== '/@NO-BP@/'
"
>
<component :is="toolbar_component" :selected="selected" :base_path="base_path" />
<component
:is="toolbar_component"
:selected="selected"
:base_path="base_path"
/>
<v-divider />
</span>

Expand All @@ -34,9 +38,7 @@
hide-details
/>
<v-subheader v-else-if="selected" style="width: calc(100% - 48px);">
{{
selected.split(/\\|\//g).pop()
}}
{{ selected.split(/\\|\//g).pop() }}
</v-subheader>
</v-layout>

Expand All @@ -55,7 +57,10 @@
:explorer_type="explorer_type"
class="file-displayer"
/>
<v-progress-linear v-else-if="!loaded_file_defs || selected === undefined" indeterminate />
<v-progress-linear
v-else-if="!loaded_file_defs || selected === undefined"
indeterminate
/>
<div v-else-if="selected === '/@NO-DEPENDENCY@/'" style="padding: 4px;">
<p style="word-break: break-word;">
It doesn't look like your current behavior pack has a
Expand Down Expand Up @@ -382,7 +387,9 @@ export default {
dirent.name
)
)
} catch {}
} catch {
return []
}
})
)
Expand Down
2 changes: 1 addition & 1 deletion src/shared/app_version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
* Current bridge. app version
*/
export default 'v1.1.1'
export default 'v1.1.2'

0 comments on commit 6e91c34

Please sign in to comment.