You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MessageBox.Show("A critical error occurred. The developer has been notified and will resolve this issue ASAP! Try and start ACC again, and avoid whatever just made it crash (for now) :)","ACC | Error");
339
342
}
340
343
341
-
privatestaticvoidCreateLogFile(){
344
+
privatestaticboolCreateLogFile(){
342
345
try{
343
346
using(vartw=newStreamWriter(logFilePath,true)){
344
347
tw.WriteLine(string.Empty);
345
348
tw.Close();
346
349
}
347
-
}catch{
348
-
DoDebug("Could not clear log file.");
350
+
}catch(Exceptione){
351
+
Console.WriteLine("Could not create/clear log file; "+e.Message);
352
+
returnfalse;
349
353
}
354
+
355
+
returntrue;
350
356
}
351
357
352
358
publicstaticvoidSetupListener(){
@@ -592,33 +598,35 @@ public static string CheckPath() {
//Dropbox not found & no custom filepath, go through setup again?
599
-
hasAskedForSetupAgain=true;
600
-
varmsgBox=MessageBox.Show("Dropbox (required) doesn't seem to be installed... Do you want to go through the setup guide again?","[ERROR] No folder specified | "+messageBoxTitle,MessageBoxButtons.YesNo);
//Dropbox not found & no custom filepath, go through setup again?
605
+
hasAskedForSetupAgain=true;
606
+
varmsgBox=MessageBox.Show("You do not seem to have chosen a cloud-service. Do you want to go through the setup guide again?","[ERROR] No folder specified | AssistantComputerControl",MessageBoxButtons.YesNo);
<li>Fixed critial issues that made 1.2.2 crash for all new users</li>
41
44
<li>Sleep-repetition issue; fixed PC being able to go into a sleep-loop</li>
42
45
<li>Fixed links in setup guide for Google Drive and OneDrive shutdown applets (all pointed to Dropbox)</li>
43
46
<li>Please report bugs <ahref="https://github.com/AlbertMN/AssistantComputerControl/issues">here</a> or in the Discord server!</li>
44
47
<li>If you wish to support the development of the project, you can donate <ahref="https://www.paypal.me/albermn">here</a> or leave a star on GitHub!</li>
45
48
</ul>
46
49
</li>
47
-
<li><i>Hotfix 1.2.1 release notes;</i>
50
+
<li>
51
+
<i>Hotfix 1.2.1 release notes;</i>
48
52
<ul>
49
53
<li>Fixed bug where PC would be stuck in shutdown loop after shutdown or restart action - sorry for the inconvenience</li>
50
54
<li>Please report bugs <ahref="https://github.com/AlbertMN/AssistantComputerControl/issues">here</a> or in the Discord server!</li>
0 commit comments