Skip to content

Releases: unfoldingWord/gateway-edit

gatewayEdit 2.4.4

05 May 15:42
82fdb54
Compare
Choose a tag to compare

v2.4.4 Release Notes

What’s New:

We are pleased to announce that gatewayEdit 2.4.4 is now officially released and is available online at https://gatewayedit.com

Bug Fix:

  • Users would be able to view the alignment of a scripture resource without creating a user branch. #693

Note: After the upgrade if you find that your screen layout is distorted, please use the menu item Reset Resource Layout to fix the screen.

gatewayEdit 2.4.3

03 Apr 22:01
2614f98
Compare
Choose a tag to compare

v2.4.3 Release Notes

What’s New:

We are pleased to announce that gatewayEdit 2.4.3 is now officially released and is available online at https://gatewayedit.com

Features:

  • Users would no longer encounter Network error when they save Scripture resources. #683
  • Users would be able to see a notification when they successfully merge their user branch into master.
  • Users would be prevented to merge into master branch when there are empty commits which means their user branch is not different from the master. #687
  • There will be less formatting errors in Markdown as Preview mode is no longer editable. #672

Note: After the upgrade if you find that your screen layout is distorted, please use the menu item Reset Resource Layout to fix the screen.

Release 2.4.2

12 Feb 15:11
e9fd38a
Compare
Choose a tag to compare

v2.4.2 Release Notes

What’s New:

We are pleased to announce that gatewayEdit 2.4.2 is now officially released and is available online at https://gatewayedit.com

Features:

  • Highlight for discontiguous quotes would show for occurrences more than 1.
  • Users would be able to merge their work without seeing merge conflicts caused due to duplicate pull requests.
  • Enter key is disabled for Original quotes, thus making it less prone to data error.

Note: After the upgrade if you find that your screen layout is distorted, please use the menu item Reset Resource Layout to fix the screen.

Release 2.4.1

27 Aug 15:06
e0251d1
Compare
Choose a tag to compare

v2.4.1 Release Notes

What’s New:

We are pleased to announce that gatewayEdit 2.4.1 is now officially released and is available online at https://gatewayedit.com

Bug fix:

  • USFM tags would be displayed correctly for scripture editing, especially in Psalms. #663

Note: After the upgrade if you find that your screen layout is distorted, please use the menu item Reset Resource Layout to fix the screen.

Release 2.4.0

01 Jul 15:11
c56c9c7
Compare
Choose a tag to compare

v2.4.0 Release Notes

What’s New:

We are pleased to announce that gatewayEdit 2.4.0 is now officially released and is available online at https://gatewayedit.com with a few bug fixes.

Bug fixes:

  • Users would not see network error after editing scripture cards. #642
  • Users would be able to see highlights for the scriptures for a verse bridge #641

Note: After the upgrade if you find that your screen layout is distorted, please use the menu item Reset Resource Layout to fix the screen.

gatewayEdit Release 2.3.0

15 Jan 13:07
Compare
Choose a tag to compare

v2.3.0 Release Notes

What’s New:

We are pleased to announce that gatewayEdit 2.3.0 is now officially released and is available online at https://gatewayedit.com with Add and Delete row with Reference range support and other enhancements and a few bug fixes.

Key Features:

  • Users would be able to delete a row that has a reference range in it. #593
  • User would be able to edit the reference field while adding a new row to any allowable reference - both single references and reference ranges #545
  • Scripture pane shows reference range when a new note is added with a reference range. #601
  • Users would be navigated to the new row when its added and saved #613
  • Users would be able to select original language text from the scripture pane and can click the original text lexeme to see the lexical data. #534
  • Line spacing in Hebrew text is increased to avoid overlapping in the scripture pane. #575

Bug fixes:

  • Users would not see a lag on typing a long verse in the scripture pane. #526
  • Word Aligner window is prevented from being dragged off the screen #419

Note: After the upgrade if you find that your screen layout is distorted, please use the menu item Reset Resource Layout to fix the screen.

gatewayEdit Release 2.2.0

06 Dec 14:09
3179311
Compare
Choose a tag to compare

v2.2.0 Release Notes

What’s New:

We are pleased to announce that gatewayEdit 2.2.0 is now officially released and is available online at https://gatewayedit.com with add and delete row feature for TSVs, Scripture alignment enhancements and bug fixes for highlighting and merge functionality.

Key Features:

  • Users can now add new rows to tNotes, TWLs and tQuestions. #483 #542 #543
  • Users would be able to add TWL when no items exists for a verse. #585
  • Delete row feature is available for tNotes, TWLs and tQuestions. #484
  • Alignment validation and migration check is available for scripture resources. #565
  • Users would be able to add front matter and align them if the Original text is available. #559
  • Shift+ Click Hotkeys can be used for selecting words for scripture alignment. #524
  • Clear/Reset button is available to clear the existing alignments. #569

