Giter Club home page Giter Club logo

frost's People

Contributors

1c3 avatar aloxe avatar ayysmkz avatar baitmooth avatar cguy7777 avatar conrad-heimbold avatar danielmowitz avatar dkanada avatar donnnno avatar douweschulte avatar ejiektpobehuk avatar emevo avatar h-bruch avatar ikocevski avatar karrbs avatar mamg22 avatar mihawk90 avatar misterchief53 avatar nkeor avatar omichaelo avatar rauchc avatar rthery avatar rult avatar sguinetti avatar skenera avatar suffixdesign avatar tacothedank avatar undersampled avatar wrbbz avatar z4-xz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

frost's Issues

Help me help you...

I managed to make an SVG icon for ProtonMail and I'm still pretty much a beginner at making vector graphics but can you tell me more about what resolution should I do the icons in and how can I upload the files to this project and etc. etc.
I think I could do an icon or two a day if I'm in the mood.

Here, check it out (exported this in 256x256):
Sample icon.zip

New App name

See issue #13 , comment 2

Words that could be used inside the app name (brainstorming):

  • white, ice, snow
  • uniform / consistent, meaning: uniform look - all icons have got only one color, and most icons are based on one of the 4 icon shape templates (circle, square, rect-vert or rect-hori)
  • flat, simple, sharp, personal

The word "icon" should most likely occur in the name!

Possibilities:

  • Whicons unfortunately already exists, it is the name of a proprietary white icon pack for Android on Google Play.
  • Snoci - read it backwards and you get "icons"; read it forwards and you get the allusion to (white) snow, just like ICEcon includes ice and icon
  • Unicon - uniform look for all app icons. Also sounds a bit like unicorn: If at one point in the future, we offer the icons both in white and original color (switchable inside the app itself), the name "unicorn" would also fit - unicorns in the internet are often displayed in rainbow colors and unicorns are a common meme in the Internet.
  • Iconsistent (same reason as above)

Let's see if I get more ideas in the future...

F-Droid icon...

I just noticed that the F-Droid icon is a little transparent. Not on my computer so I thought I'd make an issue before I forget about this.

Icon Request

20180513_031338.zip

Hello, some apps are missing on my device

  • Discord
  • Authy
  • Keepass DX
  • Simple calculator, calendar & music player
  • Firefox focus
  • Paypal

Icon request

I found a few FLOSS apps icons missing. Actually, I think most of them can be included by just mapping app names to already existing icons (FirefoxKlar, SealNote, Feeder...), I don't think it would be a problem to use the same icon for two different apps that do esentially the same thing.

Thanks a lot and keep the great work!
20171109_015155.zip

Icon Request

Some of these are my phone's stock apps and as such I think there are icons already for them(but not mapped currently, since it's an obscure/unknown phone), others are some apps of my region.
Thanks a bunch for the great work!
20171231_112629.zip

install and use description

Hi

Maybe stupid to ask thru Github but searched the internet and found no help or place to ask.
I have installed your icon package thru f-droid, after that no way to get it working.

Maybe put a small text in the 'readme' about install and use?

LineageOS 14.1
Android 7.1.2

Implement a Content Provider API for the icons instead of apk-based access

The prefered way of handling shared data between two apps on Android are Content Providers.

Unzipping the apk, scanning it for a file called "appfilter.xml" and copying the png icons might be more efficient than implementing the whole infrastructure for theming in every icon pack app.
But it is more error-prone and less flexible: if the icons are changed at one point for customization (from inside the icon pack app), the app that uses the icons won't notice the changes; if only the apk gets scanned. Using Content Providers, you could get much more flexibility!

The future?

I'm definitely moving away from GitHub for good. I don't like being under MSFT's umbrella and besides I always thought of switching because it was a proprietary platform anyway. I heven't been active lately here but this is the project I contributed to the most so I want to say thank you for all the good work done, it's been nice hanging out here. I'll delete my account and I'll move to GitLab. I'm not going to judge you if you want to stay and I wish you well going forward. Thanks again and goodbye (from here).

Icon Request

20180503_010456.zip

Some apps are missing on my device :

Bitcoin
Briar
FastHub-Libre
KDE Connect
Mattermost
TinyKeePass
Trackbook
Tusky
TWRP
WiFi Automatic

Icon Request

20180425_055732.zip

androidVNC, busybox, CoolReader, DroidShows, OSMonitor, privacyFriendlyCodeScanner, sensorssandbox, Simple last.fm Scrobbler

How to make 48px icons not blurry

I made an icon and now i'm trying to convert it to 48 px to submit it, but i'm not sure how you manage to create 48px icons that aren't blurry?

Finish converting the old icons to svg files.

