Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
mediaexplorer74 committed Mar 24, 2023
1 parent 15c3f91 commit 4d3ee26
Show file tree
Hide file tree
Showing 12 changed files with 27,640 additions and 4,781 deletions.
32,127 changes: 27,399 additions & 4,728 deletions HHExplorer/HHExplorer.Android/Resources/Resource.designer.cs

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions HHExplorer/HHExplorer.UWP/HHExplorer.UWP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<DefaultLanguage>en-US</DefaultLanguage>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<TargetPlatformVersion>10.0.19041.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.15063.0</TargetPlatformMinVersion>
<TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
<EnableDotNetNativeCompatibleProfile>true</EnableDotNetNativeCompatibleProfile>
<FileAlignment>512</FileAlignment>
Expand All @@ -24,7 +24,7 @@
<PackageCertificateKeyFile>HHExplorer.UWP_TemporaryKey.pfx</PackageCertificateKeyFile>
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>
<GenerateTestArtifacts>True</GenerateTestArtifacts>
<AppxBundle>Always</AppxBundle>
Expand Down
8 changes: 4 additions & 4 deletions HHExplorer/HHExplorer.UWP/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@

<Identity
Name="ME.HHExplorer1"
Publisher="CN=media"
Version="1.0.2.0" />
Publisher="CN=Admin"
Version="1.0.3.0" />

<mp:PhoneIdentity PhoneProductId="ec0cc741-fd3e-485c-8485-68815c448590" PhonePublisherId="4850fd3e-0000-0000-0000-fd3e00000485"/>

<Properties>
<DisplayName>HHExplorer 1</DisplayName>
<DisplayName>HHExplorer 1.0.3</DisplayName>
<PublisherDisplayName>mediaexplorer</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
Expand All @@ -33,7 +33,7 @@
Executable="$targetnametoken$.exe"
EntryPoint="HHExplorer.UWP.App">
<uap:VisualElements
DisplayName="HHExplorer 1"
DisplayName="HHExplorer 1.0.3"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png"
Description="HHExplorer UWP (XF)"
Expand Down
6 changes: 3 additions & 3 deletions HHExplorer/HHExplorer.UWP/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("HHExplorer.UWP")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyCopyright("Copyright © MediaExplorer 2023")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -24,6 +24,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.3.0")]
[assembly: AssemblyFileVersion("1.0.3.0")]
[assembly: ComVisible(false)]
22 changes: 22 additions & 0 deletions HHExplorer/HHExplorer/HHExplorer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,38 @@
<PropertyGroup>
<TargetFramework>netstandard1.4</TargetFramework>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<WarningLevel>3</WarningLevel>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<WarningLevel>3</WarningLevel>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Xamarin.Forms" Version="2.5.1.527436" />
<PackageReference Include="Xamarin.Essentials" Version="1.7.0" />
</ItemGroup>

<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>
8 changes: 4 additions & 4 deletions HHExplorer/HHExplorer/Models/Salary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ namespace HHLibrary
public struct Salary
{
[JsonProperty("from")]
public string From { get; set; }
public string? From { get; set; }

[JsonProperty("to")]
public string To { get; set; }
public string? To { get; set; }

[JsonProperty("currency")]
public string Currency { get; set; }
public string? Currency { get; set; }

[JsonProperty("gross")]
public string Gross { get; set; }
public string? Gross { get; set; }


}//Salary model end
Expand Down
4 changes: 2 additions & 2 deletions HHExplorer/HHExplorer/Models/Schedule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ namespace HHLibrary
public struct Schedule
{
[JsonProperty("id")]
public string Id { get; set; }
public string? Id { get; set; }

[JsonProperty("name")]
public string Name { get; set; }
public string? Name { get; set; }

}//Schedule model end

Expand Down
18 changes: 9 additions & 9 deletions HHExplorer/HHExplorer/Models/Vacancy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,31 @@ public class Vacancy
public long Id { get; set; }

[JsonProperty("name")]
public string Name { get; set; }
public string? Name { get; set; }

[JsonProperty("salary")]
public Salary Salary { get; set; }
public Salary? Salary { get; set; }

[JsonProperty("employer")]
public Employer Employer { get; set; }
public Employer? Employer { get; set; }

[JsonProperty("address")]
public Address Address { get; set; }
public Address? Address { get; set; }

[JsonProperty("published_at")]
public string Published_at { get; set; }
public string? Published_at { get; set; }

[JsonProperty("alternate_url")]
public string Alternate_url { get; set; }
public string? Alternate_url { get; set; }

[JsonProperty("schedule")]
public Schedule Schedule { get; set; }
public Schedule? Schedule { get; set; }

[JsonProperty("salary_from")]
public string Salary_from { get; set; }
public string? Salary_from { get; set; }

[JsonProperty("salary_to")]
public string Salary_to { get; set; }
public string? Salary_to { get; set; }


}//Vacancy model end
Expand Down
64 changes: 64 additions & 0 deletions HHExplorer/HHExplorer/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

101 changes: 101 additions & 0 deletions HHExplorer/HHExplorer/Properties/Resources.resx
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">1.3</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1">this is my long string</data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
[base64 mime encoded serialized .NET Framework object]
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
[base64 mime encoded string representing a byte array form of the .NET Framework object]
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->

<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
Loading

0 comments on commit 4d3ee26

Please sign in to comment.