Bug fixes:

  • Highlighting would work fine for Greek elision marks and occurrence numbers #535 #570
  • Improvement for merge feature #547, #551 #546

Note: After the upgrade if you find that your screen layout is distorted, please use the menu item Reset Resource Layout to fix the screen.

IMPORTANT NOTE FOR DEVELOPERS

Due to the main and develop branches being out of sync, the develop branch had to be rebased with the relevant changes from master.
This means that if you have done work off of develop, your commit history is most likely different from the new commit history! So, you will have to rebase whatever current work you have with the develop branch! See steps below:

  1. Create a copy of your branch as a backup in case something goes wrong
    git branch backup-branch
    
  2. Make sure you are in your feature branch, and then run the rebase command to incorporate the changes from develop
    git rebase origin/develop
    
  3. This may be a long process, but solve any merge conflicts for each commit and after resolving run
    git rebase --continue
    
  4. Repeat this process until the rebase is finished. At the end, your branch should now contain the commit history contained in develop along with your changes (your changes should be after the develop commits)

For Further Info: Notes on Rebasing

gatewayEdit 2.1

28 Sep 21:11
Compare
Choose a tag to compare

v2.1 Release Notes

What’s New:

We are pleased to announce that gatewayEdit 2.1 is now officially released and is available online at https://gatewayedit.com with Merge functionality.

Key Features:

  • Users would be able to merge changes from their User branch to Master branch and also update their existing User branch with the latest content from the Master branch #399
  • Performance improvement on Save after editing scripture. #533

Bug fixes:

  • Alignment of the whole verse would not break after an edit is made to the scripture. #520
  • There would be a smooth navigation on switching between books from New and Old Testament and Scripture overwrite would not happen #514

Note: After the upgrade if you find that your screen layout is distorted, please use the menu item Reset Resource Layout to fix the screen.

IMPORTANT NOTE FOR DEVELOPERS

Due to the main and develop branches being out of sync, the develop branch had to be rebased with the relevant changes from master.
This means that if you have done work off of develop, your commit history is most likely different from the new commit history! So, you will have to rebase whatever current work you have with the develop branch! See steps below:

  1. Create a copy of your branch as a backup in case something goes wrong
    git branch backup-branch
    
  2. Make sure you are in your feature branch, and then run the rebase command to incorporate the changes from develop
    git rebase origin/develop
    
  3. This may be a long process, but solve any merge conflicts for each commit and after resolving run
    git rebase --continue
    
  4. Repeat this process until the rebase is finished. At the end, your branch should now contain the commit history contained in develop along with your changes (your changes should be after the develop commits)

For Further Info: Notes on Rebasing

gatewayEdit 2.0

19 Jun 18:39
daf88be
Compare
Choose a tag to compare

v2.0 Release Notes

What’s New:

We are pleased to announce that gatewayEdit 2.0 is now officially released and is available online at https://gatewayedit.com with Reference range support, Word Alignment and Scripture Editing support.

Key Features:

  • Word Alignment and Scripture Editing is available in the scripture pane. #372
  • The app now supports Reference Ranges to show multiple verses in the scripture panes and highlights the quotes. #374, #395
  • Users can choose to align from the list of verses in the Scripture pane when there is a reference range. #385
  • User branches for Scripture resources are saved to the same branch that gatwayTranslate is using with the format: auto-user-bookid. #400

Bug fixes:

  • When the user browses the TN or TWL card, the scripture pane updates what verse(s) are shown based on whether there is a reference range. #376, #375
  • Lexicon data are shown correctly in the popup for Original Language. #384, #474

Note: After the upgrade if you find that your screen layout is distorted, please use the menu item Reset Resource Layout to fix the screen.

gatewayEdit 1.1.0

03 Apr 17:04
af217d7
Compare
Choose a tag to compare

v1.1.0 Release Notes

What’s New:

We are pleased to announce that gatewayEdit 1.1.0 is now officially released and is available online at https://gatewayedit.com.

Key Features:

  • The app now handles Verse Spans in the Scripture pane. #329
  • Handles highlighting of "&" for discontiguous words in the Original Quote. #330
  • Has the ability to minimize and restore cards. #319

Bug fixes:

  • Hebrew punctuation shows correctly in the scripture pane. #337
  • User account settings are handled more efficiently. #355 , #351
  • GL Quotes are shown correctly in translationWords List. #358
  • Original Quote field in tN is displaying fine. #368, #328