Skip to content

Commit

Permalink
releaseb releasef improve the img quality + different activity calcul…
Browse files Browse the repository at this point in the history
…ation
  • Loading branch information
Sammers21 committed Sep 11, 2024
1 parent 9e734f8 commit ca27d57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ body {
-moz-osx-font-smoothing: grayscale;

/* For cross-browser compatibility */
background-image: url(./assets/background/WoW_The_War_Within_Concept_IsleofDorn-compresed.jpg);
background-image: url(./assets/background/WoW_The_War_Within_Concept_IsleofDorn-min.jpg);
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
Expand Down
6 changes: 3 additions & 3 deletions src/io/github/sammers/pla/logic/Ladder.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void start() {
Observable<Long> updates;
if (updatesEnabled) {
updates = Observable.mergeArray(runDataUpdater(EU, 1, MINUTES, new AtomicBoolean(false), new AtomicLong(System.nanoTime()), Observable.defer(() -> {
int initialDelay = 0;
int initialDelay = Calculator.minutesTillNextMins(euPeriod);
return Observable.interval(initialDelay, euPeriod, MINUTES);
})), runDataUpdater(US, 1, MINUTES, new AtomicBoolean(false), new AtomicLong(System.nanoTime()), Observable.defer(() -> {
int initialDelay = Calculator.minutesTillNextMins(usPeriod);
Expand Down Expand Up @@ -598,8 +598,8 @@ public Completable calcDiffs(String bracket, String region) {
// db.getMinsAgo(bracket, region, 60 * 24 * 4),
// db.getMinsAgo(bracket, region, 60 * 24 * 2),
// db.getMinsAgo(bracket, region, 60 * 24),
// db.getMinsAgo(bracket, region, 60 * 12),
// db.getMinsAgo(bracket, region, 60 * 8),
db.getMinsAgo(bracket, region, 60 * 12),
db.getMinsAgo(bracket, region, 60 * 8),
db.getMinsAgo(bracket, region, 60 * 6),
db.getMinsAgo(bracket, region, 60 * 3),
db.getMinsAgo(bracket, region, 60 * 2),
Expand Down

0 comments on commit ca27d57

Please sign in to comment.