fontist 1.10.1 → 1.11.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,46 +0,0 @@
1
- syntax = "proto2";
2
-
3
- /**
4
- * Open Source'd font metadata proto formats.
5
- */
6
- package google.fonts;
7
-
8
- option java_package = "com.google.fonts.proto";
9
- option java_outer_classname = "FontsPublic";
10
-
11
- message FamilyProto {
12
- required string name = 1;
13
- required string designer = 2;
14
- required string license = 3;
15
- required string category = 4;
16
- required string date_added = 5;
17
- repeated FontProto fonts = 6;
18
- repeated string aliases = 7;
19
- repeated string subsets = 8;
20
- optional string ttf_autohint_args = 9;
21
- repeated AxisProto axes = 10;
22
- map<string, float> api_default_overrides = 11;
23
- optional SourceProto source = 12;
24
- };
25
-
26
- message FontProto {
27
- required string name = 1;
28
- required string style = 2;
29
- required int32 weight = 3;
30
- required string filename = 4;
31
- required string post_script_name = 5;
32
- required string full_name = 6;
33
- optional string copyright = 7;
34
- };
35
-
36
- message AxisProto {
37
- optional string tag = 1;
38
- optional float min_value = 2;
39
- optional float default_value = 3;
40
- optional float max_value = 4;
41
- };
42
-
43
- message SourceProto {
44
- optional string repository_url = 1;
45
- optional string commit = 2;
46
- }