Skip to content

Commit

Permalink
Updated readme & package and fixes for issue 231,233 etc (#258)
Browse files Browse the repository at this point in the history
* removing font option from Sub-menubar

* Update Readme and email id in package.json

* Fixed the wrapping issue with Layout

* Fixed window title issue
  • Loading branch information
vipinpaul authored Nov 27, 2023
1 parent d6e616a commit 54ababc
Show file tree
Hide file tree
Showing 8 changed files with 65 additions and 42 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
<br />
<p align="center">
<a href="">
<img src="https://github.com/bible-technology/scribe-scripture-editor/blob/development/styles/Logo.png" alt="Logo" width="80" height="80">
<img src="https://github.com/bible-technology/scribe-scripture-editor/blob/development/styles/scribe-logo.png" alt="Logo" width="80" height="80">
</a>

<h3 align="center">Scribe Scripture Editor (Scribe SE)</h3>

<p align="center">
A Bible translation editor for everyone.
<br />
<a href="https://github.com/friendsofagape/autographa/issues">Report Issue</a>
<a href="https://github.com/bible-technology/scribe-scripture-editor/issues">Report Issue</a>
·
<a href="https://github.com/bible-technology/scribe-scripture-editor/issues">Feature Request</a>
</p>
Expand All @@ -41,7 +41,7 @@

## About The Project

Scribe SE is a standalone desktop application which aims to aid and be a friendly companion for the Bible Translator. It is composed of modes which support focus on specific use-cases e.g. text translation (USFM-based editor), Oral Bible translation (audio recorder) and Open Bible Story (in Markdown format) drafting mode. It supports syncing with online repositories for data backup and other such helpful features.
Scribe Scripture Editor is a free and open-licensed desktop application that is designed to support the Bible translator with drafting and checking scripture in both text and audio formats as well as provides support for translating Open Bible Stories in different modes. The features include multi-project support, revision control (cloud sync), audio recording and seamless basic USFM editing. It has a modular architecture and is poised to grow and support the evolving needs on the ground.

### Built With

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "scribe",
"productName": "scribe-scripture-editor",
"description": "A friendly assistant for Bible Translators.",
"author": "Bible Technology <autographa.support@bridgeconn.com>",
"author": "Bible Technology <scribe@bridgeconn.com>",
"version": "0.5.4",
"license": "MIT",
"private": true,
Expand Down
30 changes: 17 additions & 13 deletions renderer/pages/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,25 @@ import EditorLayout from '@/layouts/editor/Layout';
import SectionContainer from '@/layouts/editor/SectionContainer';
import AutographaContextProvider from '@/components/context/AutographaContext';
import ScribexContextProvider from '@/components/context/ScribexContext';
import Meta from '../src/Meta';

export default function ReferenceSelector() {
return (
<AuthenticationContextProvider>
<AutographaContextProvider>
<ProjectContextProvider>
<ReferenceContextProvider>
<EditorLayout>
<ScribexContextProvider>
<SectionContainer />
</ScribexContextProvider>
</EditorLayout>
</ReferenceContextProvider>
</ProjectContextProvider>
</AutographaContextProvider>
</AuthenticationContextProvider>
<>
<Meta />
<AuthenticationContextProvider>
<AutographaContextProvider>
<ProjectContextProvider>
<ReferenceContextProvider>
<EditorLayout>
<ScribexContextProvider>
<SectionContainer />
</ScribexContextProvider>
</EditorLayout>
</ReferenceContextProvider>
</ProjectContextProvider>
</AutographaContextProvider>
</AuthenticationContextProvider>
</>
);
}
18 changes: 11 additions & 7 deletions renderer/pages/newproject.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,19 @@ import NewProject from '@/components/Projects/NewProject';
import AuthenticationContextProvider from '@/components/Login/AuthenticationContextProvider';
import ProjectContextProvider from '@/components/context/ProjectContext';
import AutographaContextProvider from '@/components/context/AutographaContext';
import Meta from '../src/Meta';

const newproject = () => (
<AuthenticationContextProvider>
<AutographaContextProvider>
<ProjectContextProvider>
<NewProject call="new" />
</ProjectContextProvider>
</AutographaContextProvider>
</AuthenticationContextProvider>
<>
<Meta />
<AuthenticationContextProvider>
<AutographaContextProvider>
<ProjectContextProvider>
<NewProject call="new" />
</ProjectContextProvider>
</AutographaContextProvider>
</AuthenticationContextProvider>
</>
);

export default newproject;
13 changes: 10 additions & 3 deletions renderer/pages/profile.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
import Profile from '@/modules/projects/Profile';
import AuthenticationContextProvider from '@/components/Login/AuthenticationContextProvider';
import ProjectContextProvider from '@/components/context/ProjectContext';
import Meta from '../src/Meta';

const profile = () => (
<AuthenticationContextProvider>
<Profile />
</AuthenticationContextProvider>
<>
<Meta />
<AuthenticationContextProvider>
<ProjectContextProvider>
<Profile />
</ProjectContextProvider>
</AuthenticationContextProvider>
</>
);

export default profile;
18 changes: 11 additions & 7 deletions renderer/pages/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,19 @@ import ProjectList from '@/components/Projects/ProjectList';
import AuthenticationContextProvider from '@/components/Login/AuthenticationContextProvider';
import AutographaContextProvider from '@/components/context/AutographaContext';
import ProjectContextProvider from '@/components/context/ProjectContext';
import Meta from '../src/Meta';

const Projects = () => (
<AuthenticationContextProvider>
<AutographaContextProvider>
<ProjectContextProvider>
<ProjectList />
</ProjectContextProvider>
</AutographaContextProvider>
</AuthenticationContextProvider>
<>
<Meta />
<AuthenticationContextProvider>
<AutographaContextProvider>
<ProjectContextProvider>
<ProjectList />
</ProjectContextProvider>
</AutographaContextProvider>
</AuthenticationContextProvider>
</>
);

export default Projects;
18 changes: 11 additions & 7 deletions renderer/pages/sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,19 @@ import Sync from '@/components/Sync/Sync';
import AuthenticationContextProvider from '@/components/Login/AuthenticationContextProvider';
import AutographaContextProvider from '@/components/context/AutographaContext';
import SyncContextProvider from '@/components/context/SyncContext';
import Meta from '../src/Meta';

const projects = () => (
<AuthenticationContextProvider>
<AutographaContextProvider>
<SyncContextProvider>
<Sync />
</SyncContextProvider>
</AutographaContextProvider>
</AuthenticationContextProvider>
<>
<Meta />
<AuthenticationContextProvider>
<AutographaContextProvider>
<SyncContextProvider>
<Sync />
</SyncContextProvider>
</AutographaContextProvider>
</AuthenticationContextProvider>
</>
);

export default projects;
2 changes: 1 addition & 1 deletion renderer/src/layouts/editor/SubMenuBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ export default function SubMenuBar() {
<nav className="flex p-2 shadow-sm border-b border-gray-200">
<div className="w-3/5 items-center flex">
{/* <MenuBar header={t('label-menu-file')} MenuItems={resourceType === 'textStories' ? FileMenuItems.slice(1) : FileMenuItems} /> */}
<MenuDropdown buttonStyle="bg-gray-100 rounded-md h-full px-2" />
{/* <MenuDropdown buttonStyle="bg-gray-100 rounded-md h-full px-2" /> */}
<button type="button" className={`${menuStyles.btn}`}>
<div
aria-label="decrease-font"
Expand Down

0 comments on commit 54ababc

Please sign in to comment.