Bladeren bron

Clean branding a bit more

I really wish I'd found a better name by now... Anyway, using "osu!"
branding is misleading; better fix that before next release.
Clément Wolf 6 maanden geleden
bovenliggende
commit
0571697876
5 gewijzigde bestanden met toevoegingen van 7 en 7 verwijderingen
  1. 2 2
      README.md
  2. 1 1
      database.js
  3. 1 1
      public/site.webmanifest
  4. 1 1
      views/jspage.eta
  5. 2 2
      views/main.eta

+ 2 - 2
README.md

@@ -1,4 +1,4 @@
-# osu! ranked lobbies
+# ranked lobbies for osu!
 
 A bot that creates osu! lobbies, with an alternative leaderboard not based on performance points.
 
@@ -6,4 +6,4 @@ Contributions are welcome; to get the bot to run, follow the instructions in [RU
 
 ### License
 
-This project is licensed under the GNU Affero General Public License. You're free to use this project however you want as long as you keep it open source. For more details, [read the complete LICENSE file](https://github.com/kiwec/osu-ranked-lobbies/blob/master/LICENSE)
+This project is licensed under the GNU Affero General Public License. You're free to use this project however you want as long as you keep it open source. For more details, [read the complete LICENSE file](LICENSE)

+ 1 - 1
database.js

@@ -37,7 +37,7 @@ db.exec(`
     od            REAL    NOT NULL,
     bpm           REAL    NOT NULL,
 
-    -- info from osu!api or from osu.db scan (https://github.com/kiwec/orl-maps-db-generator)
+    -- info from osu!api or from osu.db scan (https://git.kiwec.net/kiwec/orl-maps-db-generator)
     set_id        INTEGER NOT NULL,
     length        REAL    NOT NULL,
     ranked        INTEGER NOT NULL,           -- not a boolean but an enum

+ 1 - 1
public/site.webmanifest

@@ -1 +1 @@
-{"name":"osu! ranked lobbies","short_name":"o!RL","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
+{"name":"ranked lobbies for osu!","short_name":"o!RL","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}

+ 1 - 1
views/jspage.eta

@@ -3,7 +3,7 @@
   <head>
     <meta charset="utf-8">
     <meta name="viewport" content="width=device-width, initial-scale=1">
-    <title>osu! ranked lobbies</title>
+    <title>ranked lobbies for osu!</title>
     <link rel="stylesheet" href="/styles.min.css?v=3.0">
     <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
     <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">

+ 2 - 2
views/main.eta

@@ -3,7 +3,7 @@
   <head>
     <meta charset="utf-8">
     <meta name="viewport" content="width=device-width, initial-scale=1">
-    <title>osu! ranked lobbies</title>
+    <title>ranked lobbies for osu!</title>
     <link rel="stylesheet" href="/styles.min.css?v=3.0">
     <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
     <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
@@ -67,6 +67,6 @@
       <%~ it.body %>
     </main>
 
-    <footer class="p-4 text-center m-auto">This is an unofficial website and is not affiliated with <a href="https://osu.ppy.sh/" target="_blank">osu!</a>.</footer>
+    <footer class="p-4 text-center m-auto">o!rl is a hobby project and is not affiliated with <a href="https://osu.ppy.sh/" target="_blank">osu!</a>.</footer>
   </body>
 </html>