git » crow.game » commit cc8f063

site and misc updates

author b0in
2023-11-24 19:07:37 UTC
committer b0in
2023-11-24 19:07:37 UTC
parent aeb2ecd6b60613c0592fcaa65e9ac03c43398f7e

site and misc updates

 * gitignore
 * site
   * background image
   * wording fixes
   * fix xmlns for site xml
 * various org and plugin pom notes.

.gitignore +1 -0
crow.game.site/src/site/apt/faq.apt +3 -3
crow.game.site/src/site/resources/bgtexture.png +0 -0
crow.game.site/src/site/resources/css/site.css +4 -2
crow.game.site/src/site/site.xml +3 -3
pom.xml +7 -2

diff --git a/.gitignore b/.gitignore
index 5ff6309..5d533f2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,6 +11,7 @@ target/
 *.iws
 *.iml
 *.ipr
+.attach_pid*
 
 ### Eclipse ###
 .apt_generated
diff --git a/crow.game.site/src/site/apt/faq.apt b/crow.game.site/src/site/apt/faq.apt
index 6592f68..29b6a87 100644
--- a/crow.game.site/src/site/apt/faq.apt
+++ b/crow.game.site/src/site/apt/faq.apt
@@ -15,8 +15,8 @@ FAQ
     I'm currently working alongside rathena, implementing it's HA packets so that I can
     test the full workflow of a given component alongside existing rathena components.
 
-    However: it is not guaranteed to have ongoing drop-in with either one. Meaning,
-    you may not be able to migrate directly from any existing server to Crow.
+    However: it is not guaranteed to have ongoing drop-in compatibility with either one. Meaning,
+    you may not be able to migrate directly from any existing server to Crow.Game.
 
 * How much is done?
 
@@ -26,4 +26,4 @@ FAQ
 
 * Which kRO protocol versions are supported?
 
-    TODO
+    TODO: write kRO protocol version details.
diff --git a/crow.game.site/src/site/resources/bgtexture.png b/crow.game.site/src/site/resources/bgtexture.png
new file mode 100644
index 0000000..5456977
Binary files /dev/null and b/crow.game.site/src/site/resources/bgtexture.png differ
diff --git a/crow.game.site/src/site/resources/css/site.css b/crow.game.site/src/site/resources/css/site.css
index 959a4f8..73af044 100644
--- a/crow.game.site/src/site/resources/css/site.css
+++ b/crow.game.site/src/site/resources/css/site.css
@@ -2,13 +2,13 @@ body {
   width: 900px;
   margin: 0px auto;
   margin-top: 20px;
+  margin-bottom: 20px;
   border: 1px solid grey;
   padding: 20px;
   box-shadow: black 4px 4px 2px;
   background-color: white;
 }
 
-
 @media only screen and (max-width: 600px) {
   body {
       max-width: 90%;
@@ -44,7 +44,9 @@ body {
 }
 
 html {
-  background-color: #cfcfff;
+  background-color: #ddbdbd;
+  background-image: url("../bgtexture.png");
+  background-blend-mode: multiply;
 }
 
 h2, h3, h1 {
diff --git a/crow.game.site/src/site/site.xml b/crow.game.site/src/site/site.xml
index b245894..61ec02e 100644
--- a/crow.game.site/src/site/site.xml
+++ b/crow.game.site/src/site/site.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project name="Crow Game Server Emulator"
-         xmlns="http://maven.apache.org/SITE/2.0.0"
+         xmlns="http://maven.apache.org/DECORATION/1.3.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd">
+         xsi:schemaLocation="http://maven.apache.org/DECORATION/1.3.0 https://maven.apache.org/xsd/decoration-1.3.0.xsd">
 
     <version position="none"/>
     <bannerLeft>
@@ -11,11 +11,11 @@
     <publishDate position="right"/>
 
     <body>
-        <footer><!-- x --></footer>
         <menu name="Overview">
             <item name="About" href="index.html" />
             <item name="FAQ" href="faq.html" />
         </menu>
         <menu ref="reports"/>
+        <footer><!-- x --></footer>
     </body>
 </project>
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index d1befd0..e849568 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,9 +8,10 @@
   <packaging>pom</packaging>
   <inceptionYear>2023</inceptionYear>
   <organization>
-    <name>crow.game</name>
-    <url>https://b0in.xyz/crow</url>
+    <name>boin</name>
+    <url>https://b0in.xyz/</url>
   </organization>
+  <url>https://b0in.xyz/code/crow.game</url>
   <licenses>
     <license>
       <name>GNU General Public License (GPL) version 3.0</name>
@@ -87,6 +88,8 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
         <version>3.12.1</version>
+        <!-- TODO: maven-site-plugin 3.x will not be mvn4 compatible.
+             upgrade to 4.0.0 when the release is available. -->
         <configuration>
           <siteDirectory>${project.basedir}/crow.game.site/src/site</siteDirectory>
         </configuration>
@@ -99,6 +102,8 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-changelog-plugin</artifactId>
         <version>2.3</version>
+        <!-- TODO: maven-changelog-plugin 3.x will not be mvn4 compatible.
+             upgrade to 4.0.0 when the release is available. -->
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>