1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-01-22 15:46:00 +01:00

Bump project and plugin versions

This commit is contained in:
chylex 2017-08-30 16:51:53 +02:00
parent dd3a0d3890
commit 8ae6e2c886
7 changed files with 15 additions and 9 deletions
Resources/Plugins/emoji-keyboard
lib
TweetLib.Audio/Properties
TweetLib.Communication/Properties
subprocess
video

View File

@ -9,7 +9,7 @@ Emoji keyboard
chylex
[version]
1.3
1.3.1
[website]
https://tweetduck.chylex.com

View File

@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]

View File

@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]

View File

@ -6,6 +6,8 @@
namespace TweetDuck.Browser{
static class Program{
internal const string Version = "1.2.0.0";
private static int Main(string[] args){
SubProcess.EnableHighDPISupport();

View File

@ -1,5 +1,6 @@
using System.Reflection;
using System.Runtime.InteropServices;
using TweetDuck.Browser;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
@ -31,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion(Program.Version)]
[assembly: AssemblyFileVersion(Program.Version)]

View File

@ -5,6 +5,8 @@
namespace TweetDuck.Video{
static class Program{
internal const string Version = "1.2.0.0";
// referenced in VideoPlayer
// set by task manager -- public const int CODE_PROCESS_KILLED = 1;
public const int CODE_INVALID_ARGS = 2;

View File

@ -1,5 +1,6 @@
using System.Reflection;
using System.Runtime.InteropServices;
using TweetDuck.Video;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
@ -31,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion(Program.Version)]
[assembly: AssemblyFileVersion(Program.Version)]