-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BUGFIX: Rotation gave wrong coordinates.
IMPROVED: Pixel values starting left bottom corner with (0,0) instead of default (0,0) in the top left corner, gives us synchronized x-y view even without calibration. IMPROVED: Installer with desktop icon. BUGFIX: Installer let some orphan files in the system. BUGFIX: Save dialog with correct filename. BUGFIX: Reload of project missed multiple objects in the chart window. IMPROVED: Manual Data Acquisition available in video capture mode. IMPROVED: Updated of video frame during timeline slider drag.
- Loading branch information
1 parent
23c10c5
commit b17b5bb
Showing
16 changed files
with
185 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,15 +9,15 @@ | |
<?define SupportPhone = "[email protected]"?> | ||
<?define InstallDescription = "Video analysis for science education."?> | ||
<?define UpgradeGuid = "{4830D7E5-685D-4637-B1BD-9A347BB911CF}"?> | ||
<?define ProductVersion="6.0.0" ?> | ||
<?define ProductVersion="6.1.0" ?> | ||
|
||
<?if $(var.Platform) = x64 ?> | ||
<?define ProductName = "Viana.NET 6.0" ?> | ||
<?define ProductName = "Viana.NET 6.1" ?> | ||
<?define Win64 = "yes" ?> | ||
<?define PlatformName = "x64"?> | ||
<?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?> | ||
<?else ?> | ||
<?define ProductName = "Viana.NET 6.0" ?> | ||
<?define ProductName = "Viana.NET 6.1" ?> | ||
<?define Win64 = "no" ?> | ||
<?define PlatformName = "x86"?> | ||
<?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
namespace VianaNET.CustomStyles.Types | ||
{ | ||
public class TrackObject | ||
{ | ||
public TrackObject(int index, string name) | ||
{ | ||
this.Name = name; | ||
this.Index = index; | ||
} | ||
|
||
public string Name { get; private set; } | ||
|
||
public int Index { get; private set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.