-
-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create Seperate Settings Tab in GUI Client #30
Comments
In order to make the config abstract, we could probably use C#'s Settings.Default as the main configuration method. This method saves our variables in the .config file that already ships with the app, essentially replacing the JSON format we currently use. If we were to do this, we'd need to also add code to support conversion from the legacy JSON file to the new .config format as well. |
Is that human-readable and writable for a non-technical user? |
Subjective. It's an XML derivative, so there's a key for each setting that contains the corresponding value. Not as simple as JSON, but not super esoteric either.
If we wanted to stick with JSON, we could. Shouldn't be too hard. This was just a quick potential solution.
…________________________________
From: Io Mintz <[email protected]>
Sent: Tuesday, December 31, 2019 3:53:49 AM
To: SunTheCourier/SwitchPresence-Rewritten <[email protected]>
Cc: Andrew Augustine <[email protected]>; Comment <[email protected]>
Subject: Re: [SunTheCourier/SwitchPresence-Rewritten] Create Seperate Settings Tab in GUI Client (#30)
Is that human-readable and writable for a non-technical user?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#30>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ACQQTAXMDCZAOLZ7G5NAKCDQ3MCB3ANCNFSM4KBS6PVA>.
|
Update: |
Code for configuration is mainly all in the main form and would require a bit of abstraction
The text was updated successfully, but these errors were encountered: