Skip to content

Commit

Permalink
disable 1.0.0 features for 0.13.24
Browse files Browse the repository at this point in the history
  • Loading branch information
solvedDev committed Nov 24, 2019
1 parent bd38bd7 commit dcfc067
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 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.0.0",
"version": "0.13.24",
"author": "solvedDev <solveddev@gmail.com>",
"description": "A powerful add-on editor",
"license": "GNU",
Expand Down
6 changes: 3 additions & 3 deletions src/renderer/components/sidebar/content/Documentation.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<v-container>
<v-subheader>Project "{{ project }}"</v-subheader>
<!-- <v-subheader>Project "{{ project }}"</v-subheader>
<v-container :style="`max-height: ${sidebar_height}px;`">
<template v-for="(doc, i) in project_docs">
<v-btn
Expand All @@ -20,9 +20,9 @@
:key="`divider.${i}`"
/>
</template>
</v-container>
</v-container> -->

<v-subheader style="margin-top: 32px;">Minecraft</v-subheader>
<v-subheader style="/*margin-top: 32px;*/">Minecraft</v-subheader>
<v-container :style="`max-height: ${sidebar_height}px;`">
<template v-for="(doc, i) in doc_list">
<v-btn
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/scripts/bridgeCore/CORE_FILES.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ export default [

start_state: "map_area/main",
highlighter: "map_area",
file_creator: "map_area"
// file_creator: "map_area"
}
];
10 changes: 5 additions & 5 deletions src/renderer/store/modules/AppMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,11 +214,11 @@ const state = {
shortcut: "Ctrl + Q",
action: () => SnippetWindow.show()
},
{
title: "Template Sets",
shortcut: "Ctrl + T",
action: () => TemplateSetsWindow.show()
}
// {
// title: "Template Sets",
// shortcut: "Ctrl + T",
// action: () => TemplateSetsWindow.show()
// }
]
},
help: {
Expand Down
10 changes: 5 additions & 5 deletions src/renderer/store/modules/SidebarMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ const state = {
icon: "mdi-file-image",
menu_type: "resource_pack"
},
{
title: "Search",
icon: "mdi-magnify",
menu_type: "file_search"
},
// {
// title: "Search",
// icon: "mdi-magnify",
// menu_type: "file_search"
// },
{
title: "Documentation",
icon: "mdi-book-open-page-variant",
Expand Down
2 changes: 1 addition & 1 deletion src/shared/app_version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
* Current bridge. app version
*/
export default "v1.0.0";
export default "v0.13.24";

0 comments on commit dcfc067

Please sign in to comment.