refactor misspelled solution and assembly 'ShoopNCook' to 'ShopNCook'
continuous-integration/drone/push Build is passing Details

master
Maxime BATISTA 2 years ago
parent 629d2f3cb1
commit 6b91eb0913

@ -1,8 +1,8 @@
<?xml version = "1.0" encoding = "UTF-8" ?>
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ShoopNCook"
x:Class="ShoopNCook.App">
xmlns:local="clr-namespace:ShopNCook"
x:Class="ShopNCook.App">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>

@ -1,4 +1,4 @@
namespace ShoopNCook;
namespace ShopNCook;
using Models;
using Services;
using LocalServices;

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="ShoopNCook.ConnectAppShell"
x:Class="ShopNCook.ConnectAppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:pages="clr-namespace:ShoopNCook.Pages"
xmlns:pages="clr-namespace:ShopNCook.Pages"
Shell.FlyoutBehavior="Disabled"
Shell.NavBarIsVisible="False"
Shell.TabBarBackgroundColor="White"

@ -1,9 +1,8 @@
namespace ShoopNCook;
namespace ShopNCook;
using Microsoft.Maui.Controls;
using Models;
using Services;
using ShoopNCook.Controllers;
using ShoopNCook.Pages;
using ShopNCook.Controllers;
using ShopNCook.Pages;
// Shell pour la phase de connexion de l'application

