mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
0a7bd9f636
Changes since 5bf51d0: Large scale cleanup & refactoring. Sound Propagation Mode: you can now click on doublesided linedefs to toggle sound blocking flag. Sound Environment Mode: you can now click on doublesided linedefs to toggle sound zone boundary flag. Sound Propagation Mode: reimplemented the highlighting of non-deaf things. Things are now highlighted using selection color. Removed "Show tooltips" checkbox. Tooltips are now always enabled. Fixed, Sound Environment Mode: thing tooltip about multiple active sound environment things was shown even when there was only one active sound environment thing. Fixed, Sound Environment Mode: "Configure colors" toolbar button was not working because of missing action. Fixed, cosmetic: "Configure colors" toolbar icon was missing a tooltip. Fixed, cosmetic: display was not redrawn after changing colors using "Color configuration" window.
36 lines
1.5 KiB
C#
36 lines
1.5 KiB
C#
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
// Allgemeine Informationen über eine Assembly werden über die folgenden
|
|
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
|
|
// die mit einer Assembly verknüpft sind.
|
|
[assembly: AssemblyTitle("SoundPropagationMode")]
|
|
[assembly: AssemblyDescription("")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("")]
|
|
[assembly: AssemblyProduct("SoundPropagationMode")]
|
|
[assembly: AssemblyCopyright("Copyright © 2015")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar
|
|
// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von
|
|
// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest.
|
|
[assembly: ComVisible(false)]
|
|
|
|
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
|
|
[assembly: Guid("626ea88b-7e0f-4486-acca-32027c4133de")]
|
|
|
|
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
|
|
//
|
|
// Hauptversion
|
|
// Nebenversion
|
|
// Buildnummer
|
|
// Revision
|
|
//
|
|
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
|
|
// übernehmen, indem Sie "*" eingeben:
|
|
// [assembly: AssemblyVersion("1.0.*")]
|
|
[assembly: AssemblyVersion("1.0.0.0")]
|
|
[assembly: AssemblyFileVersion("0.1.0.0")]
|