Skip to content

Commit c1e8255

Browse files
committed
Unimportant changes
1 parent 71915a1 commit c1e8255

File tree

16 files changed

+19
-12
lines changed

16 files changed

+19
-12
lines changed
-168 Bytes
Binary file not shown.
-7 Bytes
Binary file not shown.
Binary file not shown.

Advanced Installer/Advanced Installer.aip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
<ROW Path="&lt;AI_DICTS&gt;ui_en.ail"/>
163163
</COMPONENT>
164164
<COMPONENT cid="caphyon.advinst.msicomp.DigCertStoreComponent">
165-
<ROW TimeStampUrl="http://timestamp.digicert.com" SignerDescription="[|ProductName]" SignOptions="7" SignTool="0" UseSha256="1" Thumbprint="afa6b9566c7c7423bdb32b766390d51fb71090ba Subject: AssistantComputerControl&#10;Issuer: AssistantComputerControl&#10;Valid from 10/27/2019 to 10/27/2020"/>
165+
<ROW TimeStampUrl="http://timestamp.digicert.com" SignerDescription="[|ProductName]" SignOptions="7" SignTool="0" UseSha256="1" Thumbprint="6aaf0049bf6be6120f8364401408f547f13f82e8 Subject: AssistantComputerControl&#10;Issuer: AssistantComputerControl&#10;Valid from 12/12/2020 to 12/12/2021&#10;User\MY"/>
166166
</COMPONENT>
167167
<COMPONENT cid="caphyon.advinst.msicomp.FragmentComponent">
168168
<ROW Fragment="CommonUI.aip" Path="&lt;AI_FRAGS&gt;CommonUI.aip"/>

AssistantComputerControl/ActionMods.cs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
using System;
1+
/*
2+
* AssistantComputerControl
3+
* Made by Albert MN.
4+
* Updated: v1.4.2, 12-12-2020
5+
*
6+
* Use:
7+
* - Handles action mods; https://acc.readme.io/v1.4.2/docs/action-mod-documentation
8+
*/
9+
10+
using System;
211
using System.Collections.Generic;
312
using System.Diagnostics;
413
using System.IO;

AssistantComputerControl/Actions.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* AssistantComputerControl
33
* Made by Albert MN.
4-
* Updated: v1.4.0, 15-01-2020
4+
* Updated: v1.4.2, 12-12-2020
55
*
66
* Use:
77
* - Functions for all the actions
@@ -431,7 +431,7 @@ public void Open(string parameter) {
431431
p.Start();
432432
successMessage = "OPEN: opened file/url; " + fileLocation;
433433
} catch (Exception e) {
434-
MainProgram.DoDebug("Failed to open file; " + e.Message);
434+
MainProgram.DoDebug("Failed to open file at ; " + fileLocation + ". Got the following error; " + e.Message);
435435
Error("Failed to open file (" + fileLocation + ")");
436436
}
437437
} else {
@@ -1036,7 +1036,6 @@ public void MoveMouse(String parameter) {
10361036
} else {
10371037
Error("Parameter 2 is not a number");
10381038
}
1039-
10401039
// It isn't a number
10411040
} else {
10421041
Error("Parameter 1 is not a number");
@@ -1118,7 +1117,6 @@ public void Wait(string parameter) {
11181117
/*
11191118
* Action made by community member Joshua Miller
11201119
*/
1121-
11221120
if (Int32.TryParse(parameter, out int time)) {
11231121
if (!MainProgram.testingAction) {
11241122
Thread.Sleep(time);

AssistantComputerControl/MainProgram.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* AssistantComputerControl
33
* Made by Albert MN.
4-
* Updated: v1.4.2, 02-08-2020
4+
* Updated: v1.4.2, 12-12-2020
55
*
66
* Use:
77
* - Main class. Starts everything.
@@ -27,11 +27,11 @@
2727
namespace AssistantComputerControl {
2828
class MainProgram {
2929
public const string softwareVersion = "1.4.2",
30-
releaseDate = "2020-08-02 21:25:00", //YYYY-MM-DD H:i:s - otherwise it gives an error
30+
releaseDate = "2020-12-12 14:55:00", //YYYY-MM-DD H:i:s - otherwise it gives an error
3131
appName = "AssistantComputerControl",
3232

33-
sentryToken = "super_secret";
34-
33+
//sentryToken = "super_secret";
34+
sentryToken = "https://[email protected]/1287269"; //Remove on git push
3535

3636
static public bool debug = true,
3737
unmuteVolumeChange = true,

AssistantComputerControl/WebFiles/AboutVersion.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
<li>
3737
<i>Version 1.4.2 hotfix notes;</i>
3838
<ul>
39+
<li>Introducing <b>action mods!</b> Make your own actions, and have them act as if they were official ACC actions. Info on <a href="https://acc.readme.io/v1.4.2/docs/creating-action-mods">how to create them here</a></li>
3940
<li>
4041
Added 3 new actions
4142
<ul>
@@ -44,12 +45,11 @@
4445
<li><code>move_mouse</code> - moving your mouse to a specific position</li>
4546
</ul>
4647
</li>
47-
<li></li>
4848
<li>Fixed bug resulting in <code>move</code>, <code>minimize_all</code> and <code>maximize_all</code> would execute in the action simulators</li>
4949
<li>Improved "Start with windows" functionality a lot</li>
5050
<li>ACC now requires administrator rights - should've done this a long time ago, but now we can't push it anymore</li>
5151
<li>New "WHAT'S NEW?" window that shows after an update - showing the new important features, with links to new actions.</li>
52-
<li>Fixed issues with the <code>open</code> action</li>
52+
<li>Hopefully fixed issues with the <code>open</code> action</li>
5353
<li>Improved action file cleanup by now using Task Scheduler</li>
5454
</ul>
5555
</li>
0 Bytes
Binary file not shown.
512 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)