diff --git a/po/de_pysol.po b/po/de_pysol.po index 41ca3edf..69557fe2 100644 --- a/po/de_pysol.po +++ b/po/de_pysol.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PySol 0.0.1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-10 10:19-0500\n" -"PO-Revision-Date: 2024-01-15 22:12-0500\n" +"PO-Revision-Date: 2024-02-11 11:04-0500\n" "Last-Translator: H. Schaekel \n" "Language-Team: German\n" "Language: de\n" @@ -3625,6 +3625,12 @@ msgstr "" msgid "Popular" msgstr "" +msgid "Recent" +msgstr "" + +msgid "Favorite" +msgstr "" + msgid "Children's" msgstr "" diff --git a/po/fr_pysol.po b/po/fr_pysol.po index f9025352..e806703e 100644 --- a/po/fr_pysol.po +++ b/po/fr_pysol.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: 1.02\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-10 10:19-0500\n" -"PO-Revision-Date: 2024-01-15 22:13-0500\n" +"PO-Revision-Date: 2024-02-11 11:04-0500\n" "Last-Translator: Eric Rausch \n" "Language-Team: French\n" "Language: fr\n" @@ -3669,6 +3669,12 @@ msgstr "" msgid "Popular" msgstr "" +msgid "Recent" +msgstr "" + +msgid "Favorite" +msgstr "" + msgid "Children's" msgstr "" diff --git a/po/it_pysol.po b/po/it_pysol.po index 1a0dcdb7..d0b19210 100644 --- a/po/it_pysol.po +++ b/po/it_pysol.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: it_pysol\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-10 10:19-0500\n" -"PO-Revision-Date: 2024-01-15 22:58-0500\n" +"PO-Revision-Date: 2024-02-11 11:03-0500\n" "Last-Translator: Giuliano Colla \n" "Language-Team: Italiano \n" "Language: it\n" @@ -3731,6 +3731,12 @@ msgstr "" msgid "Popular" msgstr "" +msgid "Recent" +msgstr "" + +msgid "Favorite" +msgstr "" + msgid "Children's" msgstr "" diff --git a/po/pl_pysol.po b/po/pl_pysol.po index 1a643ab6..442b4893 100644 --- a/po/pl_pysol.po +++ b/po/pl_pysol.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PySolFC\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-10 10:19-0500\n" -"PO-Revision-Date: 2024-01-15 22:13-0500\n" +"PO-Revision-Date: 2024-02-11 11:03-0500\n" "Last-Translator: Jerzy Trzeciak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -3686,6 +3686,12 @@ msgstr "" msgid "Popular" msgstr "Popularny" +msgid "Recent" +msgstr "" + +msgid "Favorite" +msgstr "" + msgid "Children's" msgstr "Dziecięcy" diff --git a/po/pt_BR_pysol.po b/po/pt_BR_pysol.po index 014c18ce..940c4c33 100644 --- a/po/pt_BR_pysol.po +++ b/po/pt_BR_pysol.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-10 10:19-0500\n" -"PO-Revision-Date: 2024-01-15 22:14-0500\n" +"PO-Revision-Date: 2024-02-11 11:02-0500\n" "Last-Translator: Matheus Knack \n" "Language-Team: \n" "Language: pt_BR\n" @@ -3692,6 +3692,12 @@ msgstr "" msgid "Popular" msgstr "Popular" +msgid "Recent" +msgstr "" + +msgid "Favorite" +msgstr "" + msgid "Children's" msgstr "Filhos de" diff --git a/po/pysol.pot b/po/pysol.pot index 406a8540..860db9ff 100644 --- a/po/pysol.pot +++ b/po/pysol.pot @@ -3491,6 +3491,12 @@ msgstr "" msgid "Popular" msgstr "" +msgid "Recent" +msgstr "" + +msgid "Favorite" +msgstr "" + msgid "Children's" msgstr "" diff --git a/po/ru_pysol.po b/po/ru_pysol.po index 114a7240..f06a74bf 100644 --- a/po/ru_pysol.po +++ b/po/ru_pysol.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-10 10:19-0500\n" -"PO-Revision-Date: 2024-01-15 22:14-0500\n" +"PO-Revision-Date: 2024-02-11 11:02-0500\n" "Last-Translator: Skomoroh \n" "Language-Team: Russian \n" "Language: ru\n" @@ -3741,6 +3741,12 @@ msgstr "" msgid "Popular" msgstr "" +msgid "Recent" +msgstr "" + +msgid "Favorite" +msgstr "" + msgid "Children's" msgstr "" diff --git a/pysollib/tile/selectgame.py b/pysollib/tile/selectgame.py index 2cd5801a..771469ee 100644 --- a/pysollib/tile/selectgame.py +++ b/pysollib/tile/selectgame.py @@ -619,6 +619,12 @@ class SelectGameDialogWithPreview(SelectGameDialog): if (self.criteria.popular and not (game.si.game_flags & GI.GT_POPULAR)): continue + if (self.criteria.recent and + not (game.id in self.app.opt.recent_gameid)): + continue + if (self.criteria.favorite and + not (game.id in self.app.opt.favorite_gameid)): + continue if (self.criteria.children and not (game.si.game_flags & GI.GT_CHILDREN)): continue @@ -674,6 +680,8 @@ class SelectGameDialogWithPreview(SelectGameDialog): self.criteria.statistics = d.statistics.get() self.criteria.popular = d.popular.get() + self.criteria.recent = d.recent.get() + self.criteria.favorite = d.favorite.get() self.criteria.children = d.children.get() self.criteria.scoring = d.scoring.get() self.criteria.stripped = d.stripped.get() @@ -865,6 +873,8 @@ class SearchCriteria: self.statistics = "" self.popular = False + self.recent = False + self.favorite = False self.children = False self.scoring = False self.stripped = False @@ -946,6 +956,10 @@ class SelectGameAdvancedSearch(MfxDialog): self.popular = tkinter.BooleanVar() self.popular.set(criteria.popular) + self.recent = tkinter.BooleanVar() + self.recent.set(criteria.recent) + self.favorite = tkinter.BooleanVar() + self.favorite.set(criteria.favorite) self.children = tkinter.BooleanVar() self.children.set(criteria.children) self.scoring = tkinter.BooleanVar() @@ -1101,19 +1115,33 @@ class SelectGameAdvancedSearch(MfxDialog): text=_("Popular"), anchor="w") popularCheck.grid(row=row, column=col, columnspan=1, sticky='ew', padx=1, pady=1) - col += 1 + col += 2 + + recentCheck = tkinter.Checkbutton(top_frame, variable=self.recent, + text=_("Recent"), anchor="w") + recentCheck.grid(row=row, column=col, columnspan=1, sticky='ew', + padx=1, pady=1) + col += 2 + + favoriteCheck = tkinter.Checkbutton(top_frame, variable=self.favorite, + text=_("Favorite"), anchor="w") + favoriteCheck.grid(row=row, column=col, columnspan=1, sticky='ew', + padx=1, pady=1) + + row += 1 + col = 0 childCheck = tkinter.Checkbutton(top_frame, variable=self.children, text=_("Children's"), anchor="w") childCheck.grid(row=row, column=col, columnspan=1, sticky='ew', padx=1, pady=1) - col += 1 + col += 2 scoreCheck = tkinter.Checkbutton(top_frame, variable=self.scoring, text=_("Scored"), anchor="w") scoreCheck.grid(row=row, column=col, columnspan=1, sticky='ew', padx=1, pady=1) - col += 1 + col += 2 stripCheck = tkinter.Checkbutton(top_frame, variable=self.stripped, text=_("Stripped Deck"), anchor="w") @@ -1126,25 +1154,25 @@ class SelectGameAdvancedSearch(MfxDialog): text=_("Separate Decks"), anchor="w") sepCheck.grid(row=row, column=col, columnspan=1, sticky='ew', padx=1, pady=1) - col += 1 + col += 2 openCheck = tkinter.Checkbutton(top_frame, variable=self.open, text=_("Open"), anchor="w") openCheck.grid(row=row, column=col, columnspan=1, sticky='ew', padx=1, pady=1) - col += 1 + col += 2 relaxedCheck = tkinter.Checkbutton(top_frame, variable=self.relaxed, text=_("Relaxed"), anchor="w") relaxedCheck.grid(row=row, column=col, columnspan=1, sticky='ew', padx=1, pady=1) - col += 1 + row += 1 + col = 0 originalCheck = tkinter.Checkbutton(top_frame, variable=self.original, text=_("Original"), anchor="w") originalCheck.grid(row=row, column=col, columnspan=1, sticky='ew', padx=1, pady=1) - col += 1 focus = self.createButtons(bottom_frame, kw) # focus = text_w