Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package palette for openSUSE:Factory checked in at 2021-09-10 23:40:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/palette (Old) and /work/SRC/openSUSE:Factory/.palette.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "palette" Fri Sep 10 23:40:49 2021 rev:11 rq:917851 version:4.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/palette/palette.changes 2020-05-26 17:21:48.340295388 +0200 +++ /work/SRC/openSUSE:Factory/.palette.new.1899/palette.changes 2021-09-10 23:40:54.890534076 +0200 @@ -1,0 +2,9 @@ +Thu Sep 9 22:38:48 UTC 2021 - Alexei Podvalsky <[email protected]> + +- Update to 4.0.0: + * Hello, Odin + * Update for OS 6 and Flatpak + * Turkish translations thanks to Safak GENISOL + * Brazilian Portuguese translations thanks to Henrique Andrade + +------------------------------------------------------------------- Old: ---- palette-3.2.1.tar.gz New: ---- palette-4.0.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ palette.spec ++++++ --- /var/tmp/diff_new_pack.GVHVCk/_old 2021-09-10 23:40:55.626534859 +0200 +++ /var/tmp/diff_new_pack.GVHVCk/_new 2021-09-10 23:40:55.630534863 +0200 @@ -1,7 +1,7 @@ # # spec file for package palette # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: palette -Version: 3.2.1 +Version: 4.0.0 Release: 0 Summary: Color palette viewer License: GPL-3.0-or-later ++++++ palette-3.2.1.tar.gz -> palette-4.0.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/.github/workflows/ci.yml new/palette-4.0.0/.github/workflows/ci.yml --- old/palette-3.2.1/.github/workflows/ci.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/palette-4.0.0/.github/workflows/ci.yml 2021-08-10 02:22:26.000000000 +0200 @@ -0,0 +1,45 @@ +name: CI + +on: + pull_request: + types: + - opened + - reopened + - synchronize + +jobs: + flatpak: + name: Flatpak + runs-on: ubuntu-latest + + container: + image: ghcr.io/elementary/flatpak-platform/runtime:daily + options: --privileged + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Build + uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3 + with: + bundle: palette.flatpak + manifest-path: com.github.cassidyjames.palette.yml + run-tests: true + repository-name: appcenter + repository-url: https://flatpak.elementary.io/repo.flatpakrepo + cache-key: "flatpak-builder-${{ github.sha }}" + + lint: + name: Lint + runs-on: ubuntu-latest + + container: + image: valalang/lint + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Lint + run: io.elementary.vala-lint -d . diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/.github/workflows/compress-images.yml new/palette-4.0.0/.github/workflows/compress-images.yml --- old/palette-3.2.1/.github/workflows/compress-images.yml 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/.github/workflows/compress-images.yml 1970-01-01 01:00:00.000000000 +0100 @@ -1,12 +0,0 @@ -name: Compress images -on: pull_request -jobs: - build: - name: calibreapp/image-actions - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: calibreapp/image-actions - uses: docker://calibreapp/github-image-actions - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/.github/workflows/gettext.yml new/palette-4.0.0/.github/workflows/gettext.yml --- old/palette-3.2.1/.github/workflows/gettext.yml 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/.github/workflows/gettext.yml 2021-08-10 02:22:26.000000000 +0200 @@ -1,7 +1,7 @@ name: Gettext updates on: push: - branches: master + branches: main jobs: gettext_template: runs-on: ubuntu-latest @@ -9,4 +9,8 @@ - uses: actions/checkout@v1 - uses: elementary/actions/gettext-template@master env: - GITHUB_TOKEN: ${{ secrets.GIT_USER_TOKEN }} + GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}" + GIT_USER_NAME: "cassidyjames" + GIT_USER_EMAIL: "[email protected]" + with: + translation_branch: 'main' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/.github/workflows/lint.yml new/palette-4.0.0/.github/workflows/lint.yml --- old/palette-3.2.1/.github/workflows/lint.yml 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/.github/workflows/lint.yml 1970-01-01 01:00:00.000000000 +0100 @@ -1,12 +0,0 @@ -name: Lint - -on: [pull_request, push] - -jobs: - lint: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v1 - - uses: elementary/actions/vala-lint@master diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/.github/workflows/release.yml new/palette-4.0.0/.github/workflows/release.yml --- old/palette-3.2.1/.github/workflows/release.yml 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/.github/workflows/release.yml 2021-08-10 02:22:26.000000000 +0200 @@ -1,16 +1,26 @@ +--- + name: Release + on: pull_request: - branches: master + branches: main types: closed + jobs: - release: - runs-on: ubuntu-latest - if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') - steps: - - uses: actions/checkout@v1 - - uses: elementary/actions/release@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - release_branch: 'juno' + create_release: + name: Create Release + runs-on: ubuntu-latest + + if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Release + uses: elementary/actions/release@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + release_branch: 'odin' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/.travis.yml new/palette-4.0.0/.travis.yml --- old/palette-3.2.1/.travis.yml 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/.travis.yml 1970-01-01 01:00:00.000000000 +0100 @@ -1,24 +0,0 @@ ---- - -language: node_js - -node_js: - - 10.17.0 - -sudo: required - -services: - - docker - -addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - libstdc++-5-dev - -install: - - npm i -g @elementaryos/houston - -script: - - houston ci diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/README.md new/palette-4.0.0/README.md --- old/palette-3.2.1/README.md 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/README.md 2021-08-10 02:22:26.000000000 +0200 @@ -1,5 +1,3 @@ -[](https://travis-ci.org/cassidyjames/palette) - <p align="center"> <img src="data/icons/128.svg" alt="Icon" /> </p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/com.github.cassidyjames.palette.yml new/palette-4.0.0/com.github.cassidyjames.palette.yml --- old/palette-3.2.1/com.github.cassidyjames.palette.yml 1970-01-01 01:00:00.000000000 +0100 +++ new/palette-4.0.0/com.github.cassidyjames.palette.yml 2021-08-10 02:22:26.000000000 +0200 @@ -0,0 +1,17 @@ +app-id: com.github.cassidyjames.palette +runtime: io.elementary.Platform +runtime-version: '6' +sdk: io.elementary.Sdk +command: com.github.cassidyjames.palette +finish-args: + - '--share=ipc' + - '--socket=fallback-x11' + - '--socket=wayland' + # needed for perfers-color-scheme + - '--system-talk-name=org.freedesktop.Accounts' +modules: + - name: palette + buildsystem: meson + sources: + - type: dir + path: . diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/data/Application.css new/palette-4.0.0/data/Application.css --- old/palette-3.2.1/data/Application.css 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/data/Application.css 2021-08-10 02:22:26.000000000 +0200 @@ -1,5 +1,5 @@ /* -* Copyright ?? 2018???2020 Cassidy James Blaede (https://cassidyjames.com) +* Copyright ?? 2018???2021 Cassidy James Blaede (https://cassidyjames.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public @@ -19,18 +19,6 @@ * Authored by: Cassidy James Blaede <[email protected]> */ -/* Definitiions needed until/unless the palette is backported */ -@define-color MINT_100 #89ffdd; -@define-color MINT_300 #43d6b5; -@define-color MINT_500 #28bca3; -@define-color MINT_700 #0e9a83; -@define-color MINT_900 #007367; -@define-color BUBBLEGUM_100 #fe9ab8; -@define-color BUBBLEGUM_300 #f4679d; -@define-color BUBBLEGUM_500 #de3e80; -@define-color BUBBLEGUM_700 #bc245d; -@define-color BUBBLEGUM_900 #910e38; - button.circular { color: transparent; } @@ -61,6 +49,10 @@ color: inherit; } +switch image { + color: transparent; +} + .mini, .mini .titlebar { background: alpha(@theme_bg_color, 0.85); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/data/com.github.cassidyjames.palette.appdata.xml.in new/palette-4.0.0/data/com.github.cassidyjames.palette.appdata.xml.in --- old/palette-3.2.1/data/com.github.cassidyjames.palette.appdata.xml.in 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/data/com.github.cassidyjames.palette.appdata.xml.in 2021-08-10 02:22:26.000000000 +0200 @@ -22,6 +22,16 @@ <binary>com.github.cassidyjames.palette</binary> </provides> <releases> + <release version="4.0.0" date="2021-08-09"> + <description> + <p>Hello, Odin</p> + <ul> + <li>Update for OS 6 and Flatpak</li> + <li>Turkish translations thanks to Safak GENISOL</li> + <li>Brazilian Portuguese translations thanks to Henrique Andrade</li> + </ul> + </description> + </release> <release version="3.2.1" date="2020-05-16"> <description> <p>Fix Mint and Bubblegum text sometimes being unreadable</p> @@ -162,19 +172,16 @@ </releases> <screenshots> <screenshot type="default"> - <image>https://raw.githubusercontent.com/cassidyjames/palette/master/data/screenshots/[email protected]</image> - </screenshot> - <screenshot> - <image>https://raw.githubusercontent.com/cassidyjames/palette/master/data/screenshots/[email protected]</image> + <image>https://raw.githubusercontent.com/cassidyjames/palette/master/data/screenshots/screenshot.png</image> </screenshot> <screenshot> - <image>https://raw.githubusercontent.com/cassidyjames/palette/master/data/screenshots/[email protected]</image> + <image>https://raw.githubusercontent.com/cassidyjames/palette/master/data/screenshots/screenshot-open.png</image> </screenshot> <screenshot> - <image>https://raw.githubusercontent.com/cassidyjames/palette/master/data/screenshots/[email protected]</image> + <image>https://raw.githubusercontent.com/cassidyjames/palette/master/data/screenshots/screenshot-mini.png</image> </screenshot> <screenshot> - <image>https://raw.githubusercontent.com/cassidyjames/palette/master/data/screenshots/[email protected]</image> + <image>https://raw.githubusercontent.com/cassidyjames/palette/master/data/screenshots/screenshot-mini-open.png</image> </screenshot> </screenshots> <content_rating type="oars-1.1"> @@ -217,5 +224,6 @@ <value key="x-appcenter-color-primary">#ffe16b</value> <value key="x-appcenter-color-primary-text">#333333</value> <value key="x-appcenter-suggested-price">6</value> + <value key="x-appcenter-stripe">pk_live_Y2Xdk6qMEs9mjCwiiSPJ4Nex00NziS13ZG</value> </custom> </component> Binary files old/palette-3.2.1/data/screenshots/[email protected] and new/palette-4.0.0/data/screenshots/[email protected] differ Binary files old/palette-3.2.1/data/screenshots/[email protected] and new/palette-4.0.0/data/screenshots/[email protected] differ Binary files old/palette-3.2.1/data/screenshots/[email protected] and new/palette-4.0.0/data/screenshots/[email protected] differ Binary files old/palette-3.2.1/data/screenshots/[email protected] and new/palette-4.0.0/data/screenshots/[email protected] differ Binary files old/palette-3.2.1/data/screenshots/screenshot-mini-open.png and new/palette-4.0.0/data/screenshots/screenshot-mini-open.png differ Binary files old/palette-3.2.1/data/screenshots/screenshot-mini.png and new/palette-4.0.0/data/screenshots/screenshot-mini.png differ Binary files old/palette-3.2.1/data/screenshots/screenshot-open.png and new/palette-4.0.0/data/screenshots/screenshot-open.png differ Binary files old/palette-3.2.1/data/screenshots/screenshot.png and new/palette-4.0.0/data/screenshots/screenshot.png differ Binary files old/palette-3.2.1/data/screenshots/[email protected] and new/palette-4.0.0/data/screenshots/[email protected] differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/meson.build new/palette-4.0.0/meson.build --- old/palette-3.2.1/meson.build 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/meson.build 2021-08-10 02:22:26.000000000 +0200 @@ -1,7 +1,7 @@ project( 'com.github.cassidyjames.palette', 'vala', 'c', - version: '3.2.1' + version: '4.0.0' ) gnome = import('gnome') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/po/com.github.cassidyjames.palette.pot new/palette-4.0.0/po/com.github.cassidyjames.palette.pot --- old/palette-3.2.1/po/com.github.cassidyjames.palette.pot 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/po/com.github.cassidyjames.palette.pot 2021-08-10 02:22:26.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: com.github.cassidyjames.palette\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-15 19:22+0000\n" +"POT-Creation-Date: 2020-05-16 23:41+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <[email protected]>\n" @@ -59,60 +59,64 @@ msgstr "" #: data/com.github.cassidyjames.palette.appdata.xml.in:27 +msgid "Fix Mint and Bubblegum text sometimes being unreadable" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:32 msgid "Minty Bubblegum?" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:29 +#: data/com.github.cassidyjames.palette.appdata.xml.in:34 msgid "New Mint palette color for vector path intersections" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:30 +#: data/com.github.cassidyjames.palette.appdata.xml.in:35 msgid "New Bubblegum palette color for erasers" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:31 +#: data/com.github.cassidyjames.palette.appdata.xml.in:36 msgid "Tweaked layout to better fit all the colors" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:37 +#: data/com.github.cassidyjames.palette.appdata.xml.in:42 msgid "Fix .desktop translation error" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:42 +#: data/com.github.cassidyjames.palette.appdata.xml.in:47 msgid "Translation updates" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:44 +#: data/com.github.cassidyjames.palette.appdata.xml.in:49 msgid "Italian translations thanks to Mirko Brombin" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:45 +#: data/com.github.cassidyjames.palette.appdata.xml.in:50 msgid "Polish translations thanks to Micha?? Nowakowski" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:51 +#: data/com.github.cassidyjames.palette.appdata.xml.in:56 msgid "Bonjour encore! Updated French translations thanks to @NathanBnm." msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:56 +#: data/com.github.cassidyjames.palette.appdata.xml.in:61 msgid "Hallo! Dutch translations thanks to Heimen Stoffels." msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:61 +#: data/com.github.cassidyjames.palette.appdata.xml.in:66 msgid "" "Happy new year! This release contains AppData fixes and updated Spanish " "translations." msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:66 +#: data/com.github.cassidyjames.palette.appdata.xml.in:71 msgid "Under-the-hood and style tweaks" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:71 +#: data/com.github.cassidyjames.palette.appdata.xml.in:76 msgid "Brand New Mini Mode!" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:72 +#: data/com.github.cassidyjames.palette.appdata.xml.in:77 msgid "" "Hit the new icon in the titlebar to collapse Palette down to a small docked " "always-on-top window, perfect for keeping it around as part of your " @@ -120,105 +124,105 @@ "way." msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:73 +#: data/com.github.cassidyjames.palette.appdata.xml.in:78 msgid "" "Palette remembers where the full-size and mini windows were last open, so " "drag the mini window to whichever side of the display works best for you." msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:78 +#: data/com.github.cassidyjames.palette.appdata.xml.in:83 msgid "Developer Mode ???????????" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:80 +#: data/com.github.cassidyjames.palette.appdata.xml.in:85 msgid "Gtk.CSS color constants! Just flip the toggle." msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:81 +#: data/com.github.cassidyjames.palette.appdata.xml.in:86 msgid "Window position is remembered" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:82 +#: data/com.github.cassidyjames.palette.appdata.xml.in:87 msgid "Refreshed design with less repetition and larger color names" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:88 +#: data/com.github.cassidyjames.palette.appdata.xml.in:93 msgid "Salam! Initial Azerbaijani translations thanks to manymous" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:93 +#: data/com.github.cassidyjames.palette.appdata.xml.in:98 msgid "Updated translations and under-the-hood cleaning" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:98 +#: data/com.github.cassidyjames.palette.appdata.xml.in:103 msgid "Add examples of uses to the bottom of each color card" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:103 +#: data/com.github.cassidyjames.palette.appdata.xml.in:108 msgid "Refreshed icon designed by Sam Hewitt and Micah Ilbery" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:108 +#: data/com.github.cassidyjames.palette.appdata.xml.in:113 msgid "Hello, Juno!" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:113 +#: data/com.github.cassidyjames.palette.appdata.xml.in:118 msgid "All About That Grape" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:115 +#: data/com.github.cassidyjames.palette.appdata.xml.in:120 msgid "Updated Grape color to match official elementary palette" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:116 +#: data/com.github.cassidyjames.palette.appdata.xml.in:121 msgid "Updated icons to match new Grape color" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:117 +#: data/com.github.cassidyjames.palette.appdata.xml.in:122 msgid "????????????????????????! Added Russian translations thanks to Camellan" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:118 +#: data/com.github.cassidyjames.palette.appdata.xml.in:123 msgid "Add translation instructions and update translation link in app data" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:124 +#: data/com.github.cassidyjames.palette.appdata.xml.in:129 msgid "Hola! Added Catalan translations thanks to eudaldgr." msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:129 +#: data/com.github.cassidyjames.palette.appdata.xml.in:134 msgid "??Hola! Added Spanish translations thanks to Alain (alainm23)." msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:134 +#: data/com.github.cassidyjames.palette.appdata.xml.in:139 msgid "Bun?? ziua! Added Romanian translations thanks to Plugaru Tudor." msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:139 +#: data/com.github.cassidyjames.palette.appdata.xml.in:144 msgid "Bonjour! Added French translations thanks to ArthurS1." msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:144 +#: data/com.github.cassidyjames.palette.appdata.xml.in:149 msgid "Makeover" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:146 +#: data/com.github.cassidyjames.palette.appdata.xml.in:151 msgid "Sexy new icons from Micah Ilbery" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:147 +#: data/com.github.cassidyjames.palette.appdata.xml.in:152 msgid "Refined palette variant popover styles" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:148 +#: data/com.github.cassidyjames.palette.appdata.xml.in:153 msgid "Code cleanup, including translatability" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:154 +#: data/com.github.cassidyjames.palette.appdata.xml.in:159 msgid "Initial release" msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:204 +#: data/com.github.cassidyjames.palette.appdata.xml.in:209 msgid "Cassidy James Blaede" msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/po/pt_BR.po new/palette-4.0.0/po/pt_BR.po --- old/palette-3.2.1/po/pt_BR.po 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/po/pt_BR.po 2021-08-10 02:22:26.000000000 +0200 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: com.github.cassidyjames.palette\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-01-22 23:36-0700\n" -"PO-Revision-Date: 2018-04-09 19:57-0600\n" +"POT-Creation-Date: 2020-05-16 23:41+0000\n" +"PO-Revision-Date: 2020-06-08 16:26-0300\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: pt_BR\n" @@ -16,16 +16,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 2.3.1\n" #: data/com.github.cassidyjames.palette.appdata.xml.in:7 #: data/launcher.desktop.in:3 src/MainWindow.vala:28 msgid "Palette" -msgstr "" +msgstr "Palette" #: data/com.github.cassidyjames.palette.appdata.xml.in:8 #: data/launcher.desktop.in:5 msgid "View and copy colors from the elementary brand palette" -msgstr "" +msgstr "Visualize e copie as cores da paleta da marca elementary" #: data/com.github.cassidyjames.palette.appdata.xml.in:10 msgid "" @@ -36,15 +37,15 @@ #: data/com.github.cassidyjames.palette.appdata.xml.in:11 msgid "Handy features:" -msgstr "" +msgstr "Recursos ??teis:" #: data/com.github.cassidyjames.palette.appdata.xml.in:13 msgid "Clean and straightforward design" -msgstr "" +msgstr "Design simples e direto" #: data/com.github.cassidyjames.palette.appdata.xml.in:14 msgid "Click to copy any color to your clipboard" -msgstr "" +msgstr "Clique para copiar qualquer cor para sua ??rea de transfer??ncia" #: data/com.github.cassidyjames.palette.appdata.xml.in:15 msgid "Supports both hex values and Gtk.CSS color constants" @@ -58,120 +59,301 @@ "a more streamlined workflow." msgstr "" -#: data/com.github.cassidyjames.palette.appdata.xml.in:177 -msgid "Cassidy James Blaede" +#: data/com.github.cassidyjames.palette.appdata.xml.in:27 +msgid "Fix Mint and Bubblegum text sometimes being unreadable" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:32 +msgid "Minty Bubblegum?" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:34 +msgid "New Mint palette color for vector path intersections" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:35 +msgid "New Bubblegum palette color for erasers" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:36 +msgid "Tweaked layout to better fit all the colors" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:42 +msgid "Fix .desktop translation error" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:47 +msgid "Translation updates" +msgstr "Atualiza????es de tradu????o" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:49 +msgid "Italian translations thanks to Mirko Brombin" +msgstr "Tradu????o para o italiano gra??as a Mirko Brombin" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:50 +msgid "Polish translations thanks to Micha?? Nowakowski" +msgstr "Tradu????o para o polon??s gra??as a Micha?? Nowakowski." + +#: data/com.github.cassidyjames.palette.appdata.xml.in:56 +msgid "Bonjour encore! Updated French translations thanks to @NathanBnm." +msgstr "" +"Bonjour encore! Atualiza????o da tradu????o para o franc??s gra??as a @NathanBnm." + +#: data/com.github.cassidyjames.palette.appdata.xml.in:61 +msgid "Hallo! Dutch translations thanks to Heimen Stoffels." +msgstr "Hallo! Tradu????o para o holand??s gra??as a Heimen Stoffels." + +#: data/com.github.cassidyjames.palette.appdata.xml.in:66 +msgid "" +"Happy new year! This release contains AppData fixes and updated Spanish " +"translations." +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:71 +msgid "Under-the-hood and style tweaks" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:76 +msgid "Brand New Mini Mode!" +msgstr "Novo Modo Compacto!" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:77 +msgid "" +"Hit the new icon in the titlebar to collapse Palette down to a small docked " +"always-on-top window, perfect for keeping it around as part of your " +"workflow. All of the same functionality is available, just more out of the " +"way." +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:78 +msgid "" +"Palette remembers where the full-size and mini windows were last open, so " +"drag the mini window to whichever side of the display works best for you." +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:83 +msgid "Developer Mode ???????????" +msgstr "Modo de Desenvolvedor ???????????" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:85 +msgid "Gtk.CSS color constants! Just flip the toggle." +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:86 +msgid "Window position is remembered" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:87 +msgid "Refreshed design with less repetition and larger color names" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:93 +msgid "Salam! Initial Azerbaijani translations thanks to manymous" +msgstr "Salam! Tradu????o inicial para o azerbaijano gra??as a manymous" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:98 +msgid "Updated translations and under-the-hood cleaning" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:103 +msgid "Add examples of uses to the bottom of each color card" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:108 +msgid "Refreshed icon designed by Sam Hewitt and Micah Ilbery" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:113 +msgid "Hello, Juno!" +msgstr "Ol??, Juno!" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:118 +msgid "All About That Grape" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:120 +msgid "Updated Grape color to match official elementary palette" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:121 +msgid "Updated icons to match new Grape color" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:122 +msgid "????????????????????????! Added Russian translations thanks to Camellan" +msgstr "????????????????????????! Tradu????o para o russo gra??as a Camellan." + +#: data/com.github.cassidyjames.palette.appdata.xml.in:123 +msgid "Add translation instructions and update translation link in app data" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:129 +msgid "Hola! Added Catalan translations thanks to eudaldgr." +msgstr "Hola! Tradu????o para o catal??o gra??as a eudaldgr." + +#: data/com.github.cassidyjames.palette.appdata.xml.in:134 +msgid "??Hola! Added Spanish translations thanks to Alain (alainm23)." +msgstr "??Hola! Tradu????o para o espanhol gra??as a Alain (alainm23)." + +#: data/com.github.cassidyjames.palette.appdata.xml.in:139 +msgid "Bun?? ziua! Added Romanian translations thanks to Plugaru Tudor." +msgstr "Bun?? ziua! Tradu????o para o romeno gra??as a Plugaru Tudor." + +#: data/com.github.cassidyjames.palette.appdata.xml.in:144 +msgid "Bonjour! Added French translations thanks to ArthurS1." +msgstr "Bonjour! Tradu????o para o franc??s gra??as a ArthurS1." + +#: data/com.github.cassidyjames.palette.appdata.xml.in:149 +msgid "Makeover" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:151 +msgid "Sexy new icons from Micah Ilbery" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:152 +msgid "Refined palette variant popover styles" msgstr "" +#: data/com.github.cassidyjames.palette.appdata.xml.in:153 +msgid "Code cleanup, including translatability" +msgstr "" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:159 +msgid "Initial release" +msgstr "Lan??amento inicial" + +#: data/com.github.cassidyjames.palette.appdata.xml.in:209 +msgid "Cassidy James Blaede" +msgstr "Cassidy James Blaede" + #: data/launcher.desktop.in:4 msgid "Color palette viewer" -msgstr "" +msgstr "Visualizador de paleta de cores" #: data/launcher.desktop.in:8 msgid "com.github.cassidyjames.palette" -msgstr "" +msgstr "com.github.cassidyjames.palette" #: data/launcher.desktop.in:12 msgid "color;palette;scheme;copy;paste;swatch;contrast;????;" msgstr "" -#: src/Colors.vala:37 +#: src/Colors.vala:39 msgid "Strawberry" msgstr "" -#: src/Colors.vala:39 +#: src/Colors.vala:41 msgid "Orange" msgstr "" -#: src/Colors.vala:41 +#: src/Colors.vala:43 msgid "Banana" msgstr "" -#: src/Colors.vala:43 +#: src/Colors.vala:45 msgid "Lime" msgstr "" -#: src/Colors.vala:45 +#: src/Colors.vala:47 +msgid "Mint" +msgstr "" + +#: src/Colors.vala:49 msgid "Blueberry" msgstr "" -#: src/Colors.vala:47 +#: src/Colors.vala:51 msgid "Grape" msgstr "" -#: src/Colors.vala:49 +#: src/Colors.vala:53 +msgid "Bubblegum" +msgstr "" + +#: src/Colors.vala:55 msgid "Cocoa" msgstr "" -#: src/Colors.vala:51 +#: src/Colors.vala:57 msgid "Silver" msgstr "" -#: src/Colors.vala:53 +#: src/Colors.vala:59 msgid "Slate" msgstr "" -#: src/Colors.vala:55 +#: src/Colors.vala:61 msgid "Black" msgstr "" -#: src/Colors.vala:64 +#: src/Colors.vala:70 msgid "alert, stop, delete, error, recording, video" msgstr "" -#: src/Colors.vala:66 +#: src/Colors.vala:72 msgid "music, news, update, presentation" msgstr "" -#: src/Colors.vala:68 +#: src/Colors.vala:74 msgid "caution, warning, mail, history, favorite" msgstr "" -#: src/Colors.vala:70 +#: src/Colors.vala:76 msgid "success, start, go, new, event, spreadsheet" msgstr "" -#: src/Colors.vala:72 +#: src/Colors.vala:78 +msgid "vector path intersections, calming" +msgstr "" + +#: src/Colors.vala:80 msgid "elementary, default accent, question, help, downloads, document" msgstr "" -#: src/Colors.vala:74 +#: src/Colors.vala:82 msgid "network, sharing, developer, appcenter, beta, vala, programming" msgstr "" -#: src/Colors.vala:76 +#: src/Colors.vala:84 +msgid "eraser, playful" +msgstr "" + +#: src/Colors.vala:86 msgid "warm neutral, earth tone, brown" msgstr "" -#: src/Colors.vala:78 +#: src/Colors.vala:88 msgid "system, neutral light" msgstr "" -#: src/Colors.vala:80 +#: src/Colors.vala:90 msgid "cool neutral, default" msgstr "" -#: src/Colors.vala:82 +#: src/Colors.vala:92 msgid "neutral dark" msgstr "" #: src/MainWindow.vala:34 msgid "Mini mode" -msgstr "" +msgstr "Modo compacto" -#: src/Widgets/ColorButton.vala:71 +#: src/Widgets/ColorButton.vala:74 msgid "Hex value" -msgstr "" +msgstr "Valor hexadecimal" -#: src/Widgets/ColorButton.vala:72 +#: src/Widgets/ColorButton.vala:75 msgid "Gtk.CSS color constant" -msgstr "" +msgstr "Constante de cor Gtk.CSS" -#: src/Widgets/ColorButton.vala:78 +#: src/Widgets/ColorButton.vala:81 #, c-format msgid "<b>Uses:</b> %s" -msgstr "" +msgstr "<b>Usos:</b> %s" #: src/Widgets/ColorVariant.vala:53 src/Widgets/ColorVariant.vala:101 #, c-format msgid "Copy %s to clipboard" -msgstr "" +msgstr "Copiar %s para a ??rea de transfer??ncia" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/po/tr.po new/palette-4.0.0/po/tr.po --- old/palette-3.2.1/po/tr.po 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/po/tr.po 2021-08-10 02:22:26.000000000 +0200 @@ -1,31 +1,33 @@ # Turkish translations for com.github.cassidyjames.palette package. # Copyright (C) 2018 THE com.github.cassidyjames.palette'S COPYRIGHT HOLDER # This file is distributed under the same license as the com.github.cassidyjames.palette package. -# Automatically generated, 2018. # +# Automatically generated, 2018. +# Safak <[email protected]>, 2020. msgid "" msgstr "" "Project-Id-Version: com.github.cassidyjames.palette\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-01-22 23:36-0700\n" -"PO-Revision-Date: 2018-04-09 19:57-0600\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" +"PO-Revision-Date: 2020-09-25 08:36+0300\n" +"Last-Translator: Safak <[email protected]>\n" +"Language-Team: Turkish <[email protected]>\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 2.0\n" #: data/com.github.cassidyjames.palette.appdata.xml.in:7 #: data/launcher.desktop.in:3 src/MainWindow.vala:28 msgid "Palette" -msgstr "" +msgstr "Palette" #: data/com.github.cassidyjames.palette.appdata.xml.in:8 #: data/launcher.desktop.in:5 msgid "View and copy colors from the elementary brand palette" -msgstr "" +msgstr "Temel marka paletinden renkleri g??r??nt??leyin ve kopyalay??n" #: data/com.github.cassidyjames.palette.appdata.xml.in:10 msgid "" @@ -33,22 +35,26 @@ "entire official color palette on your local device, see examples of usage, " "and copy any variation of each color to paste into your own projects." msgstr "" +"elementary, bir dizi parlak ve samimi renk kullan??r. Kolayca eri??in" +"yerel cihaz??n??zdaki resmi renk paletinin tamam??, kullan??m ??rneklerine bak??n," +"ve her rengin herhangi bir varyasyonunu kendi projelerinize yap????t??rmak i??in" +" kopyalay??n." #: data/com.github.cassidyjames.palette.appdata.xml.in:11 msgid "Handy features:" -msgstr "" +msgstr "Kullan????l?? ??zellikler:" #: data/com.github.cassidyjames.palette.appdata.xml.in:13 msgid "Clean and straightforward design" -msgstr "" +msgstr "Temiz ve anla????l??r tasar??m" #: data/com.github.cassidyjames.palette.appdata.xml.in:14 msgid "Click to copy any color to your clipboard" -msgstr "" +msgstr "Panonuza herhangi bir rengi kopyalamak i??in t??klay??n" #: data/com.github.cassidyjames.palette.appdata.xml.in:15 msgid "Supports both hex values and Gtk.CSS color constants" -msgstr "" +msgstr "Hem onalt??l??k de??erleri hem de Gtk.CSS renk sabitlerini destekler" #: data/com.github.cassidyjames.palette.appdata.xml.in:17 msgid "" @@ -57,121 +63,125 @@ "but don???t want it in your way. Mini Mode keeps all of the functionality with " "a more streamlined workflow." msgstr "" +"Palette ayr??ca dock benzeri bir Mini Modu da i??erir! Pencereyi k??????lt" +"renklere s??rekli ba??vurman??z gerekti??inde her zaman en ??stte tutarken," +"ama senin yolunda istemiyorum. Mini Mod, t??m i??levselli??i" +"daha ak??c?? bir i?? ak??????." #: data/com.github.cassidyjames.palette.appdata.xml.in:177 msgid "Cassidy James Blaede" -msgstr "" +msgstr "Cassidy James Blaede" #: data/launcher.desktop.in:4 msgid "Color palette viewer" -msgstr "" +msgstr "Renk paleti g??r??nt??leyici" #: data/launcher.desktop.in:8 msgid "com.github.cassidyjames.palette" -msgstr "" +msgstr "com.github.cassidyjames.palette" #: data/launcher.desktop.in:12 msgid "color;palette;scheme;copy;paste;swatch;contrast;????;" -msgstr "" +msgstr "renk; palet; d??zen; kopyala; yap????t??r; renk ??rne??i; kontrast; ????;" #: src/Colors.vala:37 msgid "Strawberry" -msgstr "" +msgstr "??ilek" #: src/Colors.vala:39 msgid "Orange" -msgstr "" +msgstr "Turuncu" #: src/Colors.vala:41 msgid "Banana" -msgstr "" +msgstr "Muz" #: src/Colors.vala:43 msgid "Lime" -msgstr "" +msgstr "Limon" #: src/Colors.vala:45 msgid "Blueberry" -msgstr "" +msgstr "Yabanmersini" #: src/Colors.vala:47 msgid "Grape" -msgstr "" +msgstr "??z??m" #: src/Colors.vala:49 msgid "Cocoa" -msgstr "" +msgstr "Kakao" #: src/Colors.vala:51 msgid "Silver" -msgstr "" +msgstr "G??m????" #: src/Colors.vala:53 msgid "Slate" -msgstr "" +msgstr "Barut" #: src/Colors.vala:55 msgid "Black" -msgstr "" +msgstr "Siyah" #: src/Colors.vala:64 msgid "alert, stop, delete, error, recording, video" -msgstr "" +msgstr "uyar??, durdurma, silme, hata, kay??t, video" #: src/Colors.vala:66 msgid "music, news, update, presentation" -msgstr "" +msgstr "m??zik, haber, g??ncelleme, sunum" #: src/Colors.vala:68 msgid "caution, warning, mail, history, favorite" -msgstr "" +msgstr "dikkat, uyar??, posta, ge??mi??, favori" #: src/Colors.vala:70 msgid "success, start, go, new, event, spreadsheet" -msgstr "" +msgstr "ba??ar??, ba??la, git, yeni, etkinlik, e-tablo" #: src/Colors.vala:72 msgid "elementary, default accent, question, help, downloads, document" -msgstr "" +msgstr "elemantry, varsay??lan aksan, soru, yard??m, indirmeler, belge" #: src/Colors.vala:74 msgid "network, sharing, developer, appcenter, beta, vala, programming" -msgstr "" +msgstr "a??, payla????m, geli??tirici, uygulama merkezi, beta, vala, programlama" #: src/Colors.vala:76 msgid "warm neutral, earth tone, brown" -msgstr "" +msgstr "s??cak n??tr, toprak tonu, kahverengi" #: src/Colors.vala:78 msgid "system, neutral light" -msgstr "" +msgstr "sistem, n??tr ??????k" #: src/Colors.vala:80 msgid "cool neutral, default" -msgstr "" +msgstr "so??uk n??tr, varsay??lan" #: src/Colors.vala:82 msgid "neutral dark" -msgstr "" +msgstr "n??tr karanl??k" #: src/MainWindow.vala:34 msgid "Mini mode" -msgstr "" +msgstr "Mini mod" #: src/Widgets/ColorButton.vala:71 msgid "Hex value" -msgstr "" +msgstr "Hex de??eri" #: src/Widgets/ColorButton.vala:72 msgid "Gtk.CSS color constant" -msgstr "" +msgstr "Gtk.CSS renk sabiti" #: src/Widgets/ColorButton.vala:78 #, c-format msgid "<b>Uses:</b> %s" -msgstr "" +msgstr "<b>Kullan??m Alanlar??:</b> %s" #: src/Widgets/ColorVariant.vala:53 src/Widgets/ColorVariant.vala:101 #, c-format msgid "Copy %s to clipboard" -msgstr "" +msgstr "%s dosyas??n?? panoya kopyala" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/src/Application.vala new/palette-4.0.0/src/Application.vala --- old/palette-3.2.1/src/Application.vala 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/src/Application.vala 2021-08-10 02:22:26.000000000 +0200 @@ -1,5 +1,5 @@ /* -* Copyright ?? 2018???2020 Cassidy James Blaede (https://cassidyjames.com) +* Copyright ?? 2018???2021 Cassidy James Blaede (https://cassidyjames.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public @@ -70,6 +70,23 @@ } }); + unowned var gtk_settings = Gtk.Settings.get_default (); + unowned var granite_settings = Granite.Settings.get_default (); + + gtk_settings.gtk_cursor_theme_name = "elementary"; + gtk_settings.gtk_icon_theme_name = "elementary"; + gtk_settings.gtk_theme_name = "io.elementary.stylesheet.slate"; + + gtk_settings.gtk_application_prefer_dark_theme = ( + granite_settings.prefers_color_scheme == Granite.Settings.ColorScheme.DARK + ); + + granite_settings.notify["prefers-color-scheme"].connect (() => { + gtk_settings.gtk_application_prefer_dark_theme = ( + granite_settings.prefers_color_scheme == Granite.Settings.ColorScheme.DARK + ); + }); + // Set up main window main_window = new MainWindow (this); main_window.configure_event.connect (() => { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/src/MainWindow.vala new/palette-4.0.0/src/MainWindow.vala --- old/palette-3.2.1/src/MainWindow.vala 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/src/MainWindow.vala 2021-08-10 02:22:26.000000000 +0200 @@ -1,5 +1,5 @@ /* -* Copyright ?? 2018???2020 Cassidy James Blaede (https://cassidyjames.com) +* Copyright ?? 2018???2021 Cassidy James Blaede (https://cassidyjames.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/src/MiniWindow.vala new/palette-4.0.0/src/MiniWindow.vala --- old/palette-3.2.1/src/MiniWindow.vala 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/src/MiniWindow.vala 2021-08-10 02:22:26.000000000 +0200 @@ -1,5 +1,5 @@ /* -* Copyright ?? 2018???2020 Cassidy James Blaede (https://cassidyjames.com) +* Copyright ?? 2018???2021 Cassidy James Blaede (https://cassidyjames.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/src/Widgets/ColorButton.vala new/palette-4.0.0/src/Widgets/ColorButton.vala --- old/palette-3.2.1/src/Widgets/ColorButton.vala 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/src/Widgets/ColorButton.vala 2021-08-10 02:22:26.000000000 +0200 @@ -1,5 +1,5 @@ /* -* Copyright ?? 2018???2020 Cassidy James Blaede (https://cassidyjames.com) +* Copyright ?? 2018???2021 Cassidy James Blaede (https://cassidyjames.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/palette-3.2.1/src/Widgets/ColorVariant.vala new/palette-4.0.0/src/Widgets/ColorVariant.vala --- old/palette-3.2.1/src/Widgets/ColorVariant.vala 2020-05-17 01:39:53.000000000 +0200 +++ new/palette-4.0.0/src/Widgets/ColorVariant.vala 2021-08-10 02:22:26.000000000 +0200 @@ -1,5 +1,5 @@ /* -* Copyright ?? 2018???2020 Cassidy James Blaede (https://cassidyjames.com) +* Copyright ?? 2018???2021 Cassidy James Blaede (https://cassidyjames.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public
