client-qml: add initial commit
Change-Id: I32bfdd2a618aa7ac6181da2697e241667b010aab
101
.clang-format
Normal file
|
@ -0,0 +1,101 @@
|
|||
Language: Cpp
|
||||
AccessModifierOffset: -4
|
||||
AlignAfterOpenBracket: Align
|
||||
AlignConsecutiveAssignments: false
|
||||
AlignConsecutiveDeclarations: false
|
||||
AlignEscapedNewlines: DontAlign
|
||||
AlignOperands: true
|
||||
AlignTrailingComments: true
|
||||
AllowAllParametersOfDeclarationOnNextLine: true
|
||||
AllowShortBlocksOnASingleLine: false
|
||||
AllowShortCaseLabelsOnASingleLine: false
|
||||
AllowShortFunctionsOnASingleLine: Inline
|
||||
AllowShortIfStatementsOnASingleLine: false
|
||||
AllowShortLoopsOnASingleLine: false
|
||||
AlwaysBreakAfterReturnType: None
|
||||
AlwaysBreakBeforeMultilineStrings: false
|
||||
AlwaysBreakTemplateDeclarations: true
|
||||
AlwaysBreakAfterDefinitionReturnType: All
|
||||
BinPackArguments: false
|
||||
BinPackParameters: false
|
||||
BraceWrapping:
|
||||
AfterClass: true
|
||||
AfterControlStatement: false
|
||||
AfterEnum: false
|
||||
AfterFunction: true
|
||||
AfterNamespace: false
|
||||
AfterObjCDeclaration: false
|
||||
AfterStruct: true
|
||||
AfterUnion: false
|
||||
BeforeCatch: false
|
||||
BeforeElse: false
|
||||
IndentBraces: false
|
||||
SplitEmptyFunction: false
|
||||
SplitEmptyRecord: false
|
||||
SplitEmptyNamespace: false
|
||||
BreakBeforeBinaryOperators: All
|
||||
BreakBeforeBraces: Custom
|
||||
BreakBeforeInheritanceComma: false
|
||||
BreakBeforeTernaryOperators: true
|
||||
BreakConstructorInitializersBeforeComma: false
|
||||
BreakConstructorInitializers: BeforeComma
|
||||
BreakAfterJavaFieldAnnotations: false
|
||||
BreakStringLiterals: true
|
||||
ColumnLimit: 100
|
||||
CommentPragmas: '^ IWYU pragma:'
|
||||
CompactNamespaces: false
|
||||
ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
||||
ConstructorInitializerIndentWidth: 4
|
||||
ContinuationIndentWidth: 4
|
||||
Cpp11BracedListStyle: true
|
||||
DerivePointerAlignment: false
|
||||
DisableFormat: false
|
||||
ExperimentalAutoDetectBinPacking: false
|
||||
FixNamespaceComments: true
|
||||
ForEachMacros:
|
||||
- forever # avoids { wrapped to next line
|
||||
- foreach
|
||||
- Q_FOREACH
|
||||
- BOOST_FOREACH
|
||||
IncludeCategories:
|
||||
- Regex: '^<Q.*'
|
||||
Priority: 200
|
||||
IncludeIsMainRegex: '(Test)?$'
|
||||
IndentCaseLabels: false
|
||||
IndentWidth: 4
|
||||
IndentWrappedFunctionNames: false
|
||||
JavaScriptQuotes: Leave
|
||||
JavaScriptWrapImports: true
|
||||
KeepEmptyLinesAtTheStartOfBlocks: false
|
||||
# Do not add QT_BEGIN_NAMESPACE/QT_END_NAMESPACE as this will indent lines in between.
|
||||
MacroBlockBegin: ""
|
||||
MacroBlockEnd: ""
|
||||
MaxEmptyLinesToKeep: 1
|
||||
NamespaceIndentation: None
|
||||
ObjCBlockIndentWidth: 4
|
||||
ObjCSpaceAfterProperty: false
|
||||
ObjCSpaceBeforeProtocolList: true
|
||||
PenaltyBreakAssignment: 150
|
||||
PenaltyBreakBeforeFirstCallParameter: 300
|
||||
PenaltyBreakComment: 500
|
||||
PenaltyBreakFirstLessLess: 400
|
||||
PenaltyBreakString: 600
|
||||
PenaltyExcessCharacter: 50
|
||||
PenaltyReturnTypeOnItsOwnLine: 300
|
||||
PointerAlignment: Right
|
||||
ReflowComments: false
|
||||
SortIncludes: true
|
||||
SortUsingDeclarations: true
|
||||
SpaceAfterCStyleCast: true
|
||||
SpaceAfterTemplateKeyword: false
|
||||
SpaceBeforeAssignmentOperators: true
|
||||
SpaceBeforeParens: ControlStatements
|
||||
SpaceInEmptyParentheses: false
|
||||
SpacesBeforeTrailingComments: 1
|
||||
SpacesInAngles: false
|
||||
SpacesInContainerLiterals: false
|
||||
SpacesInCStyleCastParentheses: false
|
||||
SpacesInParentheses: false
|
||||
SpacesInSquareBrackets: false
|
||||
Standard: Cpp11
|
||||
TabWidth: 4
|
21
.gitignore
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
*.user
|
||||
|
||||
GeneratedFiles/
|
||||
.vs/
|
||||
x64/
|
||||
x86/
|
||||
[wW]in32/
|
||||
.qmake.stash
|
||||
debug/
|
||||
release/
|
||||
beta/
|
||||
qrencode-win32/
|
||||
*.dll
|
||||
*.qm
|
||||
build/
|
||||
nuget.exe
|
||||
*.autosave
|
||||
changelog.html
|
||||
obj/
|
||||
build/
|
||||
build-local/
|
4
.gitmodules
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
[submodule "libqrencode"]
|
||||
path = libqrencode
|
||||
url = https://github.com/fukuchi/libqrencode.git
|
||||
ignore = dirty
|
6
.gitreview
Normal file
|
@ -0,0 +1,6 @@
|
|||
[gerrit]
|
||||
host=gerrit-ring.savoirfairelinux.com
|
||||
port=29420
|
||||
project=ring-client-window.git
|
||||
defaultremote=origin
|
||||
defaultbranch=master
|
8
.tx/config
Normal file
|
@ -0,0 +1,8 @@
|
|||
[main]
|
||||
host = https://www.transifex.com
|
||||
|
||||
[jami.ring_client_windowsts]
|
||||
file_filter = translations/ring_client_windows_<lang>.ts
|
||||
source_file = translations/ring_client_windows.ts
|
||||
source_lang = en
|
||||
type = TS
|
3
JamiInstaller/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
/obj
|
||||
/bin
|
||||
Components.wxs
|
19
JamiInstaller/Config.wxi
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Include>
|
||||
<?if $(var.Configuration) = Release ?>
|
||||
<?define Name="Jami" ?>
|
||||
<?else?>
|
||||
<?define Name="Jami (BETA)" ?>
|
||||
<?endif ?>
|
||||
|
||||
<?if $(var.Configuration) = Release ?>
|
||||
<?define ReleaseDir="..\x64\Release"?>
|
||||
<?else?>
|
||||
<?define ReleaseDir="..\x64\Beta"?>
|
||||
<?endif ?>
|
||||
|
||||
<?define AppName="Jami" ?>
|
||||
|
||||
<?define Manufacturer="Savoir-Faire Linux"?>
|
||||
<?define UcrtDir="C:\Program Files (x86)\Windows Kits\10\Redist\ucrt\DLLs\x64"?>
|
||||
</Include>
|
44
JamiInstaller/HarvestFilter.xslt
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xsl:stylesheet version="1.0"
|
||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:wix="http://schemas.microsoft.com/wix/2006/wi">
|
||||
|
||||
<xsl:output method="xml" indent="yes" />
|
||||
|
||||
<xsl:template match="@*|node()">
|
||||
<xsl:copy>
|
||||
<xsl:apply-templates select="@*|node()"/>
|
||||
</xsl:copy>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:key name="service-search" match="wix:Component[contains(wix:File/@Source, 'Jami.exe')]" use="@Id" />
|
||||
<xsl:key name="vc-service-search" match="wix:Component[contains(wix:File/@Source, 'vcredist_x64.exe')]" use="@Id" />
|
||||
<xsl:key name="pdb-search" match="wix:Component[contains(wix:File/@Source, '.pdb')]" use="@Id" />
|
||||
<xsl:key name="lib-search" match="wix:Component[contains(wix:File/@Source, 'Jami.lib')]" use="@Id" />
|
||||
<xsl:key name="exp-search" match="wix:Component[contains(wix:File/@Source, 'Jami.exp')]" use="@Id" />
|
||||
<xsl:key name="qmake-search" match="wix:Component[contains(wix:File/@Source, 'qmake')]" use="@Id" />
|
||||
<xsl:key name="obj-search" match="wix:Component[contains(wix:File/@Source, '.obj')]" use="@Id" />
|
||||
<xsl:key name="tlog-search" match="wix:Component[contains(wix:File/@Source, '.tlog')]" use="@Id" />
|
||||
<xsl:key name="log-search" match="wix:Component[contains(wix:File/@Source, '.log')]" use="@Id" />
|
||||
|
||||
<xsl:template match="wix:Component[key('service-search', @Id)]" />
|
||||
<xsl:template match="wix:Component[key('vc-service-search', @Id)]" />
|
||||
<xsl:template match="wix:Component[key('pdb-search', @Id)]" />
|
||||
<xsl:template match="wix:Component[key('lib-search', @Id)]" />
|
||||
<xsl:template match="wix:Component[key('exp-search', @Id)]" />
|
||||
<xsl:template match="wix:Component[key('qmake-search', @Id)]" />
|
||||
<xsl:template match="wix:Component[key('obj-search', @Id)]" />
|
||||
<xsl:template match="wix:Component[key('tlog-search', @Id)]" />
|
||||
<xsl:template match="wix:Component[key('log-search', @Id)]" />
|
||||
|
||||
<xsl:template match="wix:ComponentRef[key('service-search', @Id)]" />
|
||||
<xsl:template match="wix:ComponentRef[key('vc-service-search', @Id)]" />
|
||||
<xsl:template match="wix:ComponentRef[key('pdb-search', @Id)]" />
|
||||
<xsl:template match="wix:ComponentRef[key('lib-search', @Id)]" />
|
||||
<xsl:template match="wix:ComponentRef[key('exp-search', @Id)]" />
|
||||
<xsl:template match="wix:ComponentRef[key('qmake-search', @Id)]" />
|
||||
<xsl:template match="wix:ComponentRef[key('obj-search', @Id)]" />
|
||||
<xsl:template match="wix:ComponentRef[key('tlog-search', @Id)]" />
|
||||
<xsl:template match="wix:ComponentRef[key('log-search', @Id)]" />
|
||||
|
||||
</xsl:stylesheet>
|
9
JamiInstaller/JamiInstaller.wax
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-16"?>
|
||||
<Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<DeployedProjects />
|
||||
<DirectoryMappings />
|
||||
<FileMappings />
|
||||
<DeploySymbols>false</DeploySymbols>
|
||||
<DeployLocalizations>true</DeployLocalizations>
|
||||
<DeployExternalLocalizations>false</DeployExternalLocalizations>
|
||||
</Configuration>
|
70
JamiInstaller/JamiInstaller.wixproj
Normal file
|
@ -0,0 +1,70 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
|
||||
<ProductVersion>3.10</ProductVersion>
|
||||
<ProjectGuid>dbbfbc55-1c20-4d21-ae3b-6e8b14c4fe48</ProjectGuid>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<OutputName Condition="'$(Configuration)' == 'Release'">jami.release.$(Platform)</OutputName>
|
||||
<OutputName Condition="'$(Configuration)' == 'Beta'">jami.beta.$(Platform)</OutputName>
|
||||
<OutputType>Package</OutputType>
|
||||
<Name>JamiInstaller</Name>
|
||||
<InstallerPlatform>x64</InstallerPlatform>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
||||
<OutputPath>bin\$(Configuration)\</OutputPath>
|
||||
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
|
||||
<DefineConstants>HarvestPath=..\x64\Release</DefineConstants>
|
||||
<SuppressPdbOutput>True</SuppressPdbOutput>
|
||||
<CompilerAdditionalOptions>
|
||||
</CompilerAdditionalOptions>
|
||||
<WixVariables>
|
||||
</WixVariables>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Beta|x64' ">
|
||||
<OutputPath>bin\$(Configuration)\</OutputPath>
|
||||
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
|
||||
<DefineConstants>HarvestPath=..\x64\Beta</DefineConstants>
|
||||
<SuppressPdbOutput>True</SuppressPdbOutput>
|
||||
<CompilerAdditionalOptions>
|
||||
</CompilerAdditionalOptions>
|
||||
<WixVariables>
|
||||
</WixVariables>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Product.wxs" />
|
||||
<Compile Include="StandardComponents.wxs" />
|
||||
<Compile Include="Components.wxs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Config.wxi" />
|
||||
<Content Include="HarvestFilter.xslt" />
|
||||
<Content Include="JamiInstaller.wax" />
|
||||
<Content Include="main-banner.bmp" />
|
||||
<Content Include="top-banner.bmp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<WixExtension Include="WixUtilExtension">
|
||||
<HintPath>$(WixExtDir)\WixUtilExtension.dll</HintPath>
|
||||
<Name>WixUtilExtension</Name>
|
||||
</WixExtension>
|
||||
<WixExtension Include="WixUIExtension">
|
||||
<HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
|
||||
<Name>WixUIExtension</Name>
|
||||
</WixExtension>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Localization.wxl" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " />
|
||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " />
|
||||
<Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
|
||||
<Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
|
||||
</Target>
|
||||
<Target Name="BeforeBuild">
|
||||
<HeatDirectory Directory="..\x64\$(Configuration)" PreprocessorVariable="var.HarvestPath" OutputFile="Components.wxs" ComponentGroupName="HeatGenerated" DirectoryRefId="APPLICATIONFOLDER" AutogenerateGuids="true" ToolPath="$(WixToolPath)" SuppressFragments="true" SuppressRegistry="true" SuppressRootDirectory="true" Transforms="HarvestFilter.xslt" />
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
</Project>
|
7
JamiInstaller/Localization.wxl
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<WixLocalization Culture="en-us"
|
||||
xmlns="http://schemas.microsoft.com/wix/2006/localization">
|
||||
<String Id="AdvancedWelcomeEulaDlgDescriptionPerMachine">By installing this software you agree to the terms in the license agreement</String>
|
||||
<UI Dialog="ExitDialog" Control="OptionalCheckBox" Width="10" Height="10" X="135" Y="110" />
|
||||
<UI Dialog="ExitDialog" Control="OptionalText" X="150" Y="110" />
|
||||
</WixLocalization>
|
135
JamiInstaller/Product.wxs
Normal file
|
@ -0,0 +1,135 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?include Config.wxi?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||
<Product Id="*" Name="$(var.Name)" Language="1033" Version="$(fun.AutoVersion(1.0))" Manufacturer="$(var.Manufacturer)" UpgradeCode="7c45b52b-0390-4fe8-947a-3f13e82dd346">
|
||||
<Package InstallerVersion="301" Compressed="yes" InstallScope="perMachine" />
|
||||
|
||||
<MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
|
||||
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
|
||||
|
||||
<!--Icon File should be in release folder(not wix project), otherwise cannot be read-->
|
||||
<Icon Id="icon.ico" SourceFile="$(var.ReleaseDir)\jami.ico" />
|
||||
<Property Id="ARPPRODUCTICON" Value="icon.ico" />
|
||||
<Property Id="ARPNOMODIFY" Value="1" />
|
||||
|
||||
<Feature Id="ProductFeature" Title="Main" Level="1" Absent="disallow">
|
||||
<ComponentGroupRef Id="StandardComponents" Primary="yes" />
|
||||
<ComponentGroupRef Id="HeatGenerated" />
|
||||
<ComponentRef Id="ApplicationShortcutDesktop" />
|
||||
<ComponentRef Id="ApplicationShortcutStartMenu" />
|
||||
<ComponentRef Id="RegistryEntries" />
|
||||
</Feature>
|
||||
|
||||
<!--Visual C++ Redist merge module-->
|
||||
<DirectoryRef Id="TARGETDIR">
|
||||
<Merge Id="VCRedist" SourceFile="$(env.VCRedistMergeModule)" DiskId="1" Language="0" />
|
||||
</DirectoryRef>
|
||||
<Feature Id="VCRedist" Title="Visual C++ Runtime" AllowAdvertise="no" Display="hidden" Level="1">
|
||||
<MergeRef Id="VCRedist"/>
|
||||
</Feature>
|
||||
|
||||
<!--SetDirectory of APPLICATIONFOLDER -->
|
||||
<SetDirectory Id="APPLICATIONFOLDER" Value="[ProgramFiles64Folder][ApplicationFolderName]">APPLICATIONFOLDER=""</SetDirectory>
|
||||
<SetProperty Id="ARPINSTALLLOCATION" Value="[APPLICATIONFOLDER]" After="CostFinalize" />
|
||||
|
||||
<UIRef Id="CustomUI" />
|
||||
<WixVariable Id="WixUIInfoIcon" Value="icon.ico"/>
|
||||
<WixVariable Id="WixUIBannerBmp" Value="top-banner.bmp" />
|
||||
<WixVariable Id="WixUIDialogBmp" Value="main-banner.bmp" />
|
||||
<WixVariable Id="WixUISupportPerUser" Value="0" />
|
||||
|
||||
<CustomAction Id="removeOldJamiFiles" Directory="APPLICATIONFOLDER" ExeCommand="cmd /c "del vc_redist.x64.exe; del uninstall.exe; del WinSparkle.dll;"" Execute="deferred" Return="ignore" HideTarget="no" Impersonate="no" />
|
||||
|
||||
<Property Id="QtExecCmdLine" Value='"[WindowsFolder]\System32\taskkill.exe" /F /IM QtWebEngineProcess.exe /IM Jami.exe'/>
|
||||
<CustomAction Id="JamiProcesses.TaskKill"
|
||||
BinaryKey="WixCA"
|
||||
DllEntry="CAQuietExec"
|
||||
Execute="immediate"
|
||||
Return="ignore"/>
|
||||
</Product>
|
||||
|
||||
<Fragment Id="DirectoryStructure">
|
||||
<Directory Id="TARGETDIR" Name="SourceDir">
|
||||
<Directory Id="ProgramFiles64Folder">
|
||||
<Directory Id="APPLICATIONFOLDER" Name="$(var.Name)" />
|
||||
</Directory>
|
||||
<Directory Id="DesktopFolder" Name="Desktop" />
|
||||
<Directory Id="ProgramMenuFolder">
|
||||
<Directory Id="ApplicationProgramsFolder" />
|
||||
</Directory>
|
||||
<Directory Id="WindowsFolder" Name="WINDOWS"/>
|
||||
</Directory>
|
||||
</Fragment>
|
||||
|
||||
<Fragment Id="Shortcuts">
|
||||
<DirectoryRef Id="DesktopFolder">
|
||||
<Component Id="ApplicationShortcutDesktop" Guid="*" Win64="yes">
|
||||
<Shortcut Id="ApplicationShortcutDesktop" Name="$(var.Name)" Description="Launch $(var.Name)" Target="[#fileMain.exe]" WorkingDirectory="INSTALLFOLDER" />
|
||||
<RemoveFolder Id="DesktopFolder" On="uninstall" />
|
||||
<RegistryValue Root="HKCU" Key="Software\jami.net\$(var.Name)" Name="desktop" Type="integer" Value="1" KeyPath="yes" />
|
||||
</Component>
|
||||
</DirectoryRef>
|
||||
|
||||
<DirectoryRef Id="ApplicationProgramsFolder">
|
||||
<Component Id="ApplicationShortcutStartMenu" Guid="*" Win64="yes">
|
||||
<Shortcut Id="ApplicationShortcutStartMenu" Name="$(var.Name)" Description="Launch $(var.Name)" Target="[#fileMain.exe]" WorkingDirectory="INSTALLFOLDER" />
|
||||
<RemoveFolder Id="StartMenuFolder" On="uninstall" />
|
||||
<RegistryValue Root="HKCU" Key="Software\jami.net\$(var.Name)" Name="startmenu" Type="integer" Value="1" KeyPath="yes" />
|
||||
</Component>
|
||||
</DirectoryRef>
|
||||
</Fragment>
|
||||
|
||||
<Fragment Id="OtherRegistryEntries">
|
||||
<DirectoryRef Id="TARGETDIR">
|
||||
<Component Id="RegistryEntries" Guid="*" Win64="yes">
|
||||
<RegistryValue Root="HKCU" Key="Software\jami.net\$(var.AppName)" Name="hasRun" Type="integer" Value="0" KeyPath="yes" />
|
||||
</Component>
|
||||
</DirectoryRef>
|
||||
</Fragment>
|
||||
|
||||
<Fragment Id="UI">
|
||||
<UI Id="CustomUI">
|
||||
<Property Id="WixAppFolder" Value="WixPerMachineFolder" />
|
||||
|
||||
<!--APPLICATIONFOLDER required by WixUI_Advanced, ApplicationFolderName reset APPLICATIONFOLDER path-->
|
||||
<Property Id="ApplicationFolderName" Value="$(var.Manufacturer)\$(var.AppName)" />
|
||||
<UIRef Id="WixUI_Advanced" />
|
||||
|
||||
<!--Remove User Exit Dialog-->
|
||||
<Publish Dialog="AdvancedWelcomeEulaDlg" Control="Cancel" Property="AbortInstall" Value="1">1</Publish>
|
||||
<Publish Dialog="InstallDirDlg" Control="Cancel" Property="AbortInstall" Value="1">1</Publish>
|
||||
<Publish Dialog="FeaturesDlg" Control="Cancel" Property="AbortInstall" Value="1">1</Publish>
|
||||
<Publish Dialog="MaintenanceWelcomeDlg" Control="Cancel" Property="AbortInstall" Value="1">1</Publish>
|
||||
<Publish Dialog="MaintenanceTypeDlg" Control="Cancel" Property="AbortInstall" Value="1">1</Publish>
|
||||
|
||||
<!--Launch Program If Checkbox is clicked-->
|
||||
<Publish Dialog="ExitDialog" Control="Finish" Event="DoAction" Value="LaunchApplication">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed</Publish>
|
||||
|
||||
<InstallUISequence>
|
||||
<Show Dialog="UserExit" OnExit="cancel">NOT AbortInstall = 1</Show>
|
||||
<Custom Action="Overwrite_WixSetDefaultPerMachineFolder" After="WixSetDefaultPerMachineFolder" />
|
||||
</InstallUISequence>
|
||||
</UI>
|
||||
<InstallExecuteSequence>
|
||||
<Custom Action='JamiProcesses.TaskKill' Before='InstallValidate'/>
|
||||
<Custom Action="removeOldJamiFiles" After="RemoveFiles" />
|
||||
<Custom Action="LaunchApplication_nonUI" After="InstallFinalize"> WIXNONUILAUNCH </Custom>
|
||||
<Custom Action="Overwrite_WixSetDefaultPerMachineFolder" After="WixSetDefaultPerMachineFolder" />
|
||||
</InstallExecuteSequence>
|
||||
|
||||
<!--License check box text, Launch check box text (auto check)-->
|
||||
<Property Id="WIXUI_EXITDIALOGOPTIONALTEXT" Value="Launch $(var.Name)" />
|
||||
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Launch $(var.Name)" />
|
||||
<!--CheckBox Default Set to One-->
|
||||
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOX" Value="1"/>
|
||||
<Property Id="LicenseAccepted" Value="1"/>
|
||||
|
||||
<Property Id="WixShellExecTarget" Value="[#fileMain.exe]" />
|
||||
<CustomAction Id="LaunchApplication" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" />
|
||||
<CustomAction Id="LaunchApplication_nonUI" BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes"/>
|
||||
<CustomAction Id="Overwrite_WixSetDefaultPerMachineFolder" Property="WixPerMachineFolder" Value="[ProgramFiles64Folder][ApplicationFolderName]" Execute="immediate" />
|
||||
<!--License File-->
|
||||
<WixVariable Id="WixUILicenseRtf" Value="$(var.ReleaseDir)\License.rtf"/>
|
||||
</Fragment>
|
||||
|
||||
</Wix>
|
86
JamiInstaller/StandardComponents.wxs
Normal file
|
@ -0,0 +1,86 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Generated with WiX's heat tool using the command:
|
||||
heat.exe dir x64\Release -ag -cg ProductComponents -dr APPLICATIONFOLDER -srd -var var.ReleaseDir -out JamiInstaller\Components.wxs
|
||||
Includes:
|
||||
- the api-ms-win dlls missing parts of vc merge module for windows 7 support
|
||||
- Jami.exe with a named Id so we can reference it in Product.wxs to launch after install
|
||||
|
||||
We run heat in the prebuild step on x64\Release without Jami.exe (instead of an XSLT file), to harvest everything else.
|
||||
-->
|
||||
<?include Config.wxi?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||
<Fragment>
|
||||
<ComponentGroup Id="StandardComponents">
|
||||
<Component Id="cmp9C61F84AF9761955FBF397AFAE21C11B" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil2089BEC9A7AB899CED5A5EE501789299" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-core-file-l1-2-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp03BB2697EE10869C4A329E3EA987EFAA" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil44C27F2C97596734BB3BEB7C21F7B71C" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-core-file-l2-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp6B6AA7AEA5A4D324A4EE7DAE1B1193E0" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil1D16BE23D323A1E37FC1FC7354A9305F" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-core-localization-l1-2-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmpB5454FB66442C9BFD2145AE30B32D7A9" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil031B78DF53F7A3AC109410907624FC3E" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-core-processthreads-l1-1-1.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp9F6D22CD9B1739E4F75F92F3A07E4CA1" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="filE9A3672FA504AA8E518DD72A02CD3E77" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-core-synch-l1-2-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp9451422B7074D46F019614C3DE73BD17" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil3C902CA2889BB8855D285C3FBABB334F" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-core-timezone-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp349250459EC2D8C328EED5138B073E7A" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil2466F3D9FBA095A007D0909040D4D688" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-conio-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmpCC880F2B054A87EF5FC68232652231BF" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil605A691486569535A1C3548F7DCE753C" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-convert-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmpD6CB40D5A5AFF2161B7B4B4F06F03301" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil09AE032A32E2E542A232F7941AC77320" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-environment-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmpC02538029646A27A9F786AD690EB3C8E" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil7DE9C3CADCA188356922B0CBD8E313E7" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-filesystem-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp8E50197B377636123F0F1F94FFB004E7" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil584F158D11B8A380C73F1EFE8BBA92B4" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-heap-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp7F729C94A363C73DC4D91B6F48E4F859" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil4BE19B924B98D56F3155B66496D574E5" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-locale-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp7C573E66B0904BA73880788F7057AF88" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="filE8495C446FA1237E92562498D20261AA" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-math-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp7A91CED53D8F6E5F20F2049B3B5CD143" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil06951EB208628753677745AF15CC12A5" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-multibyte-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp1CE713C705A95306A1D246AC3AB9DE25" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil8D102BB81768F998470C34797459E306" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-private-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp35840DFBF4D6AE827AFC4EF2A17BB3EB" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="filC6C457BD901F940DCB673D271728F9FE" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-process-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmpEBB86BDA48FE3B9E2043C1A80D26ACD5" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="filE1B2095225B01DEFA5DA9895B432FBCB" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-runtime-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp80C8534B553078EA8B86F100FF542776" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="filDAFE58019AD70832B8304DCEA534B5EE" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-stdio-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmpCFC348111B5343749A2273A62421C07C" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil1F1B38DB330CA413655F715578D4BE1A" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-string-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp7D5450E04EC419244107942A00DF7DDF" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="filEB03BCF3155C5BAE2C2EDBF036EB659D" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-time-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp5456679BDCC818B2E9476B416F71AAA5" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fil5B120DD384CABED37DFC2652C6462666" KeyPath="yes" Source="$(var.UcrtDir)\api-ms-win-crt-utility-l1-1-0.dll" />
|
||||
</Component>
|
||||
<Component Id="cmpF23755F862A15FFCBD109C85599B7F20" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="filD6887AD9110E4A8D49143C9A8F0B5843" KeyPath="yes" Source="$(var.UcrtDir)\ucrtbase.dll" />
|
||||
</Component>
|
||||
<Component Id="cmp9CFEE34E3A162AB05264E8B756EC1DEC" Directory="APPLICATIONFOLDER" Guid="*">
|
||||
<File Id="fileMain.exe" KeyPath="yes" Source="$(var.ReleaseDir)\Jami.exe" />
|
||||
</Component>
|
||||
</ComponentGroup>
|
||||
</Fragment>
|
||||
</Wix>
|
BIN
JamiInstaller/main-banner.bmp
Normal file
After Width: | Height: | Size: 451 KiB |
BIN
JamiInstaller/top-banner.bmp
Normal file
After Width: | Height: | Size: 84 KiB |
869
License.rtf
Normal file
|
@ -0,0 +1,869 @@
|
|||
{\rtf1\adeflang1025\ansi\ansicpg1252\uc1\adeff0\deff0\stshfdbch31505\stshfloch31506\stshfhich31506\stshfbi0\deflang4105\deflangfe2052\themelang4105\themelangfe0\themelangcs0{\fonttbl{\f0\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f34\fbidi \froman\fcharset0\fprq2{\*\panose 02040503050406030204}Cambria Math;}
|
||||
{\flomajor\f31500\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
|
||||
{\fhimajor\f31502\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0302020204030204}Calibri Light;}{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
|
||||
{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
|
||||
{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f420\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}
|
||||
{\f421\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\f423\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f424\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f425\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
|
||||
{\f426\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\f427\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f428\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f760\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}
|
||||
{\f761\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}{\f763\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f764\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f767\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}
|
||||
{\f768\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);}{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
|
||||
{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
|
||||
{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}
|
||||
{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fdbmajor\f31519\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbmajor\f31521\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}
|
||||
{\fdbmajor\f31522\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fdbmajor\f31523\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbmajor\f31524\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
|
||||
{\fdbmajor\f31525\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fdbmajor\f31526\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhimajor\f31528\fbidi \fswiss\fcharset238\fprq2 Calibri Light CE;}
|
||||
{\fhimajor\f31529\fbidi \fswiss\fcharset204\fprq2 Calibri Light Cyr;}{\fhimajor\f31531\fbidi \fswiss\fcharset161\fprq2 Calibri Light Greek;}{\fhimajor\f31532\fbidi \fswiss\fcharset162\fprq2 Calibri Light Tur;}
|
||||
{\fhimajor\f31535\fbidi \fswiss\fcharset186\fprq2 Calibri Light Baltic;}{\fbimajor\f31538\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbimajor\f31539\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
|
||||
{\fbimajor\f31541\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbimajor\f31542\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbimajor\f31543\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
|
||||
{\fbimajor\f31544\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbimajor\f31545\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbimajor\f31546\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}
|
||||
{\flominor\f31548\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flominor\f31549\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flominor\f31551\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}
|
||||
{\flominor\f31552\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flominor\f31553\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flominor\f31554\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
|
||||
{\flominor\f31555\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flominor\f31556\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbminor\f31558\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}
|
||||
{\fdbminor\f31559\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\fdbminor\f31561\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fdbminor\f31562\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}
|
||||
{\fdbminor\f31563\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\fdbminor\f31564\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fdbminor\f31565\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}
|
||||
{\fdbminor\f31566\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fhiminor\f31568\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\fhiminor\f31569\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}
|
||||
{\fhiminor\f31571\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\fhiminor\f31572\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}{\fhiminor\f31575\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}
|
||||
{\fhiminor\f31576\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}{\fbiminor\f31578\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\fbiminor\f31579\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
|
||||
{\fbiminor\f31581\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\fbiminor\f31582\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\fbiminor\f31583\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}
|
||||
{\fbiminor\f31584\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}{\fbiminor\f31585\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\fbiminor\f31586\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}}
|
||||
{\colortbl;\red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0;\red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255;\red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;
|
||||
\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;\red0\green0\blue0;\red0\green0\blue0;}{\*\defchp \fs22\loch\af31506\hich\af31506\dbch\af31505 }{\*\defpap
|
||||
\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 }\noqfpromote {\stylesheet{\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1
|
||||
\af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang4105\langfe2052\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp4105\langfenp2052 \snext0 \sqformat \spriority0 Normal;}{\*\cs10 \additive \ssemihidden \sunhideused \spriority1 Default Paragraph Font;}{\*
|
||||
\ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\trcbpat1\trcfpat1\tblind0\tblindtype3\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv \ql \li0\ri0\sa160\sl259\slmult1
|
||||
\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0 \fs22\lang4105\langfe2052\loch\f31506\hich\af31506\dbch\af31505\cgrid\langnp4105\langfenp2052 \snext11 \ssemihidden \sunhideused
|
||||
Normal Table;}{\s15\qc \li0\ri0\sb240\sa60\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\outlinelevel0\adjustright\rin0\lin0\itap0 \rtlch\fcs1 \ab\af31503\afs32\alang1025 \ltrch\fcs0
|
||||
\b\fs32\lang4105\langfe2052\kerning28\loch\f31502\hich\af31502\dbch\af31501\cgrid\langnp4105\langfenp2052 \sbasedon0 \snext0 \slink16 \sqformat \spriority10 \styrsid15664314 Title;}{\*\cs16 \additive \rtlch\fcs1 \ab\af31503\afs32 \ltrch\fcs0
|
||||
\b\fs32\kerning28\loch\f31502\hich\af31502\dbch\af31501 \sbasedon10 \slink15 \slocked \spriority10 \styrsid15664314 Title Char;}}{\*\rsidtbl \rsid350521\rsid1073743\rsid4589873\rsid9323379\rsid10056905\rsid14959562\rsid15664314\rsid16088643\rsid16389575}
|
||||
{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim1}{\info{\operator Zhang mingrui}{\creatim\yr2019\mo4\dy23\hr10\min37}{\revtim\yr2019\mo4\dy23\hr11\min15}{\version14}{\edmins11}
|
||||
{\nofpages28}{\nofwords5147}{\nofchars29338}{\nofcharsws34417}{\vern101}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect
|
||||
\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont0\relyonvml0\donotembedlingdata1\grfdocevents0\validatexml0\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors0\horzdoc\dghspace120\dgvspace120\dghorigin1701
|
||||
\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale100\rsidroot1073743 \fet0{\*\wgrffmtfilter 2450}\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2
|
||||
\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6
|
||||
\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang
|
||||
{\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\sa160\sl259\slmult1\widctlpar\wrapdefault\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0\pararsid4589873 \rtlch\fcs1 \af0\afs22\alang1025 \ltrch\fcs0
|
||||
\fs22\lang4105\langfe2052\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp4105\langfenp2052 {\rtlch\fcs1 \af31501\afs18 \ltrch\fcs0 \f31501\fs18\lang1033\langfe2052\langnp1033\insrsid16389575\charrsid16088643 \hich\af31501\dbch\af31505\loch\f31501
|
||||
GNU GENERAL PUBLIC LICENSE}{\rtlch\fcs1 \af31501\afs18 \ltrch\fcs0 \f31501\fs18\lang1033\langfe2052\langnp1033\insrsid15664314\charrsid16088643
|
||||
\par }{\rtlch\fcs1 \af31501\afs18 \ltrch\fcs0 \f31501\fs18\lang1033\langfe2052\langnp1033\insrsid16389575\charrsid16088643 \hich\af31501\dbch\af31505\loch\f31501 Version 3, 29 June 2007}{\rtlch\fcs1 \af31501\afs18 \ltrch\fcs0
|
||||
\f31501\fs18\lang1033\langfe2052\langnp1033\insrsid4589873\charrsid16088643
|
||||
\par }{\rtlch\fcs1 \af31501\afs18 \ltrch\fcs0 \f31501\fs18\lang1033\langfe2052\langnp1033\insrsid16389575\charrsid16088643 \hich\af31501\dbch\af31505\loch\f31501 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Everyone is permitted to copy and distribute verbatim copies
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 of this license document, but changing it is not allowed.
|
||||
\par }{\rtlch\fcs1 \af31501\afs18 \ltrch\fcs0 \f31501\fs18\lang1033\langfe2052\langnp1033\insrsid4589873\charrsid16088643
|
||||
\par }{\rtlch\fcs1 \af31501\afs18 \ltrch\fcs0 \f31501\fs18\lang1033\langfe2052\langnp1033\insrsid16389575\charrsid16088643 \hich\af31501\dbch\af31505\loch\f31501 Preamble
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 The GNU General Public License is a free, copyleft license\hich\af31501\dbch\af31505\loch\f31501 for
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 software and other kinds of works.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 The licenses for most software and other practical works are designed
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 to take away your freedom to share and change the works. By contrast,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the GNU General Public License is intended to guarantee your freedom to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 sh\hich\af31501\dbch\af31505\loch\f31501 are and change all versions of a program--to make sure it remains free
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 software for all its users. We, the Free Software Foundation, use the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 GNU General Public License for most of our software; it applies also to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 any other work released this way by its au\hich\af31501\dbch\af31505\loch\f31501 thors. You can apply it to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 your programs, too.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 When we speak of free software, we are referring to freedom, not
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 price. Our General Public Licenses are designed to make sure that you
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 have the freedom to distribute copies of free software (and charge for
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 them if you wish), that you receive source code or can get it if you
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 want it, that you can change the software or use pieces of it in new
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 free programs, and that you know you can do these things.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 To protect your rights, we need to prevent others from denying you
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 these rights or asking you to surrender the rights. Therefore, you have
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 certain responsibilities if you distribute copies of the software, or if
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 you modify it: responsibilities to respect \hich\af31501\dbch\af31505\loch\f31501 the freedom of others.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 For example, if you distribute copies of such a program, whether
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 gratis or for a fee, you must pass on to the recipients the same
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 freedoms that you received. You must make sure that they, too, receive
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 or can get the source code. A\hich\af31501\dbch\af31505\loch\f31501 nd you must show them these terms so they
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 know their rights.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Developers that use the GNU GPL protect your rights with two steps:
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 (1) assert copyright on the software, and (2) offer you this License
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 giving you legal permission to copy, distribute and/or mo\hich\af31501\dbch\af31505\loch\f31501 dify it.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 For the developers' and authors' protection, the GPL clearly explains
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 that there is no warranty for this free software. For both users' and
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 authors' sake, the GPL requires that modified versions be marked as
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 changed, so that their problems will \hich\af31501\dbch\af31505\loch\f31501 not be attributed erroneously to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 authors of previous versions.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Some devices are designed to deny users access to install or run
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 modified versions of the software inside them, although the manufacturer
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 can do so. This is fundamentally incompatible with the aim of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 protecting users' freedom to change the software. The systematic
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 pattern of such abuse occurs in the area of products for individuals to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 use, which is precisely where it is most unacceptable. \hich\af31501\dbch\af31505\loch\f31501 Therefore, we
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 have designed this version of the GPL to prohibit the practice for those
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 products. If such problems arise substantially in other domains, we
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 stand ready to extend this provision to those domains in future versions
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 of the GPL, as needed to p\hich\af31501\dbch\af31505\loch\f31501 rotect the freedom of users.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Finally, every program is threatened constantly by software patents.
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 States should not allow patents to restrict development and use of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 software on general-purpose computers, but in those that do, we wish to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 avoid the special \hich\af31501\dbch\af31505\loch\f31501 danger that patents applied to a free program could
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 make it effectively proprietary. To prevent this, the GPL assures that
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 patents cannot be used to render the program non-free.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 The precise terms and conditions for copying, distribution and
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 modification \hich\af31501\dbch\af31505\loch\f31501 follow.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 TERMS AND CONDITIONS
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 0. Definitions.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 "This License" refers to version 3 of the GNU General Public License.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 "Copyright" also means copyright-like laws that apply to other kinds of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 works, such as semiconductor masks.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 "The Program" refers to any copyrightable work licensed under this
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 License. Each licensee is addressed as "you". "Licensees" and
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 "recipients" may\hich\af31501\dbch\af31505\loch\f31501 be individuals or organizations.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 To "modify" a work means to copy from or adapt all or part of the work
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 in a fashion requiring copyright permission, other than the making of an
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 exact copy. The resulting work is called a "modified version" of the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 earlier\hich\af31501\dbch\af31505\loch\f31501 work or a work "based on" the earlier work.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 A "covered work" means either the unmodified Program or a work based
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 on the Program.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 To "propagate" a work means to do anything with it that, without
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 permission, would make you directly or secondarily liable f\hich\af31501\dbch\af31505\loch\f31501 or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 infringement under applicable copyright law, except executing it on a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 computer or modifying a private copy. Propagation includes copying,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 distribution (with or without modification), making available to the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 public, and in some countries other activitie\hich\af31501\dbch\af31505\loch\f31501 s as well.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 To "convey" a work means any kind of propagation that enables other
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 parties to make or receive copies. Mere interaction with a user through
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 a computer network, with no transfer of a copy, is not conveying.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 An interactive user interface displays "Appropriate Legal Notices"
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 to the extent that it includes a convenient and prominently visible
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 feature that (1) displays an appropriate copyright notice, and (2)
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 tells the user that there is no warranty for the work \hich\af31501\dbch\af31505\loch\f31501 (except to the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 extent that warranties are provided), that licensees may convey the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 work under this License, and how to view a copy of this License. If
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the interface presents a list of user commands or options, such as a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 menu, a prominent item in the list \hich\af31501\dbch\af31505\loch\f31501 meets this criterion.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 1. Source Code.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 The "source code" for a work means the preferred form of the work
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 for making modifications to it. "Object code" means any non-source
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 form of a work.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 A "Standard Interface" means an interface that either is an offic\hich\af31501\dbch\af31505\loch\f31501 ial
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 standard defined by a recognized standards body, or, in the case of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 interfaces specified for a particular programming language, one that
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 is widely used among developers working in that language.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 The "System Libraries" of an executable work include any\hich\af31501\dbch\af31505\loch\f31501 thing, other
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 than the work as a whole, that (a) is included in the normal form of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 packaging a Major Component, but which is not part of that Major
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Component, and (b) serves only to enable use of the work with that
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Major Component, or to implement a Standard Interface for which an
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 implementation is available to the public in source code form. A
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 "Major Component", in this context, means a major essential component
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 (kernel, window system, and so on) of the specific op\hich\af31501\dbch\af31505\loch\f31501 erating system
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 (if any) on which the executable work runs, or a compiler used to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 produce the work, or an object code interpreter used to run it.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 The "Corresponding Source" for a work in object code form means all
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the source code needed to generate, instal\hich\af31501\dbch\af31505\loch\f31501 l, and (for an executable
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 work) run the object code and to modify the work, including scripts to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 control those activities. However, it does not include the work's
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 System Libraries, or general-purpose tools or generally available free
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 programs which are us\hich\af31501\dbch\af31505\loch\f31501 ed unmodified in performing those activities but
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 which are not part of the work. For example, Corresponding Source
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 includes interface definition files associated with source files for
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the work, and the source code for shared libraries and dynamically
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 link\hich\af31501\dbch\af31505\loch\f31501 ed subprograms that the work is specifically designed to require,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 such as by intimate data communication or control flow between those
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 subprograms and other parts of the work.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 The Corresponding Source need not include anything that users
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 can regenerate au\hich\af31501\dbch\af31505\loch\f31501 tomatically from other parts of the Corresponding
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Source.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 The Corresponding Source for a work in source code form is that
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 same work.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 2. Basic Permissions.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 All rights granted under this License are granted for the term of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 copyright on the Program, and are irrevocable provided the stated
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 conditions are met. This License explicitly affirms your unlimited
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 permission to run the unmodified Program. The output fr\hich\af31501\dbch\af31505\loch\f31501 om running a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 covered work is covered by this License only if the output, given its
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 content, constitutes a covered work. This License acknowledges your
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 rights of fair use or other equivalent, as provided by copyright law.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 You may make, run and propagate c\hich\af31501\dbch\af31505\loch\f31501 overed works that you do not
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 convey, without conditions so long as your license otherwise remains
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 in force. You may convey covered works to others for the sole purpose
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 of having them make modifications exclusively for you, or provide you
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 with facilities f\hich\af31501\dbch\af31505\loch\f31501 or running those works, provided that you comply with
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the terms of this License in conveying all material for which you do
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 not control copyright. Those thus making or running the covered works
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 for you must do so exclusively on your behalf, under your dire\hich\af31501\dbch\af31505\loch\f31501 ction
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 and control, on terms that prohibit them from making any copies of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 your copyrighted material outside their relationship with you.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Conveying under any other circumstances is permitted solely under
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the conditions stated below. Sublicensing is not all\hich\af31501\dbch\af31505\loch\f31501 owed; section 10
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 makes it unnecessary.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 No covered work shall be deemed part of an effective technological
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 measure under any applicable law fulfilling obligations under article
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 similar laws prohibiting or restricting circumvention of such
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 measures.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 When you convey a covered work, you waive any leg\hich\af31501\dbch\af31505\loch\f31501 al power to forbid
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 circumvention of technological measures to the extent such circumvention
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 is effected by exercising rights under this License with respect to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the covered work, and you disclaim any intention to limit operation or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 modification of the work \hich\af31501\dbch\af31505\loch\f31501 as a means of enforcing, against the work's
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 users, your or third parties' legal rights to forbid circumvention of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 technological measures.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 4. Conveying Verbatim Copies.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 You may convey verbatim copies of the Program's source code as you
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 receive it, in any \hich\af31501\dbch\af31505\loch\f31501 medium, provided that you conspicuously and
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 appropriately publish on each copy an appropriate copyright notice;
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 keep intact all notices stating that this License and any
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 non-permissive terms added in accord with section 7 apply to the code;
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 keep intact all notices of the absence of any warranty; and give all
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 recipients a copy of this License along with the Program.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 You may charge any price or no price for each copy that you convey,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 and you may offer support or warranty protection for a fee.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 5. Conveying Modified Source Versions.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 You may convey a work based on the Program, or the modifications to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 produce it from the Program, in the form of source code under the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 terms of section 4, provided that you also meet all of these conditions:
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 a) The \hich\af31501\dbch\af31505\loch\f31501 work must carry prominent notices stating that you modified
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 it, and giving a relevant date.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 b) The work must carry prominent notices stating that it is
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 released under this License and any conditions added under section
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 7. This requirement modifies the re\hich\af31501\dbch\af31505\loch\f31501 quirement in section 4 to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 "keep intact all notices".
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 c) You must license the entire work, as a whole, under this
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 License to anyone who comes into possession of a copy. This
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 License will therefore apply, along with any applicable section 7
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 additional term\hich\af31501\dbch\af31505\loch\f31501 s, to the whole of the work, and all its parts,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 regardless of how they are packaged. This License gives no
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 permission to license the work in any other way, but it does not
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 invalidate such permission if you have separately received it.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 d) If the work has interactive user interfaces, each must display
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Appropriate Legal Notices; however, if the Program has interactive
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 interfaces that do not display Appropriate Legal Notices, y\hich\af31501\dbch\af31505\loch\f31501 our
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 work need not make them do so.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 A compilation of a covered work with other separate and independent
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 works, which are not by their nature extensions of the covered work,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 and which are not combined with it such as to form a larger program,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 in or on a vol\hich\af31501\dbch\af31505\loch\f31501 ume of a storage or distribution medium, is called an
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 "aggregate" if the compilation and its resulting copyright are not
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 used to limit the access or legal rights of the compilation's users
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 beyond what the individual works permit. Inclusion of a covered wo\hich\af31501\dbch\af31505\loch\f31501 rk
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 in an aggregate does not cause this License to apply to the other
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 parts of the aggregate.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 6. Conveying Non-Source Forms.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 You may convey a covered work in object code form under the terms
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 of sections 4 and 5, provided that you also convey the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 machine-r\hich\af31501\dbch\af31505\loch\f31501 eadable Corresponding Source under the terms of this License,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 in one of these ways:
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 a) Convey the object code in, or embodied in, a physical product
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 (including a physical distribution medium), accompanied by the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Corresponding Source fixed on a durable physical medium
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 customarily used for software interchange.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 b) Convey the object code in, or embodied in, a physical product
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 (including a physical distri\hich\af31501\dbch\af31505\loch\f31501 bution medium), accompanied by a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 written offer, valid for at least three years and valid for as
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 long as you offer spare parts or customer support for that product
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 model, to give anyone who possesses the object code either (1) a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 copy of the Corresponding So\hich\af31501\dbch\af31505\loch\f31501 urce for all the software in the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 product that is covered by this License, on a durable physical
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 medium customarily used for software interchange, for a price no
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 more than your reasonable cost of physically performing this
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 conveying of source, or (2) access\hich\af31501\dbch\af31505\loch\f31501 to copy the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Corresponding Source from a network server at no charge.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 c) Convey individual copies of the object code with a copy of the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 written offer to provide the Corresponding Source. This
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 alternative is allowed only occasionally and noncommercially, \hich\af31501\dbch\af31505\loch\f31501 and
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 only if you received the object code with such an offer, in accord
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 with subsection 6b.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 d) Convey the object code by offering access from a designated
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 place (gratis or for a charge), and offer equivalent access to the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Corresponding Source in the same way through the same place at no
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 further charge. You need not require recipients to copy the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Corresponding Source along with the object code. If the place to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 copy the object code is a network server, the Corresponding Sou\hich\af31501\dbch\af31505\loch\f31501 rce
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 may be on a different server (operated by you or a third party)
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 that supports equivalent copying facilities, provided you maintain
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 clear directions next to the object code saying where to find the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Corresponding Source. Regardless of what server hosts \hich\af31501\dbch\af31505\loch\f31501 the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Corresponding Source, you remain obligated to ensure that it is
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 available for as long as needed to satisfy these requirements.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 e) Convey the object code using peer-to-peer transmission, provided
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 you inform other peers where the object code and Corresp\hich\af31501\dbch\af31505\loch\f31501 onding
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Source of the work are being offered to the general public at no
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 charge under subsection 6d.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 A separable portion of the object code, whose source code is excluded
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 from the Corresponding Source as a System Library, need not be
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 included in conveying \hich\af31501\dbch\af31505\loch\f31501 the object code work.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 A "User Product" is either (1) a "consumer product", which means any
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 tangible personal property which is normally used for personal, family,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 or household purposes, or (2) anything designed or sold for incorporation
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 into a dwelling. \hich\af31501\dbch\af31505\loch\f31501 In determining whether a product is a consumer product,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 product received by a particular user, "normally used" refers to a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 typical or common use of that class of product, regardless of the status
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 of the particular user or of the way in which the particular user
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 actually uses, or expects or is expected to use, t\hich\af31501\dbch\af31505\loch\f31501 he product. A product
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 is a consumer product regardless of whether the product has substantial
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 commercial, industrial or non-consumer uses, unless such uses represent
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the only significant mode of use of the product.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 "Installation Information" for a User P\hich\af31501\dbch\af31505\loch\f31501 roduct means any methods,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 procedures, authorization keys, or other information required to install
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 and execute modified versions of a covered work in that User Product from
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 a modified version of its Corresponding Source. The information must
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 suffice to en\hich\af31501\dbch\af31505\loch\f31501 sure that the continued functioning of the modified object
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 code is in no case prevented or interfered with solely because
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 modification has been made.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 If you convey an object code work under this section in, or with, or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 specifically for use in, a User Prod\hich\af31501\dbch\af31505\loch\f31501 uct, and the conveying occurs as
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 part of a transaction in which the right of possession and use of the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 User Product is transferred to the recipient in perpetuity or for a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 fixed term (regardless of how the transaction is characterized), the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Corresponding So\hich\af31501\dbch\af31505\loch\f31501 urce conveyed under this section must be accompanied
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 by the Installation Information. But this requirement does not apply
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 if neither you nor any third party retains the ability to install
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 modified object code on the User Product (for example, the work has
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 been installed in ROM).
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 The requirement to provide Installation Information does not include a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 requirement to continue to provide support service, warranty, or updates
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 for a work that has been modified or installed by the recipient, or for
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the User Product in which it has been modified or installed. Access to a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 network may be denied when the modification itself materially and
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 adversely affects the operation of the netwo\hich\af31501\dbch\af31505\loch\f31501 rk or violates the rules and
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 protocols for communication across the network.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Corresponding Source conveyed, and Installation Information provided,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 in accord with this section must be in a format that is publicly
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 documented (and with an implementation avai\hich\af31501\dbch\af31505\loch\f31501 lable to the public in
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 source code form), and must require no special password or key for
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 unpacking, reading or copying.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 7. Additional Terms.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 "Additional permissions" are terms that supplement the terms of this
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 License by making exceptions from one or mo\hich\af31501\dbch\af31505\loch\f31501 re of its conditions.
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Additional permissions that are applicable to the entire Program shall
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 be treated as though they were included in this License, to the extent
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 that they are valid under applicable law. If additional permissions
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 apply only to part of t\hich\af31501\dbch\af31505\loch\f31501 he Program, that part may be used separately
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 under those permissions, but the entire Program remains governed by
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 this License without regard to the additional permissions.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 When you convey a copy of a covered work, you may at your option
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 remove any additional permissions from that copy, or from any part of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 it. (Additional permissions may be written to require their own
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 removal in certain cases when you modify the work.) You\hich\af31501\dbch\af31505\loch\f31501 may place
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 additional permissions on material, added by you to a covered work,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 for which you have or can give appropriate copyright permission.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Notwithstanding any other provision of this License, for material you
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 add to a covered work, you may (if author\hich\af31501\dbch\af31505\loch\f31501 ized by the copyright holders of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 that material) supplement the terms of this License with terms:
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 a) Disclaiming warranty or limiting liability differently from the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 terms of sections 15 and 16 of this License; or
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 b) Requiring preservation of specified rea\hich\af31501\dbch\af31505\loch\f31501 sonable legal notices or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 author attributions in that material or in the Appropriate Legal
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Notices displayed by works containing it; or
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 c) Prohibiting misrepresentation of the origin of that material, or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 requiring that modified versions of such material be\hich\af31501\dbch\af31505\loch\f31501 marked in
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 reasonable ways as different from the original version; or
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 d) Limiting the use for publicity purposes of names of licensors or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 authors of the material; or
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 e) Declining to grant rights under trademark law for use of some
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 trade names, trademarks, or service marks; or
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 f) Requiring indemnification of licensors and authors of that
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 material by anyone who conveys the material (or modified versions of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 it) with cont\hich\af31501\dbch\af31505\loch\f31501 ractual assumptions of liability to the recipient, for
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 any liability that these contractual assumptions directly impose on
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 those licensors and authors.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 All other non-permissive additional terms are considered "further
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 restrictions" within the meaning of s\hich\af31501\dbch\af31505\loch\f31501 ection 10. If the Program as you
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 received it, or any part of it, contains a notice stating that it is
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 governed by this License along with a term that is a further
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 restriction, you may remove that term. If a license document contains
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 a further restriction\hich\af31501\dbch\af31505\loch\f31501 but permits relicensing or conveying under this
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 License, you may add to a covered work material governed by the terms
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 of that license document, provided that the further restriction does
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 not survive such relicensing or conveying.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 If you add terms to a co\hich\af31501\dbch\af31505\loch\f31501 vered work in accord with this section, you
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 must place, in the relevant source files, a statement of the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 additional terms that apply to those files, or a notice indicating
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 where to find the applicable terms.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Additional terms, permissive or non-permissive, may be stated in the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 form of a separately written license, or stated as exceptions;
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the above requirements apply either way.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 8. Termination.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 You may not propagate or modify a covered work except as expressl\hich\af31501\dbch\af31505\loch\f31501 y
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 provided under this License. Any attempt otherwise to propagate or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 modify it is void, and will automatically terminate your rights under
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 this License (including any patent licenses granted under the third
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 paragraph of section 11).
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 However, if you cease\hich\af31501\dbch\af31505\loch\f31501 all violation of this License, then your
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 license from a particular copyright holder is reinstated (a)
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 provisionally, unless and until the copyright holder explicitly and
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 finally terminates your license, and (b) permanently, if the copyright
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 holder fails t\hich\af31501\dbch\af31505\loch\f31501 o notify you of the violation by some reasonable means
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 prior to 60 days after the cessation.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Moreover, your license from a particular copyright holder is
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 reinstated permanently if the copyright holder notifies you of the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 violation by some reasonable means\hich\af31501\dbch\af31505\loch\f31501 , this is the first time you have
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 received notice of violation of this License (for any work) from that
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 copyright holder, and you cure the violation prior to 30 days after
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 your receipt of the notice.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Termination of your rights under this section does not terminate the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 licenses of parties who have received copies or rights from you under
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 this License. If your rights have been terminated and not permanently
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 reinstated, you do not qualify to receive new \hich\af31501\dbch\af31505\loch\f31501 licenses for the same
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 material under section 10.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 9. Acceptance Not Required for Having Copies.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 You are not required to accept this License in order to receive or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 run a copy of the Program. Ancillary propagation of a covered work
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 occurring solely as a co\hich\af31501\dbch\af31505\loch\f31501 nsequence of using peer-to-peer transmission
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 to receive a copy likewise does not require acceptance. However,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 nothing other than this License grants you permission to propagate or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 modify any covered work. These actions infringe copyright if you do
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 not ac\hich\af31501\dbch\af31505\loch\f31501 cept this License. Therefore, by modifying or propagating a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 covered work, you indicate your acceptance of this License to do so.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 10. Automatic Licensing of Downstream Recipients.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Each time you convey a covered work, the recipient automatically
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 receives \hich\af31501\dbch\af31505\loch\f31501 a license from the original licensors, to run, modify and
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 propagate that work, subject to this License. You are not responsible
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 for enforcing compliance by third parties with this License.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 An "entity transaction" is a transaction transferring control of an
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 organization, or substantially all assets of one, or subdividing an
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 organization, or merging organizations. If propagation of a covered
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 work results from an entity transaction, each party\hich\af31501\dbch\af31505\loch\f31501 to that
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 transaction who receives a copy of the work also receives whatever
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 licenses to the work the party's predecessor in interest had or could
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 give under the previous paragraph, plus a right to possession of the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Corresponding Source of the work from the\hich\af31501\dbch\af31505\loch\f31501 predecessor in interest, if
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the predecessor has it or can get it with reasonable efforts.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 You may not impose any further restrictions on the exercise of the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 rights granted or affirmed under this License. For example, you may
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 not impose a license fee, ro\hich\af31501\dbch\af31505\loch\f31501 yalty, or other charge for exercise of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 rights granted under this License, and you may not initiate litigation
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 (including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 any patent claim is infringed by making, using, selling, offering for
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 sale, o\hich\af31501\dbch\af31505\loch\f31501 r importing the Program or any portion of it.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 11. Patents.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 A "contributor" is a copyright holder who authorizes use under this
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 License of the Program or a work on which the Program is based. The
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 work thus licensed is called the contributor's "contributo\hich\af31501\dbch\af31505\loch\f31501 r version".
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 A contributor's "essential patent claims" are all patent claims
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 owned or controlled by the contributor, whether already acquired or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 hereafter acquired, that would be infringed by some manner, permitted
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 by this License, of making, using, or selling its contributor version,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 but do not include claims that would be infringed only as a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 consequence of further modification of the contributor \hich\af31501\dbch\af31505\loch\f31501 version. For
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 purposes of this definition, "control" includes the right to grant
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 patent sublicenses in a manner consistent with the requirements of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 this License.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 patent license under the\hich\af31501\dbch\af31505\loch\f31501 contributor's essential patent claims, to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 propagate the contents of its contributor version.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 In the following three paragraphs, a "patent license" is any express
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 agreement or commitmen\hich\af31501\dbch\af31505\loch\f31501 t, however denominated, not to enforce a patent
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 (such as an express permission to practice a patent or covenant not to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 sue for patent infringement). To "grant" such a patent license to a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 party means to make such an agreement or commitment not to enforce a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 patent against the party.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 If you convey a covered work, knowingly relying on a patent license,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 and the Corresponding Source of the work is not available for anyone
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 to copy, free of charge and under the terms of this License, through a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 publicly available network server or other readily accessible means,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 then you must either (1) cause the Corresponding Source to be so
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 available, or (2) arrange to deprive yourself of the benefit of the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 patent license for this particular work, or (3) arrang\hich\af31501\dbch\af31505\loch\f31501 e, in a manner
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 consistent with the requirements of this License, to extend the patent
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 license to downstream recipients. "Knowingly relying" means you have
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 actual knowledge that, but for the patent license, your conveying the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 covered work in a country, or \hich\af31501\dbch\af31505\loch\f31501 your recipient's use of the covered work
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 in a country, would infringe one or more identifiable patents in that
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 country that you have reason to believe are valid.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 If, pursuant to or in connection with a single transaction or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 arrangement, you convey, or pro\hich\af31501\dbch\af31505\loch\f31501 pagate by procuring conveyance of, a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 covered work, and grant a patent license to some of the parties
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 receiving the covered work authorizing them to use, propagate, modify
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 or convey a specific copy of the covered work, then the patent license
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 you grant is a\hich\af31501\dbch\af31505\loch\f31501 utomatically extended to all recipients of the covered
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 work and works based on it.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 A patent license is "discriminatory" if it does not include within
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the scope of its coverage, prohibits the exercise of, or is
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 conditioned on the non-exercise of one or mor\hich\af31501\dbch\af31505\loch\f31501 e of the rights that are
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 specifically granted under this License. You may not convey a covered
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 work if you are a party to an arrangement with a third party that is
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 in the business of distributing software, under which you make payment
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 to the third party based on the extent of your activity of conveying
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the work, and under which the third party grants, to any of the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 parties who would receive the covered work from you, a discriminatory
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 patent license (a) in connection with copies of the c\hich\af31501\dbch\af31505\loch\f31501 overed work
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 conveyed by you (or copies made from those copies), or (b) primarily
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 for and in connection with specific products or compilations that
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 contain the covered work, unless you entered into that arrangement,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 or that patent license was granted, prior\hich\af31501\dbch\af31505\loch\f31501 to 28 March 2007.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Nothing in this License shall be construed as excluding or limiting
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 any implied license or other defenses to infringement that may
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 otherwise be available to you under applicable patent law.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 12. No Surrender of Others' Freedom.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 If cond\hich\af31501\dbch\af31505\loch\f31501 itions are imposed on you (whether by court order, agreement or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 otherwise) that contradict the conditions of this License, they do not
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 excuse you from the conditions of this License. If you cannot convey a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 covered work so as to satisfy simultaneously your\hich\af31501\dbch\af31505\loch\f31501 obligations under this
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 License and any other pertinent obligations, then as a consequence you may
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 not convey it at all. For example, if you agree to terms that obligate you
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 to collect a royalty for further conveying from those to whom you convey
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the Prog\hich\af31501\dbch\af31505\loch\f31501 ram, the only way you could satisfy both those terms and this
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 License would be to refrain entirely from conveying the Program.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 13. Use with the GNU Affero General Public License.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Notwithst\hich\af31501\dbch\af31505\loch\f31501 anding any other provision of this License, you have
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 permission to link or combine any covered work with a work licensed
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 under version 3 of the GNU Affero General Public License into a single
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 combined work, and to convey the resulting work. The terms of t\hich\af31501\dbch\af31505\loch\f31501 his
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 License will continue to apply to the part which is the covered work,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 but the special requirements of the GNU Affero General Public License,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 section 13, concerning interaction through a network will apply to the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 combination as such.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 14. Revised Versio\hich\af31501\dbch\af31505\loch\f31501 ns of this License.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 The Free Software Foundation may publish revised and/or new versions of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the GNU General Public License from time to time. Such new versions will
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 be similar in spirit to the present version, but may differ in detail to
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 address new prob\hich\af31501\dbch\af31505\loch\f31501 lems or concerns.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Each version is given a distinguishing version number. If the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Program specifies that a certain numbered version of the GNU General
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Public License "or any later version" applies to it, you have the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 option of following the terms and condi\hich\af31501\dbch\af31505\loch\f31501 tions either of that numbered
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 version or of any later version published by the Free Software
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Foundation. If the Program does not specify a version number of the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 GNU General Public License, you may choose any version ever published
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 by the Free Software Foundation.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 If the Program specifies that a proxy can decide which future
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 versions of the GNU General Public License can be used, that proxy's
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 public statement of acceptance of a version permanently authorizes you
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 to choose that versi\hich\af31501\dbch\af31505\loch\f31501 on for the Program.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Later license versions may give you additional or different
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 permissions. However, no additional obligations are imposed on any
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 author or copyright holder as a result of your choosing to follow a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 later version.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 15. Disclaimer of Warra\hich\af31501\dbch\af31505\loch\f31501 nty.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 OF ANY KIND, EITHER EXPRESSED OR IMPLIED\hich\af31501\dbch\af31505\loch\f31501 , INCLUDING, BUT NOT LIMITED TO,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 ALL \hich\af31501\dbch\af31505\loch\f31501 NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 16. Limitation of Liability.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 USE OR INABILITY TO USE THE PROGR\hich\af31501\dbch\af31505\loch\f31501 AM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBIL\hich\af31501\dbch\af31505\loch\f31501 ITY OF
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 SUCH DAMAGES.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 17. Interpretation of Sections 15 and 16.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 If the disclaimer of warranty and limitation of liability provided
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 above cannot be given local legal effect according to their terms,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 reviewing courts shall apply local law that most closely \hich\af31501\dbch\af31505\loch\f31501 approximates
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 an absolute waiver of all civil liability in connection with the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Program, unless a warranty or assumption of liability accompanies a
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 copy of the Program in return for a fee.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 END OF TERMS AND CONDITIONS
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 How to Apply These Terms to Your New Pr\hich\af31501\dbch\af31505\loch\f31501 ograms
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 If you develop a new program, and you want it to be of the greatest
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 possible use to the public, the best way to achieve this is to make it
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 free software which everyone can redistribute and change under these terms.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 To do so, attach the following notices to the program. It is safest
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 to attach them to the start of each source file to most effectively
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 state the exclusion of warranty; and each \hich\af31501\dbch\af31505\loch\f31501 file should have at least
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the "copyright" line and a pointer to where the full notice is found.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 <one line to give the program's name and a brief idea of what it does.>
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Copyright (C) <year> <name of author>
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 This program is free software: you can redistri\hich\af31501\dbch\af31505\loch\f31501 bute it and/or modify
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 it under the terms of the GNU General Public License as published by
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the Free Software Foundation, either version 3 of the License, or
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 (at your option) any later version.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 This program is distributed in the hope that it will be useful,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 GNU General Public License for more details.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 You should have received a copy of the GNU General Public License
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 along with this p\hich\af31501\dbch\af31505\loch\f31501 rogram. If not, see <http://www.gnu.org/licenses/>.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Also add information on how to contact you by electronic and paper mail.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 If the program does terminal interaction, make it output a short
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 notice like this when it starts in an interactive mode:
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 <program> Copyright (C) <year> <name of author>
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 This is free software, and you are welcome to redistribute it
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 under certai\hich\af31501\dbch\af31505\loch\f31501 n conditions; type `show c' for details.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 parts of the General Public License. Of course, your program's commands
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 might be different; for a GUI interface, you would use an "about \hich\af31501\dbch\af31505\loch\f31501 box".
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 You should also get your employer (if you work as a programmer) or school,
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 For more information on this, and how to apply and follow the GNU GPL, see
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 <http://www.gnu.org/license\hich\af31501\dbch\af31505\loch\f31501 s/>.
|
||||
\par
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 The GNU General Public License does not permit incorporating your program
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 into proprietary programs. If your program is a subroutine library, you
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 may consider it more useful to permit linking proprietary applications with
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 the library. If this is wh\hich\af31501\dbch\af31505\loch\f31501 at you want to do, use the GNU Lesser General
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 Public License instead of this License. But first, please read
|
||||
\par \hich\af31501\dbch\af31505\loch\f31501 <http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
\par
|
||||
\par }{\*\themedata 504b030414000600080000002100e9de0fbfff0000001c020000130000005b436f6e74656e745f54797065735d2e786d6cac91cb4ec3301045f748fc83e52d4a
|
||||
9cb2400825e982c78ec7a27cc0c8992416c9d8b2a755fbf74cd25442a820166c2cd933f79e3be372bd1f07b5c3989ca74aaff2422b24eb1b475da5df374fd9ad
|
||||
5689811a183c61a50f98f4babebc2837878049899a52a57be670674cb23d8e90721f90a4d2fa3802cb35762680fd800ecd7551dc18eb899138e3c943d7e503b6
|
||||
b01d583deee5f99824e290b4ba3f364eac4a430883b3c092d4eca8f946c916422ecab927f52ea42b89a1cd59c254f919b0e85e6535d135a8de20f20b8c12c3b0
|
||||
0c895fcf6720192de6bf3b9e89ecdbd6596cbcdd8eb28e7c365ecc4ec1ff1460f53fe813d3cc7f5b7f020000ffff0300504b030414000600080000002100a5d6
|
||||
a7e7c0000000360100000b0000005f72656c732f2e72656c73848fcf6ac3300c87ef85bd83d17d51d2c31825762fa590432fa37d00e1287f68221bdb1bebdb4f
|
||||
c7060abb0884a4eff7a93dfeae8bf9e194e720169aaa06c3e2433fcb68e1763dbf7f82c985a4a725085b787086a37bdbb55fbc50d1a33ccd311ba548b6309512
|
||||
0f88d94fbc52ae4264d1c910d24a45db3462247fa791715fd71f989e19e0364cd3f51652d73760ae8fa8c9ffb3c330cc9e4fc17faf2ce545046e37944c69e462
|
||||
a1a82fe353bd90a865aad41ed0b5b8f9d6fd010000ffff0300504b0304140006000800000021006b799616830000008a0000001c0000007468656d652f746865
|
||||
6d652f7468656d654d616e616765722e786d6c0ccc4d0ac3201040e17da17790d93763bb284562b2cbaebbf600439c1a41c7a0d29fdbd7e5e38337cedf14d59b
|
||||
4b0d592c9c070d8a65cd2e88b7f07c2ca71ba8da481cc52c6ce1c715e6e97818c9b48d13df49c873517d23d59085adb5dd20d6b52bd521ef2cdd5eb9246a3d8b
|
||||
4757e8d3f729e245eb2b260a0238fd010000ffff0300504b030414000600080000002100b6f4679893070000c9200000160000007468656d652f7468656d652f
|
||||
7468656d65312e786d6cec59cd8b1bc915bf07f23f347d97f5d5ad8fc1f2a24fcfda33b6b164873dd648a5eef2547789aad28cc56208de532e81c026e49085bd
|
||||
ed21842cecc22eb9e48f31d8249b3f22afaa5bdd5552c99e191c3061463074977eefd5afde7bf5de53d5ddcf5e26d4bbc05c1096f6fcfa9d9aefe174ce16248d
|
||||
7afeb3d9a4d2f13d2151ba4094a5b8e76fb0f03fbbf7eb5fdd454732c609f6403e1547a8e7c752ae8eaa5531876124eeb0154ee1bb25e30992f0caa3ea82a34b
|
||||
d09bd06aa3566b55134452df4b51026a1f2f97648ebd9952e9dfdb2a1f53784da5500373caa74a35b6243476715e5708b11143cabd0b447b3eccb3609733fc52
|
||||
fa1e4542c2173dbfa6fffceabdbb5574940b517940d6909be8bf5c2e17589c37f49c3c3a2b260d823068f50bfd1a40e53e6edc1eb7c6ad429f06a0f91c569a71
|
||||
b175b61bc320c71aa0ecd1a17bd41e35eb16ded0dfdce3dc0fd5c7c26b50a63fd8c34f2643b0a285d7a00c1feee1c3417730b2f56b50866fede1dbb5fe28685b
|
||||
fa3528a6243ddf43d7c25673b85d6d0159327aec8477c360d26ee4ca4b144443115d6a8a254be5a1584bd00bc6270050408a24493db959e1259a43140f112567
|
||||
9c7827248a21f056286502866b8ddaa4d684ffea13e827ed5174849121ad780113b137a4f87862cec94af6fc07a0d537206f7ffef9cdeb1fdfbcfee9cd575fbd
|
||||
79fdf77c6eadca923b466964cafdf2dd1ffef3cd6fbd7ffff0ed2f5fff319b7a172f4cfcbbbffdeedd3ffef93ef5b0e2d2146ffff4fdbb1fbf7ffbe7dfffebaf
|
||||
5f3bb4f7393a33e1339260e13dc297de5396c0021dfcf119bf9ec42c46c494e8a791402952b338f48f656ca11f6d10450edc00db767cce21d5b880f7d72f2cc2
|
||||
d398af2571687c182716f094313a60dc6985876a2ec3ccb3751ab927e76b13f714a10bd7dc43945a5e1eaf579063894be530c616cd2714a5124538c5d253dfb1
|
||||
738c1dabfb8210cbaea764ce99604be97d41bc01224e93ccc899154da5d03149c02f1b1741f0b7659bd3e7de8051d7aa47f8c246c2de40d4417e86a965c6fb68
|
||||
2d51e252394309350d7e8264ec2239ddf0b9891b0b099e8e3065de78818570c93ce6b05ec3e90f21cdb8dd7e4a37898de4929cbb749e20c64ce4889d0f6394ac
|
||||
5cd829496313fbb938871045de13265df05366ef10f50e7e40e941773f27d872f787b3c133c8b026a53240d4376beef0e57dccacf89d6ee8126157aae9f3c44a
|
||||
b17d4e9cd131584756689f604cd1255a60ec3dfbdcc160c05696cd4bd20f62c82ac7d815580f901dabea3dc5027a25d5dcece7c91322ac909de2881de073bad9
|
||||
493c1b9426881fd2fc08bc6eda7c0ca52e7105c0633a3f37818f08f480102f4ea33c16a0c308ee835a9fc4c82a60ea5db8e375c32dff5d658fc1be7c61d1b8c2
|
||||
be04197c6d1948eca6cc7b6d3343d49aa00c9819822ec3956e41c4727f29a28aab165b3be596f6a62ddd00dd91d5f42424fd6007b4d3fb84ffbbde073a8cb77f
|
||||
f9c6b10f3e4ebfe3566c25ab6b763a8792c9f14e7f7308b7dbd50c195f904fbfa919a175fa04431dd9cf58b73dcd6d4fe3ffdff73487f6f36d2773a8dfb8ed64
|
||||
7ce8306e3b99fc70e5e3743265f3027d8d3af0c80e7af4b14f72f0d46749289dca0dc527421ffc08f83db398c0a092d3279eb838055cc5f0a8ca1c4c60e1228e
|
||||
b48cc799fc0d91f134462b381daafb4a492472d591f0564cc0a1911e76ea5678ba4e4ed9223becacd7d5c16656590592e5782d2cc6e1a04a66e856bb3cc02bd4
|
||||
6bb6913e68dd1250b2d721614c6693683a48b4b783ca48fa58178ce620a157f65158741d2c3a4afdd6557b2c805ae115f8c1edc1cff49e1f06200242701e07cd
|
||||
f942f92973f5d6bbda991fd3d3878c69450034d8db08283ddd555c0f2e4fad2e0bb52b78da2261849b4d425b46377822869fc17974aad1abd0b8aeafbba54b2d
|
||||
7aca147a3e08ad9246bbf33e1637f535c8ede6069a9a9982a6de65cf6f35430899395af5fc251c1ac363b282d811ea3717a211dcbccc25cf36fc4d32cb8a0b39
|
||||
4222ce0cae934e960d122231f728497abe5a7ee1069aea1ca2b9d51b90103e59725d482b9f1a3970baed64bc5ce2b934dd6e8c284b67af90e1b35ce1fc568bdf
|
||||
1cac24d91adc3d8d1797de195df3a708422c6cd795011744c0dd413db3e682c0655891c8caf8db294c79da356fa3740c65e388ae62945714339967709dca0b3a
|
||||
faadb081f196af190c6a98242f8467912ab0a651ad6a5a548d8cc3c1aafb6121653923699635d3ca2aaa6abab39835c3b60cecd8f26645de60b53531e434b3c2
|
||||
67a97b37e576b7b96ea74f28aa0418bcb09fa3ea5ea12018d4cac92c6a8af17e1a56393b1fb56bc776811fa07695226164fdd656ed8edd8a1ae19c0e066f54f9
|
||||
416e376a6168b9ed2bb5a5f5adb979b1cdce5e40f2184197bba6526857c2c92e47d0104d754f92a50dd8222f65be35e0c95b73d2f3bfac85fd60d80887955a27
|
||||
1c57826650ab74c27eb3d20fc3667d1cd66ba341e31514161927f530bbb19fc00506dde4f7f67a7cefee3ed9ded1dc99b3a4caf4dd7c5513d777f7f5c6e1bb7b
|
||||
8f40d2f9b2d598749bdd41abd26df627956034e854bac3d6a0326a0ddba3c9681876ba9357be77a1c141bf390c5ae34ea5551f0e2b41aba6e877ba9576d068f4
|
||||
8376bf330efaaff23606569ea58fdc16605ecdebde7f010000ffff0300504b0304140006000800000021000dd1909fb60000001b010000270000007468656d65
|
||||
2f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73848f4d0ac2301484f78277086f6fd3ba109126dd88d0add40384e4350d36
|
||||
3f2451eced0dae2c082e8761be9969bb979dc9136332de3168aa1a083ae995719ac16db8ec8e4052164e89d93b64b060828e6f37ed1567914b284d262452282e
|
||||
3198720e274a939cd08a54f980ae38a38f56e422a3a641c8bbd048f7757da0f19b017cc524bd62107bd5001996509affb3fd381a89672f1f165dfe514173d985
|
||||
0528a2c6cce0239baa4c04ca5bbabac4df000000ffff0300504b01022d0014000600080000002100e9de0fbfff0000001c020000130000000000000000000000
|
||||
0000000000005b436f6e74656e745f54797065735d2e786d6c504b01022d0014000600080000002100a5d6a7e7c0000000360100000b00000000000000000000
|
||||
000000300100005f72656c732f2e72656c73504b01022d00140006000800000021006b799616830000008a0000001c0000000000000000000000000019020000
|
||||
7468656d652f7468656d652f7468656d654d616e616765722e786d6c504b01022d0014000600080000002100b6f4679893070000c92000001600000000000000
|
||||
000000000000d60200007468656d652f7468656d652f7468656d65312e786d6c504b01022d00140006000800000021000dd1909fb60000001b01000027000000
|
||||
000000000000000000009d0a00007468656d652f7468656d652f5f72656c732f7468656d654d616e616765722e786d6c2e72656c73504b050600000000050005005d010000980b00000000}
|
||||
{\*\colorschememapping 3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d225554462d3822207374616e64616c6f6e653d22796573223f3e0d0a3c613a636c724d
|
||||
617020786d6c6e733a613d22687474703a2f2f736368656d61732e6f70656e786d6c666f726d6174732e6f72672f64726177696e676d6c2f323030362f6d6169
|
||||
6e22206267313d226c743122207478313d22646b3122206267323d226c743222207478323d22646b322220616363656e74313d22616363656e74312220616363
|
||||
656e74323d22616363656e74322220616363656e74333d22616363656e74332220616363656e74343d22616363656e74342220616363656e74353d22616363656e74352220616363656e74363d22616363656e74362220686c696e6b3d22686c696e6b2220666f6c486c696e6b3d22666f6c486c696e6b222f3e}
|
||||
{\*\latentstyles\lsdstimax376\lsdlockeddef0\lsdsemihiddendef0\lsdunhideuseddef0\lsdqformatdef0\lsdprioritydef99{\lsdlockedexcept \lsdqformat1 \lsdpriority0 \lsdlocked0 Normal;\lsdqformat1 \lsdpriority9 \lsdlocked0 heading 1;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 2;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 3;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 4;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 5;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 6;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 7;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 8;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority9 \lsdlocked0 heading 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 1;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 5;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 8;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index 9;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 1;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 2;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 3;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 4;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 5;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 6;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 7;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 8;\lsdsemihidden1 \lsdunhideused1 \lsdpriority39 \lsdlocked0 toc 9;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Indent;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 header;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footer;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 index heading;\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority35 \lsdlocked0 caption;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of figures;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 envelope return;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 footnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation reference;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 line number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 page number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote reference;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 endnote text;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 table of authorities;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 macro;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 toa heading;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 3;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 3;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Bullet 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 3;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Number 5;\lsdqformat1 \lsdpriority10 \lsdlocked0 Title;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Closing;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Signature;\lsdsemihidden1 \lsdunhideused1 \lsdpriority1 \lsdlocked0 Default Paragraph Font;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 4;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 List Continue 5;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Message Header;\lsdqformat1 \lsdpriority11 \lsdlocked0 Subtitle;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Salutation;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Date;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text First Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Note Heading;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Body Text Indent 3;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Block Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 FollowedHyperlink;\lsdqformat1 \lsdpriority22 \lsdlocked0 Strong;
|
||||
\lsdqformat1 \lsdpriority20 \lsdlocked0 Emphasis;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Document Map;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Plain Text;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 E-mail Signature;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Top of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Bottom of Form;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal (Web);\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Acronym;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Address;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Cite;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Code;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Definition;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Keyboard;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Preformatted;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Sample;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Typewriter;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 HTML Variable;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 annotation subject;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 No List;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 1;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Balloon Text;\lsdpriority39 \lsdlocked0 Table Grid;
|
||||
\lsdsemihidden1 \lsdlocked0 Placeholder Text;\lsdqformat1 \lsdpriority1 \lsdlocked0 No Spacing;\lsdpriority60 \lsdlocked0 Light Shading;\lsdpriority61 \lsdlocked0 Light List;\lsdpriority62 \lsdlocked0 Light Grid;
|
||||
\lsdpriority63 \lsdlocked0 Medium Shading 1;\lsdpriority64 \lsdlocked0 Medium Shading 2;\lsdpriority65 \lsdlocked0 Medium List 1;\lsdpriority66 \lsdlocked0 Medium List 2;\lsdpriority67 \lsdlocked0 Medium Grid 1;\lsdpriority68 \lsdlocked0 Medium Grid 2;
|
||||
\lsdpriority69 \lsdlocked0 Medium Grid 3;\lsdpriority70 \lsdlocked0 Dark List;\lsdpriority71 \lsdlocked0 Colorful Shading;\lsdpriority72 \lsdlocked0 Colorful List;\lsdpriority73 \lsdlocked0 Colorful Grid;\lsdpriority60 \lsdlocked0 Light Shading Accent 1;
|
||||
\lsdpriority61 \lsdlocked0 Light List Accent 1;\lsdpriority62 \lsdlocked0 Light Grid Accent 1;\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 1;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 1;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 1;
|
||||
\lsdsemihidden1 \lsdlocked0 Revision;\lsdqformat1 \lsdpriority34 \lsdlocked0 List Paragraph;\lsdqformat1 \lsdpriority29 \lsdlocked0 Quote;\lsdqformat1 \lsdpriority30 \lsdlocked0 Intense Quote;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 1;
|
||||
\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 1;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 1;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 1;\lsdpriority70 \lsdlocked0 Dark List Accent 1;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 1;
|
||||
\lsdpriority72 \lsdlocked0 Colorful List Accent 1;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 1;\lsdpriority60 \lsdlocked0 Light Shading Accent 2;\lsdpriority61 \lsdlocked0 Light List Accent 2;\lsdpriority62 \lsdlocked0 Light Grid Accent 2;
|
||||
\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 2;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 2;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 2;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 2;
|
||||
\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 2;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 2;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 2;\lsdpriority70 \lsdlocked0 Dark List Accent 2;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 2;
|
||||
\lsdpriority72 \lsdlocked0 Colorful List Accent 2;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 2;\lsdpriority60 \lsdlocked0 Light Shading Accent 3;\lsdpriority61 \lsdlocked0 Light List Accent 3;\lsdpriority62 \lsdlocked0 Light Grid Accent 3;
|
||||
\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 3;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 3;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 3;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 3;
|
||||
\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 3;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 3;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 3;\lsdpriority70 \lsdlocked0 Dark List Accent 3;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 3;
|
||||
\lsdpriority72 \lsdlocked0 Colorful List Accent 3;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 3;\lsdpriority60 \lsdlocked0 Light Shading Accent 4;\lsdpriority61 \lsdlocked0 Light List Accent 4;\lsdpriority62 \lsdlocked0 Light Grid Accent 4;
|
||||
\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 4;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 4;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 4;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 4;
|
||||
\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 4;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 4;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 4;\lsdpriority70 \lsdlocked0 Dark List Accent 4;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 4;
|
||||
\lsdpriority72 \lsdlocked0 Colorful List Accent 4;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 4;\lsdpriority60 \lsdlocked0 Light Shading Accent 5;\lsdpriority61 \lsdlocked0 Light List Accent 5;\lsdpriority62 \lsdlocked0 Light Grid Accent 5;
|
||||
\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 5;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 5;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 5;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 5;
|
||||
\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 5;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 5;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 5;\lsdpriority70 \lsdlocked0 Dark List Accent 5;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 5;
|
||||
\lsdpriority72 \lsdlocked0 Colorful List Accent 5;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 5;\lsdpriority60 \lsdlocked0 Light Shading Accent 6;\lsdpriority61 \lsdlocked0 Light List Accent 6;\lsdpriority62 \lsdlocked0 Light Grid Accent 6;
|
||||
\lsdpriority63 \lsdlocked0 Medium Shading 1 Accent 6;\lsdpriority64 \lsdlocked0 Medium Shading 2 Accent 6;\lsdpriority65 \lsdlocked0 Medium List 1 Accent 6;\lsdpriority66 \lsdlocked0 Medium List 2 Accent 6;
|
||||
\lsdpriority67 \lsdlocked0 Medium Grid 1 Accent 6;\lsdpriority68 \lsdlocked0 Medium Grid 2 Accent 6;\lsdpriority69 \lsdlocked0 Medium Grid 3 Accent 6;\lsdpriority70 \lsdlocked0 Dark List Accent 6;\lsdpriority71 \lsdlocked0 Colorful Shading Accent 6;
|
||||
\lsdpriority72 \lsdlocked0 Colorful List Accent 6;\lsdpriority73 \lsdlocked0 Colorful Grid Accent 6;\lsdqformat1 \lsdpriority19 \lsdlocked0 Subtle Emphasis;\lsdqformat1 \lsdpriority21 \lsdlocked0 Intense Emphasis;
|
||||
\lsdqformat1 \lsdpriority31 \lsdlocked0 Subtle Reference;\lsdqformat1 \lsdpriority32 \lsdlocked0 Intense Reference;\lsdqformat1 \lsdpriority33 \lsdlocked0 Book Title;\lsdsemihidden1 \lsdunhideused1 \lsdpriority37 \lsdlocked0 Bibliography;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdqformat1 \lsdpriority39 \lsdlocked0 TOC Heading;\lsdpriority41 \lsdlocked0 Plain Table 1;\lsdpriority42 \lsdlocked0 Plain Table 2;\lsdpriority43 \lsdlocked0 Plain Table 3;\lsdpriority44 \lsdlocked0 Plain Table 4;
|
||||
\lsdpriority45 \lsdlocked0 Plain Table 5;\lsdpriority40 \lsdlocked0 Grid Table Light;\lsdpriority46 \lsdlocked0 Grid Table 1 Light;\lsdpriority47 \lsdlocked0 Grid Table 2;\lsdpriority48 \lsdlocked0 Grid Table 3;\lsdpriority49 \lsdlocked0 Grid Table 4;
|
||||
\lsdpriority50 \lsdlocked0 Grid Table 5 Dark;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 1;
|
||||
\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 1;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 1;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 1;
|
||||
\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 1;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 2;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 2;
|
||||
\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 2;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 2;
|
||||
\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 3;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 3;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 3;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 3;
|
||||
\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 3;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 4;
|
||||
\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 4;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 4;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 4;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 4;
|
||||
\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 4;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 5;
|
||||
\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 5;\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 5;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 5;
|
||||
\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 5;\lsdpriority46 \lsdlocked0 Grid Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 Grid Table 2 Accent 6;\lsdpriority48 \lsdlocked0 Grid Table 3 Accent 6;
|
||||
\lsdpriority49 \lsdlocked0 Grid Table 4 Accent 6;\lsdpriority50 \lsdlocked0 Grid Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 Grid Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 Grid Table 7 Colorful Accent 6;
|
||||
\lsdpriority46 \lsdlocked0 List Table 1 Light;\lsdpriority47 \lsdlocked0 List Table 2;\lsdpriority48 \lsdlocked0 List Table 3;\lsdpriority49 \lsdlocked0 List Table 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark;
|
||||
\lsdpriority51 \lsdlocked0 List Table 6 Colorful;\lsdpriority52 \lsdlocked0 List Table 7 Colorful;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 1;\lsdpriority47 \lsdlocked0 List Table 2 Accent 1;\lsdpriority48 \lsdlocked0 List Table 3 Accent 1;
|
||||
\lsdpriority49 \lsdlocked0 List Table 4 Accent 1;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 1;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 1;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 1;
|
||||
\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 2;\lsdpriority47 \lsdlocked0 List Table 2 Accent 2;\lsdpriority48 \lsdlocked0 List Table 3 Accent 2;\lsdpriority49 \lsdlocked0 List Table 4 Accent 2;
|
||||
\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 2;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 2;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 2;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 3;
|
||||
\lsdpriority47 \lsdlocked0 List Table 2 Accent 3;\lsdpriority48 \lsdlocked0 List Table 3 Accent 3;\lsdpriority49 \lsdlocked0 List Table 4 Accent 3;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 3;
|
||||
\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 3;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 3;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 4;\lsdpriority47 \lsdlocked0 List Table 2 Accent 4;
|
||||
\lsdpriority48 \lsdlocked0 List Table 3 Accent 4;\lsdpriority49 \lsdlocked0 List Table 4 Accent 4;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 4;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 4;
|
||||
\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 4;\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 5;\lsdpriority47 \lsdlocked0 List Table 2 Accent 5;\lsdpriority48 \lsdlocked0 List Table 3 Accent 5;
|
||||
\lsdpriority49 \lsdlocked0 List Table 4 Accent 5;\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 5;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 5;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 5;
|
||||
\lsdpriority46 \lsdlocked0 List Table 1 Light Accent 6;\lsdpriority47 \lsdlocked0 List Table 2 Accent 6;\lsdpriority48 \lsdlocked0 List Table 3 Accent 6;\lsdpriority49 \lsdlocked0 List Table 4 Accent 6;
|
||||
\lsdpriority50 \lsdlocked0 List Table 5 Dark Accent 6;\lsdpriority51 \lsdlocked0 List Table 6 Colorful Accent 6;\lsdpriority52 \lsdlocked0 List Table 7 Colorful Accent 6;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Mention;
|
||||
\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Hyperlink;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Hashtag;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Unresolved Mention;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Smart Link;}}{\*\datastore 01050000
|
||||
02000000180000004d73786d6c322e534158584d4c5265616465722e362e3000000000000000000000060000
|
||||
d0cf11e0a1b11ae1000000000000000000000000000000003e000300feff090006000000000000000000000001000000010000000000000000100000feffffff00000000feffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e500000000000000000000000000bf
|
||||
4070e7f9d401feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000
|
||||
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000
|
||||
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000
|
||||
0000000000000000000000000000000000000000000000000105000000000000}}
|
194
README.md
Normal file
|
@ -0,0 +1,194 @@
|
|||
# Jami-qt
|
||||
|
||||
`jami-qt` is the cross platform client for Jami. For now, it's mainly used for the Windows platform and is not tested on other platforms.
|
||||
|
||||

|
||||
|
||||
|
||||
For more information about the jami project, see the following:
|
||||
|
||||
- Main website: https://jami.net/
|
||||
- Bug tracker: https://git.jami.net/
|
||||
- Repositories: https://gerrit-ring.savoirfairelinux.com
|
||||
|
||||
## Building On Native Windows
|
||||
---
|
||||
|
||||
Only 64-bit MSVC build can be compiled.
|
||||
|
||||
> Note: command ```./make-ring.py --init``` is not required on the Windows build <br>
|
||||
|
||||
**Setup Before Building:**
|
||||
- Download [Qt (Open Source)](https://www.qt.io/download-open-source?hsCtaTracking=9f6a2170-a938-42df-a8e2-a9f0b1d6cdce%7C6cb0de4f-9bb5-4778-ab02-bfb62735f3e5)<br>
|
||||
|
||||
| | Prebuild | Module |
|
||||
|---|---|---|
|
||||
| Components: | msvc2017_64 | Qt WebEngine |
|
||||
|
||||
- Download [Visual Studio](https://visualstudio.microsoft.com/) (version >= 2015) <br>
|
||||
- Install Qt Vs Tools under extensions, and configure msvc2017_64 path under Qt Options <br>
|
||||
|
||||
| | Qt Version | SDK | Toolset |
|
||||
|---|---|---|---|
|
||||
| Minimum requirement: | 5.9.4 | 10.0.16299.0 | V141 |
|
||||
|
||||
- Install [Python3](https://www.python.org/downloads/) for Windows
|
||||
|
||||
**Start Building**
|
||||
- Using Command Prompt
|
||||
```sh
|
||||
git clone https://review.jami.net/ring-project
|
||||
cd ring-project/
|
||||
git submodule update --init daemon lrc client-windows
|
||||
git submodule update --recursive --remote daemon lrc client-windows
|
||||
```
|
||||
- Using **Elevated Command Prompt**
|
||||
```sh
|
||||
python make-ring.py --dependencies
|
||||
```
|
||||
|
||||
> Note:
|
||||
> 1. This command will install **chocolatey** which may require you to restart the Command Prompt to be able to use it.
|
||||
> 2. This command will install **msys2 (64 bit)** by using chocolatey command which may cause issues below: <br>
|
||||
> a. Choco may require you to restart the Command Prompt after finishing installing msys2. <br>
|
||||
> b. Only if you have already installed msys2 (64 bit) under the default installation folder, we will use the existing one.
|
||||
> 3. This command will install **strawberry perl** by using chocolatey command which may fail if you have already installed it.
|
||||
> 4. This command will install **cmake** by using chocolatey command which will not add cmake into PATH (environment variable). <br>
|
||||
>
|
||||
> The issue 1, 2(a), 3 can be solved by restarting the Command Prompt under Administrator right and re-run the command. <br>
|
||||
> The issue 3 can be solved by uninstalling your current strawberry perl and re-run the command. <br>
|
||||
> The issue 4 can be solved by adding the location of the cmake.exe into PATH. <br>
|
||||
|
||||
- Using a new **Non-Elevated Command Prompt**
|
||||
```sh
|
||||
python make-ring.py --install
|
||||
```
|
||||
- Then you should be able to use the Visual Studio Solution file in client-windows folder **(Configuration = Release, Platform = x64)**
|
||||
|
||||
> Note: <br>
|
||||
> To control the toolset and the sdk version that are used by msbuild, you can use ```--toolset``` and ```--sdk``` options <br>
|
||||
> To control which Qt version should be used (qmake, windeployqt), uou can use ```--qtver``` option <br>
|
||||
> By default: ```toolset=v141```, ```sdk=10.0.16299.0```, ```qtver=5.9.4``` <br>
|
||||
> For example:
|
||||
```sh
|
||||
python make-ring.py --install --toolset v142 --sdk 10.0.18362.0 --qtver 5.12.0
|
||||
```
|
||||
|
||||
### Build Module individually
|
||||
---
|
||||
|
||||
- Jami-qt also support building each module (daemon, lrc, jami-qt) seperately
|
||||
|
||||
**Daemon**
|
||||
|
||||
- Make sure that dependencies is built by make-ring.py
|
||||
- On MSVC folder (ring-project\daemon\MSVC):
|
||||
```sh
|
||||
cmake -DCMAKE_CONFIGURATION_TYPES="ReleaseLib_win32" -DCMAKE_VS_PLATFORM_NAME="x64" -G "Visual Studio 16 2019" -A x64 -T '$(DefaultPlatformToolset)' ..
|
||||
python winmake.py -b daemon
|
||||
```
|
||||
- This will generate a ```.lib``` file in the path of ring-project\daemon\MSVC\x64\ReleaseLib_win32\bin
|
||||
|
||||
> Note: each dependencies contrib for daemon can also be updated individually <br>
|
||||
> For example:
|
||||
```bash
|
||||
python winmake.py -b opendht
|
||||
```
|
||||
|
||||
**Lrc**
|
||||
|
||||
- Make sure that daemon is built first
|
||||
|
||||
```bash
|
||||
cd lrc
|
||||
python make-lrc.py -gb
|
||||
```
|
||||
|
||||
**Jami-qt**
|
||||
|
||||
- Make sure that daemon, lrc are built first
|
||||
|
||||
```bash
|
||||
cd client-windows
|
||||
pandoc -f markdown -t html5 -o changelog.html changelog.md
|
||||
python make-client.py -d
|
||||
python make-client.py -b
|
||||
powershell -ExecutionPolicy Unrestricted -File copy-runtime-files.ps1
|
||||
```
|
||||
|
||||
**Note**
|
||||
- For all python scripts, both ```--toolset``` and ```--sdk``` options are available.
|
||||
- For more available options, run scripts with ```-h``` option.
|
||||
- ```--qtver``` option is available on ```make-lrc.py``` and ```make-client.py```.
|
||||
|
||||
## Packaging On Native Windows
|
||||
---
|
||||
|
||||
- To be able to generate a msi package, first download and install [Wixtoolset](https://wixtoolset.org/releases/).
|
||||
- In Visual Studio, download WiX Toolset Visual Studio Extension.
|
||||
- Build client-windows project first, then the JamiInstaller project, msi package should be stored in ring-project\client-windows\JamiInstaller\bin\Release
|
||||
|
||||
## Linux
|
||||
---
|
||||
|
||||
> For now, this process is experimental.
|
||||
|
||||
- LibRing and LibRingClient
|
||||
must be installed first. If you have not already done so, go to the
|
||||
[\#How to Build LibRing (or
|
||||
Daemon)](#How_to_Build_LibRing_(or_Daemon) "wikilink") and [\#How to
|
||||
Build LibRingClient (or
|
||||
LRC)](#How_to_Build_LibRingClient_(or_LRC) "wikilink") sections.
|
||||
- Building the whole ring-project is recommended, however, lrc might need to be rebuilt with cmake option ```-DCMAKE_INSTALL_PREFIX=/usr```
|
||||
|
||||
#### Other Requirements
|
||||
|
||||
- Qt 5.9.4 (qt open source)
|
||||
- libqt5svg*, qtwebengine5-dev, qtmultimedia5-dev, qtdeclarative5-dev, pandoc
|
||||
|
||||
#### Getting the Source Code
|
||||
|
||||
```bash
|
||||
git clone https://review.jami.net/ring-client-windows
|
||||
```
|
||||
|
||||
#### Build Instructions
|
||||
|
||||
**Windows Client dependencies**
|
||||
|
||||
- For Debian based:
|
||||
```bash
|
||||
sudo apt install qtmultimedia5-dev libqt5svg5* qtwebengine5-dev qtdeclarative5-dev qtquickcontrols2-5-dev qml-module-qtquick* pandoc
|
||||
```
|
||||
- For Fedora:
|
||||
```bash
|
||||
sudo dnf install qt5-qtsvg-devel qt5-qtwebengine-devel qt5-qtmultimedia-devel qt5-qtdeclarative-devel qt5-qtquickcontrols2-devel pandoc
|
||||
```
|
||||
|
||||
**Build Windows Client**
|
||||
|
||||
```bash
|
||||
cd ring-client-windows
|
||||
pandoc -f markdown -t html5 -o changelog.html changelog.md
|
||||
mkdir build
|
||||
cd build
|
||||
qmake -qt=qt5 ../jami-qt.pro
|
||||
make -j9
|
||||
```
|
||||
- Then, you are finally ready to launch jami-qt in your build directory.
|
||||
|
||||
#### Debugging
|
||||
|
||||
Compile the client with `BUILD=Debug` and compile LibRingClient with
|
||||
`-DCMAKE_BUILD_TYPE=Debug`
|
||||
|
||||
#### Known issues
|
||||
|
||||
1. The build system is not straight forward
|
||||
2. Video doesn't work
|
||||
3. Can't maximize/minimize window
|
||||
4. Crash if the daemon is not started and installed.
|
||||
|
||||
## Mac OS
|
||||
---
|
||||
TBD
|
203
changelog.md
Normal file
|
@ -0,0 +1,203 @@
|
|||
# 2020-03-16
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
+ Fixed the bug that the system notification cannot be disabled
|
||||
+ Fixed video device enumeration for higher framerates
|
||||
+ More reliable high dpi adaption
|
||||
+ Prevent crash when video device events happen with no account
|
||||
|
||||
## New Features
|
||||
|
||||
+ Add type indicator
|
||||
+ Movable splitter in main view
|
||||
+ Connectivity improvement for calls and messages
|
||||
|
||||
# 2019-12-13
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
+ Fixed the bug that caused lag on call overlay
|
||||
+ Fixed a typo on about dialog
|
||||
|
||||
## New Features
|
||||
|
||||
+ Add various useful shortcuts
|
||||
|
||||
# 2019-11-20
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
+ Fixed bug that prevented pasting multiline text into chat
|
||||
|
||||
## New Features
|
||||
|
||||
+ Calls now automatically un-hold when the conversation is selected
|
||||
+ SIP dialpad now has A,B,C,D dtmf options
|
||||
|
||||
# 2019-11-19
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
+ Fixed notifications popping up for outgoing calls
|
||||
+ Removing conference participant selects a remaining participant conversation
|
||||
|
||||
# 2019-11-15
|
||||
|
||||
## Notes
|
||||
|
||||
Change version name to 'Free as in Freedom'
|
||||
Linux: ffmpeg now embedded in official package for auto bitrate + hardware acceleration
|
||||
|
||||
## Features
|
||||
|
||||
+ callview: rework conference ui ([#1052](https://git.jami.net/savoirfairelinux/ring-client-gnome/issues/1052))
|
||||
+ JAMS: support login to an account manager
|
||||
+ wizard: re-work account creation
|
||||
+ chatview: add video recorder
|
||||
+ chatview: add audio recorder
|
||||
+ conversation: automatically accepts < 20Mb files
|
||||
+ video: auto adapt bitrate
|
||||
+ Beta version
|
||||
+ Change logs
|
||||
+ Save draft text messages
|
||||
|
||||
## Bugfixes
|
||||
|
||||
+ Fix multiple crash with SIP accounts
|
||||
+ Fix DTMF for SIP
|
||||
+ chatview: show generated avatar into the chatview ([#947](https://git.jami.net/savoirfairelinux/ring-client-gnome/issues/947))
|
||||
+ Fix account migration
|
||||
+ Fix alignment in settings view
|
||||
+ call: handle PEER_BUSY state
|
||||
+ lrc: fix clearAllHistory
|
||||
+ avmodel: sort framerates
|
||||
+ sip: fix temporary item removal
|
||||
+ avmodel: getCurrentRenderedDevice support conferences
|
||||
+ upnp: now async
|
||||
+ some deadlocks are fixed
|
||||
+ some segfault are fixed
|
||||
+ sip_transport: avoid PJ_ENOTSUITABLE when ipv4<->ipv6
|
||||
+ sipcall: fix rotation
|
||||
+ ffmpeg: handle ebusy when opening devices
|
||||
+ file transfer: fix cancel
|
||||
+ conference: fix color inversion during conferences
|
||||
+ lan: improve pjsip behavior in a LAN
|
||||
+ [trustrequests: handle removed contacts](https://git.jami.net/savoirfairelinux/ring-daemon/issues/129)
|
||||
+ dbus: only authorize one daemon per DBUS_SESSION_BUS_ADDRESS
|
||||
+ Fixed crash when user has no account
|
||||
+ Fixed display name changes not saving
|
||||
+ Fixed not being able to change back to camera from screen share
|
||||
+ Fixed utf-8 handling on display names
|
||||
|
||||
## Internal changes
|
||||
|
||||
+ chatview code is now in LRC and shared with the desktop clients
|
||||
+ database: migrate to per account database
|
||||
+ avmodel: optionally switchInput using a callId
|
||||
+ video sender: send only 1 keyframe at start
|
||||
+ contrib: various bump (opendht, upnp, ffmpeg, etc)
|
||||
+ p2p: use one IceTransport by sub transfer
|
||||
+ decoder: set fpsprobesize, use default probesize
|
||||
+ ice: enable aggressive nomination to avoid latencies
|
||||
+ accel: remove libdrm code
|
||||
+ sipvoiplink: remove wait for completed transactions in dtor
|
||||
+ Remove some thread creations
|
||||
+ replace restbed by restinio
|
||||
+ namedirectory: don't create temporary items during lookup
|
||||
+ file transfer: use different ice for each transfer
|
||||
+ manager: allow switchInput on conference
|
||||
|
||||
|
||||
# 2019-08-24
|
||||
|
||||
## Features
|
||||
|
||||
+ [Erase data securely before removing account](https://git.jami.net/savoirfairelinux/ring-daemon/issues/60)
|
||||
+ [Negotiate calls in TCP and UDP and prefer TCP if necessary](https://git.jami.net/savoirfairelinux/ring-daemon/issues/103)
|
||||
+ Improve negotiation for p2p file transfer
|
||||
+ Auto change the video quality
|
||||
+ Add hardware acceleration support for NVidia
|
||||
+ SIP fix SMS issues
|
||||
|
||||
## Bugfixes
|
||||
|
||||
+ Improve connectivityChange detection and account switching.
|
||||
+ Translate strings from daemon.
|
||||
+ Sort resolutions by width
|
||||
+ [Sort conversations when clearing history](https://git.jami.net/savoirfairelinux/ring-lrc/issues/411)
|
||||
+ Fix subscriptions for new contacts
|
||||
+ Hangup if contact is deleted
|
||||
+ [Various deadlocks](https://git.jami.net/savoirfairelinux/ring-daemon/issues/120)
|
||||
|
||||
## Internal changes
|
||||
|
||||
+ LRC remove unused code
|
||||
+ Change from enableAccount() to setAccountEnabled()
|
||||
+ Update msgpack, gnutls, opendht
|
||||
+ Rewrite code for UPnP support
|
||||
|
||||
# 2019-06-20
|
||||
|
||||
## Bugfixes
|
||||
|
||||
+ Improve name registration errors detection
|
||||
+ Improve SIP text/plain detection
|
||||
+ Fix temporary item when copy/paste a full ring id
|
||||
+ SIP: Fix online status
|
||||
+ [Fix audio recorder](https://git.jami.net/savoirfairelinux/ring-daemon/issues/95)
|
||||
+ Fix some deadlocks
|
||||
+ [Fix calls via TURN](https://git.jami.net/savoirfairelinux/ring-daemon/issues/105)
|
||||
+ [Fix multi devices support for calls](https://git.jami.net/savoirfairelinux/ring-daemon/issues/120)
|
||||
|
||||
|
||||
## Internal changes
|
||||
|
||||
+ Cleanup daemon side
|
||||
+ Update restbed
|
||||
+ Update opendht to 1.9.5
|
||||
+ [Improve UPnP implementation](https://git.jami.net/savoirfairelinux/ring-daemon/issues/96)
|
||||
+ Increase default video bitrate
|
||||
|
||||
# 2019-05-16
|
||||
|
||||
## Features
|
||||
|
||||
+ [Add peer to peer file transfer support](https://git.jami.net/savoirfairelinux/ring-project/issues/486)
|
||||
+ Advanced settings: add DHT peer discovery support
|
||||
+ Media Settings: add hardware acceleration support
|
||||
+ [UPnP add TCP mapping support](https://git.jami.net/savoirfairelinux/ring-daemon/issues/86)
|
||||
|
||||
## Bugfixes
|
||||
|
||||
+ Name registration: better handling for wrong archive password
|
||||
+ tls_session: close transport after cleanup
|
||||
+ sip: check message utf8 validity before emitting signal
|
||||
|
||||
## Internal changes
|
||||
|
||||
+ Bump OpenDHT to 1.9.4
|
||||
+ Bump GNUTls to 3.6.7
|
||||
+ Bump Pjsip to (6b9212dcb4b3f781c1e922ae544b063880bc46ac + patches)
|
||||
+ Internal renaming from Ring to Jami
|
||||
+ Use new methods from LRC
|
||||
+ Fix some data races
|
||||
+ dring/dbus: unregister signals on exit
|
||||
|
||||
# 2019-04-12
|
||||
|
||||
## Features
|
||||
|
||||
+ (Not linked to the UI for now) Hardware encoding support
|
||||
|
||||
## Bugfixes
|
||||
|
||||
+ Sets up video streams upon receiving the first video frame.
|
||||
+ Pulseaudio: start streams when ready
|
||||
|
||||
## Internal changes
|
||||
|
||||
+ Continue name migration, change data locations, binary names and methods names.
|
||||
+ Nettle 3.4.1 is now required
|
||||
+ Support video rotation when recording
|
||||
+ Some code clean
|
99
copy-runtime-files.ps1
Normal file
|
@ -0,0 +1,99 @@
|
|||
[cmdletbinding()]
|
||||
param (
|
||||
[string]$mode,
|
||||
[string]$qtver,
|
||||
[string]$daemonDir,
|
||||
[string]$lrcDir
|
||||
);
|
||||
|
||||
write-host "Copying runtime files..." -ForegroundColor Green
|
||||
|
||||
# default values
|
||||
$qtver = If ($qtver) {$qtver} Else {"5.9.4"}
|
||||
$mode = If ($mode) {$mode} Else {"Release"}
|
||||
|
||||
$qtverSplit1, $qtverSplit2 ,$qtverSplit3 = $qtver.Split('.')
|
||||
$qtMsvcDir = If((([int]$qtverSplit1) -ge 6) -OR ( (([int]$qtverSplit1) -eq 5) -AND (([int]$qtverSplit2) -ge 15))){"msvc2019_64"} Else{"msvc2017_64"}
|
||||
|
||||
$QtDir = "C:\Qt\$qtver\$qtMsvcDir"
|
||||
|
||||
$ClientDir = split-path -parent $MyInvocation.MyCommand.Definition
|
||||
|
||||
$OutDir = $ClientDir + "\x64\" + $mode
|
||||
If(!(test-path $OutDir)) { New-Item -ItemType directory -Path $OutDir -Force }
|
||||
|
||||
if (!$daemonDir) { $daemonDir = $ClientDir + '\..\daemon' }
|
||||
if (!$lrcDir) { $lrcDir = $ClientDir + '\..\lrc' }
|
||||
|
||||
write-host "********************************************************************************" -ForegroundColor Magenta
|
||||
write-host "using daemonDir: " $daemonDir -ForegroundColor Magenta
|
||||
write-host "using lrcDir: " $lrcDir -ForegroundColor Magenta
|
||||
write-host "using QtDir: " $QtDir -ForegroundColor Magenta
|
||||
write-host "********************************************************************************" -ForegroundColor Magenta
|
||||
|
||||
# dependency bin files and misc
|
||||
$FilesToCopy = @(
|
||||
"$daemonDir\contrib\build\ffmpeg\Build\win32\x64\bin\avcodec-58.dll",
|
||||
"$daemonDir\contrib\build\ffmpeg\Build\win32\x64\bin\avutil-56.dll",
|
||||
"$daemonDir\contrib\build\ffmpeg\Build\win32\x64\bin\avformat-58.dll",
|
||||
"$daemonDir\contrib\build\ffmpeg\Build\win32\x64\bin\avdevice-58.dll",
|
||||
"$daemonDir\contrib\build\ffmpeg\Build\win32\x64\bin\swresample-3.dll",
|
||||
"$daemonDir\contrib\build\ffmpeg\Build\win32\x64\bin\swscale-5.dll",
|
||||
"$daemonDir\contrib\build\ffmpeg\Build\win32\x64\bin\avfilter-7.dll",
|
||||
"$daemonDir\contrib\build\openssl\out32dll\libeay32.dll",
|
||||
"$daemonDir\contrib\build\openssl\out32dll\ssleay32.dll",
|
||||
"$ClientDir\qt.conf",
|
||||
"$ClientDir\images\jami.ico",
|
||||
"$ClientDir\License.rtf"
|
||||
)
|
||||
foreach ($i in $FilesToCopy) {
|
||||
write-host "copying: " $i " => " $OutDir -ForegroundColor Cyan
|
||||
Copy-Item -Path $i -Recurse -Destination $OutDir -Force -Container
|
||||
}
|
||||
|
||||
############
|
||||
# qt
|
||||
############
|
||||
$windeployqt = "$QtDir\bin\windeployqt.exe --qmldir $ClientDir\src --release $OutDir\Jami.exe"
|
||||
iex $windeployqt
|
||||
|
||||
# ringtones
|
||||
$CopyDir = $OutDir + "\ringtones"
|
||||
If(!(test-path $CopyDir)) { New-Item -ItemType directory -Path $CopyDir -Force }
|
||||
$RingtonePath = "$ClientDir\..\daemon\ringtones"
|
||||
write-host "copying ringtones..."
|
||||
Get-ChildItem -Path $RingtonePath -Include *.ul, *.ogg, *.wav, *.opus -Recurse | ForEach-Object {
|
||||
write-host "copying ringtone: " $_.FullName " => " $CopyDir -ForegroundColor Cyan
|
||||
Copy-Item -Path $_.FullName -Destination $CopyDir -Force –Recurse
|
||||
}
|
||||
|
||||
# qt translations
|
||||
$lrelease = "$QtDir\bin\lrelease.exe"
|
||||
|
||||
# lrc translations
|
||||
$lrcTSPath = "$lrcDir\translations"
|
||||
Get-ChildItem -Path $lrcTSPath -Include *.ts -Recurse | ForEach-Object {
|
||||
& $lrelease $_.FullName
|
||||
}
|
||||
$CopyDir = $OutDir + "\share\libringclient\translations"
|
||||
If(!(test-path $CopyDir)) { New-Item -ItemType directory -Path $CopyDir -Force }
|
||||
write-host "copying lrc translations..."
|
||||
Get-ChildItem -Path $lrcTSPath -Include *.qm -Recurse | ForEach-Object {
|
||||
write-host "copying translation file: " $_.FullName " => " $CopyDir -ForegroundColor Cyan
|
||||
Copy-Item -Path $_.FullName -Destination $CopyDir -Force –Recurse
|
||||
}
|
||||
|
||||
# client translations
|
||||
$clientTSPath = "$ClientDir\translations"
|
||||
Get-ChildItem -Path $clientTSPath -Include *.ts -Recurse | ForEach-Object {
|
||||
& $lrelease $_.FullName
|
||||
}
|
||||
$CopyDir = $OutDir + "\share\ring\translations"
|
||||
If(!(test-path $CopyDir)) { New-Item -ItemType directory -Path $CopyDir -Force }
|
||||
write-host "copying client translations..."
|
||||
Get-ChildItem -Path $clientTSPath -Include *.qm -Recurse | ForEach-Object {
|
||||
write-host "copying translation file: " $_.FullName " => " $CopyDir -ForegroundColor Cyan
|
||||
Copy-Item -Path $_.FullName -Destination $CopyDir -Force –Recurse
|
||||
}
|
||||
|
||||
write-host "copy completed" -NoNewline -ForegroundColor Green
|
1
ico.rc
Normal file
|
@ -0,0 +1 @@
|
|||
IDI_ICON1 ICON DISCARDABLE "images/jami.ico"
|
BIN
images/FontAwesome.otf
Normal file
BIN
images/ajax-loader.gif
Normal file
After Width: | Height: | Size: 673 B |
106
images/default_avatar_overlay.svg
Normal file
|
@ -0,0 +1,106 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="256"
|
||||
viewBox="0 0 67.733332 67.733335"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
|
||||
sodipodi:docname="default-avatar-overlay.svg">
|
||||
<defs
|
||||
id="defs2">
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath4585">
|
||||
<use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#g4581"
|
||||
id="use4587"
|
||||
width="100%"
|
||||
height="100%" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35355339"
|
||||
inkscape:cx="-26.542885"
|
||||
inkscape:cy="616.24668"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
showguides="false"
|
||||
inkscape:window-width="766"
|
||||
inkscape:window-height="802"
|
||||
inkscape:window-x="761"
|
||||
inkscape:window-y="1080"
|
||||
inkscape:window-maximized="1"
|
||||
objecttolerance="10000"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10000"
|
||||
inkscape:snap-perpendicular="true"
|
||||
inkscape:snap-path-clip="true"
|
||||
inkscape:snap-path-mask="true"
|
||||
inkscape:snap-tangential="true"
|
||||
units="px">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid49"
|
||||
dotted="false" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-229.26664)">
|
||||
<g
|
||||
id="g4583"
|
||||
clip-path="url(#clipPath4585)"
|
||||
transform="translate(0,1.361667)"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<g
|
||||
inkscape:label="Clip"
|
||||
id="g4581"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<circle
|
||||
r="11.287793"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.907561"
|
||||
cy="247.00398"
|
||||
cx="33.866665"
|
||||
id="path47" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path47-4"
|
||||
d="m 33.866661,265.24997 a 21.903016,11.287794 0 0 0 -21.89152,11.16564 28.448986,31.582552 0 0 0 21.279011,11.39488 21.903016,11.287794 0 0 0 0.612509,0.0166 21.903016,11.287794 0 0 0 0.763088,-0.0133 28.448986,31.582552 0 0 0 21.128443,-11.42739 21.903016,11.287794 0 0 0 -21.891531,-11.13482 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1.26422167" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.2 KiB |
1
images/icons/av_icons/delete-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z" fill="white"/><path d="M0 0h24v24H0z" fill="none"/></svg>
|
After Width: | Height: | Size: 228 B |
1
images/icons/av_icons/fiber_manual_record-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M24 24H0V0h24v24z"/><circle fill="#ff0000" cx="12" cy="12" r="8"/></svg>
|
After Width: | Height: | Size: 176 B |
1
images/icons/av_icons/mic-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" fill="white"/><path d="M0 0h24v24H0z" fill="none"/></svg>
|
After Width: | Height: | Size: 342 B |
1
images/icons/av_icons/pause-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z" fill="white"/><path d="M0 0h24v24H0z" fill="none"/></svg>
|
After Width: | Height: | Size: 182 B |
1
images/icons/av_icons/play_circle_outline-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M10 16.5l6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" fill="white"/></svg>
|
After Width: | Height: | Size: 298 B |
1
images/icons/av_icons/re-record-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" fill="white"/></svg>
|
After Width: | Height: | Size: 252 B |
1
images/icons/av_icons/send-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M2.01 21L23 12 2.01 3 2 10l15 2-15 2z" fill="white"/><path d="M0 0h24v24H0z" fill="none"/></svg>
|
After Width: | Height: | Size: 188 B |
1
images/icons/av_icons/stop-24px-red.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M6 6h12v12H6z" fill="#ff0000"/></svg>
|
After Width: | Height: | Size: 166 B |
1
images/icons/av_icons/stop-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M6 6h12v12H6z" fill="#ffffff"/></svg>
|
After Width: | Height: | Size: 166 B |
1
images/icons/baseline-camera_alt-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3.2"/><path d="M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>
|
After Width: | Height: | Size: 324 B |
1
images/icons/baseline-close-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/><path d="M0 0h24v24H0z" fill="none"/></svg>
|
After Width: | Height: | Size: 239 B |
1
images/icons/baseline-desktop_windows-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M21 2H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h7v2H8v2h8v-2h-2v-2h7c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H3V4h18v12z"/></svg>
|
After Width: | Height: | Size: 248 B |
1
images/icons/baseline-done-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>
|
After Width: | Height: | Size: 188 B |
1
images/icons/baseline-error_outline-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/></svg>
|
After Width: | Height: | Size: 307 B |
1
images/icons/baseline-people-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"/></svg>
|
After Width: | Height: | Size: 427 B |
1
images/icons/baseline-refresh-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/><path d="M0 0h24v24H0z" fill="none"/></svg>
|
After Width: | Height: | Size: 340 B |
4
images/icons/extension_24dp.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24px" height="24px">
|
||||
<path d="M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7s2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z"/>
|
||||
<path d="M0 0h24v24H0V0z" fill="none"/>
|
||||
</svg>
|
After Width: | Height: | Size: 440 B |
BIN
images/icons/ic_add_black_18dp_2x.png
Normal file
After Width: | Height: | Size: 237 B |
1
images/icons/ic_arrow_back_24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"/></svg>
|
After Width: | Height: | Size: 198 B |
BIN
images/icons/ic_arrow_back_white_24dp.png
Normal file
After Width: | Height: | Size: 151 B |
BIN
images/icons/ic_arrow_drop_down_black_18dp_2x.png
Normal file
After Width: | Height: | Size: 205 B |
BIN
images/icons/ic_arrow_drop_down_black_9dp_2x.png
Normal file
After Width: | Height: | Size: 193 B |
BIN
images/icons/ic_arrow_drop_up_black_18dp_2x.png
Normal file
After Width: | Height: | Size: 198 B |
BIN
images/icons/ic_arrow_drop_up_black_9dp_2x.png
Normal file
After Width: | Height: | Size: 186 B |
BIN
images/icons/ic_arrow_forward_white_48dp_2x.png
Normal file
After Width: | Height: | Size: 235 B |
BIN
images/icons/ic_arrow_tab_next_black_9dp_2x.png
Normal file
After Width: | Height: | Size: 209 B |
BIN
images/icons/ic_arrow_tab_previous_black_9dp_2x.png
Normal file
After Width: | Height: | Size: 202 B |
1
images/icons/ic_baseline-search-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/><path d="M0 0h24v24H0z" fill="none"/></svg>
|
After Width: | Height: | Size: 372 B |
1
images/icons/ic_block_24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9C4.63 15.55 4 13.85 4 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1C19.37 8.45 20 10.15 20 12c0 4.42-3.58 8-8 8z"/></svg>
|
After Width: | Height: | Size: 371 B |
BIN
images/icons/ic_call_transfer_white_24px.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
images/icons/ic_chat_black_24dp_2x.png
Normal file
After Width: | Height: | Size: 193 B |
BIN
images/icons/ic_chat_white_24dp.png
Normal file
After Width: | Height: | Size: 205 B |
BIN
images/icons/ic_check_white_18dp_2x.png
Normal file
After Width: | Height: | Size: 181 B |
1
images/icons/ic_clear_24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/><path d="M0 0h24v24H0z" fill="none"/></svg>
|
After Width: | Height: | Size: 239 B |
BIN
images/icons/ic_close_black_24dp.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
images/icons/ic_close_white_24dp.png
Normal file
After Width: | Height: | Size: 257 B |
60
images/icons/ic_content_copy.svg
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve">
|
||||
<g id="Text-files">
|
||||
<path d="M53.9791489,9.1429005H50.010849c-0.0826988,0-0.1562004,0.0283995-0.2331009,0.0469999V5.0228
|
||||
C49.7777481,2.253,47.4731483,0,44.6398468,0h-34.422596C7.3839517,0,5.0793519,2.253,5.0793519,5.0228v46.8432999
|
||||
c0,2.7697983,2.3045998,5.0228004,5.1378999,5.0228004h6.0367002v2.2678986C16.253952,61.8274002,18.4702511,64,21.1954517,64
|
||||
h32.783699c2.7252007,0,4.9414978-2.1725998,4.9414978-4.8432007V13.9861002
|
||||
C58.9206467,11.3155003,56.7043495,9.1429005,53.9791489,9.1429005z M7.1110516,51.8661003V5.0228
|
||||
c0-1.6487999,1.3938999-2.9909999,3.1062002-2.9909999h34.422596c1.7123032,0,3.1062012,1.3422,3.1062012,2.9909999v46.8432999
|
||||
c0,1.6487999-1.393898,2.9911003-3.1062012,2.9911003h-34.422596C8.5049515,54.8572006,7.1110516,53.5149002,7.1110516,51.8661003z
|
||||
M56.8888474,59.1567993c0,1.550602-1.3055,2.8115005-2.9096985,2.8115005h-32.783699
|
||||
c-1.6042004,0-2.9097996-1.2608986-2.9097996-2.8115005v-2.2678986h26.3541946
|
||||
c2.8333015,0,5.1379013-2.2530022,5.1379013-5.0228004V11.1275997c0.0769005,0.0186005,0.1504021,0.0469999,0.2331009,0.0469999
|
||||
h3.9682999c1.6041985,0,2.9096985,1.2609005,2.9096985,2.8115005V59.1567993z"/>
|
||||
<path d="M38.6031494,13.2063999H16.253952c-0.5615005,0-1.0159006,0.4542999-1.0159006,1.0158005
|
||||
c0,0.5615997,0.4544001,1.0158997,1.0159006,1.0158997h22.3491974c0.5615005,0,1.0158997-0.4542999,1.0158997-1.0158997
|
||||
C39.6190491,13.6606998,39.16465,13.2063999,38.6031494,13.2063999z"/>
|
||||
<path d="M38.6031494,21.3334007H16.253952c-0.5615005,0-1.0159006,0.4542999-1.0159006,1.0157986
|
||||
c0,0.5615005,0.4544001,1.0159016,1.0159006,1.0159016h22.3491974c0.5615005,0,1.0158997-0.454401,1.0158997-1.0159016
|
||||
C39.6190491,21.7877007,39.16465,21.3334007,38.6031494,21.3334007z"/>
|
||||
<path d="M38.6031494,29.4603004H16.253952c-0.5615005,0-1.0159006,0.4543991-1.0159006,1.0158997
|
||||
s0.4544001,1.0158997,1.0159006,1.0158997h22.3491974c0.5615005,0,1.0158997-0.4543991,1.0158997-1.0158997
|
||||
S39.16465,29.4603004,38.6031494,29.4603004z"/>
|
||||
<path d="M28.4444485,37.5872993H16.253952c-0.5615005,0-1.0159006,0.4543991-1.0159006,1.0158997
|
||||
s0.4544001,1.0158997,1.0159006,1.0158997h12.1904964c0.5615025,0,1.0158005-0.4543991,1.0158005-1.0158997
|
||||
S29.0059509,37.5872993,28.4444485,37.5872993z"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
BIN
images/icons/ic_delete_black_18dp_2x.png
Normal file
After Width: | Height: | Size: 265 B |
BIN
images/icons/ic_done_white_24dp.png
Normal file
After Width: | Height: | Size: 199 B |
BIN
images/icons/ic_exit_full_screen_black.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
images/icons/ic_folder_black_18dp_2x.png
Normal file
After Width: | Height: | Size: 241 B |
BIN
images/icons/ic_full_screen_black.png
Normal file
After Width: | Height: | Size: 861 B |
BIN
images/icons/ic_group_add_white_24dp.png
Normal file
After Width: | Height: | Size: 384 B |
BIN
images/icons/ic_hide_password.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
images/icons/ic_high_quality_white_24dp.png
Normal file
After Width: | Height: | Size: 218 B |
BIN
images/icons/ic_mic_off_white_24dp.png
Normal file
After Width: | Height: | Size: 484 B |
BIN
images/icons/ic_mic_white_24dp.png
Normal file
After Width: | Height: | Size: 394 B |
BIN
images/icons/ic_pause_white_100px.png
Normal file
After Width: | Height: | Size: 437 B |
BIN
images/icons/ic_pause_white_24dp.png
Normal file
After Width: | Height: | Size: 90 B |
BIN
images/icons/ic_person_add_black_24dp_2x.png
Normal file
After Width: | Height: | Size: 323 B |
BIN
images/icons/ic_person_add_white_24dp.png
Normal file
After Width: | Height: | Size: 329 B |
1
images/icons/ic_phone_24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>
|
After Width: | Height: | Size: 378 B |
BIN
images/icons/ic_photo_camera_white_24dp_2x.png
Normal file
After Width: | Height: | Size: 446 B |
BIN
images/icons/ic_play_white_24dp.png
Normal file
After Width: | Height: | Size: 196 B |
1
images/icons/ic_send_24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M2.01 21L23 12 2.01 3 2 10l15 2-15 2z"/><path d="M0 0h24v24H0z" fill="none"/></svg>
|
After Width: | Height: | Size: 175 B |
BIN
images/icons/ic_send_white_24dp.png
Normal file
After Width: | Height: | Size: 344 B |
BIN
images/icons/ic_settings_white_48dp_2x.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
images/icons/ic_share_black_48dp_2x.png
Normal file
After Width: | Height: | Size: 888 B |
BIN
images/icons/ic_show_password.png
Normal file
After Width: | Height: | Size: 7.4 KiB |
1
images/icons/ic_video_call_24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z"/></svg>
|
After Width: | Height: | Size: 275 B |
BIN
images/icons/ic_videocam_off_white_24dp.png
Normal file
After Width: | Height: | Size: 296 B |
BIN
images/icons/ic_videocam_white.png
Normal file
After Width: | Height: | Size: 234 B |
BIN
images/icons/ic_voicemail_black_24dp_2x_.png
Normal file
After Width: | Height: | Size: 327 B |
BIN
images/icons/ic_voicemail_white_24dp_2x.png
Normal file
After Width: | Height: | Size: 487 B |
BIN
images/icons/icon-keypad-24-2x.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
images/icons/icon-keypad-24.png
Normal file
After Width: | Height: | Size: 879 B |
1
images/icons/info-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>
|
After Width: | Height: | Size: 234 B |
1
images/icons/outline-info-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></svg>
|
After Width: | Height: | Size: 288 B |
1
images/icons/round-add-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M18 13h-5v5c0 .55-.45 1-1 1s-1-.45-1-1v-5H6c-.55 0-1-.45-1-1s.45-1 1-1h5V6c0-.55.45-1 1-1s1 .45 1 1v5h5c.55 0 1 .45 1 1s-.45 1-1 1z"/></svg>
|
After Width: | Height: | Size: 271 B |
1
images/icons/round-add_a_photo-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M3 8c0 .55.45 1 1 1s1-.45 1-1V6h2c.55 0 1-.45 1-1s-.45-1-1-1H5V2c0-.55-.45-1-1-1s-1 .45-1 1v2H1c-.55 0-1 .45-1 1s.45 1 1 1h2v2z"/><circle cx="13" cy="14" r="3"/><path d="M21 6h-3.17l-1.24-1.35c-.37-.41-.91-.65-1.47-.65h-6.4c.17.3.28.63.28 1 0 1.1-.9 2-2 2H6v1c0 1.1-.9 2-2 2-.37 0-.7-.11-1-.28V20c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-8 13c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"/></svg>
|
After Width: | Height: | Size: 543 B |
1
images/icons/round-arrow_drop_down-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M8.71 11.71l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H9.41c-.89 0-1.33 1.08-.7 1.71z"/></svg>
|
After Width: | Height: | Size: 249 B |
1
images/icons/round-arrow_drop_up-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M8.71 12.29L11.3 9.7c.39-.39 1.02-.39 1.41 0l2.59 2.59c.63.63.18 1.71-.71 1.71H9.41c-.89 0-1.33-1.08-.7-1.71z"/></svg>
|
After Width: | Height: | Size: 249 B |
1
images/icons/round-arrow_right-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M11.71 15.29l2.59-2.59c.39-.39.39-1.02 0-1.41L11.71 8.7c-.63-.62-1.71-.18-1.71.71v5.17c0 .9 1.08 1.34 1.71.71z"/></svg>
|
After Width: | Height: | Size: 250 B |
1
images/icons/round-check_circle-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.29 16.29L5.7 12.7c-.39-.39-.39-1.02 0-1.41.39-.39 1.02-.39 1.41 0L10 14.17l6.88-6.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-7.59 7.59c-.38.39-1.02.39-1.41 0z"/></svg>
|
After Width: | Height: | Size: 374 B |
1
images/icons/round-close-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M18.3 5.71c-.39-.39-1.02-.39-1.41 0L12 10.59 7.11 5.7c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0 .39-.39.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z"/></svg>
|
After Width: | Height: | Size: 411 B |
1
images/icons/round-edit-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M3 17.46v3.04c0 .28.22.5.5.5h3.04c.13 0 .26-.05.35-.15L17.81 9.94l-3.75-3.75L3.15 17.1c-.1.1-.15.22-.15.36zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/></svg>
|
After Width: | Height: | Size: 349 B |
1
images/icons/round-error-24px.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 11c-.55 0-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v4c0 .55-.45 1-1 1zm1 4h-2v-2h2v2z"/></svg>
|
After Width: | Height: | Size: 250 B |