We only have 92 left and it would make adding the icon references much faster since I would only have to update one file rather than four. I have been doing them in groups of ten or so and @conrad-heimbold has added quite a few but if we focus on these icons we should have them done in a week or so.

Icon Request :)

Unfortunately, Turtl is crashing on my device :/ But here is a list of F-Droid apps with missing icons:

Archwiki Viewer
Bitcoin
Dandelion*
Good Weather
Hacker's Keyboard
Red Moon
Riot
Silence
StreetComplete
WebApps

And only one Lineage(cyanogen) icon: Theme Chooser

use vector (android vector drawable xml, avdx) directly instead of raster (png) icons

Since API level 21, Android can handle vector drawables:
https://developer.android.com/reference/android/graphics/drawable/VectorDrawable.html

Here are some information:
https://androidbycode.wordpress.com/2015/03/18/vector-graphics-in-android-converting-svg-to-vectordrawable/

Simple SVG can directly be transformed into avdx.
Do we already have a script for that? If not, this is what I found with google:

I don't know if Android Studio also has the ability to convert svg to android vector graphics...
The Android SDK has native support for vector graphics with the class

android.graphics.drawable.VectorDrawable

get rid of transform + even-odd attributes and E-notation

.. because android does not support these (at least not before API level 24)

files that contain matrix / transform elements:
android.svg, gmusic.svg, ring.svg, sensorreadout.svg, viber.svg

EDIT 2017-07-07: No files with matrix / transform elements are left. Please watch out and do not to create new ones!

files that contain fill-rule:evenodd attributes:
dropbox.svg, meinvodafone.svg, mgit.svg, oscilloscope.svg, sgit.svg, steam.svg

files that contain the E-notation for numbers:
acrobat.svg, an2linux.svg, androidrun.svg, antox.svg, boinc.svg, casper.svg, contacts.svg, diaspora.svg, drive.svg, echo.svg, etar.svg, geogebra.svg, gkeyboard.svg, gmovies.svg, gsheets.svg, gslides.svg, hpprinteraio.svg, kodi.svg, kore.svg, oscilloscope.svg, practicehub.svg, riot.svg, snapseed.svg, steam.svg, whatsapp.svg, wire.svg

How to get rid of that stuff:

  • transform attributes can be integrated into pathData / d attribute inside path . I explained how to do this in issue #20 , comment 2 .
  • fill-rule:even-odd attributes can be safely omitted, AFAIK.
  • E-notation should be converted to normal notation.

In my humble opinion; fixing transform attributes should get priority, then even-odd; then E-notation.

Use SVG icons from Ameixa LOS/CM icon pack

@dkanada @ikocevski Some time ago I noticed that the Ameixa CM/LOS icon pack by Xphnx already has lots of SVG icons. Unfortunately, there are quite bloated (every icon more than 60 KB, of which only 2KB are needed); so you can't extract the relevant icon path easily. I spent some time on that (lots of steps necessary...) and I'm almost finished.

Please have a look on the SVG files in the attached ZIP file!

I finished simplifying the svg icons from Ameixa - my script worked for 499 out of 656 files. Have a look on the attached svg icons, which only consist of one path, nothing else.
You can create icons for us by

  1. copy-pasting one of these onto a suitable rectangle/square/circle template from us
  2. Resizing the svg path as necessary
  3. Subtracting the svg path from the template.

You could also only take some inspiration from them, if you don't want to simply copy them.

Create a server component to accept icon requests and generate the xml files.

@conrad-heimbold @ikocevski @xphnx @beli3ver It would take quite a bit of work but would definitely be worth it if more than one icon pack used the server for icon requests. I would be completely fine developing and hosting the server for anyone developing a FOSS icon pack, just want to gauge interest before I consider it. Does anyone know of any other icon packs that would benefit from this or any other PHP or node devs who would be interested in such a project? The idea came from this project. @xphnx and @beli3ver let me know if you aren't interested in hearing about updates to this project, I try to keep you guys in the loop since we share the same codebase. @conrad-heimbold your repo to scrape F-Droid metadata would be an excellent way to populate a database for this project.

[question] switch to scour for optim instead of svgo, inkscape can't handle some svgo optim

This is almost certainly a bug on the side of Inkscape.

Some files that have been optimized with svgo, can not be handled / viewed / edited anymore with Inkscape.

Opening / viewing those files works perfectly with eog (eye of gnome) / gthumb. This is definitely a bug on the side of Inkscape; but I could not yet figure out where the problem is exactly. When optimizing with scour, I never had such problems.

Examples:
inkscape_bug_example_1
inkscape_bug_example_2

Do you know which optimisations cause the problems? Then I could make the bug report for Inkscape more detailed. Until this bug on the side of Inkscape gets fixed, could we maybe switch to scour for optimizing? Scour is not as comfortable as svgo (e.g. no svgo folder functionality via -f), but gets things done as well.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.