Skip to content

Commit

Permalink
Trans variation, re-organisations
Browse files Browse the repository at this point in the history
  • Loading branch information
PJB3005 committed Nov 15, 2022
1 parent 5ffb49a commit fd3b5a4
Show file tree
Hide file tree
Showing 15 changed files with 359 additions and 0 deletions.
32 changes: 32 additions & 0 deletions tools/export-icons.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/usr/bin/env pwsh

[CmdletBinding()]
param (
[Parameter(Mandatory=$true)]
[string]
$Source,

[Parameter(Mandatory=$true)]
[string]
$Dest
)

$sizes = @(
16,
24,
32,
48,
64,
128,
256
);

$name = [System.IO.Path]::GetFileNameWithoutExtension($Source);
$sizes | ForEach-Object {
inkscape $Source `
-o $(Join-Path $Dest "$name.$_.png") `
--export-type=png `
--export-area-page `
--export-width=$_ `
--export-height=$_
}
File renamed without changes
File renamed without changes
Binary file added variations/trans/ico/icon-new.16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added variations/trans/ico/icon-trans.128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added variations/trans/ico/icon-trans.24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added variations/trans/ico/icon-trans.256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added variations/trans/ico/icon-trans.32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added variations/trans/ico/icon-trans.48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added variations/trans/ico/icon-trans.64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added variations/trans/ico/icon.ico
Binary file not shown.
Binary file added variations/trans/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
130 changes: 130 additions & 0 deletions variations/trans/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
197 changes: 197 additions & 0 deletions variations/trans/logo-long.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes

0 comments on commit fd3b5a4

Please sign in to comment.