Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Z-Bolt/OctoScreen.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-03-27cleaned up CommandButton.handleClicked() and ControlButton.handleClicked()2.7.0-devJeffB42
2021-03-27cleaned up CommandButton.handleClicked() and ControlButton.handleClicked()JeffB42
2021-03-27Merge pull request #263 from thebeline/BF/CommandsJeffB42
Bug Fix: CustomControls with multiple command lines and Control/Command Confirm handling.
2021-03-27Merge pull request #265 from thebeline/BF/SSIDPasswordSpaceJeffB42
BF: Add SPACE and define keyboard buttons visually.
2021-03-24Add SPACE and define keyboard buttons visually.Michael J Mulligan
2021-03-24Fixed Command/Control Button Confirm dialog calling.Michael J Mulligan
2021-03-24XMerge branch '2.7.0-dev' into BF/CommandsMichael J Mulligan
2021-03-24remved calls to fatal(), reworked code so a FatalErrorWindow is displayed in ↵JeffB42
all error cases
2021-03-23added Panic() and Panicln()JeffB42
2021-03-23removed extra '*'JeffB42
2021-03-23Merge pull request #251 from thebeline/IMP/AutoLocalJeffB42
Imp/auto local
2021-03-23Merge pull request #255 from thebeline/BF/WatchDogTimeoutJeffB42
Increase Watchdog timer per documentation recomendations.
2021-03-22Watchdog everything.Michael J Mulligan
2021-03-22Method names are hard. ;-)Michael J Mulligan
2021-03-22SD Is ReadyMichael J Mulligan
2021-03-16Merge pull request #254 from thebeline/BF/ConfigLogLevelJeffB42
Bf/config log level
2021-03-16Increase Watchdog timer per documentation recomendations.Michael J Mulligan
The documentation for SdNotify make it very clear that we should be notifying the watchdog at least time/2 (which is to say [WatchdogSec/2]. The primary loop that has done this was `UI.update` although I see that additional calls were added to try to resolve the random reboots. The fact of the matter is, the timer was 10 seconds, and update was only called every 10 seconds... So... A delay of even a second, anywhere in the app, and the watchdog would restart the service. I see where some additional notifys were added, but to be honest, a 10 second timeout seems too short anyway, and cutting it so close was a gamble. So I raised the timeout, and while I did keep the notify in Files (although I did move it to what was really the heavy call), with the additional time, I don't really think it is nessesary. This additional buffer, and adhering to the documented call cadence, should resolve the random reboots (I know 2.7.0 was supposed to resolve these, likely due to the addition of the additional notify calls, however I just had a development board doing nothing reset, so...). Also, there was a Notify Ready in Files. That is reserved for Service Init, so I pulled that out.
2021-03-16Seems like too easy of a fix.Michael J Mulligan
Not sure what was going on here, but... We never used the configured Log Level... Why?
2021-03-15Removing more unneeded logs.Michael J Mulligan
2021-03-15Removing unneeded logs.Michael J Mulligan
2021-03-15Check the SD state after refresh request.Michael J Mulligan
2021-03-15Just trying to figure out where I am...Michael J Mulligan
2021-03-15Logging?Michael J Mulligan
2021-03-15Debug because... Oddness...Michael J Mulligan
2021-03-15Well shoot.Michael J Mulligan
2021-03-15Chech SD status prior to loading or going back.Michael J Mulligan
2021-03-14added 'UI' which was removedJeffB42
2021-03-14reverted click handler b/c it needs 'location'JeffB42
2021-03-14added missing 'this'JeffB42
2021-03-14added calls to sdNotify(), refactred into handleRootLocationClick()JeffB42
2021-03-13added call to sdRefreshRequest.Do() to refresh the file list when the curent ↵JeffB42
target is sdcard
2021-03-13added logging to try and catch if the app unexpectedly quitsJeffB42
2021-03-13seperated out the refreshButton and backButton, added displayRootLocations()JeffB42
2021-03-13fixed bug in SystemCommandsRequest.Do() where Unmarshal() was being passed a ↵JeffB42
string and not a *string
2021-03-13added mutex for _indentation to prevent race conditionJeffB42
2021-03-06Initial allow CustomControls with multiple command lines. (untested)Michael J Mulligan
2021-03-01cleaned up code in CreateSelectExtruderStepButton() and ↵JeffB42
CreateSelectHotendStepButton()
2021-03-01fixed commentJeffB42
2021-03-01changed a few logging statements from Info to DebugJeffB42
2021-02-27fixed typo in commentJeffB42
2021-02-27updated commentJeffB42
2021-02-27updated the setting of OctoPrintPluginIsAvailableJeffB42
2021-02-27updated code to use new logger libraryJeffB42
2021-02-27updated code to use new logger libraryJeffB42
2021-02-27moved logger into it's own folder/packageJeffB42
2021-02-26added call to sdNotify() to prevent crashing when printer is unpluggedJeffB42
2021-02-21added more logging to ui.goJeffB42
2021-02-21added MISSING_ENV_TOKEN and INVALID_ENV_TOKENJeffB42
2021-02-21added comment about how updateTemperaturesCallback() needs to guard when not ↵JeffB42
connected, but can't do this at the moment due to circular dependency
2021-02-21broke verifyConnection() up, added ↵JeffB42
getUiStateAndMessageFromConnectionResponse() and getUiStateAndMessageFromError(), fixed bug where uninitialized was getting through