mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-12-21 14:29:23 +01:00
0.45.1
This commit is contained in:
parent
15c86e8522
commit
1a99680df1
3 changed files with 53 additions and 11 deletions
|
@ -1,3 +1,9 @@
|
|||
# 0.45.1
|
||||
*December 4, 2024*
|
||||
|
||||
Fixes
|
||||
- Fixed language-specific settings not being parsed properly
|
||||
|
||||
# 0.45.0
|
||||
*November 29, 2024*
|
||||
|
||||
|
|
1
docs/api/.manifest
generated
1
docs/api/.manifest
generated
|
@ -1725,6 +1725,7 @@
|
|||
"TinyLife.Localization": "TinyLife.Localization.yml",
|
||||
"TinyLife.Localization.Get(TinyLife.LnCategory,System.String)": "TinyLife.Localization.yml",
|
||||
"TinyLife.Localization.Get(TinyLife.LnCategory,System.String,System.Object[])": "TinyLife.Localization.yml",
|
||||
"TinyLife.Localization.GetBool(TinyLife.LnCategory,System.String)": "TinyLife.Localization.yml",
|
||||
"TinyLife.Localization.GetKeys(TinyLife.LnCategory)": "TinyLife.Localization.yml",
|
||||
"TinyLife.Localization.GetRandomName(System.Random,System.Boolean,TinyLife.Objects.StylePreference)": "TinyLife.Localization.yml",
|
||||
"TinyLife.Localization.LanguageNames": "TinyLife.Localization.yml",
|
||||
|
|
57
docs/api/TinyLife.Localization.yml
generated
57
docs/api/TinyLife.Localization.yml
generated
|
@ -7,6 +7,7 @@ items:
|
|||
children:
|
||||
- TinyLife.Localization.Get(TinyLife.LnCategory,System.String)
|
||||
- TinyLife.Localization.Get(TinyLife.LnCategory,System.String,System.Object[])
|
||||
- TinyLife.Localization.GetBool(TinyLife.LnCategory,System.String)
|
||||
- TinyLife.Localization.GetKeys(TinyLife.LnCategory)
|
||||
- TinyLife.Localization.GetRandomName(System.Random,System.Boolean,TinyLife.Objects.StylePreference)
|
||||
- TinyLife.Localization.LanguageNames
|
||||
|
@ -208,6 +209,34 @@ items:
|
|||
nameWithType.vb: Localization.Get(LnCategory, String, ParamArray Object())
|
||||
fullName.vb: TinyLife.Localization.Get(TinyLife.LnCategory, String, ParamArray Object())
|
||||
name.vb: Get(LnCategory, String, ParamArray Object())
|
||||
- uid: TinyLife.Localization.GetBool(TinyLife.LnCategory,System.String)
|
||||
commentId: M:TinyLife.Localization.GetBool(TinyLife.LnCategory,System.String)
|
||||
id: GetBool(TinyLife.LnCategory,System.String)
|
||||
parent: TinyLife.Localization
|
||||
langs:
|
||||
- csharp
|
||||
- vb
|
||||
name: GetBool(LnCategory, string)
|
||||
nameWithType: Localization.GetBool(LnCategory, string)
|
||||
fullName: TinyLife.Localization.GetBool(TinyLife.LnCategory, string)
|
||||
type: Method
|
||||
assemblies:
|
||||
- Tiny Life
|
||||
namespace: TinyLife
|
||||
syntax:
|
||||
content: public static bool GetBool(LnCategory category, string key)
|
||||
parameters:
|
||||
- id: category
|
||||
type: TinyLife.LnCategory
|
||||
- id: key
|
||||
type: System.String
|
||||
return:
|
||||
type: System.Boolean
|
||||
content.vb: Public Shared Function GetBool(category As LnCategory, key As String) As Boolean
|
||||
overload: TinyLife.Localization.GetBool*
|
||||
nameWithType.vb: Localization.GetBool(LnCategory, String)
|
||||
fullName.vb: TinyLife.Localization.GetBool(TinyLife.LnCategory, String)
|
||||
name.vb: GetBool(LnCategory, String)
|
||||
- uid: TinyLife.Localization.GetKeys(TinyLife.LnCategory)
|
||||
commentId: M:TinyLife.Localization.GetKeys(TinyLife.LnCategory)
|
||||
id: GetKeys(TinyLife.LnCategory)
|
||||
|
@ -860,6 +889,23 @@ references:
|
|||
href: https://learn.microsoft.com/dotnet/api/system.object
|
||||
- name: (
|
||||
- name: )
|
||||
- uid: TinyLife.Localization.GetBool*
|
||||
commentId: Overload:TinyLife.Localization.GetBool
|
||||
href: TinyLife.Localization.html#TinyLife_Localization_GetBool_TinyLife_LnCategory_System_String_
|
||||
name: GetBool
|
||||
nameWithType: Localization.GetBool
|
||||
fullName: TinyLife.Localization.GetBool
|
||||
- uid: System.Boolean
|
||||
commentId: T:System.Boolean
|
||||
parent: System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
name: bool
|
||||
nameWithType: bool
|
||||
fullName: bool
|
||||
nameWithType.vb: Boolean
|
||||
fullName.vb: Boolean
|
||||
name.vb: Boolean
|
||||
- uid: TinyLife.Localization.GetKeys*
|
||||
commentId: Overload:TinyLife.Localization.GetKeys
|
||||
href: TinyLife.Localization.html#TinyLife_Localization_GetKeys_TinyLife_LnCategory_
|
||||
|
@ -943,17 +989,6 @@ references:
|
|||
name: Random
|
||||
nameWithType: Random
|
||||
fullName: System.Random
|
||||
- uid: System.Boolean
|
||||
commentId: T:System.Boolean
|
||||
parent: System
|
||||
isExternal: true
|
||||
href: https://learn.microsoft.com/dotnet/api/system.boolean
|
||||
name: bool
|
||||
nameWithType: bool
|
||||
fullName: bool
|
||||
nameWithType.vb: Boolean
|
||||
fullName.vb: Boolean
|
||||
name.vb: Boolean
|
||||
- uid: TinyLife.Objects.StylePreference
|
||||
commentId: T:TinyLife.Objects.StylePreference
|
||||
parent: TinyLife.Objects
|
||||
|
|
Loading…
Reference in a new issue