From 5f83c2cd95abf2c277261c83a42f5a94818b30f3 Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Tue, 20 Jun 2023 19:20:06 -0700 Subject: [PATCH] add repeat icons to bundle --- res/bundled.go | 10 ++++++++++ res/bundled_gen.sh | 2 ++ res/icons/remix_design/LICENSE.txt | 12 ++++++++++++ res/icons/remix_design/repeat.svg | 7 +++++++ res/icons/remix_design/repeatone.svg | 7 +++++++ 5 files changed, 38 insertions(+) create mode 100644 res/icons/remix_design/LICENSE.txt create mode 100644 res/icons/remix_design/repeat.svg create mode 100644 res/icons/remix_design/repeatone.svg diff --git a/res/bundled.go b/res/bundled.go index b55797c..0cd5803 100644 --- a/res/bundled.go +++ b/res/bundled.go @@ -140,6 +140,16 @@ var ResFilterSvg = &fyne.StaticResource{ StaticContent: []byte( "\r\n\r\n\t\r\n\r\n\r\n"), } +var ResRepeatSvg = &fyne.StaticResource{ + StaticName: "repeat.svg", + StaticContent: []byte( + "\n\n \n \n \n \n"), +} +var ResRepeatoneSvg = &fyne.StaticResource{ + StaticName: "repeatone.svg", + StaticContent: []byte( + "\n\n \n \n \n \n"), +} var ResDefaultToml = &fyne.StaticResource{ StaticName: "default.toml", StaticContent: []byte( diff --git a/res/bundled_gen.sh b/res/bundled_gen.sh index 91d8f88..bf4119a 100755 --- a/res/bundled_gen.sh +++ b/res/bundled_gen.sh @@ -27,6 +27,8 @@ fyne bundle -append -prefix Res icons/publicdomain/star-filled.svg >> bundled.go fyne bundle -append -prefix Res icons/publicdomain/grid.svg >> bundled.go fyne bundle -append -prefix Res icons/publicdomain/list.svg >> bundled.go fyne bundle -append -prefix Res icons/publicdomain/filter.svg >> bundled.go +fyne bundle -append -prefix Res icons/remix_design/repeat.svg >> bundled.go +fyne bundle -append -prefix Res icons/remix_design/repeatone.svg >> bundled.go fyne bundle -append -prefix Res themes/default.toml >> bundled.go diff --git a/res/icons/remix_design/LICENSE.txt b/res/icons/remix_design/LICENSE.txt new file mode 100644 index 0000000..7a6cacb --- /dev/null +++ b/res/icons/remix_design/LICENSE.txt @@ -0,0 +1,12 @@ +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + diff --git a/res/icons/remix_design/repeat.svg b/res/icons/remix_design/repeat.svg new file mode 100644 index 0000000..c963d03 --- /dev/null +++ b/res/icons/remix_design/repeat.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/res/icons/remix_design/repeatone.svg b/res/icons/remix_design/repeatone.svg new file mode 100644 index 0000000..f724384 --- /dev/null +++ b/res/icons/remix_design/repeatone.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file