Skip to content

Commit

Permalink
#3 Rename process to "B2S Designer", update version number, only comp…
Browse files Browse the repository at this point in the history
…ile x64/AnyCPU
  • Loading branch information
JockeJarre committed Nov 14, 2023
1 parent 1851d47 commit 0225cb6
Show file tree
Hide file tree
Showing 8 changed files with 5,299 additions and 5,267 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/b2s-designer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ jobs:
cp license.txt tmp
- uses: actions/upload-artifact@v3
with:
name: B2S.Designer-${{ steps.version.outputs.tag }}-${{ matrix.config }}-win-${{ matrix.platform }}
name: B2S.Designer-${{ steps.version.outputs.tag }}-${{ matrix.config }}-win-AnyCPU
path: tmp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<Version>1.0</Version>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.27.2.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
Expand All @@ -31,7 +46,7 @@
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<Prefer32Bit>false</Prefer32Bit>
<Version>1.0</Version>
</PropertyGroup>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
Expand Down Expand Up @@ -66,7 +81,7 @@
<Optimize>true</Optimize>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<PlatformTarget>AnyCPU</PlatformTarget>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
<Version>1.0</Version>
Expand Down Expand Up @@ -752,7 +767,18 @@
<ItemGroup>
<None Include="Resources\marker_newbulb.png" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.8">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.8 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Module moduleB2S

Public Const AppTitle As String = "B2S Backglass Designer"
Public Const AppTitle As String = "B2S Designer"

Public Const MaxBulbIntensity As Integer = 5

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ Imports System.Runtime.InteropServices

' Die Werte der Assemblyattribute überprüfen

<Assembly: AssemblyTitle("B2S Backglass Designer")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyTitle("B2S Designer")>
<Assembly: AssemblyDescription("The WYSIWYG editor for directB2S backglass files")>
<Assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("B2S Backglass Designer")>
<Assembly: AssemblyProduct("B2S Designer")>
<Assembly: AssemblyCopyright("Copyright (c) 2012-2023")>
<Assembly: AssemblyTrademark("A Herweh & B2S Team production")>

Expand All @@ -31,6 +31,6 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.27.0.2")>
<Assembly: AssemblyFileVersion("1.27.0.2")>
<Assembly: AssemblyInformationalVersion("1.27.0.2")>
<Assembly: AssemblyVersion("1.28.0.0")>
<Assembly: AssemblyFileVersion("1.28.0.0")>
<Assembly: AssemblyInformationalVersion("1.28.0.0")>
Original file line number Diff line number Diff line change
Expand Up @@ -1667,7 +1667,7 @@
<value>600, 400</value>
</data>
<data name="$this.Text" xml:space="preserve">
<value>B2S Backglass Designer</value>
<value>B2S Designer</value>
</data>
<data name="&gt;&gt;tsmiFile.Name" xml:space="preserve">
<value>tsmiFile</value>
Expand Down
2 changes: 1 addition & 1 deletion b2sbackglassdesigner/b2sbackglassdesigner/formDesigner.vb
Original file line number Diff line number Diff line change
Expand Up @@ -1220,7 +1220,7 @@ Public Class formDesigner
tsmiTranslucent.Checked = (DefaultOpacity <> 1)
MyBase.SaveSettings()
For Each form As Form In Me.OwnedForms
If TypeOf form Is formBase Then
If TypeOf form Is B2SBackglassDesigner.formBase Then
form.Opacity = DefaultOpacity
End If
Next
Expand Down
Loading

0 comments on commit 0225cb6

Please sign in to comment.