Skip to content

Commit

Permalink
Merge pull request #929 from Ordisoftware/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
Ordisoftware authored Oct 17, 2021
2 parents 5e8cf9b + 2bcc699 commit 23eecdd
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Documents/LunarMonths/LunarMonths-Lettriqs-FR.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Nissan = Lettrique à établir
Nissan = Lettrique à établir
Iyar = Source de l'Énergie du Mental (éclosion des germes de Nissan) ou Distance de l'Impulsion du Changement (Chavou'ot)
Sivan = Lettrique à établir
Tamouz = Lettrique à établir
Expand Down
2 changes: 1 addition & 1 deletion Documents/LunarMonths/LunarMonths-Meanings-FR.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Nissan = Premiers fruits, Ses (Torah) prodiges, Leur fuite (sauvegarde) {Abib dana la boible: épis, germination}
Nissan = Premiers fruits, Ses (Torah) prodiges, Leur fuite (sauvegarde) {Abib dana la boible: épis, germination}
Iyar = Fleur, Il (HaShem) a clarifié illuminé (Ziv dans la Bible = éclat {זו = Action de la Communication})
Sivan = Saison, Leur vêtement
Tamouz = Signification à établir
Expand Down
17 changes: 11 additions & 6 deletions Documents/WebLinks/WebLinks-08-AsherHaimHaLevi.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,20 @@
Lang/EN = Asher 'Haïm HaLevi
Lang/FR = Asher 'Haïm HaLevi

Name = (FR) Bibliographie
URL = https://asherhaimhalevi.ordisoftware.com/works/bibliography/

Name = (FR) YouTube Playlist
URL = https://www.youtube.com/playlist?list=PLSn7yTHwEx-DL6u9qWpRtF1vEAEVxe1Hk

-

Name = (FR) Le problème religieux
URL = https://asherhaimhalevi.ordisoftware.com/works/the-religious-problem/

Name = (FR) Epitaphe pour Kémistes de Kémet
URL = https://asherhaimhalevi.ordisoftware.com/works/epitaph/

-

Name = (FR) L'alphabet hébreu
Expand All @@ -35,13 +46,7 @@ URL = https://asherhaimhalevi.ordisoftware.com
Name = (FR) Théorie de santé-aide-justice
URL = https://asherhaimhalevi.ordisoftware.com/logical-proposition/health-help-justice-theory/

Name = (FR) Epitaphe pour Kémistes de Kémet
URL = https://asherhaimhalevi.ordisoftware.com/works/epitaph/

-

Name = (FR) Bibliographie
URL = https://asherhaimhalevi.ordisoftware.com/works/bibliography/

Name = (FR) Archive GitHub
URL = https://github.com/Ordisoftware/Torah-Physicalist-Exegesis-Books
8 changes: 3 additions & 5 deletions Documents/WebLinks/WebLinks-11-VideoPlaylists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ URL = https://www.youtube.com/playlist?list=PLSn7yTHwEx-BbcpGqKOVnyktf9GMFwnVV
Name = (FR) Le couple selon le Judaïsme
URL = https://www.youtube.com/playlist?list=PLSn7yTHwEx-BY91zgIakb6tHdc5AxqRyu

Name = (FR) Autres playlists enregistrées
URL = https://www.youtube.com/user/Ordisoftware/playlists?view=52&sort=dd&shelf_id=0

-

Name = (FR) Rav Menahem Altabe
Expand Down Expand Up @@ -81,11 +84,6 @@ URL = https://www.youtube.com/playlist?list=PLSn7yTHwEx-Cjlu1jQW7_xO1R03bCaKhs

-

Name = (FR) Le problème religieux
URL = https://www.youtube.com/playlist?list=PLSn7yTHwEx-DL6u9qWpRtF1vEAEVxe1Hk

-

Name = (FR) Mathématiques et physiques
URL = https://www.youtube.com/playlist?list=PLSn7yTHwEx-Boo3Ss5OZSYCNHEGpFXcPc

Expand Down
4 changes: 2 additions & 2 deletions Project/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut
// en utilisant '*', comme indiqué ci-dessous :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("9.8.0.0")]
[assembly: AssemblyFileVersion("9.8.0.0")]
[assembly: AssemblyVersion("9.9.0.0")]
[assembly: AssemblyFileVersion("9.9.0.0")]
10 changes: 10 additions & 0 deletions Project/Source/Common/Core/Managers.Debug/DebugManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,16 @@ static public string ToStringWithInners(this Exception ex, object sender = null)
return ex.Parse(sender, einfo => einfo.FullText);
}

/// <summary>
/// Get a readable formatted text of an exeption.
/// </summary>
/// <param name="ex">The exception to act on.</param>
/// <param name="sender">The sender object</param>
static public string ToStringFullText(this Exception ex, object sender = null)
{
return ex.Parse(sender, einfo => einfo.FullText);
}

/// <summary>
/// Get a readable formatted text of an exeption including inners.
/// </summary>
Expand Down
5 changes: 3 additions & 2 deletions Project/Source/Forms/MainForm/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1113,8 +1113,9 @@ private void ContextMenuDayGoToSelected_Click(object sender, EventArgs e)
private void ContextMenuDaySelect_Click(object sender, EventArgs e)
{
DateSelected = ContextMenuDayCurrentEvent.Date;
if ( CalendarMonth.CalendarDate.Month != DateSelected.Value.Month )
GoToDate(DateSelected.Value);
if ( DateSelected != null )
if ( CalendarMonth.CalendarDate.Month != DateSelected.Value.Month )
GoToDate(DateSelected.Value);
}

private void ContextMenuDayClearSelection_Click(object sender, EventArgs e)
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,11 @@ The generation of parashot relating to Shabatot is not guaranteed to be traditio

## Changelog

#### 2021.10.17 - Version 9.9

- Fix null exception on select current day.
- Update web links.

#### 2021.10.08 - Version 9.8

- Fix main form title bar refresh.
Expand Down
2 changes: 1 addition & 1 deletion Setup/OrdisoftwareHebrewCalendarSetup.iss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define MyAppVersion "9.8"
#define MyAppVersion "9.9"
#define MyAppName "Hebrew Calendar"
#define MyAppNameNoSpace "HebrewCalendar"
#define MyAppExeName "Ordisoftware.Hebrew.Calendar.exe"
Expand Down

0 comments on commit 23eecdd

Please sign in to comment.