Skip to content

Commit e355c8c

Browse files
committed
initial commit
0 parents  commit e355c8c

19 files changed

+516
-0
lines changed

.gitignore

Whitespace-only changes.

CydiaIcon.png

7.59 KB
Loading

Packages

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Package: com.tapsharp.twitterdarkmode
2+
Name: Twitter Dark Mode
3+
Depends: mobilesubstrate
4+
Architecture: iphoneos-arm
5+
Description: Twitter Dark Mode. Perfect for battery life on Oled displays like the iPhone X.
6+
Maintainer: Neo Ighodaro <[email protected]>
7+
Author: Neo Ighodaro <[email protected]>
8+
Section: Tweaks
9+
Icon: http://tapsharp.com/repo/icons/twitterdarkmode.png
10+
Version: 0.0.1
11+
Installed-Size: 120
12+
MD5sum: 4e5678d46ce98fe355ddbe77e4d76484
13+
Size: 10758
14+
Filename: debs/com.tapsharp.twitterdarkmode_0.0.1_iphoneos-arm.deb
15+
16+

Packages.bz2

392 Bytes
Binary file not shown.

Packages.gz

339 Bytes
Binary file not shown.

Release

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Origin: TapSharp
2+
Label: TapSharp
3+
Suite: stable
4+
Version: 1.0.0
5+
Codename: ios
6+
Architectures: iphoneos-arm
7+
Components: main
8+
Description: Beta Tweaks and more!

assets/css/cydia.css

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
html,
2+
body {
3+
height: 100%;
4+
font-size: 1em;
5+
}
6+
7+
body {
8+
display: -ms-flexbox;
9+
display: -webkit-box;
10+
display: flex;
11+
-ms-flex-align: center;
12+
-ms-flex-pack: center;
13+
-webkit-box-align: center;
14+
align-items: center;
15+
-webkit-box-pack: center;
16+
justify-content: center;
17+
padding-top: 40px;
18+
padding-bottom: 40px;
19+
background-color: #ffffff;
20+
}
21+
22+
.wrapper {
23+
width: 100%;
24+
max-width: 330px;
25+
padding: 15px;
26+
margin: 0 auto;
27+
}
28+
@media (min-width: 600px) {
29+
.wrapper {
30+
min-width: 550px;
31+
}
32+
}
33+
34+
.wrapper .logo {
35+
max-width: 100%;
36+
height: 86px;
37+
width: 250px;
38+
margin-bottom: 200px;
39+
}
40+
41+
@media (min-width: 600px) {
42+
.wrapper .logo {
43+
width: 363px;
44+
height: 125px;
45+
}
46+
}
47+
48+
.wrapper .btn.custom {
49+
background-color: #111517;
50+
color: #fff;
51+
text-transform: uppercase;
52+
font-size: 20px;
53+
line-height: 55px;
54+
font-weight: 700;
55+
padding: 0;
56+
outline: none;
57+
border-radius: 8px;
58+
width: 200px;
59+
height: 55px;
60+
margin-bottom: 20px;
61+
font-family: 'Oswald', 'Arial Narrow Bold', Arial, Helvetica, sans-serif;
62+
}
63+
.wrapper .btn.custom:hover {
64+
background-color: #EF0D33;
65+
}
66+
@media (min-width: 600px) {
67+
.wrapper .btn.custom {
68+
width: 256px;
69+
height: 62px;
70+
line-height: 62px;
71+
}
72+
}

assets/img/.DS_Store

6 KB
Binary file not shown.

assets/img/favicon.png

16.4 KB
Loading

assets/img/logo.svg

+6
Loading

debs/.gitignore

Whitespace-only changes.
Binary file not shown.

depictions/.gitkeep

Whitespace-only changes.

deploy.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
rsync -vuarz ~/Sites/tapsharp.com/* ck:/var/www/cydia.tapsharp.com/

dpkg-gettext.pl

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#!/usr/bin/perl -w
2+
use strict;
3+
use warnings;
4+
# Copied from /usr/share/perl5/Debconf/Gettext.pm
5+
6+
use strict;
7+
8+
BEGIN {
9+
eval 'use Locale::gettext';
10+
if ($@) {
11+
eval q{
12+
sub _g {
13+
return shift;
14+
}
15+
sub textdomain {
16+
}
17+
sub ngettext {
18+
if ($_[2] == 1) {
19+
return $_[0];
20+
} else {
21+
return $_[1];
22+
}
23+
}
24+
};
25+
} else {
26+
eval q{
27+
sub _g {
28+
return gettext(shift);
29+
}
30+
};
31+
}
32+
}
33+
34+
use base qw(Exporter);
35+
our @EXPORT=qw(_g textdomain ngettext);
36+
37+
1;

0 commit comments

Comments
 (0)