@ -1,6 +1,6 @@
using Models;
namespace ShoopNCook
namespace ShopNCook
{
// Interface définissant un observateur de connexion.
// Tout objet implémentant cette interface doit définir la méthode OnAccountConnected().

@ -1,7 +1,7 @@
using Services;
using Models;
namespace ShoopNCook.Controllers
namespace ShopNCook.Controllers
{
public class ConnectionController : LoginController, RegisterController
{

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShoopNCook.Controllers
namespace ShopNCook.Controllers
{
public interface LoginController
{

@ -1,8 +1,8 @@
using Services;
using Models;
using ShoopNCook.Pages;
using ShopNCook.Pages;
namespace ShoopNCook.Controllers
namespace ShopNCook.Controllers
{
public class MorePageController
{

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShoopNCook.Controllers
namespace ShopNCook.Controllers
{
public interface RegisterController
{

@ -5,7 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShoopNCook
namespace ShopNCook
{
// Interface définissant une application.
// Tout objet implémentant cette interface doit définir la méthode ForceLogin().

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="ShoopNCook.MainAppShell"
x:Class="ShopNCook.MainAppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:pages="clr-namespace:ShoopNCook.Pages"
xmlns:pages="clr-namespace:ShopNCook.Pages"
Shell.FlyoutBehavior="Disabled"
Shell.NavBarIsVisible="False"
Shell.TabBarBackgroundColor="White"

@ -1,8 +1,8 @@
namespace ShoopNCook;
namespace ShopNCook;
using Microsoft.Maui.Controls;
using Models;
using ShoopNCook.Controllers;
using ShoopNCook.Pages;
using ShopNCook.Controllers;
using ShopNCook.Pages;
using Services;
// Shell principale de l'application après connexion de l'utilisateur

@ -1,7 +1,7 @@
using CommunityToolkit.Maui;
using Microsoft.Extensions.Logging;
namespace ShoopNCook;
namespace ShopNCook;
public static class MauiProgram
{

@ -2,7 +2,7 @@
using Android.Content.PM;
using Android.OS;
namespace ShoopNCook;
namespace ShopNCook;
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
public class MainActivity : MauiAppCompatActivity

@ -1,7 +1,7 @@
using Android.App;
using Android.Runtime;
namespace ShoopNCook;
namespace ShopNCook;
[Application]
public class MainApplication : MauiApplication

@ -1,6 +1,6 @@
using Foundation;
namespace ShoopNCook;
namespace ShopNCook;
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate

@ -1,7 +1,7 @@
using ObjCRuntime;
using UIKit;
namespace ShoopNCook;
namespace ShopNCook;
public class Program
{

@ -2,7 +2,7 @@ using System;
using Microsoft.Maui;
using Microsoft.Maui.Hosting;
namespace ShoopNCook;
namespace ShopNCook;
class Program : MauiApplication
{

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="maui-application-id-placeholder" version="0.0.0" api-version="7" xmlns="http://tizen.org/ns/packages">
<profile name="common" />
<ui-application appid="maui-application-id-placeholder" exec="ShoopNCook.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single">
<ui-application appid="maui-application-id-placeholder" exec="ShopNCook.dll" multiple="false" nodisplay="false" taskmanage="true" type="dotnet" launch_mode="single">
<label>maui-application-title-placeholder</label>
<icon>maui-appicon-placeholder</icon>
<metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />

@ -1,8 +1,8 @@
<maui:MauiWinUIApplication
x:Class="ShoopNCook.WinUI.App"
x:Class="ShopNCook.WinUI.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:maui="using:Microsoft.Maui"
xmlns:local="using:ShoopNCook.WinUI">
xmlns:local="using:ShopNCook.WinUI">
</maui:MauiWinUIApplication>

@ -3,7 +3,7 @@
// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.
namespace ShoopNCook.WinUI;
namespace ShopNCook.WinUI;
/// <summary>
/// Provides application-specific behavior to supplement the default Application class.

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="ShoopNCook.WinUI.app"/>
<assemblyIdentity version="1.0.0.0" name="ShopNCook.WinUI.app"/>
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>

@ -1,6 +1,6 @@
using Foundation;
namespace ShoopNCook;
namespace ShopNCook;
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate

@ -1,7 +1,7 @@
using ObjCRuntime;
using UIKit;
namespace ShoopNCook;
namespace ShopNCook;
public class Program
{

@ -47,7 +47,6 @@
</ItemGroup>
<ItemGroup>
<AndroidResource Remove="ShopNCookTests\**" />
<AndroidResource Remove="Tests\**" />
<Compile Remove="Foo\**" />
<Compile Remove="Services\**" />
@ -59,7 +58,6 @@
<EmbeddedResource Remove="Services\**" />
<EmbeddedResource Remove="LocalServices\**" />
<EmbeddedResource Remove="Models\**" />
<EmbeddedResource Remove="ShopNCookTests\**" />
<EmbeddedResource Remove="Tests\**" />
<MauiCss Remove="Foo\**" />
<MauiCss Remove="Services\**" />

@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31611.283
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShoopNCook", "ShoopNCook.csproj", "{8ED2FB1D-C04D-478D-9271-CC91FE110396}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ShopNCook", "ShopNCook.csproj", "{8ED2FB1D-C04D-478D-9271-CC91FE110396}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tests", "Tests\Tests.csproj", "{E50D92DC-0BB1-4998-B085-EF47C55675AC}"
EndProject

@ -2,7 +2,7 @@
using CommunityToolkit.Maui.Core;
namespace ShoopNCook
namespace ShopNCook
{
internal class UserNotifier
{

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.CounterView"
x:Class="ShopNCook.Views.CounterView"
x:Name="Counter">
<ContentView.BindingContext>
<x:Reference Name="Counter"/>

@ -1,4 +1,4 @@
namespace ShoopNCook.Views;
namespace ShopNCook.Views;
public partial class CounterView : ContentView
{

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.HeadedButton"
x:Class="ShopNCook.Views.HeadedButton"
x:Name="HeadedBtn">
<HorizontalStackLayout>
<Border

@ -1,4 +1,4 @@
namespace ShoopNCook.Views;
namespace ShopNCook.Views;
using Microsoft.Maui.Graphics;
// Classe représentant un bouton avec une tête (une image en préfixe)

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.IngredientEntry">
x:Class="ShopNCook.Views.IngredientEntry">
<Border
Stroke="{StaticResource BackgroundSecondary}"
StrokeThickness="1"

@ -1,6 +1,6 @@
using Models;
namespace ShoopNCook.Views;
namespace ShopNCook.Views;
// Classe représentant une entrée d'ingrédient
public partial class IngredientEntry : ContentView

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.IngredientView"
x:Class="ShopNCook.Views.IngredientView"
x:Name="Ingredient">
<ContentView.BindingContext>

@ -1,6 +1,6 @@
using Models;
namespace ShoopNCook.Views;
namespace ShopNCook.Views;
// Classe représentant une vue d'ingrédient
public partial class IngredientView : ContentView

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.OwnedRecipeView"
x:Class="ShopNCook.Views.OwnedRecipeView"
Margin="6,2">
<Border
Style="{StaticResource SecondaryBorderShadow}"

@ -1,6 +1,6 @@
using Models;
namespace ShoopNCook.Views;
namespace ShopNCook.Views;
public partial class OwnedRecipeView : ContentView
{

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.RecipeView"
x:Class="ShopNCook.Views.RecipeView"
Margin="4,2">
<Border

@ -1,6 +1,6 @@
using Models;
namespace ShoopNCook.Views
namespace ShopNCook.Views
{
public partial class RecipeView : ContentView
{

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.StepEntry">
x:Class="ShopNCook.Views.StepEntry">
<VerticalStackLayout>
<HorizontalStackLayout>
<Label

@ -1,6 +1,6 @@
using Models;
namespace ShoopNCook.Views;
namespace ShopNCook.Views;
public partial class StepEntry : ContentView
{

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Views.StoredRecipeView"
xmlns:views="clr-namespace:ShoopNCook.Views">
x:Class="ShopNCook.Views.StoredRecipeView"
xmlns:views="clr-namespace:ShopNCook.Views">
<Border
Style="{StaticResource SecondaryBorderShadow}"

@ -1,6 +1,6 @@
using Models;
namespace ShoopNCook.Views;
namespace ShopNCook.Views;
public partial class StoredRecipeView : ContentView
{

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.CreateRecipePage"
x:Class="ShopNCook.Pages.CreateRecipePage"
Title="CreateRecipePage"
xmlns:views="clr-namespace:ShoopNCook.Views"
xmlns:views="clr-namespace:ShopNCook.Views"
BackgroundColor="{StaticResource BackgroundPrimary}">
<Grid
RowDefinitions="Auto, *, Auto"

@ -1,7 +1,7 @@
using Models;
using ShoopNCook.Views;
using ShopNCook.Views;
namespace ShoopNCook.Pages;
namespace ShopNCook.Pages;
public partial class CreateRecipePage : ContentPage
{

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.FavoritesPage"
x:Class="ShopNCook.Pages.FavoritesPage"
Title="FavoritesPage"
xmlns:views="clr-namespace:ShoopNCook.Views"
xmlns:views="clr-namespace:ShopNCook.Views"
BackgroundColor="{StaticResource BackgroundPrimary}"
NavigatedTo="ContentPage_NavigatedTo">

@ -1,9 +1,9 @@
namespace ShoopNCook.Pages;
namespace ShopNCook.Pages;
using Services;
using Models;
using ShoopNCook.Views;
using ShopNCook.Views;
public partial class FavoritesPage : ContentPage
{

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.HomePage"
xmlns:views="clr-namespace:ShoopNCook.Views"
x:Class="ShopNCook.Pages.HomePage"
xmlns:views="clr-namespace:ShopNCook.Views"
Title="HomePage"
BackgroundColor="{StaticResource BackgroundPrimary}">

@ -1,7 +1,7 @@
namespace ShoopNCook.Pages;
namespace ShopNCook.Pages;
using Models;
using ShoopNCook.Views;
using ShopNCook.Views;
using Services;
public partial class HomePage : ContentPage

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.LoginPage"
x:Class="ShopNCook.Pages.LoginPage"
Title="Login"
BackgroundColor="{StaticResource BackgroundPrimary}">
<VerticalStackLayout

@ -1,7 +1,7 @@
using Services;
using ShoopNCook.Controllers;
using ShopNCook.Controllers;
namespace ShoopNCook.Pages;
namespace ShopNCook.Pages;
public partial class LoginPage : ContentPage
{

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.MorePage"
x:Class="ShopNCook.Pages.MorePage"
BackgroundColor="{StaticResource BackgroundPrimary}"
xmlns:views="clr-namespace:ShoopNCook.Views"
xmlns:views="clr-namespace:ShopNCook.Views"
Title="MorePage">
<Grid

@ -1,7 +1,7 @@
using Models;
using ShoopNCook.Controllers;
using ShopNCook.Controllers;
namespace ShoopNCook.Pages;
namespace ShopNCook.Pages;
public partial class MorePage : ContentPage
{

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.MyListPage"
x:Class="ShopNCook.Pages.MyListPage"
Title="MyList"
BackgroundColor="{StaticResource BackgroundPrimary}"
xmlns:views="clr-namespace:ShoopNCook.Views"
xmlns:views="clr-namespace:ShopNCook.Views"
NavigatedTo="ContentPage_NavigatedTo">
<Grid
RowDefinitions="Auto, *, Auto">

@ -1,9 +1,9 @@
using Services;
using Services;
using Models;
using ShoopNCook.Views;
using ShopNCook.Views;
namespace ShoopNCook.Pages;
namespace ShopNCook.Pages;
public partial class MyListPage : ContentPage
{

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.MyRecipesPage"
x:Class="ShopNCook.Pages.MyRecipesPage"
Title="MyRecipesPage"
xmlns:views="clr-namespace:ShoopNCook.Views"
xmlns:views="clr-namespace:ShopNCook.Views"
BackgroundColor="{StaticResource BackgroundPrimary}">
<Grid
RowDefinitions="Auto, *, Auto">

@ -1,8 +1,8 @@
using Services;
using Models;
using ShoopNCook.Views;
using ShopNCook.Views;
namespace ShoopNCook.Pages;
namespace ShopNCook.Pages;
public partial class MyRecipesPage : ContentPage
{

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.ProfilePage"
x:Class="ShopNCook.Pages.ProfilePage"
Title="Profile"
BackgroundColor="{StaticResource BackgroundPrimary}">

@ -1,6 +1,6 @@
using Models;
namespace ShoopNCook.Pages;
namespace ShopNCook.Pages;
public partial class ProfilePage : ContentPage
{

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.RecipePage"
x:Class="ShopNCook.Pages.RecipePage"
Title="RecipePage"
x:Name="RecipeViewPage"
xmlns:views="clr-namespace:ShoopNCook.Views"
xmlns:views="clr-namespace:ShopNCook.Views"
BackgroundColor="{StaticResource BackgroundPrimary}">
<Grid

@ -1,9 +1,9 @@
using ShoopNCook.Views;
using ShopNCook.Views;
using System.Windows.Input;
using Models;
using Services;
namespace ShoopNCook.Pages;
namespace ShopNCook.Pages;
public partial class RecipePage : ContentPage
{

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.RegisterPage"
x:Class="ShopNCook.Pages.RegisterPage"
Title="Register"
BackgroundColor="{StaticResource BackgroundPrimary}">
<ScrollView>

@ -1,6 +1,6 @@
using ShoopNCook.Controllers;
using ShopNCook.Controllers;
namespace ShoopNCook.Pages;
namespace ShopNCook.Pages;
public partial class RegisterPage : ContentPage
{

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.SearchPage"
xmlns:views="clr-namespace:ShoopNCook.Views"
x:Class="ShopNCook.Pages.SearchPage"
xmlns:views="clr-namespace:ShopNCook.Views"
Title="SearchPage"
BackgroundColor="{StaticResource BackgroundPrimary}">
<Grid

@ -1,9 +1,9 @@
using Models;
using Services;
using ShoopNCook.Views;
using ShopNCook.Views;
using System.Collections.ObjectModel;
namespace ShoopNCook.Pages;
namespace ShopNCook.Pages;
public partial class SearchPage : ContentPage
{
private readonly IRecipesService recipesService;

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShoopNCook.Pages.Splash"
x:Class="ShopNCook.Pages.Splash"
Title="Splash"
BackgroundColor="{StaticResource BackgroundPrimary}">
<Grid

@ -1,4 +1,4 @@
namespace ShoopNCook.Pages;
namespace ShopNCook.Pages;
public partial class Splash : ContentPage
{

@ -917,7 +917,7 @@
/></g
><g font-size="11px" transform="translate(388,1369)" fill-opacity="1" fill="black" text-rendering="geometricPrecision" image-rendering="optimizeQuality" font-family="sans-serif" stroke="black" stroke-opacity="1"
><text x="282" xml:space="preserve" y="12" clip-path="url(#clipPath5)" stroke="none"
>ShoopNCook</text
>ShopNCook</text
></g
><g font-size="11px" transform="translate(1163,1289)" fill-opacity="1" fill="rgb(255,255,128)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" font-family="sans-serif" stroke="rgb(255,255,128)" stroke-opacity="1"
><rect x="0" width="260" height="20" y="0" clip-path="url(#clipPath6)" stroke="none"

Before

Width:  |  Height:  |  Size: 254 KiB

After

Width:  |  Height:  |  Size: 254 KiB

Loading…
Cancel
Save