Skip to content

Commit e806225

Browse files
committed
Push release preparations 1.2.0.2
1 parent 88aa634 commit e806225

File tree

8 files changed

+12
-9
lines changed

8 files changed

+12
-9
lines changed

App/AssemblyInfo1.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
// Revision
3232
//
3333
#if (DEBUG)
34-
[assembly: AssemblyVersion("1.11.*")]
34+
[assembly: AssemblyVersion("1.12.*")]
3535
#else
36-
[assembly: AssemblyVersion("1.2.0.1")]
36+
[assembly: AssemblyVersion("1.2.0.2")]
3737
#endif

Deploy/SPEdit.nsi

+3-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ CreateDirectory "$INSTDIR\sourcepawn\scripts"
6060
CreateDirectory "$INSTDIR\sourcepawn\temp"
6161
CreateDirectory "$INSTDIR\sourcepawn\templates"
6262
CreateDirectory "$INSTDIR\sourcepawn\configs"
63-
CreateDirectory "$INSTDIR\sourcepawn\configs\sm_one_seven"
63+
CreateDirectory "$INSTDIR\sourcepawn\configs\sm_1_8_5995_smlib_0_11"
64+
CreateDirectory "$INSTDIR\sourcepawn\configs\sm_1_8_5995"
6465
CreateDirectory "$INSTDIR\sourcepawn\configs\sm_one_six"
6566

6667
File /r ".\sourcepawn"
@@ -126,6 +127,7 @@ Delete $INSTDIR\smxdasm.dll
126127
Delete $INSTDIR\LysisForSpedit.dll
127128
Delete $INSTDIR\QueryMaster.dll
128129
Delete $INSTDIR\Ionic.BZip2.dll
130+
Delete $INSTDIR\lang_0_spedit.xml
129131
Delete $INSTDIR\GPLv3.txt
130132
Delete $INSTDIR\*.dat
131133
RMDir /r $INSTDIR\sourcepawn

Deploy/SpeditUpdater/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ private static void Worker(object arg)
4444
UpdateMarquee um = (UpdateMarquee)arg;
4545
string zipFile = Path.Combine(Environment.CurrentDirectory, "updateZipFile.zip");
4646

47-
byte[] zipFileContent = SpeditUpdater.Properties.Resources.spedit1_2_0_1Update;
47+
byte[] zipFileContent = SpeditUpdater.Properties.Resources.spedit1_2_0_2Update;
4848

4949
File.WriteAllBytes(zipFile, zipFileContent);
5050

Deploy/SpeditUpdater/Properties/Resources.Designer.cs

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Deploy/SpeditUpdater/Properties/Resources.resx

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<data name="IconPng" type="System.Resources.ResXFileRef, System.Windows.Forms">
122122
<value>..\Res\IconPng.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
123123
</data>
124-
<data name="spedit1_2_0_1Update" type="System.Resources.ResXFileRef, System.Windows.Forms">
125-
<value>..\Res\spedit1.2.0.1Update.zip;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
124+
<data name="spedit1_2_0_2Update" type="System.Resources.ResXFileRef, System.Windows.Forms">
125+
<value>..\Res\spedit1.2.0.2Update.zip;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
126126
</data>
127127
</root>
Binary file not shown.

Deploy/SpeditUpdater/SpeditUpdater.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<None Include="Res\spedit1.1.3.0Update.zip" />
5151
<None Include="Res\spedit1.2.0.0Update.zip" />
5252
<None Include="Res\spedit1.2.0.1Update.zip" />
53+
<None Include="Res\spedit1.2.0.2Update.zip" />
5354
</ItemGroup>
5455
<ItemGroup>
5556
<Compile Include="Program.cs" />

Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Spedit
1414
{
1515
public static class Program
1616
{
17-
public const string ProgramInternalVersion = "11";
17+
public const string ProgramInternalVersion = "12";
1818

1919
public static MainWindow MainWindow;
2020
public static OptionsControl OptionsObject;

0 commit comments

Comments
 (0)